Skip to content

Commit 0346c28

Browse files
committed
release: 4.0.0-rc.6
1 parent 721ad54 commit 0346c28

File tree

12 files changed

+550
-260
lines changed

12 files changed

+550
-260
lines changed

CHANGELOG.md

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,81 @@
1+
<a name="4.0.0-rc.6"></a>
2+
# [4.0.0-rc.6](https://github.com/akveo/nebular/compare/v4.0.0-rc.5...v4.0.0-rc.6) (2019-05-28)
3+
4+
5+
### Bug Fixes
6+
7+
* add missing components exports to public api ([#1487](https://github.com/akveo/nebular/issues/1487)) ([2f551aa](https://github.com/akveo/nebular/commit/2f551aa))
8+
* move auth examples to base component without layout ([#1479](https://github.com/akveo/nebular/issues/1479)) ([30e6942](https://github.com/akveo/nebular/commit/30e6942))
9+
* **checkbox:** fix inactive background color ([#1502](https://github.com/akveo/nebular/issues/1502)) ([48966b8](https://github.com/akveo/nebular/commit/48966b8))
10+
* **checkbox:** fix value output ([#1505](https://github.com/akveo/nebular/issues/1505)) ([0ea3167](https://github.com/akveo/nebular/commit/0ea3167))
11+
* **docs:** docs fixes, minimize icons, remove unused fonts ([#1491](https://github.com/akveo/nebular/issues/1491)) ([9334d3e](https://github.com/akveo/nebular/commit/9334d3e))
12+
* **spinner:** ability to set spinner message ([#1508](https://github.com/akveo/nebular/issues/1508)) ([64f94c1](https://github.com/akveo/nebular/commit/64f94c1))
13+
* **theme:** finalize themes with design system ([#1481](https://github.com/akveo/nebular/issues/1481)) ([5673e98](https://github.com/akveo/nebular/commit/5673e98)), closes [#40dc7](https://github.com/akveo/nebular/issues/40dc7) [#ebeef2](https://github.com/akveo/nebular/issues/ebeef2) [#3b5998](https://github.com/akveo/nebular/issues/3b5998) [#55](https://github.com/akveo/nebular/issues/55) [#dd4b39](https://github.com/akveo/nebular/issues/dd4b39) [#0177b5](https://github.com/akveo/nebular/issues/0177b5) [#6b6b6](https://github.com/akveo/nebular/issues/6b6b6) [#2f96e8](https://github.com/akveo/nebular/issues/2f96e8) [#f26798](https://github.com/akveo/nebular/issues/f26798) [#0093](https://github.com/akveo/nebular/issues/0093)
14+
* **themes:** fix get-value not working in component context ([#1493](https://github.com/akveo/nebular/issues/1493)) ([30bc29f](https://github.com/akveo/nebular/commit/30bc29f))
15+
* **theming:** fix nb-theme not working in component mode without nb-i… ([#1503](https://github.com/akveo/nebular/issues/1503)) ([0bc9f07](https://github.com/akveo/nebular/commit/0bc9f07))
16+
17+
18+
### Features
19+
20+
* **bootstrap:** update nebular/bootstrap to Eva ([#1507](https://github.com/akveo/nebular/issues/1507)) ([2ff1171](https://github.com/akveo/nebular/commit/2ff1171))
21+
* **select, input:** add max width theme property ([#1480](https://github.com/akveo/nebular/issues/1480)) ([5a6d506](https://github.com/akveo/nebular/commit/5a6d506))
22+
23+
24+
### BREAKING CHANGES
25+
26+
* **bootstrap:** Bootstrap checkbox and radio are removed now, use Nebular Checkbox and Nebular Radio with better theming support.
27+
* **theme:** The following sass mixins are removed: `nb-radial-gradient`, `nb-right-gradient`.
28+
29+
Theme variables changes:
30+
31+
**renamed:**
32+
- font-main -> font-family-primary
33+
- font-secondary -> font-family-secondary
34+
- radius -> border-radius
35+
- color-bg -> background-basic-color-1,
36+
- color-bg-active -> background-basic-color-2,
37+
- color-fg -> text-basic-color,
38+
- color-fg-heading -> text-basic-color,
39+
- color-fg-text -> text-hint-color,
40+
- separator -> divider-color
41+
- scrollbar-fg -> scrollbar-color,
42+
- scrollbar-bg -> scrollbar-background-color,
43+
- scrollbar-thumb-radius -> scrollbar-width
44+
45+
**removed:**
46+
- color-fg-highlight
47+
48+
- font-weight-thin
49+
- font-weight-light
50+
- font-weight-normal
51+
- font-weight-bolder
52+
- font-weight-bold
53+
- font-weight-ultra-bold
54+
55+
- base-font-size
56+
57+
- font-size-xlg
58+
- font-size-lg
59+
- font-size
60+
- font-size-sm
61+
- font-size-xs
62+
63+
- padding
64+
- margin
65+
- line-height
66+
67+
- social-color-facebook
68+
- social-color-twitter
69+
- social-color-google
70+
- social-color-linkedin
71+
- social-color-github
72+
- social-color-stackoverflow
73+
- social-color-dribble
74+
- social-color-behance
75+
76+
- radial-gradient
77+
- linear-gradient
78+
179
<a name="4.0.0-rc.5"></a>
280
# [4.0.0-rc.5](https://github.com/akveo/nebular/compare/v4.0.0-rc.4...v4.0.0-rc.5) (2019-05-22)
381

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nebular",
3-
"version": "4.0.0-rc.5",
3+
"version": "4.0.0-rc.6",
44
"license": "MIT",
55
"author": "akveo <contact@akveo.com>",
66
"private": true,

0 commit comments

Comments
 (0)