@bravura/ui 3.8.1 → 5.0.0
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/CHANGELOG.md +585 -565
- package/LICENSE +6 -6
- package/README.md +3 -1
- package/alert/alert-container.component.d.ts +1 -1
- package/alert/alert-message.component.d.ts +1 -1
- package/behavior/await.directive.d.ts +1 -1
- package/behavior/observe-content-class.directive.d.ts +1 -1
- package/behavior/sizing.directive.d.ts +1 -1
- package/clip-note/clip-note.directive.d.ts +1 -1
- package/currency-input/currency-input.directive.d.ts +1 -1
- package/decimal-input/decimal-input.directive.d.ts +1 -1
- package/discrete-input/discrete-input.component.d.ts +1 -1
- package/esm2022/alert/alert-container.component.mjs +207 -0
- package/esm2022/alert/alert-message.component.mjs +101 -0
- package/esm2022/alert/alert.module.mjs +22 -0
- package/{esm2020 → esm2022}/alert/public-api.mjs +1 -1
- package/esm2022/alert/testing/test-api.mjs +44 -0
- package/esm2022/behavior/await.directive.mjs +133 -0
- package/esm2022/behavior/behavior.module.mjs +37 -0
- package/esm2022/behavior/observe-content-class.directive.mjs +63 -0
- package/{esm2020 → esm2022}/behavior/public-api.mjs +1 -1
- package/esm2022/behavior/sizing-monitor.directive.mjs +31 -0
- package/esm2022/behavior/sizing.directive.mjs +256 -0
- package/esm2022/clip-note/clip-note.component.mjs +216 -0
- package/esm2022/clip-note/clip-note.directive.mjs +141 -0
- package/esm2022/clip-note/clip-note.module.mjs +32 -0
- package/{esm2020 → esm2022}/clip-note/public-api.mjs +1 -1
- package/{esm2020 → esm2022}/common/common-utils.mjs +1 -1
- package/esm2022/common/common.module.mjs +53 -0
- package/{esm2020 → esm2022}/common/public-api.mjs +1 -1
- package/esm2022/currency-input/currency-input.directive.mjs +276 -0
- package/esm2022/currency-input/currency-input.module.mjs +19 -0
- package/{esm2020 → esm2022}/currency-input/public-api.mjs +1 -1
- package/esm2022/decimal-input/decimal-input.directive.mjs +122 -0
- package/{esm2020 → esm2022}/decimal-input/decimal-input.module.mjs +5 -5
- package/esm2022/discrete-input/discrete-input.component.mjs +337 -0
- package/esm2022/discrete-input/discrete-input.module.mjs +21 -0
- package/{esm2020 → esm2022}/discrete-input/public-api.mjs +1 -1
- package/esm2022/file-upload/file-upload.component.mjs +400 -0
- package/esm2022/file-upload/file-upload.module.mjs +44 -0
- package/esm2022/file-upload/file-upload.service.mjs +29 -0
- package/{esm2020 → esm2022}/file-upload/public-api.mjs +1 -1
- package/esm2022/form-field/form-field.component.mjs +82 -0
- package/esm2022/form-field/form-field.module.mjs +33 -0
- package/{esm2020 → esm2022}/form-field/public-api.mjs +1 -1
- package/esm2022/icon-font/icon-font.module.mjs +22 -0
- package/esm2022/icon-font/icon.directive.mjs +102 -0
- package/{esm2020 → esm2022}/icon-font/public-api.mjs +1 -1
- package/esm2022/icon-font/utilities.mjs +51 -0
- package/esm2022/panel/panel-section.component.mjs +41 -0
- package/esm2022/panel/panel.component.mjs +87 -0
- package/esm2022/panel/panel.module.mjs +23 -0
- package/{esm2020 → esm2022}/panel/public-api.mjs +1 -1
- package/esm2022/panel/tinted.directive.mjs +60 -0
- package/esm2022/phone-number/phone-number.directive.mjs +188 -0
- package/{esm2020 → esm2022}/phone-number/phone-number.module.mjs +5 -5
- package/esm2022/phone-number/phone-number.pipe.mjs +47 -0
- package/esm2022/phone-number/phone-number.validator.mjs +64 -0
- package/{esm2020 → esm2022}/phone-number/public-api.mjs +1 -1
- package/{esm2020 → esm2022}/public-api.mjs +1 -1
- package/esm2022/radio-panel/radio-panel-item.component.mjs +93 -0
- package/esm2022/radio-panel/radio-panel.component.mjs +81 -0
- package/{esm2020 → esm2022}/radio-panel/radio-panel.module.mjs +5 -5
- package/esm2022/radio-panel/testing/test-api.mjs +46 -0
- package/{esm2020 → esm2022}/selection-panel/public-api.mjs +1 -1
- package/esm2022/selection-panel/selection-panel-item.component.mjs +166 -0
- package/esm2022/selection-panel/selection-panel.directive.mjs +119 -0
- package/esm2022/selection-panel/selection-panel.module.mjs +23 -0
- package/{esm2020 → esm2022}/skeletons/public-api.mjs +1 -1
- package/esm2022/skeletons/skeleton-loader-presets.directive.mjs +83 -0
- package/esm2022/skeletons/skeleton-loader.component.mjs +76 -0
- package/esm2022/skeletons/skeletons.module.mjs +35 -0
- package/{esm2020 → esm2022}/stepper/public-api.mjs +1 -1
- package/{esm2020 → esm2022}/stepper/stepper-animation.mjs +1 -1
- package/esm2022/stepper/stepper.component.mjs +176 -0
- package/esm2022/stepper/stepper.module.mjs +52 -0
- package/{esm2020 → esm2022}/tooltip/public-api.mjs +1 -1
- package/esm2022/tooltip/tooltip.component.mjs +63 -0
- package/esm2022/tooltip/tooltip.directive.mjs +148 -0
- package/esm2022/tooltip/tooltip.module.mjs +25 -0
- package/{fesm2020 → fesm2022}/bravura-ui-alert-testing.mjs +2 -2
- package/fesm2022/bravura-ui-alert-testing.mjs.map +1 -0
- package/fesm2022/bravura-ui-alert.mjs +327 -0
- package/fesm2022/bravura-ui-alert.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/bravura-ui-behavior.mjs +45 -45
- package/fesm2022/bravura-ui-behavior.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/bravura-ui-clip-note.mjs +70 -70
- package/fesm2022/bravura-ui-clip-note.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/bravura-ui-common.mjs +6 -6
- package/fesm2022/bravura-ui-common.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/bravura-ui-currency-input.mjs +11 -11
- package/fesm2022/bravura-ui-currency-input.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/bravura-ui-decimal-input.mjs +12 -12
- package/fesm2022/bravura-ui-decimal-input.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/bravura-ui-discrete-input.mjs +48 -48
- package/fesm2022/bravura-ui-discrete-input.mjs.map +1 -0
- package/fesm2022/bravura-ui-file-upload.mjs +474 -0
- package/fesm2022/bravura-ui-file-upload.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/bravura-ui-form-field.mjs +19 -19
- package/fesm2022/bravura-ui-form-field.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/bravura-ui-icon-font.mjs +8 -8
- package/fesm2022/bravura-ui-icon-font.mjs.map +1 -0
- package/fesm2022/bravura-ui-panel.mjs +206 -0
- package/fesm2022/bravura-ui-panel.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/bravura-ui-phone-number.mjs +30 -30
- package/fesm2022/bravura-ui-phone-number.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/bravura-ui-radio-panel-testing.mjs +5 -6
- package/fesm2022/bravura-ui-radio-panel-testing.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/bravura-ui-radio-panel.mjs +32 -32
- package/fesm2022/bravura-ui-radio-panel.mjs.map +1 -0
- package/fesm2022/bravura-ui-selection-panel.mjs +306 -0
- package/fesm2022/bravura-ui-selection-panel.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/bravura-ui-skeletons.mjs +43 -43
- package/fesm2022/bravura-ui-skeletons.mjs.map +1 -0
- package/fesm2022/bravura-ui-stepper.mjs +251 -0
- package/fesm2022/bravura-ui-stepper.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/bravura-ui-tooltip.mjs +32 -24
- package/fesm2022/bravura-ui-tooltip.mjs.map +1 -0
- package/fesm2022/bravura-ui.mjs.map +1 -0
- package/file-upload/file-upload.component.d.ts +1 -1
- package/form-field/form-field.component.d.ts +1 -1
- package/icon-font/icon.directive.d.ts +1 -1
- package/package.json +88 -132
- package/panel/panel.component.d.ts +1 -1
- package/panel/tinted.directive.d.ts +1 -1
- package/phone-number/phone-number.directive.d.ts +1 -1
- package/phone-number/phone-number.validator.d.ts +2 -2
- package/radio-panel/radio-panel-item.component.d.ts +1 -1
- package/radio-panel/radio-panel.component.d.ts +1 -1
- package/radio-panel/testing/test-api.d.ts +2 -3
- package/selection-panel/selection-panel-item.component.d.ts +1 -1
- package/selection-panel/selection-panel.directive.d.ts +1 -1
- package/skeletons/skeleton-loader-presets.directive.d.ts +3 -3
- package/stepper/stepper.component.d.ts +1 -1
- package/theme/_bui-card.scss +56 -56
- package/theme/_ui-theme.scss +3 -3
- package/theme/global-style-by-bootstrap.scss +3 -3
- package/theme/global-style-by-tailwind.scss +3 -3
- package/theme/scrollbar.scss +40 -40
- package/tooltip/tooltip.component.d.ts +2 -0
- package/tooltip/tooltip.directive.d.ts +3 -5
- package/esm2020/alert/alert-container.component.mjs +0 -207
- package/esm2020/alert/alert-message.component.mjs +0 -102
- package/esm2020/alert/alert.module.mjs +0 -22
- package/esm2020/alert/testing/test-api.mjs +0 -44
- package/esm2020/behavior/await.directive.mjs +0 -133
- package/esm2020/behavior/behavior.module.mjs +0 -37
- package/esm2020/behavior/observe-content-class.directive.mjs +0 -63
- package/esm2020/behavior/sizing-monitor.directive.mjs +0 -31
- package/esm2020/behavior/sizing.directive.mjs +0 -256
- package/esm2020/clip-note/clip-note.component.mjs +0 -216
- package/esm2020/clip-note/clip-note.directive.mjs +0 -141
- package/esm2020/clip-note/clip-note.module.mjs +0 -32
- package/esm2020/common/common.module.mjs +0 -53
- package/esm2020/currency-input/currency-input.directive.mjs +0 -276
- package/esm2020/currency-input/currency-input.module.mjs +0 -19
- package/esm2020/decimal-input/decimal-input.directive.mjs +0 -122
- package/esm2020/discrete-input/discrete-input.component.mjs +0 -337
- package/esm2020/discrete-input/discrete-input.module.mjs +0 -21
- package/esm2020/file-upload/file-upload.component.mjs +0 -400
- package/esm2020/file-upload/file-upload.module.mjs +0 -44
- package/esm2020/file-upload/file-upload.service.mjs +0 -29
- package/esm2020/form-field/form-field.component.mjs +0 -82
- package/esm2020/form-field/form-field.module.mjs +0 -33
- package/esm2020/icon-font/icon-font.module.mjs +0 -22
- package/esm2020/icon-font/icon.directive.mjs +0 -102
- package/esm2020/icon-font/utilities.mjs +0 -51
- package/esm2020/panel/panel-section.component.mjs +0 -41
- package/esm2020/panel/panel.component.mjs +0 -87
- package/esm2020/panel/panel.module.mjs +0 -23
- package/esm2020/panel/tinted.directive.mjs +0 -60
- package/esm2020/phone-number/phone-number.directive.mjs +0 -188
- package/esm2020/phone-number/phone-number.pipe.mjs +0 -47
- package/esm2020/phone-number/phone-number.validator.mjs +0 -64
- package/esm2020/radio-panel/radio-panel-item.component.mjs +0 -93
- package/esm2020/radio-panel/radio-panel.component.mjs +0 -81
- package/esm2020/radio-panel/testing/test-api.mjs +0 -47
- package/esm2020/selection-panel/selection-panel-item.component.mjs +0 -166
- package/esm2020/selection-panel/selection-panel.directive.mjs +0 -119
- package/esm2020/selection-panel/selection-panel.module.mjs +0 -23
- package/esm2020/skeletons/skeleton-loader-presets.directive.mjs +0 -83
- package/esm2020/skeletons/skeleton-loader.component.mjs +0 -76
- package/esm2020/skeletons/skeletons.module.mjs +0 -35
- package/esm2020/stepper/stepper.component.mjs +0 -176
- package/esm2020/stepper/stepper.module.mjs +0 -52
- package/esm2020/tooltip/tooltip.component.mjs +0 -54
- package/esm2020/tooltip/tooltip.directive.mjs +0 -149
- package/esm2020/tooltip/tooltip.module.mjs +0 -25
- package/fesm2015/bravura-ui-alert-testing.mjs +0 -64
- package/fesm2015/bravura-ui-alert-testing.mjs.map +0 -1
- package/fesm2015/bravura-ui-alert.mjs +0 -340
- package/fesm2015/bravura-ui-alert.mjs.map +0 -1
- package/fesm2015/bravura-ui-behavior.mjs +0 -515
- package/fesm2015/bravura-ui-behavior.mjs.map +0 -1
- package/fesm2015/bravura-ui-clip-note.mjs +0 -393
- package/fesm2015/bravura-ui-clip-note.mjs.map +0 -1
- package/fesm2015/bravura-ui-common.mjs +0 -96
- package/fesm2015/bravura-ui-common.mjs.map +0 -1
- package/fesm2015/bravura-ui-currency-input.mjs +0 -300
- package/fesm2015/bravura-ui-currency-input.mjs.map +0 -1
- package/fesm2015/bravura-ui-decimal-input.mjs +0 -145
- package/fesm2015/bravura-ui-decimal-input.mjs.map +0 -1
- package/fesm2015/bravura-ui-discrete-input.mjs +0 -365
- package/fesm2015/bravura-ui-discrete-input.mjs.map +0 -1
- package/fesm2015/bravura-ui-file-upload.mjs +0 -478
- package/fesm2015/bravura-ui-file-upload.mjs.map +0 -1
- package/fesm2015/bravura-ui-form-field.mjs +0 -120
- package/fesm2015/bravura-ui-form-field.mjs.map +0 -1
- package/fesm2015/bravura-ui-icon-font.mjs +0 -178
- package/fesm2015/bravura-ui-icon-font.mjs.map +0 -1
- package/fesm2015/bravura-ui-panel.mjs +0 -210
- package/fesm2015/bravura-ui-panel.mjs.map +0 -1
- package/fesm2015/bravura-ui-phone-number.mjs +0 -327
- package/fesm2015/bravura-ui-phone-number.mjs.map +0 -1
- package/fesm2015/bravura-ui-radio-panel-testing.mjs +0 -63
- package/fesm2015/bravura-ui-radio-panel-testing.mjs.map +0 -1
- package/fesm2015/bravura-ui-radio-panel.mjs +0 -200
- package/fesm2015/bravura-ui-radio-panel.mjs.map +0 -1
- package/fesm2015/bravura-ui-selection-panel.mjs +0 -311
- package/fesm2015/bravura-ui-selection-panel.mjs.map +0 -1
- package/fesm2015/bravura-ui-skeletons.mjs +0 -195
- package/fesm2015/bravura-ui-skeletons.mjs.map +0 -1
- package/fesm2015/bravura-ui-stepper.mjs +0 -253
- package/fesm2015/bravura-ui-stepper.mjs.map +0 -1
- package/fesm2015/bravura-ui-tooltip.mjs +0 -229
- package/fesm2015/bravura-ui-tooltip.mjs.map +0 -1
- package/fesm2015/bravura-ui.mjs.map +0 -1
- package/fesm2020/bravura-ui-alert-testing.mjs.map +0 -1
- package/fesm2020/bravura-ui-alert.mjs +0 -328
- package/fesm2020/bravura-ui-alert.mjs.map +0 -1
- package/fesm2020/bravura-ui-behavior.mjs.map +0 -1
- package/fesm2020/bravura-ui-clip-note.mjs.map +0 -1
- package/fesm2020/bravura-ui-common.mjs.map +0 -1
- package/fesm2020/bravura-ui-currency-input.mjs.map +0 -1
- package/fesm2020/bravura-ui-decimal-input.mjs.map +0 -1
- package/fesm2020/bravura-ui-discrete-input.mjs.map +0 -1
- package/fesm2020/bravura-ui-file-upload.mjs +0 -474
- package/fesm2020/bravura-ui-file-upload.mjs.map +0 -1
- package/fesm2020/bravura-ui-form-field.mjs.map +0 -1
- package/fesm2020/bravura-ui-icon-font.mjs.map +0 -1
- package/fesm2020/bravura-ui-panel.mjs +0 -206
- package/fesm2020/bravura-ui-panel.mjs.map +0 -1
- package/fesm2020/bravura-ui-phone-number.mjs.map +0 -1
- package/fesm2020/bravura-ui-radio-panel-testing.mjs.map +0 -1
- package/fesm2020/bravura-ui-radio-panel.mjs.map +0 -1
- package/fesm2020/bravura-ui-selection-panel.mjs +0 -306
- package/fesm2020/bravura-ui-selection-panel.mjs.map +0 -1
- package/fesm2020/bravura-ui-skeletons.mjs.map +0 -1
- package/fesm2020/bravura-ui-stepper.mjs +0 -251
- package/fesm2020/bravura-ui-stepper.mjs.map +0 -1
- package/fesm2020/bravura-ui-tooltip.mjs.map +0 -1
- package/fesm2020/bravura-ui.mjs +0 -8
- package/fesm2020/bravura-ui.mjs.map +0 -1
- /package/{esm2020 → esm2022}/alert/bravura-ui-alert.mjs +0 -0
- /package/{esm2020 → esm2022}/alert/testing/bravura-ui-alert-testing.mjs +0 -0
- /package/{esm2020 → esm2022}/behavior/bravura-ui-behavior.mjs +0 -0
- /package/{esm2020 → esm2022}/bravura-ui.mjs +0 -0
- /package/{esm2020 → esm2022}/clip-note/bravura-ui-clip-note.mjs +0 -0
- /package/{esm2020 → esm2022}/common/bravura-ui-common.mjs +0 -0
- /package/{esm2020 → esm2022}/currency-input/bravura-ui-currency-input.mjs +0 -0
- /package/{esm2020 → esm2022}/decimal-input/bravura-ui-decimal-input.mjs +0 -0
- /package/{esm2020 → esm2022}/decimal-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/discrete-input/bravura-ui-discrete-input.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/bravura-ui-file-upload.mjs +0 -0
- /package/{esm2020 → esm2022}/form-field/bravura-ui-form-field.mjs +0 -0
- /package/{esm2020 → esm2022}/icon-font/bravura-ui-icon-font.mjs +0 -0
- /package/{esm2020 → esm2022}/panel/bravura-ui-panel.mjs +0 -0
- /package/{esm2020 → esm2022}/phone-number/bravura-ui-phone-number.mjs +0 -0
- /package/{esm2020 → esm2022}/radio-panel/bravura-ui-radio-panel.mjs +0 -0
- /package/{esm2020 → esm2022}/radio-panel/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/radio-panel/testing/bravura-ui-radio-panel-testing.mjs +0 -0
- /package/{esm2020 → esm2022}/selection-panel/bravura-ui-selection-panel.mjs +0 -0
- /package/{esm2020 → esm2022}/skeletons/bravura-ui-skeletons.mjs +0 -0
- /package/{esm2020 → esm2022}/stepper/bravura-ui-stepper.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/bravura-ui-tooltip.mjs +0 -0
- /package/{fesm2015 → fesm2022}/bravura-ui.mjs +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bravura/ui",
|
|
3
3
|
"description": "Bravura UI Components for Angular applications",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "5.0.0",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Angular",
|
|
7
7
|
"Angular Material",
|
|
@@ -9,25 +9,21 @@
|
|
|
9
9
|
],
|
|
10
10
|
"author": "Bravura Solutions",
|
|
11
11
|
"peerDependencies": {
|
|
12
|
-
"@angular/cdk": "^
|
|
13
|
-
"@angular/common": "^
|
|
14
|
-
"@angular/compiler": "^
|
|
15
|
-
"@angular/core": "^
|
|
16
|
-
"@angular/forms": "^
|
|
17
|
-
"@angular/material": "^
|
|
12
|
+
"@angular/cdk": "^18.2.2",
|
|
13
|
+
"@angular/common": "^18.2.2",
|
|
14
|
+
"@angular/compiler": "^18.2.2",
|
|
15
|
+
"@angular/core": "^18.2.2",
|
|
16
|
+
"@angular/forms": "^18.2.2",
|
|
17
|
+
"@angular/material": "^18.2.2",
|
|
18
18
|
"@ngneat/content-loader": "^7.0.0",
|
|
19
|
-
"intl-tel-input": "^
|
|
20
|
-
"rxjs": "~7.
|
|
19
|
+
"intl-tel-input": "^18.1.6",
|
|
20
|
+
"rxjs": "~7.8.0"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"tslib": "^2.4.0"
|
|
24
24
|
},
|
|
25
25
|
"license": "ISC",
|
|
26
|
-
"module": "
|
|
27
|
-
"es2020": "fesm2020/bravura-ui.mjs",
|
|
28
|
-
"esm2020": "esm2020/bravura-ui.mjs",
|
|
29
|
-
"fesm2020": "fesm2020/bravura-ui.mjs",
|
|
30
|
-
"fesm2015": "fesm2015/bravura-ui.mjs",
|
|
26
|
+
"module": "fesm2022/bravura-ui.mjs",
|
|
31
27
|
"typings": "index.d.ts",
|
|
32
28
|
"exports": {
|
|
33
29
|
"./package.json": {
|
|
@@ -35,163 +31,123 @@
|
|
|
35
31
|
},
|
|
36
32
|
".": {
|
|
37
33
|
"types": "./index.d.ts",
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"node": "./fesm2015/bravura-ui.mjs",
|
|
42
|
-
"default": "./fesm2020/bravura-ui.mjs"
|
|
43
|
-
},
|
|
44
|
-
"./alert": {
|
|
45
|
-
"types": "./alert/index.d.ts",
|
|
46
|
-
"esm2020": "./esm2020/alert/bravura-ui-alert.mjs",
|
|
47
|
-
"es2020": "./fesm2020/bravura-ui-alert.mjs",
|
|
48
|
-
"es2015": "./fesm2015/bravura-ui-alert.mjs",
|
|
49
|
-
"node": "./fesm2015/bravura-ui-alert.mjs",
|
|
50
|
-
"default": "./fesm2020/bravura-ui-alert.mjs"
|
|
51
|
-
},
|
|
52
|
-
"./alert/testing": {
|
|
53
|
-
"types": "./alert/testing/index.d.ts",
|
|
54
|
-
"esm2020": "./esm2020/alert/testing/bravura-ui-alert-testing.mjs",
|
|
55
|
-
"es2020": "./fesm2020/bravura-ui-alert-testing.mjs",
|
|
56
|
-
"es2015": "./fesm2015/bravura-ui-alert-testing.mjs",
|
|
57
|
-
"node": "./fesm2015/bravura-ui-alert-testing.mjs",
|
|
58
|
-
"default": "./fesm2020/bravura-ui-alert-testing.mjs"
|
|
34
|
+
"esm2022": "./esm2022/bravura-ui.mjs",
|
|
35
|
+
"esm": "./esm2022/bravura-ui.mjs",
|
|
36
|
+
"default": "./fesm2022/bravura-ui.mjs"
|
|
59
37
|
},
|
|
60
38
|
"./behavior": {
|
|
61
39
|
"types": "./behavior/index.d.ts",
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
40
|
+
"esm2022": "./esm2022/behavior/bravura-ui-behavior.mjs",
|
|
41
|
+
"esm": "./esm2022/behavior/bravura-ui-behavior.mjs",
|
|
42
|
+
"default": "./fesm2022/bravura-ui-behavior.mjs"
|
|
43
|
+
},
|
|
44
|
+
"./alert": {
|
|
45
|
+
"types": "./alert/index.d.ts",
|
|
46
|
+
"esm2022": "./esm2022/alert/bravura-ui-alert.mjs",
|
|
47
|
+
"esm": "./esm2022/alert/bravura-ui-alert.mjs",
|
|
48
|
+
"default": "./fesm2022/bravura-ui-alert.mjs"
|
|
67
49
|
},
|
|
68
50
|
"./clip-note": {
|
|
69
51
|
"types": "./clip-note/index.d.ts",
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"node": "./fesm2015/bravura-ui-clip-note.mjs",
|
|
74
|
-
"default": "./fesm2020/bravura-ui-clip-note.mjs"
|
|
75
|
-
},
|
|
76
|
-
"./common": {
|
|
77
|
-
"types": "./common/index.d.ts",
|
|
78
|
-
"esm2020": "./esm2020/common/bravura-ui-common.mjs",
|
|
79
|
-
"es2020": "./fesm2020/bravura-ui-common.mjs",
|
|
80
|
-
"es2015": "./fesm2015/bravura-ui-common.mjs",
|
|
81
|
-
"node": "./fesm2015/bravura-ui-common.mjs",
|
|
82
|
-
"default": "./fesm2020/bravura-ui-common.mjs"
|
|
52
|
+
"esm2022": "./esm2022/clip-note/bravura-ui-clip-note.mjs",
|
|
53
|
+
"esm": "./esm2022/clip-note/bravura-ui-clip-note.mjs",
|
|
54
|
+
"default": "./fesm2022/bravura-ui-clip-note.mjs"
|
|
83
55
|
},
|
|
84
56
|
"./currency-input": {
|
|
85
57
|
"types": "./currency-input/index.d.ts",
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
|
|
90
|
-
|
|
58
|
+
"esm2022": "./esm2022/currency-input/bravura-ui-currency-input.mjs",
|
|
59
|
+
"esm": "./esm2022/currency-input/bravura-ui-currency-input.mjs",
|
|
60
|
+
"default": "./fesm2022/bravura-ui-currency-input.mjs"
|
|
61
|
+
},
|
|
62
|
+
"./common": {
|
|
63
|
+
"types": "./common/index.d.ts",
|
|
64
|
+
"esm2022": "./esm2022/common/bravura-ui-common.mjs",
|
|
65
|
+
"esm": "./esm2022/common/bravura-ui-common.mjs",
|
|
66
|
+
"default": "./fesm2022/bravura-ui-common.mjs"
|
|
91
67
|
},
|
|
92
68
|
"./decimal-input": {
|
|
93
69
|
"types": "./decimal-input/index.d.ts",
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"node": "./fesm2015/bravura-ui-decimal-input.mjs",
|
|
98
|
-
"default": "./fesm2020/bravura-ui-decimal-input.mjs"
|
|
70
|
+
"esm2022": "./esm2022/decimal-input/bravura-ui-decimal-input.mjs",
|
|
71
|
+
"esm": "./esm2022/decimal-input/bravura-ui-decimal-input.mjs",
|
|
72
|
+
"default": "./fesm2022/bravura-ui-decimal-input.mjs"
|
|
99
73
|
},
|
|
100
74
|
"./discrete-input": {
|
|
101
75
|
"types": "./discrete-input/index.d.ts",
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"node": "./fesm2015/bravura-ui-discrete-input.mjs",
|
|
106
|
-
"default": "./fesm2020/bravura-ui-discrete-input.mjs"
|
|
76
|
+
"esm2022": "./esm2022/discrete-input/bravura-ui-discrete-input.mjs",
|
|
77
|
+
"esm": "./esm2022/discrete-input/bravura-ui-discrete-input.mjs",
|
|
78
|
+
"default": "./fesm2022/bravura-ui-discrete-input.mjs"
|
|
107
79
|
},
|
|
108
80
|
"./file-upload": {
|
|
109
81
|
"types": "./file-upload/index.d.ts",
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"node": "./fesm2015/bravura-ui-file-upload.mjs",
|
|
114
|
-
"default": "./fesm2020/bravura-ui-file-upload.mjs"
|
|
82
|
+
"esm2022": "./esm2022/file-upload/bravura-ui-file-upload.mjs",
|
|
83
|
+
"esm": "./esm2022/file-upload/bravura-ui-file-upload.mjs",
|
|
84
|
+
"default": "./fesm2022/bravura-ui-file-upload.mjs"
|
|
115
85
|
},
|
|
116
86
|
"./form-field": {
|
|
117
87
|
"types": "./form-field/index.d.ts",
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"node": "./fesm2015/bravura-ui-form-field.mjs",
|
|
122
|
-
"default": "./fesm2020/bravura-ui-form-field.mjs"
|
|
88
|
+
"esm2022": "./esm2022/form-field/bravura-ui-form-field.mjs",
|
|
89
|
+
"esm": "./esm2022/form-field/bravura-ui-form-field.mjs",
|
|
90
|
+
"default": "./fesm2022/bravura-ui-form-field.mjs"
|
|
123
91
|
},
|
|
124
92
|
"./icon-font": {
|
|
125
93
|
"types": "./icon-font/index.d.ts",
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"node": "./fesm2015/bravura-ui-icon-font.mjs",
|
|
130
|
-
"default": "./fesm2020/bravura-ui-icon-font.mjs"
|
|
94
|
+
"esm2022": "./esm2022/icon-font/bravura-ui-icon-font.mjs",
|
|
95
|
+
"esm": "./esm2022/icon-font/bravura-ui-icon-font.mjs",
|
|
96
|
+
"default": "./fesm2022/bravura-ui-icon-font.mjs"
|
|
131
97
|
},
|
|
132
|
-
"./panel": {
|
|
133
|
-
"types": "./panel/index.d.ts",
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"node": "./fesm2015/bravura-ui-panel.mjs",
|
|
138
|
-
"default": "./fesm2020/bravura-ui-panel.mjs"
|
|
98
|
+
"./radio-panel": {
|
|
99
|
+
"types": "./radio-panel/index.d.ts",
|
|
100
|
+
"esm2022": "./esm2022/radio-panel/bravura-ui-radio-panel.mjs",
|
|
101
|
+
"esm": "./esm2022/radio-panel/bravura-ui-radio-panel.mjs",
|
|
102
|
+
"default": "./fesm2022/bravura-ui-radio-panel.mjs"
|
|
139
103
|
},
|
|
140
104
|
"./phone-number": {
|
|
141
105
|
"types": "./phone-number/index.d.ts",
|
|
142
|
-
"
|
|
143
|
-
"
|
|
144
|
-
"
|
|
145
|
-
"node": "./fesm2015/bravura-ui-phone-number.mjs",
|
|
146
|
-
"default": "./fesm2020/bravura-ui-phone-number.mjs"
|
|
106
|
+
"esm2022": "./esm2022/phone-number/bravura-ui-phone-number.mjs",
|
|
107
|
+
"esm": "./esm2022/phone-number/bravura-ui-phone-number.mjs",
|
|
108
|
+
"default": "./fesm2022/bravura-ui-phone-number.mjs"
|
|
147
109
|
},
|
|
148
|
-
"./
|
|
149
|
-
"types": "./
|
|
150
|
-
"
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
"node": "./fesm2015/bravura-ui-radio-panel.mjs",
|
|
154
|
-
"default": "./fesm2020/bravura-ui-radio-panel.mjs"
|
|
110
|
+
"./panel": {
|
|
111
|
+
"types": "./panel/index.d.ts",
|
|
112
|
+
"esm2022": "./esm2022/panel/bravura-ui-panel.mjs",
|
|
113
|
+
"esm": "./esm2022/panel/bravura-ui-panel.mjs",
|
|
114
|
+
"default": "./fesm2022/bravura-ui-panel.mjs"
|
|
155
115
|
},
|
|
156
|
-
"./
|
|
157
|
-
"types": "./
|
|
158
|
-
"
|
|
159
|
-
"
|
|
160
|
-
"
|
|
161
|
-
"node": "./fesm2015/bravura-ui-radio-panel-testing.mjs",
|
|
162
|
-
"default": "./fesm2020/bravura-ui-radio-panel-testing.mjs"
|
|
116
|
+
"./stepper": {
|
|
117
|
+
"types": "./stepper/index.d.ts",
|
|
118
|
+
"esm2022": "./esm2022/stepper/bravura-ui-stepper.mjs",
|
|
119
|
+
"esm": "./esm2022/stepper/bravura-ui-stepper.mjs",
|
|
120
|
+
"default": "./fesm2022/bravura-ui-stepper.mjs"
|
|
163
121
|
},
|
|
164
122
|
"./selection-panel": {
|
|
165
123
|
"types": "./selection-panel/index.d.ts",
|
|
166
|
-
"
|
|
167
|
-
"
|
|
168
|
-
"
|
|
169
|
-
"node": "./fesm2015/bravura-ui-selection-panel.mjs",
|
|
170
|
-
"default": "./fesm2020/bravura-ui-selection-panel.mjs"
|
|
124
|
+
"esm2022": "./esm2022/selection-panel/bravura-ui-selection-panel.mjs",
|
|
125
|
+
"esm": "./esm2022/selection-panel/bravura-ui-selection-panel.mjs",
|
|
126
|
+
"default": "./fesm2022/bravura-ui-selection-panel.mjs"
|
|
171
127
|
},
|
|
172
128
|
"./skeletons": {
|
|
173
129
|
"types": "./skeletons/index.d.ts",
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
"node": "./fesm2015/bravura-ui-skeletons.mjs",
|
|
178
|
-
"default": "./fesm2020/bravura-ui-skeletons.mjs"
|
|
179
|
-
},
|
|
180
|
-
"./stepper": {
|
|
181
|
-
"types": "./stepper/index.d.ts",
|
|
182
|
-
"esm2020": "./esm2020/stepper/bravura-ui-stepper.mjs",
|
|
183
|
-
"es2020": "./fesm2020/bravura-ui-stepper.mjs",
|
|
184
|
-
"es2015": "./fesm2015/bravura-ui-stepper.mjs",
|
|
185
|
-
"node": "./fesm2015/bravura-ui-stepper.mjs",
|
|
186
|
-
"default": "./fesm2020/bravura-ui-stepper.mjs"
|
|
130
|
+
"esm2022": "./esm2022/skeletons/bravura-ui-skeletons.mjs",
|
|
131
|
+
"esm": "./esm2022/skeletons/bravura-ui-skeletons.mjs",
|
|
132
|
+
"default": "./fesm2022/bravura-ui-skeletons.mjs"
|
|
187
133
|
},
|
|
188
134
|
"./tooltip": {
|
|
189
135
|
"types": "./tooltip/index.d.ts",
|
|
190
|
-
"
|
|
191
|
-
"
|
|
192
|
-
"
|
|
193
|
-
|
|
194
|
-
|
|
136
|
+
"esm2022": "./esm2022/tooltip/bravura-ui-tooltip.mjs",
|
|
137
|
+
"esm": "./esm2022/tooltip/bravura-ui-tooltip.mjs",
|
|
138
|
+
"default": "./fesm2022/bravura-ui-tooltip.mjs"
|
|
139
|
+
},
|
|
140
|
+
"./radio-panel/testing": {
|
|
141
|
+
"types": "./radio-panel/testing/index.d.ts",
|
|
142
|
+
"esm2022": "./esm2022/radio-panel/testing/bravura-ui-radio-panel-testing.mjs",
|
|
143
|
+
"esm": "./esm2022/radio-panel/testing/bravura-ui-radio-panel-testing.mjs",
|
|
144
|
+
"default": "./fesm2022/bravura-ui-radio-panel-testing.mjs"
|
|
145
|
+
},
|
|
146
|
+
"./alert/testing": {
|
|
147
|
+
"types": "./alert/testing/index.d.ts",
|
|
148
|
+
"esm2022": "./esm2022/alert/testing/bravura-ui-alert-testing.mjs",
|
|
149
|
+
"esm": "./esm2022/alert/testing/bravura-ui-alert-testing.mjs",
|
|
150
|
+
"default": "./fesm2022/bravura-ui-alert-testing.mjs"
|
|
195
151
|
}
|
|
196
152
|
},
|
|
197
153
|
"sideEffects": false
|
|
@@ -56,5 +56,5 @@ export declare class PanelComponent implements OnInit {
|
|
|
56
56
|
/** @ignore */
|
|
57
57
|
_resized(width: number): void;
|
|
58
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<PanelComponent, [null, { host: true; }]>;
|
|
59
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PanelComponent, "bui-panel", never, { "backdropClass": "backdropClass"; "cardClass": "cardClass"; "color": "color"; "appearance": "appearance"; "breakpoint": "breakpoint"; }, {}, never, ["*"], false, never>;
|
|
59
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PanelComponent, "bui-panel", never, { "backdropClass": { "alias": "backdropClass"; "required": false; }; "cardClass": { "alias": "cardClass"; "required": false; }; "color": { "alias": "color"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "breakpoint": { "alias": "breakpoint"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
60
60
|
}
|
|
@@ -22,5 +22,5 @@ export declare class TintedDirective implements OnInit, OnDestroy {
|
|
|
22
22
|
ngOnDestroy(): void;
|
|
23
23
|
private generateStyle;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<TintedDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TintedDirective, "[buiTinted], bui-panel", ["buiTinted"], { "color": "buiTinted"; }, {}, never, never, false, never>;
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TintedDirective, "[buiTinted], bui-panel", ["buiTinted"], { "color": { "alias": "buiTinted"; "required": false; }; }, {}, never, never, false, never>;
|
|
26
26
|
}
|
|
@@ -62,5 +62,5 @@ export declare class PhoneNumberDirective implements OnInit, OnChanges, OnDestro
|
|
|
62
62
|
private initElement;
|
|
63
63
|
private _patchValueByState;
|
|
64
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneNumberDirective, [null, { optional: true; }, { optional: true; }, { optional: true; }, null, null, { optional: true; }]>;
|
|
65
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PhoneNumberDirective, "[buiTelInput], input([type=tel])[ngModel], input([type=tel])[formControlName], input([type=tel])[formControl]", never, { "telType": "telType"; "telDropdown": "telDropdown"; }, { "telCountryChange": "telCountryChange"; }, never, never, false, never>;
|
|
65
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PhoneNumberDirective, "[buiTelInput], input([type=tel])[ngModel], input([type=tel])[formControlName], input([type=tel])[formControl]", never, { "telType": { "alias": "telType"; "required": false; }; "telDropdown": { "alias": "telDropdown"; "required": false; }; }, { "telCountryChange": "telCountryChange"; }, never, never, false, never>;
|
|
66
66
|
}
|
|
@@ -12,7 +12,7 @@ export declare const PHONE_VALIDATOR: StaticProvider;
|
|
|
12
12
|
/**
|
|
13
13
|
* @internal
|
|
14
14
|
*/
|
|
15
|
-
export
|
|
15
|
+
export type TEL_TYPE = 'MOBILE' | 'FIXED_LINE_OR_MOBILE' | 'FIXED_LINE';
|
|
16
16
|
/**
|
|
17
17
|
* @internal
|
|
18
18
|
*/
|
|
@@ -27,5 +27,5 @@ export declare class PhoneNumberValidator implements Validator {
|
|
|
27
27
|
[key: string]: any;
|
|
28
28
|
} | null;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneNumberValidator, never>;
|
|
30
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PhoneNumberValidator, "[buiTelInput], input([type=tel])[ngModel], input([type=tel])[formControlName], input([type=tel])[formControl]", never, { "telType": "telType"; }, {}, never, never, false, never>;
|
|
30
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PhoneNumberValidator, "[buiTelInput], input([type=tel])[ngModel], input([type=tel])[formControlName], input([type=tel])[formControl]", never, { "telType": { "alias": "telType"; "required": false; }; }, {}, never, never, false, never>;
|
|
31
31
|
}
|
|
@@ -18,5 +18,5 @@ export declare class RadioPanelItemComponent extends MatRadioButton {
|
|
|
18
18
|
contentOnSelect: TemplateRef<any>;
|
|
19
19
|
constructor(radioGroup: MatRadioGroup, elementRef: ElementRef, _changeDetector: ChangeDetectorRef, _focusMonitor: FocusMonitor, _radioDispatcher: UniqueSelectionDispatcher, animationMode?: string, _providerOverride?: MatRadioDefaultOptions, tabIndex?: string);
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioPanelItemComponent, [{ optional: true; }, null, null, null, null, { optional: true; }, { optional: true; }, { attribute: "tabindex"; }]>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioPanelItemComponent, "bui-radio-panel-item", ["matRadioButton"], { "disableRipple": "disableRipple"; "tabIndex": "tabIndex"; "title": "title"; "_tickPosition": "_tickPosition"; "tickPosition": "tickPosition"; }, {}, ["contentOnSelect"], ["[buiRadioItemHeadingEnd]", "*"], false, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioPanelItemComponent, "bui-radio-panel-item", ["matRadioButton"], { "disableRipple": { "alias": "disableRipple"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "title": { "alias": "title"; "required": false; }; "_tickPosition": { "alias": "_tickPosition"; "required": false; }; "tickPosition": { "alias": "tickPosition"; "required": false; }; }, {}, ["contentOnSelect"], ["[buiRadioItemHeadingEnd]", "*"], false, never>;
|
|
22
22
|
}
|
|
@@ -34,5 +34,5 @@ export declare class RadioPanelComponent extends MatRadioGroup implements OnChan
|
|
|
34
34
|
/** @ignore */
|
|
35
35
|
ngOnChanges(changes: SimpleChanges): void;
|
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioPanelComponent, never>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioPanelComponent, "bui-radio-panel", ["buiRadioPanel"], { "panelWidth": "panelWidth"; "direction": "direction"; "color": "color"; "tickPosition": "tickPosition"; }, {}, ["_radios"], ["*"], false, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioPanelComponent, "bui-radio-panel", ["buiRadioPanel"], { "panelWidth": { "alias": "panelWidth"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "color": { "alias": "color"; "required": false; }; "tickPosition": { "alias": "tickPosition"; "required": false; }; }, {}, ["_radios"], ["*"], false, never>;
|
|
38
38
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ComponentHarnessConstructor, HarnessPredicate } from '@angular/cdk/testing';
|
|
2
|
-
import { MatRadioButtonHarness,
|
|
2
|
+
import { MatRadioButtonHarness, MatRadioGroupHarness, RadioButtonHarnessFilters } from '@angular/material/radio/testing';
|
|
3
3
|
export interface RadioPanelItemHarnessFilters extends RadioButtonHarnessFilters {
|
|
4
4
|
value?: string | RegExp;
|
|
5
5
|
}
|
|
@@ -19,10 +19,9 @@ export declare class RadioPanelItemHarness extends MatRadioButtonHarness {
|
|
|
19
19
|
getLabelCssValue(prop: string): Promise<string>;
|
|
20
20
|
getBorderColor(): Promise<string>;
|
|
21
21
|
}
|
|
22
|
-
export declare class RadioPanelHarness extends
|
|
22
|
+
export declare class RadioPanelHarness extends MatRadioGroupHarness {
|
|
23
23
|
/** The selector for the host element of a `MatRadioGroup` instance. */
|
|
24
24
|
static hostSelector: string;
|
|
25
|
-
protected _buttonClass: typeof RadioPanelItemHarness;
|
|
26
25
|
getItem: (filters: RadioPanelItemHarnessFilters) => Promise<RadioPanelItemHarness>;
|
|
27
26
|
getFlexDir(): Promise<string>;
|
|
28
27
|
}
|
|
@@ -73,5 +73,5 @@ export declare class SelectionPanelItemComponent implements AfterContentInit {
|
|
|
73
73
|
private _setDisabled;
|
|
74
74
|
private _setChecked;
|
|
75
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectionPanelItemComponent, never>;
|
|
76
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectionPanelItemComponent, "bui-selection-panel-item", never, { "title": "title"; "shadedHeader": "shadedHeader"; "selectable": "selectable"; "disabled": "disabled"; "value": "value"; "checked": "checked"; "color": "color"; }, {}, never, ["[buiSelectionItemHeadingEnd]", "[buiSelectionItemSubtitle]", "*"], false, never>;
|
|
76
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectionPanelItemComponent, "bui-selection-panel-item", never, { "title": { "alias": "title"; "required": false; }; "shadedHeader": { "alias": "shadedHeader"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, ["[buiSelectionItemHeadingEnd]", "[buiSelectionItemSubtitle]", "*"], false, never>;
|
|
77
77
|
}
|
|
@@ -63,5 +63,5 @@ export declare class SelectionPanelDirective implements ControlValueAccessor, Se
|
|
|
63
63
|
/** @ignore */
|
|
64
64
|
ngOnChanges(changes: SimpleChanges): void;
|
|
65
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectionPanelDirective, never>;
|
|
66
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SelectionPanelDirective, "bui-selection-panel", ["buiSelectionPanel"], { "color": "color"; "selectByHeader": "selectByHeader"; }, {}, ["_items"], never, false, never>;
|
|
66
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SelectionPanelDirective, "bui-selection-panel", ["buiSelectionPanel"], { "color": { "alias": "color"; "required": false; }; "selectByHeader": { "alias": "selectByHeader"; "required": false; }; }, {}, ["_items"], never, false, never>;
|
|
67
67
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { AfterViewChecked, ElementRef, InjectionToken } from '@angular/core';
|
|
2
2
|
import { SkeletonLoaderComponent } from './skeleton-loader.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export
|
|
4
|
+
export type SkeletonPreset = {
|
|
5
5
|
viewBox: string;
|
|
6
6
|
content: string;
|
|
7
7
|
};
|
|
8
|
-
export
|
|
8
|
+
export type SkeletonPresets = {
|
|
9
9
|
[key: string]: SkeletonPreset;
|
|
10
10
|
};
|
|
11
11
|
export declare const SKELETON_PRESETS: InjectionToken<SkeletonPresets>;
|
|
@@ -19,5 +19,5 @@ export declare class SkeletonLoaderPresetsDirective implements AfterViewChecked
|
|
|
19
19
|
constructor(_skeletonComponent: SkeletonLoaderComponent, _elementRef: ElementRef<HTMLElement>, _presetList: SkeletonPresets[]);
|
|
20
20
|
ngAfterViewChecked(): void;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonLoaderPresetsDirective, [{ host: true; }, null, null]>;
|
|
22
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SkeletonLoaderPresetsDirective, "bui-skeleton[preset]", never, { "preset": "preset"; }, {}, never, never, false, never>;
|
|
22
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SkeletonLoaderPresetsDirective, "bui-skeleton[preset]", never, { "preset": { "alias": "preset"; "required": false; }; }, {}, never, never, false, never>;
|
|
23
23
|
}
|
|
@@ -70,5 +70,5 @@ export declare class StepperComponent extends CdkStepper implements AfterContent
|
|
|
70
70
|
/** @ignore */
|
|
71
71
|
_startStepTransition(): void;
|
|
72
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepperComponent, [{ optional: true; }, null, null, null, { self: true; }, { optional: true; skipSelf: true; }]>;
|
|
73
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "bui-stepper, [buiStepper]", ["buiStepper", "matStepper", "matVerticalStepper", "matHorizontalStepper"], { "selectedIndex": "selectedIndex"; "disableRipple": "disableRipple"; "color": "color"; "indicatorFormatter": "indicatorFormatter"; "nextStepLabelPrefix": "nextStepLabelPrefix"; }, { "animationDone": "animationDone"; }, ["_steps", "_icons"], never, false, never>;
|
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "bui-stepper, [buiStepper]", ["buiStepper", "matStepper", "matVerticalStepper", "matHorizontalStepper"], { "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "disableRipple": { "alias": "disableRipple"; "required": false; }; "color": { "alias": "color"; "required": false; }; "indicatorFormatter": { "alias": "indicatorFormatter"; "required": false; }; "nextStepLabelPrefix": { "alias": "nextStepLabelPrefix"; "required": false; }; }, { "animationDone": "animationDone"; }, ["_steps", "_icons"], never, false, never>;
|
|
74
74
|
}
|
package/theme/_bui-card.scss
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
@use 'sass:map';
|
|
2
|
-
|
|
3
|
-
@mixin bui-card($color-config) {
|
|
4
|
-
$bui-card-header-text-color: var(--bui-card-header-text-color, #19315b);
|
|
5
|
-
$bui-card-header-background-color: var(--bui-card-header-background-color, #fafafa);
|
|
6
|
-
|
|
7
|
-
@if map.get($color-config, 'is-dark') {
|
|
8
|
-
$bui-card-header-text-color: var(--bui-card-header-text-color-dark-theme, white);
|
|
9
|
-
$bui-card-header-background-color: var(--bui-card-header-background-color-dark-theme, inherit);
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.bui-card-flat.mat-mdc-card,
|
|
13
|
-
.bui-card-shaded.mat-mdc-card {
|
|
14
|
-
border-radius: 4px;
|
|
15
|
-
display: flex;
|
|
16
|
-
flex-direction: column;
|
|
17
|
-
|
|
18
|
-
.mat-mdc-card-header {
|
|
19
|
-
padding: 16px;
|
|
20
|
-
|
|
21
|
-
.mat-mdc-card-title {
|
|
22
|
-
font-size: 16px;
|
|
23
|
-
color: $bui-card-header-text-color;
|
|
24
|
-
margin-bottom: 0;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.mat-mdc-card-title + .mat-mdc-card-subtitle {
|
|
28
|
-
margin-top: 0;
|
|
29
|
-
margin-bottom: 0;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.mat-mdc-card-content {
|
|
34
|
-
flex: 1;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.mat-mdc-card-header + .mat-mdc-card-content {
|
|
38
|
-
padding-top: 16px;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.bui-card-flat.mat-mdc-card {
|
|
43
|
-
box-shadow: none;
|
|
44
|
-
border: 1px solid #e0e0e0;
|
|
45
|
-
|
|
46
|
-
.mat-mdc-card-header {
|
|
47
|
-
border-bottom: 1px solid #e0e0e0;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.bui-card-shaded.mat-mdc-card {
|
|
52
|
-
.mat-mdc-card-header {
|
|
53
|
-
background: $bui-card-header-background-color;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
}
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
|
|
3
|
+
@mixin bui-card($color-config) {
|
|
4
|
+
$bui-card-header-text-color: var(--bui-card-header-text-color, #19315b);
|
|
5
|
+
$bui-card-header-background-color: var(--bui-card-header-background-color, #fafafa);
|
|
6
|
+
|
|
7
|
+
@if map.get($color-config, 'is-dark') {
|
|
8
|
+
$bui-card-header-text-color: var(--bui-card-header-text-color-dark-theme, white);
|
|
9
|
+
$bui-card-header-background-color: var(--bui-card-header-background-color-dark-theme, inherit);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.bui-card-flat.mat-mdc-card,
|
|
13
|
+
.bui-card-shaded.mat-mdc-card {
|
|
14
|
+
border-radius: 4px;
|
|
15
|
+
display: flex;
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
|
|
18
|
+
.mat-mdc-card-header {
|
|
19
|
+
padding: 16px;
|
|
20
|
+
|
|
21
|
+
.mat-mdc-card-title {
|
|
22
|
+
font-size: 16px;
|
|
23
|
+
color: $bui-card-header-text-color;
|
|
24
|
+
margin-bottom: 0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.mat-mdc-card-title + .mat-mdc-card-subtitle {
|
|
28
|
+
margin-top: 0;
|
|
29
|
+
margin-bottom: 0;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.mat-mdc-card-content {
|
|
34
|
+
flex: 1;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.mat-mdc-card-header + .mat-mdc-card-content {
|
|
38
|
+
padding-top: 16px;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.bui-card-flat.mat-mdc-card {
|
|
43
|
+
box-shadow: none;
|
|
44
|
+
border: 1px solid #e0e0e0;
|
|
45
|
+
|
|
46
|
+
.mat-mdc-card-header {
|
|
47
|
+
border-bottom: 1px solid #e0e0e0;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.bui-card-shaded.mat-mdc-card {
|
|
52
|
+
.mat-mdc-card-header {
|
|
53
|
+
background: $bui-card-header-background-color;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
package/theme/_ui-theme.scss
CHANGED
|
@@ -39,12 +39,12 @@ $mat-background-extract: (
|
|
|
39
39
|
transition: $border-color-transition;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
-
$color-config: mat.get-color-config($theme);
|
|
42
|
+
$color-config: mat.m2-get-color-config($theme);
|
|
43
43
|
@if $color-config != null {
|
|
44
44
|
@include card.bui-card($color-config);
|
|
45
45
|
@each $p in (primary, accent, warn) {
|
|
46
46
|
$primary-palette: map.get($color-config, $p);
|
|
47
|
-
$c: mat.get-color-from-palette($primary-palette, text);
|
|
47
|
+
$c: mat.m2-get-color-from-palette($primary-palette, text);
|
|
48
48
|
@include apply-color($p, $c, $border-color-transition);
|
|
49
49
|
}
|
|
50
50
|
|
|
@@ -64,7 +64,7 @@ $mat-background-extract: (
|
|
|
64
64
|
.bui-host {
|
|
65
65
|
@each $p in (primary, accent, warn) {
|
|
66
66
|
$primary-palette: map.get($color-config, $p);
|
|
67
|
-
$c: mat.get-color-from-palette($primary-palette, text);
|
|
67
|
+
$c: mat.m2-get-color-from-palette($primary-palette, text);
|
|
68
68
|
--bui-color-#{$p}: #{$c};
|
|
69
69
|
}
|
|
70
70
|
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
body {
|
|
2
|
-
box-sizing: border-box;
|
|
3
|
-
}
|
|
1
|
+
body {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
body {
|
|
2
|
-
box-sizing: border-box;
|
|
3
|
-
}
|
|
1
|
+
body {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
}
|