@digital-ai/dot-components 1.7.0 → 1.9.1
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 +77 -2
- package/{dot-components.esm.js → index.esm.js} +592 -309
- package/{dot-components.umd.js → index.umd.js} +781 -462
- package/lib/components/auto-complete/AutoComplete.d.ts +9 -5
- package/lib/components/auto-complete/AutoComplete.styles.d.ts +2 -0
- package/lib/components/auto-complete/Autocomplete.stories.data.d.ts +16 -0
- package/lib/components/auto-complete/utils/helpers.d.ts +7 -0
- package/lib/components/button-toggle/ButtonToggle.d.ts +9 -9
- package/lib/components/button-toggle/index.d.ts +1 -0
- package/lib/components/divider/Divider.d.ts +17 -0
- package/lib/components/divider/Divider.stories.styles.d.ts +2 -0
- package/lib/components/divider/Divider.styles.d.ts +2 -0
- package/lib/components/divider/index.d.ts +1 -0
- package/lib/components/drawer/Drawer.d.ts +4 -4
- package/lib/components/index.d.ts +9 -3
- package/lib/components/menu/Menu.d.ts +7 -1
- package/lib/components/menu/Menu.stories.data.d.ts +1 -0
- package/lib/components/menu/Menu.stories.styles.d.ts +2 -0
- package/lib/components/menu/MenuList.d.ts +26 -0
- package/lib/components/menu/MenuList.styles.d.ts +5 -0
- package/lib/components/menu/utils/helpers.d.ts +4 -0
- package/lib/components/popper/Popper.d.ts +18 -0
- package/lib/components/popper/Popper.data.d.ts +7 -0
- package/lib/components/popper/Popper.stories.data.d.ts +6 -0
- package/lib/components/popper/Popper.stories.styles.d.ts +4 -0
- package/lib/components/popper/Popper.styles.d.ts +3 -0
- package/lib/components/popper/index.d.ts +2 -0
- package/lib/components/sidebar/Sidebar.stories.data.d.ts +1 -0
- package/lib/components/split-button/SplitButton.styles.d.ts +1 -1
- package/lib/components/table/Table.data.d.ts +43 -0
- package/lib/components/table/Table.stories.data.d.ts +2 -0
- package/lib/components/table/Table.styles.d.ts +1 -1
- package/lib/components/table/TableSelectionToolbar.d.ts +2 -1
- package/lib/components/table/utils/models.d.ts +1 -0
- package/lib/testing-utils/index.d.ts +60 -0
- package/package.json +4 -4
package/CHANGE_LOG.md
CHANGED
|
@@ -1,5 +1,80 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.9.1](https://github.com/digital-ai/dot-components/tree/1.9.1) (02/17/2022)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.9.0...1.9.1)
|
|
6
|
+
|
|
7
|
+
**Features:**
|
|
8
|
+
|
|
9
|
+
- Remove obsolete `React` imports from Storybook files [\#998](https://github.com/digital-ai/dot-components/issues/998)
|
|
10
|
+
|
|
11
|
+
**Fixed bugs:**
|
|
12
|
+
|
|
13
|
+
- DotTable multiSelect does not work correctly across pages with dynamically paged tables [\#1004](https://github.com/digital-ai/dot-components/issues/1004)
|
|
14
|
+
- D-20004: Fix multiSelect for tables that use onUpdateData callback [\#1005](https://github.com/digital-ai/dot-components/pull/1005) ([selsemore](https://github.com/selsemore))
|
|
15
|
+
|
|
16
|
+
**Merged pull requests:**
|
|
17
|
+
|
|
18
|
+
- S-82055: Remove obsolete `React` imports from Storybook files [\#999](https://github.com/digital-ai/dot-components/pull/999) ([dmiletic85](https://github.com/dmiletic85))
|
|
19
|
+
|
|
20
|
+
## [1.9.0](https://github.com/digital-ai/dot-components/tree/1.9.0) (02/15/2022)
|
|
21
|
+
|
|
22
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.8.1...1.9.0)
|
|
23
|
+
|
|
24
|
+
**Features:**
|
|
25
|
+
|
|
26
|
+
- Add class prop into `ButtonToggleProps` [\#990](https://github.com/digital-ai/dot-components/issues/990)
|
|
27
|
+
- Expose `Divider` [\#989](https://github.com/digital-ai/dot-components/issues/989)
|
|
28
|
+
- Expose `Popper` [\#975](https://github.com/digital-ai/dot-components/issues/975)
|
|
29
|
+
- S-81968: `ButtonToggle`: Add class prop into `ButtonToggleProps` and export relevant types and interfaces [\#993](https://github.com/digital-ai/dot-components/pull/993) ([dmiletic85](https://github.com/dmiletic85))
|
|
30
|
+
- S-81966: `Divider`: Create and expose `Divider` component [\#992](https://github.com/digital-ai/dot-components/pull/992) ([dmiletic85](https://github.com/dmiletic85))
|
|
31
|
+
- S-81656: `Popper`: Create and expose `Popper` component [\#988](https://github.com/digital-ai/dot-components/pull/988) ([dmiletic85](https://github.com/dmiletic85))
|
|
32
|
+
- S-81802: Add 'Clear all' button to DotTable multiSelect toolbar [\#987](https://github.com/digital-ai/dot-components/pull/987) ([selsemore](https://github.com/selsemore))
|
|
33
|
+
- S-81693: `Menu`: add multi-level support [\#981](https://github.com/digital-ai/dot-components/pull/981) ([dmiletic85](https://github.com/dmiletic85))
|
|
34
|
+
|
|
35
|
+
**Fixed bugs:**
|
|
36
|
+
|
|
37
|
+
- `Drawer` close icon doesn't have enough padding [\#994](https://github.com/digital-ai/dot-components/issues/994)
|
|
38
|
+
- `Avatar` tooltip appears in wrong position [\#991](https://github.com/digital-ai/dot-components/issues/991)
|
|
39
|
+
- `data-testid` is assigned to multiple elements on SplitButton [\#982](https://github.com/digital-ai/dot-components/issues/982)
|
|
40
|
+
- D-19944: `Drawer` close icon doesn't have enough padding [\#996](https://github.com/digital-ai/dot-components/pull/996) ([dmiletic85](https://github.com/dmiletic85))
|
|
41
|
+
- D-19932: `Avatar` tooltip appears in wrong position [\#995](https://github.com/digital-ai/dot-components/pull/995) ([dmiletic85](https://github.com/dmiletic85))
|
|
42
|
+
- D-19816: `SplitButton`: `data-testid` is assigned to multiple elements [\#986](https://github.com/digital-ai/dot-components/pull/986) ([dmiletic85](https://github.com/dmiletic85))
|
|
43
|
+
- D-19820: Failing `Table` unit tests on NX major upgrade branch [\#983](https://github.com/digital-ai/dot-components/pull/983) ([dmiletic85](https://github.com/dmiletic85))
|
|
44
|
+
|
|
45
|
+
## [1.8.1](https://github.com/digital-ai/dot-components/tree/1.8.1) (02/07/2022)
|
|
46
|
+
|
|
47
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.8.0...1.8.1)
|
|
48
|
+
|
|
49
|
+
**Fixed bugs:**
|
|
50
|
+
|
|
51
|
+
- 1.8.0 reintroduces DotDrawer layout problem originally fixed by D-19474 [\#979](https://github.com/digital-ai/dot-components/issues/979)
|
|
52
|
+
- DotAlertBanner shows close icon when no onClose callback is provided [\#972](https://github.com/digital-ai/dot-components/issues/972)
|
|
53
|
+
- D-19803: Fix DotDrawer regression [\#980](https://github.com/digital-ai/dot-components/pull/980) ([selsemore](https://github.com/selsemore))
|
|
54
|
+
|
|
55
|
+
**Merged pull requests:**
|
|
56
|
+
|
|
57
|
+
- S-76846: NX major upgrade to `13.7.3` [\#952](https://github.com/digital-ai/dot-components/pull/952) ([CWSites](https://github.com/CWSites))
|
|
58
|
+
|
|
59
|
+
## [1.8.0](https://github.com/digital-ai/dot-components/tree/1.8.0) (02/02/2022)
|
|
60
|
+
|
|
61
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.7.0...1.8.0)
|
|
62
|
+
|
|
63
|
+
**Features:**
|
|
64
|
+
|
|
65
|
+
- Add option for autocomplete component [\#956](https://github.com/digital-ai/dot-components/issues/956)
|
|
66
|
+
- S-76952: `AutoComplete`: Add dense prop [\#976](https://github.com/digital-ai/dot-components/pull/976) ([dmiletic85](https://github.com/dmiletic85))
|
|
67
|
+
- S-81503: `Autocomplete` Improve functionality for adding new item [\#957](https://github.com/digital-ai/dot-components/pull/957) ([dmiletic85](https://github.com/dmiletic85))
|
|
68
|
+
|
|
69
|
+
**Fixed bugs:**
|
|
70
|
+
|
|
71
|
+
- 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))
|
|
72
|
+
- 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))
|
|
73
|
+
|
|
74
|
+
**Merged pull requests:**
|
|
75
|
+
|
|
76
|
+
- S-76846: update to webpack 5 [\#940](https://github.com/digital-ai/dot-components/pull/940) ([CWSites](https://github.com/CWSites))
|
|
77
|
+
|
|
3
78
|
## [1.7.0](https://github.com/digital-ai/dot-components/tree/1.7.0) (01/28/2022)
|
|
4
79
|
|
|
5
80
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.6.2...1.7.0)
|
|
@@ -118,7 +193,6 @@
|
|
|
118
193
|
- `sidebar` Changes on back arrow [\#890](https://github.com/digital-ai/dot-components/issues/890)
|
|
119
194
|
- `Breadcrumbs` Display tooltip on last item \(on hover\) when it is clipped with ellipsis [\#878](https://github.com/digital-ai/dot-components/issues/878)
|
|
120
195
|
- S-80939: `Menu`: Add option to customize item's height [\#902](https://github.com/digital-ai/dot-components/pull/902) ([dmiletic85](https://github.com/dmiletic85))
|
|
121
|
-
- S-80871: `Sidebar` Changes on back arrow [\#896](https://github.com/digital-ai/dot-components/pull/896) ([dmiletic85](https://github.com/dmiletic85))
|
|
122
196
|
- S-80855: Display tooltip on last breadcrumb item \(on hover\) when it is clipped with ellipsis [\#883](https://github.com/digital-ai/dot-components/pull/883) ([dmiletic85](https://github.com/dmiletic85))
|
|
123
197
|
|
|
124
198
|
**Fixed bugs:**
|
|
@@ -137,6 +211,7 @@
|
|
|
137
211
|
**Features:**
|
|
138
212
|
|
|
139
213
|
- `Sidebar` Ability to view the sub nav items without expanding the DotSidebar [\#787](https://github.com/digital-ai/dot-components/issues/787)
|
|
214
|
+
- S-80871: `Sidebar` Changes on back arrow [\#896](https://github.com/digital-ai/dot-components/pull/896) ([dmiletic85](https://github.com/dmiletic85))
|
|
140
215
|
|
|
141
216
|
**Fixed bugs:**
|
|
142
217
|
|
|
@@ -238,6 +313,7 @@
|
|
|
238
313
|
- Extended sidenav drawer should collapse when another drawer option is clicked [\#739](https://github.com/digital-ai/dot-components/issues/739)
|
|
239
314
|
- \#841 Fix DotDynamicForm initial form state for controls with initialValue false [\#842](https://github.com/digital-ai/dot-components/pull/842) ([selsemore](https://github.com/selsemore))
|
|
240
315
|
- D-19189: Extended sidenav drawer should collapse when another drawer option is clicked [\#830](https://github.com/digital-ai/dot-components/pull/830) ([dmiletic85](https://github.com/dmiletic85))
|
|
316
|
+
- D-19151: `DotBadge` generates console warnings [\#827](https://github.com/digital-ai/dot-components/pull/827) ([dmiletic85](https://github.com/dmiletic85))
|
|
241
317
|
|
|
242
318
|
**Merged pull requests:**
|
|
243
319
|
|
|
@@ -260,7 +336,6 @@
|
|
|
260
336
|
- Go back item in `Sidebar` is not aligned with rest of items [\#824](https://github.com/digital-ai/dot-components/issues/824)
|
|
261
337
|
- DotBadge generates console warnings [\#816](https://github.com/digital-ai/dot-components/issues/816)
|
|
262
338
|
- Sidebar scrollbar should be positioned on the very right of the sidebar [\#746](https://github.com/digital-ai/dot-components/issues/746)
|
|
263
|
-
- D-19151: `DotBadge` generates console warnings [\#827](https://github.com/digital-ai/dot-components/pull/827) ([dmiletic85](https://github.com/dmiletic85))
|
|
264
339
|
- D-19177: `Go back` item in `DotSidebar` is not aligned with rest of items [\#826](https://github.com/digital-ai/dot-components/pull/826) ([dmiletic85](https://github.com/dmiletic85))
|
|
265
340
|
|
|
266
341
|
## [1.3.4](https://github.com/digital-ai/dot-components/tree/1.3.4) (11/30/2021)
|