Skip to content

Commit 20e23eb

Browse files
author
unknown
committed
1.0.0-beta6
1 parent 0234801 commit 20e23eb

File tree

146 files changed

+15431
-12313
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+15431
-12313
lines changed

CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
## 1.0.0-beta6 (14.06.2021)
2+
3+
In this version we introduced some breaking changes, please check `Breaking changes` section and update your application accordingly. The list of all individual modules and entry points can be found here:
4+
5+
[MDB Angular UI Kit Free Modules And Imports](https://mdbootstrap.com/docs/b5/angular/getting-started/modules-and-imports/)
6+
7+
[MDB Angular UI Kit Pro Essential Modules And Imports](https://mdbootstrap.com/docs/b5/angular/pro/modules-and-imports/)
8+
9+
### Breaking changes:
10+
11+
- Updated Angular to v12 (this version is now required),
12+
- Components, modules and types can no longer be imported from `mdb-angular-ui-kit` entry point. Use the newly added secondary entry points, such as `mdb-angular-ui-kit/checkbox` to import individual elements,
13+
- Removed main `MdbModule`, import individual modules from its entry points, for example: `import { MdbCheckboxModule } from 'mdb-angular-ui-kit/checkbox'`,
14+
- Renamed `MdbTimePickerComponent` to `MdbTimepickerComponent`,
15+
- Renamed `MdbTimePickerDirective` to `MdbTimepickerDirective`,
16+
- Renamed `MdbTimePickerModule` to `MdbTimepickerModule`,
17+
- Updated Bootstrap styles to the latest stable version.
18+
19+
### Components redesign:
20+
21+
- Redesigned shadows for components: Cards, Dropdowns, Modal, Popover, Toasts, Buttons, Button Group, Navbar, Pagination, Pills, Sidenav,
22+
- Redesigned padding for components: Alerts, Cards, List Group,
23+
- Redesigned border radius to 0.5rem for components: Alerts, Cards, Dropdowns, Modal, List group, Popover, Toasts, Dateipcker, Timepicker.
24+
25+
### Fixes and improvements:
26+
27+
- Sidenav - resolved problem with height of the element with `.sidenav-menu` class,
28+
- Range - resolved problem with a hardcoded `Example label` text,
29+
- Datepicker - `dateChanged` event will be now correctly emited on date change,
30+
- Datepicker - resolved problem with components updates on Angular form control changes,
31+
- File input - updated styles to Material Design styles,
32+
- Pills - fixed width of pills when they're filled or justified,
33+
- Checkbox/Switch/Radio - fix margin styles and positioning.
34+
35+
### New components:
36+
37+
- [Stepper](https://mdbootstrap.com/docs/b5/angular/components/stepper/)
38+
- [Sticky](https://mdbootstrap.com/docs/b5/angular/components/sticky/)
39+
40+
### New features:
41+
42+
- Navbar - added a new `.navbar-nav-scroll` class to enable vertical scrolling when a collapsed navbar is opened,
43+
- Navbar - re-added `flex-grow` to the `.navbar-collapse` to restore the flexbox behaviors from v4 and prevent some content from being inadvertently squished,
44+
- List group - added a new `.list-group-numbered` variation to list groups that uses pseudo-elements for numbering list group items,
45+
- Shadows - added a new styles design: shadows soft, shadows standard, shadows strong,
46+
- Added color-scheme mixin.
47+
148
## 1.0.0-beta5 (31.05.2021)
249

350
### New components:

angular.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,20 @@
2222
"main": "src/main.ts",
2323
"polyfills": "src/polyfills.ts",
2424
"tsConfig": "tsconfig.app.json",
25-
"aot": true,
2625
"assets": [
2726
"src/favicon.ico",
2827
"src/assets"
2928
],
3029
"styles": [
3130
"src/styles.scss"
3231
],
33-
"scripts": []
32+
"scripts": [],
33+
"vendorChunk": true,
34+
"extractLicenses": false,
35+
"buildOptimizer": false,
36+
"sourceMap": true,
37+
"optimization": false,
38+
"namedChunks": true
3439
},
3540
"configurations": {
3641
"production": {
@@ -60,7 +65,8 @@
6065
}
6166
]
6267
}
63-
}
68+
},
69+
"defaultConfiguration": ""
6470
},
6571
"serve": {
6672
"builder": "@angular-devkit/build-angular:dev-server",

0 commit comments

Comments
 (0)