@digital-ai/dot-components 1.5.2 → 1.6.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 +148 -71
- package/dot-components.esm.js +948 -675
- package/dot-components.umd.js +953 -681
- package/lib/components/app-toolbar/AppToolbar.d.ts +1 -1
- package/lib/components/app-toolbar/AppToolbar.styles.d.ts +1 -1
- package/lib/components/auto-complete/AutoComplete.d.ts +3 -1
- package/lib/components/breadcrumbs/Breadcrumbs.d.ts +2 -0
- package/lib/components/breadcrumbs/Breadcrumbs.data.d.ts +3 -0
- package/lib/components/breadcrumbs/utils/helpers.d.ts +8 -2
- package/lib/components/breadcrumbs/utils/useBreadcrumbsObserver.d.ts +0 -2
- package/lib/components/breadcrumbs/utils/useBreadcrumbsResizer.d.ts +2 -0
- package/lib/components/drawer/Drawer.d.ts +11 -1
- package/lib/components/drawer/DrawerBody.d.ts +9 -0
- package/lib/components/drawer/DrawerBody.styles.d.ts +2 -0
- package/lib/components/drawer/DrawerFooter.d.ts +6 -0
- package/lib/components/drawer/DrawerFooter.styles.d.ts +2 -0
- package/lib/components/drawer/DrawerHeader.d.ts +8 -0
- package/lib/components/drawer/DrawerHeader.styles.d.ts +2 -0
- package/lib/components/helpers.d.ts +1 -0
- package/lib/components/index.d.ts +6 -5
- package/lib/components/list/List.d.ts +3 -86
- package/lib/components/list/List.stories.data.d.ts +1 -1
- package/lib/components/list/List.styles.d.ts +0 -42
- package/lib/components/list/ListItem.styles.d.ts +42 -0
- package/lib/components/list/NestedList.styles.d.ts +2 -0
- package/lib/components/list/index.d.ts +2 -0
- package/lib/components/list/utils/helpers.d.ts +2 -0
- package/lib/components/list/utils/models.d.ts +86 -0
- package/lib/components/menu/Menu.d.ts +2 -0
- package/lib/components/menu/Menu.stories.data.d.ts +23 -0
- package/lib/components/menu/Menu.stories.styles.d.ts +2 -0
- package/lib/components/menu/utils/constants.d.ts +3 -0
- package/lib/components/menu/utils/helpers.d.ts +12 -0
- package/lib/components/sidebar/Sidebar.d.ts +1 -1
- package/lib/components/sidebar/Sidebar.stories.data.d.ts +83 -0
- package/lib/components/table/Table.d.ts +10 -3
- package/lib/components/table/Table.stories.data.d.ts +34 -2
- package/lib/components/table/TableBody.d.ts +4 -2
- package/lib/components/table/TableBody.styles.d.ts +2 -0
- package/lib/components/table/TableCell.d.ts +6 -4
- package/lib/components/table/TableCell.styles.d.ts +3 -0
- package/lib/components/table/TableHeader.d.ts +8 -35
- package/lib/components/table/TableHeaderCell.d.ts +38 -0
- package/lib/components/table/TableHeaderCell.styles.d.ts +3 -0
- package/lib/components/table/TablePagination.d.ts +6 -4
- package/lib/components/table/TablePagination.styles.d.ts +5 -2
- package/lib/components/table/TableRow.d.ts +6 -2
- package/lib/components/table/utils/helpers.d.ts +7 -0
- package/package.json +3 -2
package/CHANGE_LOG.md
CHANGED
|
@@ -1,5 +1,90 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.6.1](https://github.com/digital-ai/dot-components/tree/1.6.1) (01/10/2022)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.6.0...1.6.1)
|
|
6
|
+
|
|
7
|
+
**Features:**
|
|
8
|
+
|
|
9
|
+
- S-78917: Character limit for breadcrumb items [\#921](https://github.com/digital-ai/dot-components/pull/921) ([monapatel91](https://github.com/monapatel91))
|
|
10
|
+
|
|
11
|
+
**Fixed bugs:**
|
|
12
|
+
|
|
13
|
+
- `1.6.0` - Sidebar links broken, import was moved [\#925](https://github.com/digital-ai/dot-components/issues/925)
|
|
14
|
+
- `Autocomplete` doesn't have `dot-input` class [\#923](https://github.com/digital-ai/dot-components/issues/923)
|
|
15
|
+
- 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))
|
|
16
|
+
- D-19390: `Autocomplete` doesn't have `dot-input` class [\#924](https://github.com/digital-ai/dot-components/pull/924) ([dmiletic85](https://github.com/dmiletic85))
|
|
17
|
+
|
|
18
|
+
## [1.6.0](https://github.com/digital-ai/dot-components/tree/1.6.0) (01/03/2022)
|
|
19
|
+
|
|
20
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.4...1.6.0)
|
|
21
|
+
|
|
22
|
+
**Features:**
|
|
23
|
+
|
|
24
|
+
- S-77210: Component - Drawer [\#893](https://github.com/digital-ai/dot-components/pull/893) ([monapatel91](https://github.com/monapatel91))
|
|
25
|
+
- 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))
|
|
26
|
+
|
|
27
|
+
**Fixed bugs:**
|
|
28
|
+
|
|
29
|
+
- `DynamicForm`: `isRequired` with value of `false` is not respected [\#918](https://github.com/digital-ai/dot-components/issues/918)
|
|
30
|
+
- `storybook`: issue while clicking on docs page of `menu` component [\#916](https://github.com/digital-ai/dot-components/issues/916)
|
|
31
|
+
- `DynamicForm` doesn't export all types [\#913](https://github.com/digital-ai/dot-components/issues/913)
|
|
32
|
+
- `AutoComplete` doesn't have `required` property [\#912](https://github.com/digital-ai/dot-components/issues/912)
|
|
33
|
+
- `Menu`: `maxVisibleItems` prop does not control visible items anymore [\#910](https://github.com/digital-ai/dot-components/issues/910)
|
|
34
|
+
- `Menu`: Circular dependency [\#908](https://github.com/digital-ai/dot-components/issues/908)
|
|
35
|
+
- `Breadcrumbs`: invalid combination of props [\#903](https://github.com/digital-ai/dot-components/issues/903)
|
|
36
|
+
- Styled component shouldn't need typeof [\#892](https://github.com/digital-ai/dot-components/issues/892)
|
|
37
|
+
- `Table` Cells in the Table component should be wrapped by DotTypography [\#805](https://github.com/digital-ai/dot-components/issues/805)
|
|
38
|
+
- `DotTable` Allow custom alignment on the last column of the table header [\#747](https://github.com/digital-ai/dot-components/issues/747)
|
|
39
|
+
- D-19382: `DynamicForm`: `isRequired` with value of `false` is not respected [\#919](https://github.com/digital-ai/dot-components/pull/919) ([dmiletic85](https://github.com/dmiletic85))
|
|
40
|
+
- D-19381: `Storybook`: issue while clicking on `Docs` page of `Menu` component [\#917](https://github.com/digital-ai/dot-components/pull/917) ([dmiletic85](https://github.com/dmiletic85))
|
|
41
|
+
- D-19379: `DynamicForm` doesn't export all types [\#915](https://github.com/digital-ai/dot-components/pull/915) ([dmiletic85](https://github.com/dmiletic85))
|
|
42
|
+
- D-19378: `AutoComplete` doesn't have `required` property [\#914](https://github.com/digital-ai/dot-components/pull/914) ([dmiletic85](https://github.com/dmiletic85))
|
|
43
|
+
- 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))
|
|
44
|
+
- D-19366: `Menu`: Circular dependency [\#909](https://github.com/digital-ai/dot-components/pull/909) ([dmiletic85](https://github.com/dmiletic85))
|
|
45
|
+
- D-19355: `Breadcrumbs`: invalid combination of props [\#907](https://github.com/digital-ai/dot-components/pull/907) ([dmiletic85](https://github.com/dmiletic85))
|
|
46
|
+
- 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))
|
|
47
|
+
|
|
48
|
+
## [1.5.4](https://github.com/digital-ai/dot-components/tree/1.5.4) (12/28/2021)
|
|
49
|
+
|
|
50
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.3...1.5.4)
|
|
51
|
+
|
|
52
|
+
**Features:**
|
|
53
|
+
|
|
54
|
+
- `sidebar` Changes on back arrow [\#890](https://github.com/digital-ai/dot-components/issues/890)
|
|
55
|
+
- `Breadcrumbs` Display tooltip on last item \(on hover\) when it is clipped with ellipsis [\#878](https://github.com/digital-ai/dot-components/issues/878)
|
|
56
|
+
- 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))
|
|
57
|
+
- S-80871: `Sidebar` Changes on back arrow [\#896](https://github.com/digital-ai/dot-components/pull/896) ([dmiletic85](https://github.com/dmiletic85))
|
|
58
|
+
|
|
59
|
+
**Fixed bugs:**
|
|
60
|
+
|
|
61
|
+
- Circular dependency [\#895](https://github.com/digital-ai/dot-components/issues/895)
|
|
62
|
+
- `AppToolbar` shouldn't have grey dividers [\#889](https://github.com/digital-ai/dot-components/issues/889)
|
|
63
|
+
- `List` Nested list drawer is not rendering correctly. [\#835](https://github.com/digital-ai/dot-components/issues/835)
|
|
64
|
+
- D-19337: `List`: Circular dependency [\#897](https://github.com/digital-ai/dot-components/pull/897) ([dmiletic85](https://github.com/dmiletic85))
|
|
65
|
+
- D-19330: `AppToolbar` shouldn't have grey dividers [\#891](https://github.com/digital-ai/dot-components/pull/891) ([dmiletic85](https://github.com/dmiletic85))
|
|
66
|
+
- 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))
|
|
67
|
+
|
|
68
|
+
## [1.5.3](https://github.com/digital-ai/dot-components/tree/1.5.3) (12/17/2021)
|
|
69
|
+
|
|
70
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.2...1.5.3)
|
|
71
|
+
|
|
72
|
+
**Features:**
|
|
73
|
+
|
|
74
|
+
- `Sidebar` Ability to view the sub nav items without expanding the DotSidebar [\#787](https://github.com/digital-ai/dot-components/issues/787)
|
|
75
|
+
|
|
76
|
+
**Fixed bugs:**
|
|
77
|
+
|
|
78
|
+
- Circular dependency on `useBreadcrumbsObserver` [\#881](https://github.com/digital-ai/dot-components/issues/881)
|
|
79
|
+
- `Sidebar` Collapsed sidebar with long divider titles [\#801](https://github.com/digital-ai/dot-components/issues/801)
|
|
80
|
+
- `List` Extended sidenav should open if custom onClick handler is supplied [\#767](https://github.com/digital-ai/dot-components/issues/767)
|
|
81
|
+
- D-19321: `Breadcrumbs` - Circular dependency on `useBreadcrumbsObserver` [\#882](https://github.com/digital-ai/dot-components/pull/882) ([dmiletic85](https://github.com/dmiletic85))
|
|
82
|
+
- S-79458: `Sidebar` & `List` updates [\#872](https://github.com/digital-ai/dot-components/pull/872) ([CWSites](https://github.com/CWSites))
|
|
83
|
+
|
|
84
|
+
**Merged pull requests:**
|
|
85
|
+
|
|
86
|
+
- S-80787: include changelog generation with release [\#877](https://github.com/digital-ai/dot-components/pull/877) ([CWSites](https://github.com/CWSites))
|
|
87
|
+
|
|
3
88
|
## [1.5.2](https://github.com/digital-ai/dot-components/tree/1.5.2) (12/17/2021)
|
|
4
89
|
|
|
5
90
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.1...1.5.2)
|
|
@@ -69,7 +154,6 @@
|
|
|
69
154
|
|
|
70
155
|
- S-76843: setup PR release template [\#853](https://github.com/digital-ai/dot-components/pull/853) ([CWSites](https://github.com/CWSites))
|
|
71
156
|
- S-76843 automation improvements III [\#852](https://github.com/digital-ai/dot-components/pull/852) ([CWSites](https://github.com/CWSites))
|
|
72
|
-
- Merge `master` back to `develop` [\#849](https://github.com/digital-ai/dot-components/pull/849) ([CWSites](https://github.com/CWSites))
|
|
73
157
|
|
|
74
158
|
## [1.3.6](https://github.com/digital-ai/dot-components/tree/1.3.6) (12/10/2021)
|
|
75
159
|
|
|
@@ -114,10 +198,6 @@
|
|
|
114
198
|
- D-19151: `DotBadge` generates console warnings [\#827](https://github.com/digital-ai/dot-components/pull/827) ([dmiletic85](https://github.com/dmiletic85))
|
|
115
199
|
- 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))
|
|
116
200
|
|
|
117
|
-
**Merged pull requests:**
|
|
118
|
-
|
|
119
|
-
- merge `master` \> `develop` [\#825](https://github.com/digital-ai/dot-components/pull/825) ([CWSites](https://github.com/CWSites))
|
|
120
|
-
|
|
121
201
|
## [1.3.4](https://github.com/digital-ai/dot-components/tree/1.3.4) (11/30/2021)
|
|
122
202
|
|
|
123
203
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.3.3...1.3.4)
|
|
@@ -129,6 +209,7 @@
|
|
|
129
209
|
- S-80369: Create `ProgressButton` component [\#822](https://github.com/digital-ai/dot-components/pull/822) ([dmiletic85](https://github.com/dmiletic85))
|
|
130
210
|
- S-79696: change size of collapse icon button, add tooltip [\#819](https://github.com/digital-ai/dot-components/pull/819) ([CWSites](https://github.com/CWSites))
|
|
131
211
|
- S-80264: Agility wrapper sandbox documentation [\#810](https://github.com/digital-ai/dot-components/pull/810) ([CWSites](https://github.com/CWSites))
|
|
212
|
+
- S-79569: `DotTable` - ability to add classes to rows & cells [\#799](https://github.com/digital-ai/dot-components/pull/799) ([monapatel91](https://github.com/monapatel91))
|
|
132
213
|
|
|
133
214
|
**Fixed bugs:**
|
|
134
215
|
|
|
@@ -141,14 +222,12 @@
|
|
|
141
222
|
- \#795 Address AlertBanner style issues [\#815](https://github.com/digital-ai/dot-components/pull/815) ([angel-git](https://github.com/angel-git))
|
|
142
223
|
- D-19138: Remove margin-bottom from breadcrumbs [\#813](https://github.com/digital-ai/dot-components/pull/813) ([angel-git](https://github.com/angel-git))
|
|
143
224
|
- D-19148: Input elements not displaying correctly when `border-box` is used in consumer components [\#812](https://github.com/digital-ai/dot-components/pull/812) ([dmiletic85](https://github.com/dmiletic85))
|
|
225
|
+
- \[D-18631\]\[D-18632\]\[D-18802\]:Focus state of avatar button and sidebar list item and inaccurate count of nav item [\#804](https://github.com/digital-ai/dot-components/pull/804) ([monapatel91](https://github.com/monapatel91))
|
|
144
226
|
|
|
145
227
|
**Merged pull requests:**
|
|
146
228
|
|
|
147
229
|
- S-79569: Do not set custom class for table cell if none was provided [\#808](https://github.com/digital-ai/dot-components/pull/808) ([selsemore](https://github.com/selsemore))
|
|
148
|
-
- \[D-18631\]\[D-18632\]\[D-18802\]:Focus state of avatar button and sidebar list item and inaccurate count of nav item [\#804](https://github.com/digital-ai/dot-components/pull/804) ([monapatel91](https://github.com/monapatel91))
|
|
149
230
|
- 17 nov2021 update icon [\#803](https://github.com/digital-ai/dot-components/pull/803) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
150
|
-
- S-79569: `DotTable` - ability to add classes to rows & cells [\#799](https://github.com/digital-ai/dot-components/pull/799) ([monapatel91](https://github.com/monapatel91))
|
|
151
|
-
- Bringing `master` back into `develop` [\#797](https://github.com/digital-ai/dot-components/pull/797) ([CWSites](https://github.com/CWSites))
|
|
152
231
|
|
|
153
232
|
## [1.3.3](https://github.com/digital-ai/dot-components/tree/1.3.3) (11/16/2021)
|
|
154
233
|
|
|
@@ -165,20 +244,19 @@
|
|
|
165
244
|
- Wrong z-index for autocomplete [\#779](https://github.com/digital-ai/dot-components/issues/779)
|
|
166
245
|
- DotInputText startIcon and endIcon are not aligned with text [\#764](https://github.com/digital-ai/dot-components/issues/764)
|
|
167
246
|
- Allow normal text formatting inside DotAlertBanner [\#738](https://github.com/digital-ai/dot-components/issues/738)
|
|
168
|
-
|
|
169
|
-
**Merged pull requests:**
|
|
170
|
-
|
|
171
|
-
- Next minor release [\#796](https://github.com/digital-ai/dot-components/pull/796) ([CWSites](https://github.com/CWSites))
|
|
172
247
|
- D-19069: `AutoComplete` z-index not behaving as expected [\#793](https://github.com/digital-ai/dot-components/pull/793) ([CWSites](https://github.com/CWSites))
|
|
173
248
|
- D-19067: slight vertical alignment of icon inside of input fields [\#792](https://github.com/digital-ai/dot-components/pull/792) ([CWSites](https://github.com/CWSites))
|
|
174
249
|
- D-19066: `AlertBanner` add `textVariant` prop for different font formatting [\#791](https://github.com/digital-ai/dot-components/pull/791) ([CWSites](https://github.com/CWSites))
|
|
175
250
|
- D-19065: `DotProgress` remove default `title` value [\#790](https://github.com/digital-ai/dot-components/pull/790) ([CWSites](https://github.com/CWSites))
|
|
251
|
+
|
|
252
|
+
**Merged pull requests:**
|
|
253
|
+
|
|
254
|
+
- Next minor release [\#796](https://github.com/digital-ai/dot-components/pull/796) ([CWSites](https://github.com/CWSites))
|
|
176
255
|
- S-80103: add `yarn format:check` to PR verification and release testing [\#789](https://github.com/digital-ai/dot-components/pull/789) ([CWSites](https://github.com/CWSites))
|
|
177
256
|
- S-79880: Add 'target' prop to ListItemProps [\#788](https://github.com/digital-ai/dot-components/pull/788) ([selsemore](https://github.com/selsemore))
|
|
178
257
|
- S-80109: Expose built-in `leaveDelay`, `onClose`, `open` props on `DotTooltip` component [\#786](https://github.com/digital-ai/dot-components/pull/786) ([dmiletic85](https://github.com/dmiletic85))
|
|
179
258
|
- S-76907: update ButtonToggle styles, update unit tests and add e2e tests [\#785](https://github.com/digital-ai/dot-components/pull/785) ([CWSites](https://github.com/CWSites))
|
|
180
259
|
- S-80048: product wrapper demo [\#782](https://github.com/digital-ai/dot-components/pull/782) ([CWSites](https://github.com/CWSites))
|
|
181
|
-
- bring `master` back into `develop` [\#781](https://github.com/digital-ai/dot-components/pull/781) ([CWSites](https://github.com/CWSites))
|
|
182
260
|
|
|
183
261
|
## [1.3.2](https://github.com/digital-ai/dot-components/tree/1.3.2) (11/05/2021)
|
|
184
262
|
|
|
@@ -189,35 +267,39 @@
|
|
|
189
267
|
- Add submitButtonProps prop to DotJsonSchemaForm component [\#774](https://github.com/digital-ai/dot-components/issues/774)
|
|
190
268
|
- Export all neutral colors [\#770](https://github.com/digital-ai/dot-components/issues/770)
|
|
191
269
|
|
|
270
|
+
**Fixed bugs:**
|
|
271
|
+
|
|
272
|
+
- \#770 Add Neutral colors missing [\#771](https://github.com/digital-ai/dot-components/pull/771) ([angel-git](https://github.com/angel-git))
|
|
273
|
+
- D-19042: remove duplicate tooltips [\#769](https://github.com/digital-ai/dot-components/pull/769) ([CWSites](https://github.com/CWSites))
|
|
274
|
+
|
|
192
275
|
**Merged pull requests:**
|
|
193
276
|
|
|
194
277
|
- Patch release [\#780](https://github.com/digital-ai/dot-components/pull/780) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
195
278
|
- S-79985: temporarily remove react-jsonschema-form from library [\#776](https://github.com/digital-ai/dot-components/pull/776) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
196
279
|
- Add submitButtonProps prop to DotJsonSchemaForm component [\#775](https://github.com/digital-ai/dot-components/pull/775) ([selsemore](https://github.com/selsemore))
|
|
197
|
-
- \#770 Add Neutral colors missing [\#771](https://github.com/digital-ai/dot-components/pull/771) ([angel-git](https://github.com/angel-git))
|
|
198
|
-
- D-19042: remove duplicate tooltips [\#769](https://github.com/digital-ai/dot-components/pull/769) ([CWSites](https://github.com/CWSites))
|
|
199
280
|
- S-76893: Webpack 4 - update peer dependencies [\#768](https://github.com/digital-ai/dot-components/pull/768) ([CWSites](https://github.com/CWSites))
|
|
200
281
|
- S-79957: improve husky [\#765](https://github.com/digital-ai/dot-components/pull/765) ([CWSites](https://github.com/CWSites))
|
|
201
|
-
- merge `master` \> `develop` [\#763](https://github.com/digital-ai/dot-components/pull/763) ([CWSites](https://github.com/CWSites))
|
|
202
282
|
|
|
203
283
|
## [1.3.1](https://github.com/digital-ai/dot-components/tree/1.3.1) (10/30/2021)
|
|
204
284
|
|
|
205
285
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.3.0...1.3.1)
|
|
206
286
|
|
|
287
|
+
**Features:**
|
|
288
|
+
|
|
289
|
+
- S-77126: react jsonschema form wrapper [\#728](https://github.com/digital-ai/dot-components/pull/728) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
290
|
+
|
|
207
291
|
**Fixed bugs:**
|
|
208
292
|
|
|
209
293
|
- Lato 700 is not rendered correctly on Digital.ai Release with dot-components [\#758](https://github.com/digital-ai/dot-components/issues/758)
|
|
210
294
|
- Circular Dependency - Dynamic Form [\#757](https://github.com/digital-ai/dot-components/issues/757)
|
|
295
|
+
- D-19026: Missing required prop for icon button when importing it to table cell [\#761](https://github.com/digital-ai/dot-components/pull/761) ([monapatel91](https://github.com/monapatel91))
|
|
296
|
+
- D-18543: proper export of type and interface [\#760](https://github.com/digital-ai/dot-components/pull/760) ([CWSites](https://github.com/CWSites))
|
|
297
|
+
- D-19023: Circular Dependency in `DynamicForm` component [\#759](https://github.com/digital-ai/dot-components/pull/759) ([dmiletic85](https://github.com/dmiletic85))
|
|
211
298
|
|
|
212
299
|
**Merged pull requests:**
|
|
213
300
|
|
|
214
301
|
- Next \[PATCH\] Release [\#762](https://github.com/digital-ai/dot-components/pull/762) ([CWSites](https://github.com/CWSites))
|
|
215
|
-
- D-19026: Missing required prop for icon button when importing it to table cell [\#761](https://github.com/digital-ai/dot-components/pull/761) ([monapatel91](https://github.com/monapatel91))
|
|
216
|
-
- D-18543: proper export of type and interface [\#760](https://github.com/digital-ai/dot-components/pull/760) ([CWSites](https://github.com/CWSites))
|
|
217
|
-
- D-19023: Circular Dependency in `DynamicForm` component [\#759](https://github.com/digital-ai/dot-components/pull/759) ([dmiletic85](https://github.com/dmiletic85))
|
|
218
|
-
- Bring `master` back into `develop` [\#756](https://github.com/digital-ai/dot-components/pull/756) ([CWSites](https://github.com/CWSites))
|
|
219
302
|
- S-79458: `Sidebar` apply agility specific updates to theme only [\#755](https://github.com/digital-ai/dot-components/pull/755) ([CWSites](https://github.com/CWSites))
|
|
220
|
-
- S-77126: react jsonschema form wrapper [\#728](https://github.com/digital-ai/dot-components/pull/728) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
221
303
|
|
|
222
304
|
## [1.3.0](https://github.com/digital-ai/dot-components/tree/1.3.0) (10/28/2021)
|
|
223
305
|
|
|
@@ -226,29 +308,29 @@
|
|
|
226
308
|
**Features:**
|
|
227
309
|
|
|
228
310
|
- Forms [\#594](https://github.com/digital-ai/dot-components/issues/594)
|
|
311
|
+
- S-77126: Dynamic Form [\#717](https://github.com/digital-ai/dot-components/pull/717) ([dmiletic85](https://github.com/dmiletic85))
|
|
229
312
|
|
|
230
313
|
**Fixed bugs:**
|
|
231
314
|
|
|
232
315
|
- AppToolbar height change breaks layout for consumer [\#733](https://github.com/digital-ai/dot-components/issues/733)
|
|
233
316
|
- `DotMenu` max height calculation doesn't take paddings into the consideration [\#707](https://github.com/digital-ai/dot-components/issues/707)
|
|
317
|
+
- D-19011: remove default MUI min width of end icon on list item [\#754](https://github.com/digital-ai/dot-components/pull/754) ([CWSites](https://github.com/CWSites))
|
|
318
|
+
- D-19004: update readme link to be accurate [\#750](https://github.com/digital-ai/dot-components/pull/750) ([CWSites](https://github.com/CWSites))
|
|
319
|
+
- D-18990: allow consumers to pass custom menu item height [\#749](https://github.com/digital-ai/dot-components/pull/749) ([CWSites](https://github.com/CWSites))
|
|
320
|
+
- D-18992: Missing disabled prop of icon button when importing it to tablecell [\#745](https://github.com/digital-ai/dot-components/pull/745) ([monapatel91](https://github.com/monapatel91))
|
|
321
|
+
- D-18997: when specified width of sidebar, it should be applied properly [\#737](https://github.com/digital-ai/dot-components/pull/737) ([CWSites](https://github.com/CWSites))
|
|
322
|
+
- D-18986: update app toolbar to be dense by default [\#735](https://github.com/digital-ai/dot-components/pull/735) ([CWSites](https://github.com/CWSites))
|
|
323
|
+
- D-18985: update menu list to be content-box sizing [\#734](https://github.com/digital-ai/dot-components/pull/734) ([CWSites](https://github.com/CWSites))
|
|
234
324
|
|
|
235
325
|
**Merged pull requests:**
|
|
236
326
|
|
|
237
|
-
- D-19011: remove default MUI min width of end icon on list item [\#754](https://github.com/digital-ai/dot-components/pull/754) ([CWSites](https://github.com/CWSites))
|
|
238
327
|
- Next \[MINOR\] release [\#753](https://github.com/digital-ai/dot-components/pull/753) ([monapatel91](https://github.com/monapatel91))
|
|
239
328
|
- 27 oct2021 update name of progression icon [\#751](https://github.com/digital-ai/dot-components/pull/751) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
240
|
-
- D-19004: update readme link to be accurate [\#750](https://github.com/digital-ai/dot-components/pull/750) ([CWSites](https://github.com/CWSites))
|
|
241
|
-
- D-18990: allow consumers to pass custom menu item height [\#749](https://github.com/digital-ai/dot-components/pull/749) ([CWSites](https://github.com/CWSites))
|
|
242
329
|
- Updated icons 26 oct 2021 [\#748](https://github.com/digital-ai/dot-components/pull/748) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
243
|
-
- D-18992: Missing disabled prop of icon button when importing it to tablecell [\#745](https://github.com/digital-ai/dot-components/pull/745) ([monapatel91](https://github.com/monapatel91))
|
|
244
330
|
- Icons: integrations, plugins [\#744](https://github.com/digital-ai/dot-components/pull/744) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
245
331
|
- Icons update oct 25 2021 [\#743](https://github.com/digital-ai/dot-components/pull/743) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
246
332
|
- S-79594: Add optional debounce prop to `DotInputText` [\#742](https://github.com/digital-ai/dot-components/pull/742) ([dmiletic85](https://github.com/dmiletic85))
|
|
247
|
-
- D-18997: when specified width of sidebar, it should be applied properly [\#737](https://github.com/digital-ai/dot-components/pull/737) ([CWSites](https://github.com/CWSites))
|
|
248
333
|
- S-76892: create generator for new components [\#736](https://github.com/digital-ai/dot-components/pull/736) ([CWSites](https://github.com/CWSites))
|
|
249
|
-
- D-18986: update app toolbar to be dense by default [\#735](https://github.com/digital-ai/dot-components/pull/735) ([CWSites](https://github.com/CWSites))
|
|
250
|
-
- D-18985: update menu list to be content-box sizing [\#734](https://github.com/digital-ai/dot-components/pull/734) ([CWSites](https://github.com/CWSites))
|
|
251
|
-
- S-77126: Dynamic Form [\#717](https://github.com/digital-ai/dot-components/pull/717) ([dmiletic85](https://github.com/dmiletic85))
|
|
252
334
|
|
|
253
335
|
## [1.2.1](https://github.com/digital-ai/dot-components/tree/1.2.1) (10/15/2021)
|
|
254
336
|
|
|
@@ -257,6 +339,8 @@
|
|
|
257
339
|
**Fixed bugs:**
|
|
258
340
|
|
|
259
341
|
- Alpha .25 doesn't work well within agility dark theme [\#710](https://github.com/digital-ai/dot-components/issues/710)
|
|
342
|
+
- D-18963: add ariaLabel to sidebar collapse button [\#731](https://github.com/digital-ai/dot-components/pull/731) ([CWSites](https://github.com/CWSites))
|
|
343
|
+
- D-18979: export `Tooltip` component [\#729](https://github.com/digital-ai/dot-components/pull/729) ([CWSites](https://github.com/CWSites))
|
|
260
344
|
|
|
261
345
|
**Closed issues:**
|
|
262
346
|
|
|
@@ -265,9 +349,7 @@
|
|
|
265
349
|
**Merged pull requests:**
|
|
266
350
|
|
|
267
351
|
- next release [\#732](https://github.com/digital-ai/dot-components/pull/732) ([CWSites](https://github.com/CWSites))
|
|
268
|
-
- D-18963: add ariaLabel to sidebar collapse button [\#731](https://github.com/digital-ai/dot-components/pull/731) ([CWSites](https://github.com/CWSites))
|
|
269
352
|
- S-76840: update contributing guidelines and PR template [\#730](https://github.com/digital-ai/dot-components/pull/730) ([CWSites](https://github.com/CWSites))
|
|
270
|
-
- D-18979: export `Tooltip` component [\#729](https://github.com/digital-ai/dot-components/pull/729) ([CWSites](https://github.com/CWSites))
|
|
271
353
|
- Merge pull request \#719 from digital-ai/develop [\#727](https://github.com/digital-ai/dot-components/pull/727) ([CWSites](https://github.com/CWSites))
|
|
272
354
|
|
|
273
355
|
## [1.2.0](https://github.com/digital-ai/dot-components/tree/1.2.0) (10/14/2021)
|
|
@@ -280,14 +362,14 @@
|
|
|
280
362
|
- Menu className doesn't apply to relevant attribute or theming not correct [\#711](https://github.com/digital-ai/dot-components/issues/711)
|
|
281
363
|
- `Avatar` component is using `default` value for icon font size and is generating console warning [\#708](https://github.com/digital-ai/dot-components/issues/708)
|
|
282
364
|
- Wrong background colour on `DotAlertBanner` on top of a `DotDialog` [\#702](https://github.com/digital-ai/dot-components/issues/702)
|
|
283
|
-
|
|
284
|
-
**Merged pull requests:**
|
|
285
|
-
|
|
286
365
|
- D-18961: update dialog styles to be more explicit [\#726](https://github.com/digital-ai/dot-components/pull/726) ([CWSites](https://github.com/CWSites))
|
|
287
366
|
- D-18964: update icon fontSize to use `medium` instead of `default` [\#725](https://github.com/digital-ai/dot-components/pull/725) ([CWSites](https://github.com/CWSites))
|
|
288
367
|
- D-18973: `DotList` missing return statement [\#724](https://github.com/digital-ai/dot-components/pull/724) ([CWSites](https://github.com/CWSites))
|
|
289
368
|
- D-18972: custom logo height constraints [\#723](https://github.com/digital-ai/dot-components/pull/723) ([CWSites](https://github.com/CWSites))
|
|
290
369
|
- D-18970: remove color prop from Badge storybook config [\#722](https://github.com/digital-ai/dot-components/pull/722) ([CWSites](https://github.com/CWSites))
|
|
370
|
+
|
|
371
|
+
**Merged pull requests:**
|
|
372
|
+
|
|
291
373
|
- MINOR release [\#719](https://github.com/digital-ai/dot-components/pull/719) ([CWSites](https://github.com/CWSites))
|
|
292
374
|
- Icons oct 13 2021 [\#718](https://github.com/digital-ai/dot-components/pull/718) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
293
375
|
- S-78918: add loading indicator to menu [\#716](https://github.com/digital-ai/dot-components/pull/716) ([CWSites](https://github.com/CWSites))
|
|
@@ -295,13 +377,16 @@
|
|
|
295
377
|
- S-77041: New component tooltip [\#713](https://github.com/digital-ai/dot-components/pull/713) ([monapatel91](https://github.com/monapatel91))
|
|
296
378
|
- S-76773: product badges in app toolbar and sidebar [\#712](https://github.com/digital-ai/dot-components/pull/712) ([CWSites](https://github.com/CWSites))
|
|
297
379
|
- Icons update oct 7th 2021 [\#709](https://github.com/digital-ai/dot-components/pull/709) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
298
|
-
- Bring `master` back into `develop` [\#705](https://github.com/digital-ai/dot-components/pull/705) ([CWSites](https://github.com/CWSites))
|
|
299
380
|
- S-78833 agility sidebar [\#701](https://github.com/digital-ai/dot-components/pull/701) ([CWSites](https://github.com/CWSites))
|
|
300
381
|
|
|
301
382
|
## [1.1.1](https://github.com/digital-ai/dot-components/tree/1.1.1) (10/06/2021)
|
|
302
383
|
|
|
303
384
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.1.0...1.1.1)
|
|
304
385
|
|
|
386
|
+
**Features:**
|
|
387
|
+
|
|
388
|
+
- S-78164: Sticky menu item on DotMenu component [\#687](https://github.com/digital-ai/dot-components/pull/687) ([dmiletic85](https://github.com/dmiletic85))
|
|
389
|
+
|
|
305
390
|
**Closed issues:**
|
|
306
391
|
|
|
307
392
|
- Security Updates [\#699](https://github.com/digital-ai/dot-components/issues/699)
|
|
@@ -312,9 +397,7 @@
|
|
|
312
397
|
- S-79291: update nested dependencies [\#700](https://github.com/digital-ai/dot-components/pull/700) ([CWSites](https://github.com/CWSites))
|
|
313
398
|
- S-78832: Agility icon & badge updates [\#698](https://github.com/digital-ai/dot-components/pull/698) ([CWSites](https://github.com/CWSites))
|
|
314
399
|
- S-79251: add workflow for sonarqube scan when code merged to develop [\#697](https://github.com/digital-ai/dot-components/pull/697) ([CWSites](https://github.com/CWSites))
|
|
315
|
-
- Bring `master` back into `develop` [\#696](https://github.com/digital-ai/dot-components/pull/696) ([CWSites](https://github.com/CWSites))
|
|
316
400
|
- S-76906: table action column [\#692](https://github.com/digital-ai/dot-components/pull/692) ([monapatel91](https://github.com/monapatel91))
|
|
317
|
-
- S-78164: Sticky menu item on DotMenu component [\#687](https://github.com/digital-ai/dot-components/pull/687) ([dmiletic85](https://github.com/dmiletic85))
|
|
318
401
|
|
|
319
402
|
## [1.1.0](https://github.com/digital-ai/dot-components/tree/1.1.0) (09/29/2021)
|
|
320
403
|
|
|
@@ -329,27 +412,28 @@
|
|
|
329
412
|
- MINOR release [\#695](https://github.com/digital-ai/dot-components/pull/695) ([CWSites](https://github.com/CWSites))
|
|
330
413
|
- pass value to tab [\#694](https://github.com/digital-ai/dot-components/pull/694) ([kmmarsh](https://github.com/kmmarsh))
|
|
331
414
|
- S-78831: update AppToolbar component for Agility [\#691](https://github.com/digital-ai/dot-components/pull/691) ([CWSites](https://github.com/CWSites))
|
|
332
|
-
- Bring `master` back into `develop` [\#690](https://github.com/digital-ai/dot-components/pull/690) ([CWSites](https://github.com/CWSites))
|
|
333
415
|
|
|
334
416
|
## [1.0.12](https://github.com/digital-ai/dot-components/tree/1.0.12) (09/23/2021)
|
|
335
417
|
|
|
336
418
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.0.11...1.0.12)
|
|
337
419
|
|
|
420
|
+
**Features:**
|
|
421
|
+
|
|
422
|
+
- S-78051: Feedback on Navigation Rail component [\#681](https://github.com/digital-ai/dot-components/pull/681) ([dmiletic85](https://github.com/dmiletic85))
|
|
423
|
+
|
|
338
424
|
**Fixed bugs:**
|
|
339
425
|
|
|
340
426
|
- `DotAppToobar` has z-index higher than autocomplete [\#669](https://github.com/digital-ai/dot-components/issues/669)
|
|
341
427
|
- `Link` component is not triggered on `Enter` key [\#630](https://github.com/digital-ai/dot-components/issues/630)
|
|
342
428
|
- `AutoComplete` component has incorrectly typed `AutoCompleteValue` in `onChange` signature [\#627](https://github.com/digital-ai/dot-components/issues/627)
|
|
343
|
-
|
|
344
|
-
**Merged pull requests:**
|
|
345
|
-
|
|
346
|
-
- Next Release [\#689](https://github.com/digital-ai/dot-components/pull/689) ([CWSites](https://github.com/CWSites))
|
|
347
429
|
- D-18817: set mainMenuItems to `null` by default [\#688](https://github.com/digital-ai/dot-components/pull/688) ([CWSites](https://github.com/CWSites))
|
|
348
430
|
- D-18664: update link to allow for keypress [\#686](https://github.com/digital-ai/dot-components/pull/686) ([CWSites](https://github.com/CWSites))
|
|
349
431
|
- D-18665: AppToolbar z-index update [\#685](https://github.com/digital-ai/dot-components/pull/685) ([CWSites](https://github.com/CWSites))
|
|
350
432
|
- D-18663: Update AutoComplete value typing [\#684](https://github.com/digital-ai/dot-components/pull/684) ([CWSites](https://github.com/CWSites))
|
|
351
|
-
|
|
352
|
-
|
|
433
|
+
|
|
434
|
+
**Merged pull requests:**
|
|
435
|
+
|
|
436
|
+
- Next Release [\#689](https://github.com/digital-ai/dot-components/pull/689) ([CWSites](https://github.com/CWSites))
|
|
353
437
|
|
|
354
438
|
## [1.0.11](https://github.com/digital-ai/dot-components/tree/1.0.11) (09/16/2021)
|
|
355
439
|
|
|
@@ -358,13 +442,11 @@
|
|
|
358
442
|
**Fixed bugs:**
|
|
359
443
|
|
|
360
444
|
- DotListItem [\#611](https://github.com/digital-ai/dot-components/issues/611)
|
|
445
|
+
- D-18421: close hamburger on navigate [\#679](https://github.com/digital-ai/dot-components/pull/679) ([CWSites](https://github.com/CWSites))
|
|
361
446
|
|
|
362
447
|
**Merged pull requests:**
|
|
363
448
|
|
|
364
|
-
- Next Release [\#682](https://github.com/digital-ai/dot-components/pull/682) ([CWSites](https://github.com/CWSites))
|
|
365
449
|
- S-78594: Update avatar component to randomly assign a color of the avatar background to the signed in user [\#680](https://github.com/digital-ai/dot-components/pull/680) ([dmiletic85](https://github.com/dmiletic85))
|
|
366
|
-
- D-18421: close hamburger on navigate [\#679](https://github.com/digital-ai/dot-components/pull/679) ([CWSites](https://github.com/CWSites))
|
|
367
|
-
- Bring `master` back into `develop` after release. [\#678](https://github.com/digital-ai/dot-components/pull/678) ([CWSites](https://github.com/CWSites))
|
|
368
450
|
|
|
369
451
|
## [1.0.10](https://github.com/digital-ai/dot-components/tree/1.0.10) (09/09/2021)
|
|
370
452
|
|
|
@@ -373,13 +455,12 @@
|
|
|
373
455
|
**Fixed bugs:**
|
|
374
456
|
|
|
375
457
|
- Console warnings while running unit tests for codebase that is consuming dot-components library [\#629](https://github.com/digital-ai/dot-components/issues/629)
|
|
458
|
+
- D-18424: include breadcrumb wrapper with breadcrumb component [\#675](https://github.com/digital-ai/dot-components/pull/675) ([CWSites](https://github.com/CWSites))
|
|
459
|
+
- D-18536: material 4.12.3 upgrade [\#667](https://github.com/digital-ai/dot-components/pull/667) ([CWSites](https://github.com/CWSites))
|
|
376
460
|
|
|
377
461
|
**Merged pull requests:**
|
|
378
462
|
|
|
379
463
|
- New patch release [\#677](https://github.com/digital-ai/dot-components/pull/677) ([CWSites](https://github.com/CWSites))
|
|
380
|
-
- D-18424: include breadcrumb wrapper with breadcrumb component [\#675](https://github.com/digital-ai/dot-components/pull/675) ([CWSites](https://github.com/CWSites))
|
|
381
|
-
- Merge `master` back to `develop` [\#674](https://github.com/digital-ai/dot-components/pull/674) ([CWSites](https://github.com/CWSites))
|
|
382
|
-
- D-18536: material 4.12.3 upgrade [\#667](https://github.com/digital-ai/dot-components/pull/667) ([CWSites](https://github.com/CWSites))
|
|
383
464
|
|
|
384
465
|
## [1.0.9](https://github.com/digital-ai/dot-components/tree/1.0.9) (09/02/2021)
|
|
385
466
|
|
|
@@ -389,26 +470,26 @@
|
|
|
389
470
|
|
|
390
471
|
- \[DotTable\] Ability to make table body cell centered [\#609](https://github.com/digital-ai/dot-components/issues/609)
|
|
391
472
|
- \[DotTable\] Additional prop for making table cell field truncated and displayed in one line [\#602](https://github.com/digital-ai/dot-components/issues/602)
|
|
473
|
+
- S-78487: Add agility colors for Accordion, Pill and Tabs [\#661](https://github.com/digital-ai/dot-components/pull/661) ([angel-git](https://github.com/angel-git))
|
|
392
474
|
|
|
393
475
|
**Fixed bugs:**
|
|
394
476
|
|
|
395
477
|
- untouched modified files [\#660](https://github.com/digital-ai/dot-components/issues/660)
|
|
396
478
|
- Update Agility colors [\#656](https://github.com/digital-ai/dot-components/issues/656)
|
|
397
479
|
- Add aria-label property [\#632](https://github.com/digital-ai/dot-components/issues/632)
|
|
480
|
+
- D-18730: action toolbar support [\#671](https://github.com/digital-ai/dot-components/pull/671) ([CWSites](https://github.com/CWSites))
|
|
481
|
+
- D-18607: Fix rowsPerPage parsing and do not pad table with empty rows [\#655](https://github.com/digital-ai/dot-components/pull/655) ([selsemore](https://github.com/selsemore))
|
|
398
482
|
|
|
399
483
|
**Merged pull requests:**
|
|
400
484
|
|
|
401
485
|
- Release `1.0.8` [\#673](https://github.com/digital-ai/dot-components/pull/673) ([CWSites](https://github.com/CWSites))
|
|
402
|
-
- D-18730: action toolbar support [\#671](https://github.com/digital-ai/dot-components/pull/671) ([CWSites](https://github.com/CWSites))
|
|
403
486
|
- S-78572: Make entire sidebar backitem clickable [\#670](https://github.com/digital-ai/dot-components/pull/670) ([selsemore](https://github.com/selsemore))
|
|
404
487
|
- improving table component by fixing issues reported on github [\#668](https://github.com/digital-ai/dot-components/pull/668) ([monapatel91](https://github.com/monapatel91))
|
|
405
488
|
- S-78516 extra files being formatted [\#665](https://github.com/digital-ai/dot-components/pull/665) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
406
489
|
- S-78464: add main branch name [\#664](https://github.com/digital-ai/dot-components/pull/664) ([CWSites](https://github.com/CWSites))
|
|
407
490
|
- S-78497: Add 'page' prop to DotTable [\#662](https://github.com/digital-ai/dot-components/pull/662) ([selsemore](https://github.com/selsemore))
|
|
408
|
-
- S-78487: Add agility colors for Accordion, Pill and Tabs [\#661](https://github.com/digital-ai/dot-components/pull/661) ([angel-git](https://github.com/angel-git))
|
|
409
491
|
- Issue \#632: Add aria-label property [\#659](https://github.com/digital-ai/dot-components/pull/659) ([dmiletic85](https://github.com/dmiletic85))
|
|
410
492
|
- S-78464: SonarQube [\#657](https://github.com/digital-ai/dot-components/pull/657) ([CWSites](https://github.com/CWSites))
|
|
411
|
-
- D-18607: Fix rowsPerPage parsing and do not pad table with empty rows [\#655](https://github.com/digital-ai/dot-components/pull/655) ([selsemore](https://github.com/selsemore))
|
|
412
493
|
- S-78388: Export interfaces and types needed for table pagination and sorting [\#654](https://github.com/digital-ai/dot-components/pull/654) ([selsemore](https://github.com/selsemore))
|
|
413
494
|
- S-77872: gather test coverage in sonarcloud [\#653](https://github.com/digital-ai/dot-components/pull/653) ([CWSites](https://github.com/CWSites))
|
|
414
495
|
|
|
@@ -424,12 +505,15 @@
|
|
|
424
505
|
|
|
425
506
|
- add export back to component library [\#652](https://github.com/digital-ai/dot-components/pull/652) ([CWSites](https://github.com/CWSites))
|
|
426
507
|
- add back missing items from export [\#651](https://github.com/digital-ai/dot-components/pull/651) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
427
|
-
- Master back into develop [\#649](https://github.com/digital-ai/dot-components/pull/649) ([CWSites](https://github.com/CWSites))
|
|
428
508
|
|
|
429
509
|
## [1.0.7](https://github.com/digital-ai/dot-components/tree/1.0.7) (08/23/2021)
|
|
430
510
|
|
|
431
511
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.0.6...1.0.7)
|
|
432
512
|
|
|
513
|
+
**Features:**
|
|
514
|
+
|
|
515
|
+
- Custom main logo in the AppToolbar [\#637](https://github.com/digital-ai/dot-components/pull/637) ([monapatel91](https://github.com/monapatel91))
|
|
516
|
+
|
|
433
517
|
**Fixed bugs:**
|
|
434
518
|
|
|
435
519
|
- Link color is hardcoded for agility product [\#641](https://github.com/digital-ai/dot-components/issues/641)
|
|
@@ -446,7 +530,6 @@
|
|
|
446
530
|
- Patch release [\#645](https://github.com/digital-ai/dot-components/pull/645) ([CWSites](https://github.com/CWSites))
|
|
447
531
|
- S-78162: adjust link color [\#642](https://github.com/digital-ai/dot-components/pull/642) ([CWSites](https://github.com/CWSites))
|
|
448
532
|
- update all API unit tests to not have duplicate data [\#639](https://github.com/digital-ai/dot-components/pull/639) ([CWSites](https://github.com/CWSites))
|
|
449
|
-
- Custom main logo in the AppToolbar [\#637](https://github.com/digital-ai/dot-components/pull/637) ([monapatel91](https://github.com/monapatel91))
|
|
450
533
|
|
|
451
534
|
## [1.0.6](https://github.com/digital-ai/dot-components/tree/1.0.6) (08/18/2021)
|
|
452
535
|
|
|
@@ -460,6 +543,7 @@
|
|
|
460
543
|
|
|
461
544
|
- Dialog and autocomplete dont follow agility dark theme [\#631](https://github.com/digital-ai/dot-components/issues/631)
|
|
462
545
|
- Fix agility theme colors [\#623](https://github.com/digital-ai/dot-components/issues/623)
|
|
546
|
+
- D-18346: fix sidebar menu item height [\#624](https://github.com/digital-ai/dot-components/pull/624) ([selsemore](https://github.com/selsemore))
|
|
463
547
|
|
|
464
548
|
**Merged pull requests:**
|
|
465
549
|
|
|
@@ -468,8 +552,6 @@
|
|
|
468
552
|
- update the peerDependencies to support all appropriate versions of React [\#634](https://github.com/digital-ai/dot-components/pull/634) ([monapatel91](https://github.com/monapatel91))
|
|
469
553
|
- Feedback of snackbar [\#628](https://github.com/digital-ai/dot-components/pull/628) ([monapatel91](https://github.com/monapatel91))
|
|
470
554
|
- S-77873: Support agility themes in certain components [\#626](https://github.com/digital-ai/dot-components/pull/626) ([CWSites](https://github.com/CWSites))
|
|
471
|
-
- D-18346: fix sidebar menu item height [\#624](https://github.com/digital-ai/dot-components/pull/624) ([selsemore](https://github.com/selsemore))
|
|
472
|
-
- Merging master back into develop [\#622](https://github.com/digital-ai/dot-components/pull/622) ([CWSites](https://github.com/CWSites))
|
|
473
555
|
|
|
474
556
|
## [1.0.5](https://github.com/digital-ai/dot-components/tree/1.0.5) (07/28/2021)
|
|
475
557
|
|
|
@@ -477,7 +559,6 @@
|
|
|
477
559
|
|
|
478
560
|
**Merged pull requests:**
|
|
479
561
|
|
|
480
|
-
- Merging develop onto master [\#621](https://github.com/digital-ai/dot-components/pull/621) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
481
562
|
- pin material-ui lab version [\#620](https://github.com/digital-ai/dot-components/pull/620) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
482
563
|
|
|
483
564
|
## [1.0.4](https://github.com/digital-ai/dot-components/tree/1.0.4) (07/28/2021)
|
|
@@ -487,19 +568,21 @@
|
|
|
487
568
|
**Features:**
|
|
488
569
|
|
|
489
570
|
- S-76930: New Component: DotSnackbar [\#607](https://github.com/digital-ai/dot-components/pull/607) ([coryell1287](https://github.com/coryell1287))
|
|
571
|
+
- S-76918: DialogButtonProps updated with more available BaseButtonProps [\#605](https://github.com/digital-ai/dot-components/pull/605) ([CWSites](https://github.com/CWSites))
|
|
572
|
+
|
|
573
|
+
**Fixed bugs:**
|
|
574
|
+
|
|
575
|
+
- D-18306: lock material UI to `4.11.x` [\#604](https://github.com/digital-ai/dot-components/pull/604) ([CWSites](https://github.com/CWSites))
|
|
490
576
|
|
|
491
577
|
**Merged pull requests:**
|
|
492
578
|
|
|
493
579
|
- Resolve issue from MUI console errors due to unlocked version of @material-ui/lab [\#619](https://github.com/digital-ai/dot-components/pull/619) ([CWSites](https://github.com/CWSites))
|
|
494
|
-
- Merging master back into develop [\#618](https://github.com/digital-ai/dot-components/pull/618) ([CWSites](https://github.com/CWSites))
|
|
495
580
|
- S-77134: lock @material-ui/lab to 4.0.0-alpha.56 [\#617](https://github.com/digital-ai/dot-components/pull/617) ([CWSites](https://github.com/CWSites))
|
|
496
581
|
- S-76627: new snackbar provider [\#616](https://github.com/digital-ai/dot-components/pull/616) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
497
582
|
- S-76905 split button component back to experimental [\#614](https://github.com/digital-ai/dot-components/pull/614) ([CWSites](https://github.com/CWSites))
|
|
498
583
|
- S-76905: update SplitButton design and functionality [\#613](https://github.com/digital-ai/dot-components/pull/613) ([CWSites](https://github.com/CWSites))
|
|
499
584
|
- S-77681: setup test-coverage for reporting on dot-components [\#610](https://github.com/digital-ai/dot-components/pull/610) ([CWSites](https://github.com/CWSites))
|
|
500
585
|
- S-76838: address Sonarcloud code issues [\#608](https://github.com/digital-ai/dot-components/pull/608) ([CWSites](https://github.com/CWSites))
|
|
501
|
-
- S-76918: DialogButtonProps updated with more available BaseButtonProps [\#605](https://github.com/digital-ai/dot-components/pull/605) ([CWSites](https://github.com/CWSites))
|
|
502
|
-
- D-18306: lock material UI to `4.11.x` [\#604](https://github.com/digital-ai/dot-components/pull/604) ([CWSites](https://github.com/CWSites))
|
|
503
586
|
- S-77317: Add 'height' prop to DotDrawer component [\#603](https://github.com/digital-ai/dot-components/pull/603) ([selsemore](https://github.com/selsemore))
|
|
504
587
|
- Update GitHub prerelease [\#599](https://github.com/digital-ai/dot-components/pull/599) ([CWSites](https://github.com/CWSites))
|
|
505
588
|
- S-76917: remove progressionBoard styles from theme provider [\#597](https://github.com/digital-ai/dot-components/pull/597) ([CWSites](https://github.com/CWSites))
|
|
@@ -517,20 +600,19 @@
|
|
|
517
600
|
|
|
518
601
|
- Not all button props are passed to the buttons in a Dialog [\#571](https://github.com/digital-ai/dot-components/issues/571)
|
|
519
602
|
|
|
520
|
-
**Merged pull requests:**
|
|
521
|
-
|
|
522
|
-
- Deploying latest to master [\#615](https://github.com/digital-ai/dot-components/pull/615) ([CWSites](https://github.com/CWSites))
|
|
523
|
-
|
|
524
603
|
## [1.0.2](https://github.com/digital-ai/dot-components/tree/1.0.2) (07/08/2021)
|
|
525
604
|
|
|
526
605
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.0.1...1.0.2)
|
|
527
606
|
|
|
607
|
+
**Features:**
|
|
608
|
+
|
|
609
|
+
- S-76914: optional prop for truncating accordion summary to one line [\#590](https://github.com/digital-ai/dot-components/pull/590) ([CWSites](https://github.com/CWSites))
|
|
610
|
+
|
|
528
611
|
**Merged pull requests:**
|
|
529
612
|
|
|
530
613
|
- S-76905: add disablePortal prop to SplitButton and set z-index for SplitButton menu [\#596](https://github.com/digital-ai/dot-components/pull/596) ([selsemore](https://github.com/selsemore))
|
|
531
614
|
- S-76905: fix error upon selection of split button option with non-numeric key [\#595](https://github.com/digital-ai/dot-components/pull/595) ([selsemore](https://github.com/selsemore))
|
|
532
615
|
- updating github workflow to default to patch release [\#593](https://github.com/digital-ai/dot-components/pull/593) ([CWSites](https://github.com/CWSites))
|
|
533
|
-
- S-76914: optional prop for truncating accordion summary to one line [\#590](https://github.com/digital-ai/dot-components/pull/590) ([CWSites](https://github.com/CWSites))
|
|
534
616
|
- Update icons [\#589](https://github.com/digital-ai/dot-components/pull/589) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
535
617
|
- Issue \#555: build warnings [\#588](https://github.com/digital-ai/dot-components/pull/588) ([CWSites](https://github.com/CWSites))
|
|
536
618
|
- Issue \#181: Create Security Policy [\#584](https://github.com/digital-ai/dot-components/pull/584) ([CWSites](https://github.com/CWSites))
|
|
@@ -545,7 +627,6 @@
|
|
|
545
627
|
- New icons 27 5 2021 [\#564](https://github.com/digital-ai/dot-components/pull/564) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
546
628
|
- Add isUnderToolbar property to Sidebar for use beneath AppToolbar [\#560](https://github.com/digital-ai/dot-components/pull/560) ([selsemore](https://github.com/selsemore))
|
|
547
629
|
- Move approved components to "Stable" [\#559](https://github.com/digital-ai/dot-components/pull/559) ([CWSites](https://github.com/CWSites))
|
|
548
|
-
- merging master \> develop [\#557](https://github.com/digital-ai/dot-components/pull/557) ([CWSites](https://github.com/CWSites))
|
|
549
630
|
- S-75998: \[PB Tech Debt\] Avoid unnecessary form re-renders when typing application name [\#556](https://github.com/digital-ai/dot-components/pull/556) ([dmiletic85](https://github.com/dmiletic85))
|
|
550
631
|
- S-75991: \[PB Tech Debt\] Refactor and improve wrapper component in demo app [\#546](https://github.com/digital-ai/dot-components/pull/546) ([dmiletic85](https://github.com/dmiletic85))
|
|
551
632
|
|
|
@@ -592,10 +673,6 @@
|
|
|
592
673
|
- S-73859: Configure Sonar Cloud [\#95](https://github.com/digital-ai/dot-components/issues/95)
|
|
593
674
|
- Future roadmap [\#90](https://github.com/digital-ai/dot-components/issues/90)
|
|
594
675
|
|
|
595
|
-
**Merged pull requests:**
|
|
596
|
-
|
|
597
|
-
- Deploying latest to master [\#592](https://github.com/digital-ai/dot-components/pull/592) ([CWSites](https://github.com/CWSites))
|
|
598
|
-
|
|
599
676
|
## [v0.0.1-alpha.0](https://github.com/digital-ai/dot-components/tree/v0.0.1-alpha.0) (05/19/2021)
|
|
600
677
|
|
|
601
678
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/v0.0.0-alpha.45...v0.0.1-alpha.0)
|