@digital-ai/dot-components 1.6.2 → 1.7.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 +50 -6
- package/dot-components.esm.js +3098 -3350
- package/dot-components.umd.js +411 -158
- 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 +16 -5
- package/lib/components/auto-complete/Autocomplete.stories.data.d.ts +5 -0
- package/lib/components/breadcrumbs/Breadcrumbs.d.ts +1 -1
- package/lib/components/index.d.ts +1 -1
- 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/ListItem.styles.d.ts +1 -1
- package/lib/components/sidebar/Sidebar.stories.data.d.ts +7 -0
- package/package.json +1 -1
package/CHANGE_LOG.md
CHANGED
|
@@ -1,5 +1,49 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.7.0](https://github.com/digital-ai/dot-components/tree/1.7.0) (01/28/2022)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.6.2...1.7.0)
|
|
6
|
+
|
|
7
|
+
**Features:**
|
|
8
|
+
|
|
9
|
+
- Allow option/value pairs as DotInputSelect options in addition to strings [\#958](https://github.com/digital-ai/dot-components/issues/958)
|
|
10
|
+
- `Autocomplete` expose internal `onInputChange` [\#948](https://github.com/digital-ai/dot-components/issues/948)
|
|
11
|
+
- `Autocomplete` async options [\#946](https://github.com/digital-ai/dot-components/issues/946)
|
|
12
|
+
- `InputText` Component, Ability to add htmlElement\(hyperlink\) inside helperText property [\#831](https://github.com/digital-ai/dot-components/issues/831)
|
|
13
|
+
- `Menu` Improve support for custom open/close of `mainMenu` [\#773](https://github.com/digital-ai/dot-components/issues/773)
|
|
14
|
+
- 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))
|
|
15
|
+
- 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))
|
|
16
|
+
- S-81346: `Autocomplete` expose internal `onInputChange` [\#949](https://github.com/digital-ai/dot-components/pull/949) ([dmiletic85](https://github.com/dmiletic85))
|
|
17
|
+
- S-81317: `Autocomplete` async options [\#947](https://github.com/digital-ai/dot-components/pull/947) ([dmiletic85](https://github.com/dmiletic85))
|
|
18
|
+
- 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))
|
|
19
|
+
|
|
20
|
+
**Fixed bugs:**
|
|
21
|
+
|
|
22
|
+
- `Accordion`: `startIcon` is not aligned with the rest of the text [\#967](https://github.com/digital-ai/dot-components/issues/967)
|
|
23
|
+
- `IconButton`: `titleTooltip` deprecation console warning is displaying in the Storybook [\#965](https://github.com/digital-ai/dot-components/issues/965)
|
|
24
|
+
- `AppToolbar`: `fontSize` deprecation console warning is displaying [\#962](https://github.com/digital-ai/dot-components/issues/962)
|
|
25
|
+
- `Accordion`: Overflowing text when `noWrap` is set to `true` [\#959](https://github.com/digital-ai/dot-components/issues/959)
|
|
26
|
+
- Hamburger menu back button color is wrong [\#943](https://github.com/digital-ai/dot-components/issues/943)
|
|
27
|
+
- DotIconButton disableRipple prop is ignored [\#851](https://github.com/digital-ai/dot-components/issues/851)
|
|
28
|
+
- `Table` action menu items should be left aligned [\#794](https://github.com/digital-ai/dot-components/issues/794)
|
|
29
|
+
- 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))
|
|
30
|
+
- 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))
|
|
31
|
+
- D-19697: `AppToolbar`: `fontSize` deprecation console warning is displaying [\#963](https://github.com/digital-ai/dot-components/pull/963) ([dmiletic85](https://github.com/dmiletic85))
|
|
32
|
+
- 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))
|
|
33
|
+
- 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))
|
|
34
|
+
- 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))
|
|
35
|
+
|
|
36
|
+
**Closed issues:**
|
|
37
|
+
|
|
38
|
+
- Deprecate `minWidth` prop on `Breadcrumbs` [\#777](https://github.com/digital-ai/dot-components/issues/777)
|
|
39
|
+
|
|
40
|
+
**Merged pull requests:**
|
|
41
|
+
|
|
42
|
+
- 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))
|
|
43
|
+
- S-76846: upgrade NX to latest [\#950](https://github.com/digital-ai/dot-components/pull/950) ([CWSites](https://github.com/CWSites))
|
|
44
|
+
- D-19517: Deprecate `minWidth` prop on Breadcrumbs [\#944](https://github.com/digital-ai/dot-components/pull/944) ([dmiletic85](https://github.com/dmiletic85))
|
|
45
|
+
- S-76846: Storybook updates [\#936](https://github.com/digital-ai/dot-components/pull/936) ([CWSites](https://github.com/CWSites))
|
|
46
|
+
|
|
3
47
|
## [1.6.2](https://github.com/digital-ai/dot-components/tree/1.6.2) (01/14/2022)
|
|
4
48
|
|
|
5
49
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.6.1...1.6.2)
|
|
@@ -63,6 +107,7 @@
|
|
|
63
107
|
- D-19376: `Menu`: `maxVisibleItems` prop does not control visible items anymore [\#911](https://github.com/digital-ai/dot-components/pull/911) ([dmiletic85](https://github.com/dmiletic85))
|
|
64
108
|
- D-19366: `Menu`: Circular dependency [\#909](https://github.com/digital-ai/dot-components/pull/909) ([dmiletic85](https://github.com/dmiletic85))
|
|
65
109
|
- D-19355: `Breadcrumbs`: invalid combination of props [\#907](https://github.com/digital-ai/dot-components/pull/907) ([dmiletic85](https://github.com/dmiletic85))
|
|
110
|
+
- D-19129: `Table`: Cells in the Table component should be wrapped by `DotTypography` [\#900](https://github.com/digital-ai/dot-components/pull/900) ([dmiletic85](https://github.com/dmiletic85))
|
|
66
111
|
|
|
67
112
|
## [1.5.4](https://github.com/digital-ai/dot-components/tree/1.5.4) (12/28/2021)
|
|
68
113
|
|
|
@@ -74,13 +119,13 @@
|
|
|
74
119
|
- `Breadcrumbs` Display tooltip on last item \(on hover\) when it is clipped with ellipsis [\#878](https://github.com/digital-ai/dot-components/issues/878)
|
|
75
120
|
- 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))
|
|
76
121
|
- S-80871: `Sidebar` Changes on back arrow [\#896](https://github.com/digital-ai/dot-components/pull/896) ([dmiletic85](https://github.com/dmiletic85))
|
|
122
|
+
- 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))
|
|
77
123
|
|
|
78
124
|
**Fixed bugs:**
|
|
79
125
|
|
|
80
126
|
- Circular dependency [\#895](https://github.com/digital-ai/dot-components/issues/895)
|
|
81
127
|
- `AppToolbar` shouldn't have grey dividers [\#889](https://github.com/digital-ai/dot-components/issues/889)
|
|
82
128
|
- `List` Nested list drawer is not rendering correctly. [\#835](https://github.com/digital-ai/dot-components/issues/835)
|
|
83
|
-
- D-19129: `Table`: Cells in the Table component should be wrapped by `DotTypography` [\#900](https://github.com/digital-ai/dot-components/pull/900) ([dmiletic85](https://github.com/dmiletic85))
|
|
84
129
|
- D-19337: `List`: Circular dependency [\#897](https://github.com/digital-ai/dot-components/pull/897) ([dmiletic85](https://github.com/dmiletic85))
|
|
85
130
|
- D-19330: `AppToolbar` shouldn't have grey dividers [\#891](https://github.com/digital-ai/dot-components/pull/891) ([dmiletic85](https://github.com/dmiletic85))
|
|
86
131
|
- D-19200: `List` Nested list drawer is not rendering correctly [\#869](https://github.com/digital-ai/dot-components/pull/869) ([dmiletic85](https://github.com/dmiletic85))
|
|
@@ -109,10 +154,6 @@
|
|
|
109
154
|
|
|
110
155
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.1...1.5.2)
|
|
111
156
|
|
|
112
|
-
**Features:**
|
|
113
|
-
|
|
114
|
-
- 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))
|
|
115
|
-
|
|
116
157
|
**Fixed bugs:**
|
|
117
158
|
|
|
118
159
|
- `Apptoolbar`: primary logo link is hardcoded to `/` [\#879](https://github.com/digital-ai/dot-components/issues/879)
|
|
@@ -534,6 +575,10 @@
|
|
|
534
575
|
|
|
535
576
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.0.6...1.0.7)
|
|
536
577
|
|
|
578
|
+
**Features:**
|
|
579
|
+
|
|
580
|
+
- Custom main logo in the AppToolbar [\#637](https://github.com/digital-ai/dot-components/pull/637) ([monapatel91](https://github.com/monapatel91))
|
|
581
|
+
|
|
537
582
|
**Fixed bugs:**
|
|
538
583
|
|
|
539
584
|
- Link color is hardcoded for agility product [\#641](https://github.com/digital-ai/dot-components/issues/641)
|
|
@@ -557,7 +602,6 @@
|
|
|
557
602
|
|
|
558
603
|
**Features:**
|
|
559
604
|
|
|
560
|
-
- Custom main logo in the AppToolbar [\#637](https://github.com/digital-ai/dot-components/pull/637) ([monapatel91](https://github.com/monapatel91))
|
|
561
605
|
- New component alert banner [\#625](https://github.com/digital-ai/dot-components/pull/625) ([monapatel91](https://github.com/monapatel91))
|
|
562
606
|
|
|
563
607
|
**Fixed bugs:**
|