@digital-ai/dot-components 1.6.0 → 1.8.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/CHANGE_LOG.md +100 -1
- package/dot-components.esm.js +3398 -3315
- package/dot-components.umd.js +1137 -536
- package/lib/components/accordion/Accordion.styles.d.ts +0 -1
- package/lib/components/app-toolbar/AppToolbar.d.ts +4 -2
- package/lib/components/app-toolbar/AppToolbar.stories.data.d.ts +15 -0
- package/lib/components/app-toolbar/AppToolbar.stories.styles.d.ts +2 -0
- package/lib/components/auto-complete/AutoComplete.d.ts +23 -8
- package/lib/components/auto-complete/AutoComplete.styles.d.ts +2 -0
- package/lib/components/auto-complete/Autocomplete.stories.data.d.ts +21 -0
- package/lib/components/auto-complete/utils/helpers.d.ts +7 -0
- package/lib/components/breadcrumbs/Breadcrumbs.d.ts +3 -1
- package/lib/components/breadcrumbs/Breadcrumbs.data.d.ts +1 -0
- package/lib/components/drawer/Drawer.d.ts +4 -4
- package/lib/components/index.d.ts +5 -11
- package/lib/components/input-form-fields/Input.stories.data.d.ts +13 -0
- package/lib/components/input-form-fields/InputFormFields.propTypes.d.ts +1 -1
- package/lib/components/input-form-fields/InputSelect.d.ts +8 -1
- package/lib/components/list/List.stories.data.d.ts +1 -1
- package/lib/components/list/ListItem.styles.d.ts +1 -1
- package/lib/components/sidebar/Sidebar.stories.data.d.ts +91 -0
- package/lib/components/table/Table.d.ts +4 -1
- package/lib/components/table/Table.stories.data.d.ts +2 -0
- package/lib/components/table/TableBody.d.ts +4 -1
- package/lib/components/table/TableBodyCheckboxCell.d.ts +8 -0
- package/lib/components/table/TableBodyCheckboxCell.styles.d.ts +3 -0
- package/lib/components/table/TableHeader.d.ts +3 -1
- package/lib/components/table/TableHeaderCheckboxCell.d.ts +8 -0
- package/lib/components/table/TableHeaderCheckboxCell.styles.d.ts +3 -0
- package/lib/components/table/TableRow.d.ts +4 -1
- package/lib/components/table/TableRow.styles.d.ts +2 -0
- package/lib/components/table/TableSelectionToolbar.d.ts +7 -0
- package/lib/components/table/TableSelectionToolbar.styles.d.ts +3 -0
- package/lib/components/table/index.d.ts +10 -0
- package/lib/components/table/utils/helpers.d.ts +2 -0
- package/lib/components/table/utils/models.d.ts +21 -0
- package/package.json +3 -2
package/CHANGE_LOG.md
CHANGED
|
@@ -1,5 +1,104 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.8.0](https://github.com/digital-ai/dot-components/tree/1.8.0) (02/02/2022)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.7.0...1.8.0)
|
|
6
|
+
|
|
7
|
+
**Features:**
|
|
8
|
+
|
|
9
|
+
- Add option for autocomplete component [\#956](https://github.com/digital-ai/dot-components/issues/956)
|
|
10
|
+
- S-76952: `AutoComplete`: Add dense prop [\#976](https://github.com/digital-ai/dot-components/pull/976) ([dmiletic85](https://github.com/dmiletic85))
|
|
11
|
+
- S-81503: `Autocomplete` Improve functionality for adding new item [\#957](https://github.com/digital-ai/dot-components/pull/957) ([dmiletic85](https://github.com/dmiletic85))
|
|
12
|
+
|
|
13
|
+
**Fixed bugs:**
|
|
14
|
+
|
|
15
|
+
- D-19722: `Table`: Fix Storybook issues by refactoring Table's story. [\#974](https://github.com/digital-ai/dot-components/pull/974) ([dmiletic85](https://github.com/dmiletic85))
|
|
16
|
+
- D-19713: Do not show alert banner close button if onClose not provided [\#973](https://github.com/digital-ai/dot-components/pull/973) ([selsemore](https://github.com/selsemore))
|
|
17
|
+
|
|
18
|
+
**Merged pull requests:**
|
|
19
|
+
|
|
20
|
+
- S-76846: update to webpack 5 [\#940](https://github.com/digital-ai/dot-components/pull/940) ([CWSites](https://github.com/CWSites))
|
|
21
|
+
|
|
22
|
+
## [1.7.0](https://github.com/digital-ai/dot-components/tree/1.7.0) (01/28/2022)
|
|
23
|
+
|
|
24
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.6.2...1.7.0)
|
|
25
|
+
|
|
26
|
+
**Features:**
|
|
27
|
+
|
|
28
|
+
- Allow option/value pairs as DotInputSelect options in addition to strings [\#958](https://github.com/digital-ai/dot-components/issues/958)
|
|
29
|
+
- `Autocomplete` expose internal `onInputChange` [\#948](https://github.com/digital-ai/dot-components/issues/948)
|
|
30
|
+
- `Autocomplete` async options [\#946](https://github.com/digital-ai/dot-components/issues/946)
|
|
31
|
+
- `InputText` Component, Ability to add htmlElement\(hyperlink\) inside helperText property [\#831](https://github.com/digital-ai/dot-components/issues/831)
|
|
32
|
+
- `Menu` Improve support for custom open/close of `mainMenu` [\#773](https://github.com/digital-ai/dot-components/issues/773)
|
|
33
|
+
- S-81597: Allow for option/value pairs as DotInputSelect options [\#960](https://github.com/digital-ai/dot-components/pull/960) ([selsemore](https://github.com/selsemore))
|
|
34
|
+
- S-81394: `AppToolbar`: Improve support for custom open/close of `mainMenu` [\#953](https://github.com/digital-ai/dot-components/pull/953) ([dmiletic85](https://github.com/dmiletic85))
|
|
35
|
+
- S-81346: `Autocomplete` expose internal `onInputChange` [\#949](https://github.com/digital-ai/dot-components/pull/949) ([dmiletic85](https://github.com/dmiletic85))
|
|
36
|
+
- S-81317: `Autocomplete` async options [\#947](https://github.com/digital-ai/dot-components/pull/947) ([dmiletic85](https://github.com/dmiletic85))
|
|
37
|
+
- S-81304: `InputText`: Ability to add htmlElement\(hyperlink\) inside `helperText` property [\#945](https://github.com/digital-ai/dot-components/pull/945) ([dmiletic85](https://github.com/dmiletic85))
|
|
38
|
+
|
|
39
|
+
**Fixed bugs:**
|
|
40
|
+
|
|
41
|
+
- `Accordion`: `startIcon` is not aligned with the rest of the text [\#967](https://github.com/digital-ai/dot-components/issues/967)
|
|
42
|
+
- `IconButton`: `titleTooltip` deprecation console warning is displaying in the Storybook [\#965](https://github.com/digital-ai/dot-components/issues/965)
|
|
43
|
+
- `AppToolbar`: `fontSize` deprecation console warning is displaying [\#962](https://github.com/digital-ai/dot-components/issues/962)
|
|
44
|
+
- `Accordion`: Overflowing text when `noWrap` is set to `true` [\#959](https://github.com/digital-ai/dot-components/issues/959)
|
|
45
|
+
- Hamburger menu back button color is wrong [\#943](https://github.com/digital-ai/dot-components/issues/943)
|
|
46
|
+
- DotIconButton disableRipple prop is ignored [\#851](https://github.com/digital-ai/dot-components/issues/851)
|
|
47
|
+
- `Table` action menu items should be left aligned [\#794](https://github.com/digital-ai/dot-components/issues/794)
|
|
48
|
+
- D-19705: `Accordion`: `startIcon` is not aligned with the rest of the text [\#968](https://github.com/digital-ai/dot-components/pull/968) ([dmiletic85](https://github.com/dmiletic85))
|
|
49
|
+
- D-19700: `IconButton`: `titleTooltip` deprecation console warning is displaying in the Storybook [\#966](https://github.com/digital-ai/dot-components/pull/966) ([dmiletic85](https://github.com/dmiletic85))
|
|
50
|
+
- D-19697: `AppToolbar`: `fontSize` deprecation console warning is displaying [\#963](https://github.com/digital-ai/dot-components/pull/963) ([dmiletic85](https://github.com/dmiletic85))
|
|
51
|
+
- D-19691: `Accordion`: Overflowing text when `noWrap` is set to `true` [\#961](https://github.com/digital-ai/dot-components/pull/961) ([dmiletic85](https://github.com/dmiletic85))
|
|
52
|
+
- D-19558: `AppToolbar`: Hamburger menu back button color is wrong [\#955](https://github.com/digital-ai/dot-components/pull/955) ([dmiletic85](https://github.com/dmiletic85))
|
|
53
|
+
- D-19633: `Table` action menu items should be left aligned [\#954](https://github.com/digital-ai/dot-components/pull/954) ([dmiletic85](https://github.com/dmiletic85))
|
|
54
|
+
|
|
55
|
+
**Closed issues:**
|
|
56
|
+
|
|
57
|
+
- Deprecate `minWidth` prop on `Breadcrumbs` [\#777](https://github.com/digital-ai/dot-components/issues/777)
|
|
58
|
+
|
|
59
|
+
**Merged pull requests:**
|
|
60
|
+
|
|
61
|
+
- S-76846: upgrade to NX & storybook to latest `minor` release [\#951](https://github.com/digital-ai/dot-components/pull/951) ([CWSites](https://github.com/CWSites))
|
|
62
|
+
- S-76846: upgrade NX to latest [\#950](https://github.com/digital-ai/dot-components/pull/950) ([CWSites](https://github.com/CWSites))
|
|
63
|
+
- D-19517: Deprecate `minWidth` prop on Breadcrumbs [\#944](https://github.com/digital-ai/dot-components/pull/944) ([dmiletic85](https://github.com/dmiletic85))
|
|
64
|
+
- S-76846: Storybook updates [\#936](https://github.com/digital-ai/dot-components/pull/936) ([CWSites](https://github.com/CWSites))
|
|
65
|
+
|
|
66
|
+
## [1.6.2](https://github.com/digital-ai/dot-components/tree/1.6.2) (01/14/2022)
|
|
67
|
+
|
|
68
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.6.1...1.6.2)
|
|
69
|
+
|
|
70
|
+
**Features:**
|
|
71
|
+
|
|
72
|
+
- `Table` Need to have the ability add a checkbox to the table header for bulk actions [\#828](https://github.com/digital-ai/dot-components/issues/828)
|
|
73
|
+
- `DotTable` MultiSelect [\#817](https://github.com/digital-ai/dot-components/issues/817)
|
|
74
|
+
- S-80342: `DotTable` MultiSelect support [\#928](https://github.com/digital-ai/dot-components/pull/928) ([dmiletic85](https://github.com/dmiletic85))
|
|
75
|
+
|
|
76
|
+
**Fixed bugs:**
|
|
77
|
+
|
|
78
|
+
- `AppToolbar`: Unnecessary scrollbar on the menu [\#937](https://github.com/digital-ai/dot-components/issues/937)
|
|
79
|
+
- DotDrawer changes break existing component consumer [\#932](https://github.com/digital-ai/dot-components/issues/932)
|
|
80
|
+
- D-19520: `AppToolbar`: Unnecessary scrollbar on the menu [\#941](https://github.com/digital-ai/dot-components/pull/941) ([dmiletic85](https://github.com/dmiletic85))
|
|
81
|
+
- D-19474: DotDrawer fixes [\#939](https://github.com/digital-ai/dot-components/pull/939) ([selsemore](https://github.com/selsemore))
|
|
82
|
+
|
|
83
|
+
**Merged pull requests:**
|
|
84
|
+
|
|
85
|
+
- S-76846: storybook updates `develop` [\#935](https://github.com/digital-ai/dot-components/pull/935) ([CWSites](https://github.com/CWSites))
|
|
86
|
+
|
|
87
|
+
## [1.6.1](https://github.com/digital-ai/dot-components/tree/1.6.1) (01/10/2022)
|
|
88
|
+
|
|
89
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.6.0...1.6.1)
|
|
90
|
+
|
|
91
|
+
**Features:**
|
|
92
|
+
|
|
93
|
+
- S-78917: Character limit for breadcrumb items [\#921](https://github.com/digital-ai/dot-components/pull/921) ([monapatel91](https://github.com/monapatel91))
|
|
94
|
+
|
|
95
|
+
**Fixed bugs:**
|
|
96
|
+
|
|
97
|
+
- `1.6.0` - Sidebar links broken, import was moved [\#925](https://github.com/digital-ai/dot-components/issues/925)
|
|
98
|
+
- `Autocomplete` doesn't have `dot-input` class [\#923](https://github.com/digital-ai/dot-components/issues/923)
|
|
99
|
+
- D-19415: `1.6.0` - Sidebar links broken, import was moved [\#926](https://github.com/digital-ai/dot-components/pull/926) ([dmiletic85](https://github.com/dmiletic85))
|
|
100
|
+
- D-19390: `Autocomplete` doesn't have `dot-input` class [\#924](https://github.com/digital-ai/dot-components/pull/924) ([dmiletic85](https://github.com/dmiletic85))
|
|
101
|
+
|
|
3
102
|
## [1.6.0](https://github.com/digital-ai/dot-components/tree/1.6.0) (01/03/2022)
|
|
4
103
|
|
|
5
104
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.4...1.6.0)
|
|
@@ -446,7 +545,6 @@
|
|
|
446
545
|
**Merged pull requests:**
|
|
447
546
|
|
|
448
547
|
- New patch release [\#677](https://github.com/digital-ai/dot-components/pull/677) ([CWSites](https://github.com/CWSites))
|
|
449
|
-
- S-78572: Make entire sidebar backitem clickable [\#670](https://github.com/digital-ai/dot-components/pull/670) ([selsemore](https://github.com/selsemore))
|
|
450
548
|
|
|
451
549
|
## [1.0.9](https://github.com/digital-ai/dot-components/tree/1.0.9) (09/02/2021)
|
|
452
550
|
|
|
@@ -469,6 +567,7 @@
|
|
|
469
567
|
**Merged pull requests:**
|
|
470
568
|
|
|
471
569
|
- Release `1.0.8` [\#673](https://github.com/digital-ai/dot-components/pull/673) ([CWSites](https://github.com/CWSites))
|
|
570
|
+
- S-78572: Make entire sidebar backitem clickable [\#670](https://github.com/digital-ai/dot-components/pull/670) ([selsemore](https://github.com/selsemore))
|
|
472
571
|
- improving table component by fixing issues reported on github [\#668](https://github.com/digital-ai/dot-components/pull/668) ([monapatel91](https://github.com/monapatel91))
|
|
473
572
|
- S-78516 extra files being formatted [\#665](https://github.com/digital-ai/dot-components/pull/665) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
474
573
|
- S-78464: add main branch name [\#664](https://github.com/digital-ai/dot-components/pull/664) ([CWSites](https://github.com/CWSites))
|