@digital-ai/dot-components 1.8.1 → 1.9.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 +25 -0
- package/index.esm.js +467 -225
- package/index.umd.js +603 -344
- 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/index.d.ts +7 -2
- 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/split-button/SplitButton.styles.d.ts +1 -1
- 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/package.json +1 -1
package/CHANGE_LOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.9.0](https://github.com/digital-ai/dot-components/tree/1.9.0) (02/15/2022)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.8.1...1.9.0)
|
|
6
|
+
|
|
7
|
+
**Features:**
|
|
8
|
+
|
|
9
|
+
- Add class prop into `ButtonToggleProps` [\#990](https://github.com/digital-ai/dot-components/issues/990)
|
|
10
|
+
- Expose `Divider` [\#989](https://github.com/digital-ai/dot-components/issues/989)
|
|
11
|
+
- Expose `Popper` [\#975](https://github.com/digital-ai/dot-components/issues/975)
|
|
12
|
+
- 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))
|
|
13
|
+
- S-81966: `Divider`: Create and expose `Divider` component [\#992](https://github.com/digital-ai/dot-components/pull/992) ([dmiletic85](https://github.com/dmiletic85))
|
|
14
|
+
- S-81656: `Popper`: Create and expose `Popper` component [\#988](https://github.com/digital-ai/dot-components/pull/988) ([dmiletic85](https://github.com/dmiletic85))
|
|
15
|
+
- 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))
|
|
16
|
+
- S-81693: `Menu`: add multi-level support [\#981](https://github.com/digital-ai/dot-components/pull/981) ([dmiletic85](https://github.com/dmiletic85))
|
|
17
|
+
|
|
18
|
+
**Fixed bugs:**
|
|
19
|
+
|
|
20
|
+
- `Drawer` close icon doesn't have enough padding [\#994](https://github.com/digital-ai/dot-components/issues/994)
|
|
21
|
+
- `Avatar` tooltip appears in wrong position [\#991](https://github.com/digital-ai/dot-components/issues/991)
|
|
22
|
+
- `data-testid` is assigned to multiple elements on SplitButton [\#982](https://github.com/digital-ai/dot-components/issues/982)
|
|
23
|
+
- 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))
|
|
24
|
+
- D-19932: `Avatar` tooltip appears in wrong position [\#995](https://github.com/digital-ai/dot-components/pull/995) ([dmiletic85](https://github.com/dmiletic85))
|
|
25
|
+
- 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))
|
|
26
|
+
- 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))
|
|
27
|
+
|
|
3
28
|
## [1.8.1](https://github.com/digital-ai/dot-components/tree/1.8.1) (02/07/2022)
|
|
4
29
|
|
|
5
30
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.8.0...1.8.1)
|