@design-factory/design-factory 20.0.0-next.1 → 20.0.0-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -16
- package/design-factory-initial-branding.css +1 -1
- package/design-factory-initial-branding.scss +1 -1
- package/design-factory.css +2 -2
- package/design-factory.scss +0 -2
- package/fesm2022/design-factory-design-factory-tokens-style-dictionary.mjs +358 -0
- package/fesm2022/design-factory-design-factory-tokens-style-dictionary.mjs.map +1 -0
- package/fesm2022/design-factory.mjs +520 -476
- package/fesm2022/design-factory.mjs.map +1 -1
- package/index.d.ts +22 -72
- package/package.json +15 -3
- package/schematics/migrations/15_0_0/remove-ngx-slider/index.js +11 -5
- package/schematics/migrations/16_0_0/revert-to-old-brand/index.js +2 -2
- package/schematics/migrations/20_0_0/colors-new-branding/index.d.ts +18 -0
- package/schematics/migrations/20_0_0/colors-new-branding/index.js +151 -0
- package/schematics/migrations/20_0_0/modal-removal/index.d.ts +7 -0
- package/schematics/migrations/20_0_0/modal-removal/index.js +53 -0
- package/schematics/migrations/20_0_0/navbar-toggler-logo-svg/index.js +6 -5
- package/schematics/migrations/20_0_0/spinner-new-branding/index.d.ts +7 -0
- package/schematics/migrations/20_0_0/spinner-new-branding/index.js +41 -0
- package/schematics/migrations/20_0_0/style-import/index.d.ts +7 -0
- package/schematics/migrations/20_0_0/style-import/index.js +39 -0
- package/schematics/migrations/20_0_0/waves-of-progress/index.d.ts +7 -0
- package/schematics/migrations/20_0_0/waves-of-progress/index.js +69 -0
- package/schematics/migrations/helpers.js +1 -1
- package/schematics/migrations/migration.json +27 -0
- package/schematics/migrations/utils/component-resource-collector.js +2 -2
- package/schematics/migrations/utils/project_tsconfig_paths.js +4 -0
- package/schematics/migrations/utils/style-updater.js +3 -1
- package/schematics/migrations/utils/template-updater.js +3 -1
- package/schematics/migrations/utils/typescript/compiler_host.js +6 -4
- package/schematics/ng-add/index.js +3 -6
- package/styles/scss/_common.root.scss +20 -3
- package/styles/scss/_common.scss +1 -1
- package/styles/scss/bootstrap/_utilities-override.scss +14 -8
- package/styles/scss/bootstrap/_variables.scss +2 -2
- package/styles/scss/components/alert/_alert.scss +23 -11
- package/styles/scss/components/badge/_badge.mixins.scss +2 -4
- package/styles/scss/components/badge/_badge.scss +84 -23
- package/styles/scss/components/button/_button.scss +394 -86
- package/styles/scss/components/button/_button.utils.scss +20 -1
- package/styles/scss/components/button/_button_container.scss +22 -5
- package/styles/scss/components/card/_card.scss +29 -11
- package/styles/scss/components/checkbox/_checkbox.scss +2 -1
- package/styles/scss/components/collapse/_collapse.scss +6 -1
- package/styles/scss/components/datepicker/_datepicker.scss +9 -11
- package/styles/scss/components/dropdown/_dropdown.scss +23 -0
- package/styles/scss/components/fonts/_font-faces.mixins.scss +108 -54
- package/styles/scss/components/fonts/_icon-font.scss +2 -1
- package/styles/scss/components/footer/_footer.scss +1 -1
- package/styles/scss/components/inputs/_inputs.root.scss +1 -1
- package/styles/scss/components/inputs/_inputs.scss +7 -1
- package/styles/scss/components/link/_link.mixins.scss +7 -3
- package/styles/scss/components/link/_link.scss +10 -0
- package/styles/scss/components/link/_link.variables.scss +5 -2
- package/styles/scss/components/media/_media.scss +4 -0
- package/styles/scss/components/media/_media.variables.scss +1 -0
- package/styles/scss/components/modal/_modal.scss +51 -19
- package/styles/scss/components/navbar/_navbar.scss +12 -0
- package/styles/scss/components/pagination/_pagination.scss +1 -0
- package/styles/scss/components/pagination/_pagination_container.scss +1 -1
- package/styles/scss/components/progressbar/_progressbar.variables.scss +13 -4
- package/styles/scss/components/radio/_radio.scss +1 -1
- package/styles/scss/components/rating/_rating.scss +3 -3
- package/styles/scss/components/rating/_rating.variables.scss +1 -1
- package/styles/scss/components/scrollspy/_scrollspy.scss +5 -2
- package/styles/scss/components/select/_select.scss +14 -19
- package/styles/scss/components/separator/_separator.variables.scss +1 -1
- package/styles/scss/components/sidenav/_sidenav.scss +1 -1
- package/styles/scss/components/sidenav/_sidenav.variables.scss +6 -4
- package/styles/scss/components/spinner/_spinner.scss +14 -0
- package/styles/scss/components/spinner/_spinner.variables.scss +7 -4
- package/styles/scss/components/tabs/_tabs.scss +3 -0
- package/styles/scss/components/toast/_toast.scss +37 -32
- package/styles/scss/components/tooltip/_tooltip_container.scss +17 -13
- package/styles/scss/themes/brand2023/_variables.scss +68 -29
- package/styles/scss/themes/brand2023/tokens/_mapping.gen.scss +156 -186
- package/styles/scss/themes/brand2023/tokens/_root.gen.scss +1709 -0
- package/styles/scss/themes/brand2023/tokens/_sass-vars.gen.scss +1468 -0
- package/styles/scss/utilities/_common.utilities.scss +3 -10
- package/styles/scss/utilities/_rgb.scss +10 -0
- package/tokens/style-dictionary/index.d.ts +60 -0
- package/assets/waves_of_progress/arrowRight.svg +0 -34
- package/assets/waves_of_progress/arrowUp.svg +0 -35
- package/assets/waves_of_progress/circleDiagonal.svg +0 -29
- package/assets/waves_of_progress/circleUp.svg +0 -24
- package/styles/scss/components/waves/_waves.scss +0 -15
- package/styles/scss/components/waves/_waves.variables.scss +0 -86
- package/styles/scss/themes/brand2023/tokens/_figma.gen.scss +0 -3028
package/README.md
CHANGED
|
@@ -50,22 +50,23 @@ in your styles.scss
|
|
|
50
50
|
The dependencies are [Angular](https://angular.io), [Bootstrap 5](https://getbootstrap.com), [Ng-bootstrap](https://ng-bootstrap.github.io), [AgnosUI](https://www.agnosui.dev), [Ng-select](https://ng-select.github.io/ng-select#/data-sources), [Ag-grid](https://www.ag-grid.com/) and [ngx-slider](https://angular-slider.github.io/ngx-slider/).
|
|
51
51
|
The supported versions are:
|
|
52
52
|
|
|
53
|
-
| Design Factory | Angular | Bootstrap CSS | Ng-Bootstrap | Ng-select
|
|
54
|
-
| -------------- | ------- | ------------- | ------------ |
|
|
55
|
-
| 9.x.x | 11.0.0 | 4.5.0 | 9.1.0 | 5.0.14
|
|
56
|
-
| 10.x.x | 12.0.0 | 4.5.3 | 10.0.0 | 7.2.0
|
|
57
|
-
| 11.x.x | 13.2.0 | 4.5.3 | 11.0.0 | 8.1.1
|
|
58
|
-
| 12.x.x | 13.2.0 | 5.1.3 | 12.1.2 | 8.1.1
|
|
59
|
-
| 13.x.x | 14.1.0 | 5.2.0 | 13.1.0 | 9.0.2
|
|
60
|
-
| 14.x.x | 15.1.0 | 5.2.0 | 14.0.1 | 10.0.3
|
|
61
|
-
| 15.x.x | 16.0.0 | 5.2.0 | 15.0.0 | 11.0.0
|
|
62
|
-
| 16.x.x | 16.x.x | 5.2.0 | 15.1.0 | 11.2.0
|
|
63
|
-
| 17.0.x | 17.x.x | 5.3.2 | 16.0.x | 12.0.x
|
|
64
|
-
| 17.1.x | 17.x.x | 5.3.3 | 16.0.x | 12.0.x
|
|
65
|
-
| 18.0.x | 18.x.x | 5.3.3 | 17.0.x | 13.2.x
|
|
66
|
-
| 18.1.x | 18.x.x | 5.3.3 | 17.0.x | 13.2.x
|
|
67
|
-
| 19.0.x | 19.x.x | 5.3.3 | 18.0.x | 14.0.x
|
|
68
|
-
| 19.1.x | 19.x.x | 5.3.3 | 18.0.x | 14.1.x
|
|
53
|
+
| Design Factory | Angular | Bootstrap CSS | Ng-Bootstrap | Ng-select | Ag-grid | ngx-slider | AgnosUI |
|
|
54
|
+
| -------------- | ------- | ------------- | ------------ | -------------- | ------- | ---------- | -------------- |
|
|
55
|
+
| 9.x.x | 11.0.0 | 4.5.0 | 9.1.0 | 5.0.14 | | 2.0.3 | |
|
|
56
|
+
| 10.x.x | 12.0.0 | 4.5.3 | 10.0.0 | 7.2.0 | | 2.0.3 | |
|
|
57
|
+
| 11.x.x | 13.2.0 | 4.5.3 | 11.0.0 | 8.1.1 | | 2.0.3 | |
|
|
58
|
+
| 12.x.x | 13.2.0 | 5.1.3 | 12.1.2 | 8.1.1 | 27.3.0 | 2.0.3 | |
|
|
59
|
+
| 13.x.x | 14.1.0 | 5.2.0 | 13.1.0 | 9.0.2 | 27.3.0 | 2.0.4 | |
|
|
60
|
+
| 14.x.x | 15.1.0 | 5.2.0 | 14.0.1 | 10.0.3 | 27.3.0 | 2.0.4 | |
|
|
61
|
+
| 15.x.x | 16.0.0 | 5.2.0 | 15.0.0 | 11.0.0 | 29.3.5 | | |
|
|
62
|
+
| 16.x.x | 16.x.x | 5.2.0 | 15.1.0 | 11.2.0 | 30.2.x | | |
|
|
63
|
+
| 17.0.x | 17.x.x | 5.3.2 | 16.0.x | 12.0.x | 31.0.x | | 0.0.1-alpha.10 |
|
|
64
|
+
| 17.1.x | 17.x.x | 5.3.3 | 16.0.x | 12.0.x | 31.1.x | | 0.2.0 |
|
|
65
|
+
| 18.0.x | 18.x.x | 5.3.3 | 17.0.x | 13.2.x | 31.3.x | | 0.4.x |
|
|
66
|
+
| 18.1.x | 18.x.x | 5.3.3 | 17.0.x | 13.2.x | 32.0.x | | 0.4.x |
|
|
67
|
+
| 19.0.x | 19.x.x | 5.3.3 | 18.0.x | 14.0.x | 32.0.x | | 0.7.x |
|
|
68
|
+
| 19.1.x | 19.x.x | 5.3.3 | 18.0.x | 14.1.x | 32.0.x | | 0.8.x |
|
|
69
|
+
| 20.0.x | 20.x | 5.3.7 | 19.0.x | 15.x \|\| 20.x | 32.x | | 0.9.x |
|
|
69
70
|
|
|
70
71
|
## How to work with the icons
|
|
71
72
|
|