@bravura/ui 1.5.0 → 1.6.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 +17 -3
- package/README.md +1 -1
- package/bundles/bravura-ui-discrete-input.umd.js +738 -0
- package/bundles/bravura-ui-discrete-input.umd.js.map +1 -0
- package/bundles/bravura-ui-form-field.umd.js +9 -2
- package/bundles/bravura-ui-form-field.umd.js.map +1 -1
- package/bundles/bravura-ui-radio-panel.umd.js +11 -3
- package/bundles/bravura-ui-radio-panel.umd.js.map +1 -1
- package/bundles/bravura-ui-selection-panel.umd.js +47 -8
- package/bundles/bravura-ui-selection-panel.umd.js.map +1 -1
- package/discrete-input/bravura-ui-discrete-input.d.ts +5 -0
- package/discrete-input/discrete-input.component.d.ts +138 -0
- package/discrete-input/discrete-input.module.d.ts +11 -0
- package/discrete-input/package.json +10 -0
- package/discrete-input/public-api.d.ts +2 -0
- package/esm2015/discrete-input/bravura-ui-discrete-input.js +5 -0
- package/esm2015/discrete-input/discrete-input.component.js +333 -0
- package/esm2015/discrete-input/discrete-input.module.js +20 -0
- package/esm2015/discrete-input/public-api.js +3 -0
- package/esm2015/form-field/form-field.component.js +11 -4
- package/esm2015/radio-panel/radio-panel.directive.js +13 -5
- package/esm2015/selection-panel/selection-panel-item.component.js +22 -3
- package/esm2015/selection-panel/selection-panel.directive.js +20 -3
- package/fesm2015/bravura-ui-discrete-input.js +355 -0
- package/fesm2015/bravura-ui-discrete-input.js.map +1 -0
- package/fesm2015/bravura-ui-form-field.js +10 -3
- package/fesm2015/bravura-ui-form-field.js.map +1 -1
- package/fesm2015/bravura-ui-radio-panel.js +11 -3
- package/fesm2015/bravura-ui-radio-panel.js.map +1 -1
- package/fesm2015/bravura-ui-selection-panel.js +41 -6
- package/fesm2015/bravura-ui-selection-panel.js.map +1 -1
- package/form-field/form-field.component.d.ts +2 -0
- package/package.json +1 -1
- package/radio-panel/radio-panel.directive.d.ts +8 -3
- package/selection-panel/selection-panel-item.component.d.ts +7 -0
- package/selection-panel/selection-panel.directive.d.ts +12 -3
- package/theme/_ui-theme.scss +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,24 @@
|
|
|
1
1
|
# Change history
|
|
2
2
|
|
|
3
|
+
## 1.6.0 (2021-09-28)
|
|
4
|
+
|
|
5
|
+
* feat(discrete-input): add new material form control - discrete input ([b9feadf](https://scm.bravurasolutions.net/projects/DIGI/repos/ui-components/commits/b9feadf))
|
|
6
|
+
* feat(selection-panel): add input property selectByHeader, defaul true ([631b8e9](https://scm.bravurasolutions.net/projects/DIGI/repos/ui-components/commits/631b8e9))
|
|
7
|
+
* fix(form-field): fix incorrect spacing in 'detach' appearance ([8035a66](https://scm.bravurasolutions.net/projects/DIGI/repos/ui-components/commits/8035a66))
|
|
8
|
+
* fix(form-field): fix issue with click event handling on 'detach' fields ([2ede5f8](https://scm.bravurasolutions.net/projects/DIGI/repos/ui-components/commits/2ede5f8))
|
|
9
|
+
* fix(radio-panel): changes to color not reflected to items immediately ([d75814d](https://scm.bravurasolutions.net/projects/DIGI/repos/ui-components/commits/d75814d))
|
|
10
|
+
* fix(theme): fix incorrect use of colours from theme config ([d3a15cd](https://scm.bravurasolutions.net/projects/DIGI/repos/ui-components/commits/d3a15cd))
|
|
11
|
+
* ci: add release and publish step ([e48e82e](https://scm.bravurasolutions.net/projects/DIGI/repos/ui-components/commits/e48e82e))
|
|
12
|
+
* ci: enable jenkins pipeline [wip] ([250569e](https://scm.bravurasolutions.net/projects/DIGI/repos/ui-components/commits/250569e))
|
|
13
|
+
* ci: enable maintenance releases on defined branch patterns ([044a589](https://scm.bravurasolutions.net/projects/DIGI/repos/ui-components/commits/044a589))
|
|
14
|
+
* ci: move chromatic to semantic release script ([14982b8](https://scm.bravurasolutions.net/projects/DIGI/repos/ui-components/commits/14982b8))
|
|
15
|
+
* ci: simplify jenkin pipeline stages [wip] ([aa074e1](https://scm.bravurasolutions.net/projects/DIGI/repos/ui-components/commits/aa074e1))
|
|
16
|
+
|
|
3
17
|
## 1.5.0 (2021-09-18)
|
|
4
18
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
19
|
+
- feat(selection-panel): add initial implementation of selection panel ([6277ccd](https://scm.bravurasolutions.net/projects/DIGI/repos/ui-components/commits/6277ccd))
|
|
20
|
+
- docs(storybook): use a lighter shade of primary palette for dark theme ([c854a24](https://scm.bravurasolutions.net/projects/DIGI/repos/ui-components/commits/c854a24))
|
|
21
|
+
- style(radio-panel): fix typos ([8e18ac8](https://scm.bravurasolutions.net/projects/DIGI/repos/ui-components/commits/8e18ac8))
|
|
8
22
|
|
|
9
23
|
## <small>1.4.6 (2021-09-17)</small>
|
|
10
24
|
|
package/README.md
CHANGED
|
@@ -75,7 +75,7 @@ $dark-theme: mat.define-dark-theme(
|
|
|
75
75
|
// apply component colors for dark theme, according to Angular Theming Guide
|
|
76
76
|
@include mat.all-component-colors($dark-theme);
|
|
77
77
|
// apply BUI component colors for dark theme
|
|
78
|
-
@include bui.apply-colors($theme);
|
|
78
|
+
@include bui.apply-colors($dark-theme);
|
|
79
79
|
}
|
|
80
80
|
```
|
|
81
81
|
|