@digital-ai/dot-components 1.5.3 → 1.6.2

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.
Files changed (56) hide show
  1. package/CHANGE_LOG.md +151 -73
  2. package/dot-components.esm.js +1217 -655
  3. package/dot-components.umd.js +1219 -660
  4. package/lib/components/app-toolbar/AppToolbar.d.ts +1 -1
  5. package/lib/components/app-toolbar/AppToolbar.styles.d.ts +1 -1
  6. package/lib/components/auto-complete/AutoComplete.d.ts +3 -1
  7. package/lib/components/breadcrumbs/Breadcrumbs.d.ts +2 -0
  8. package/lib/components/breadcrumbs/Breadcrumbs.data.d.ts +3 -0
  9. package/lib/components/breadcrumbs/utils/helpers.d.ts +8 -2
  10. package/lib/components/drawer/Drawer.d.ts +11 -1
  11. package/lib/components/drawer/DrawerBody.d.ts +9 -0
  12. package/lib/components/drawer/DrawerBody.styles.d.ts +2 -0
  13. package/lib/components/drawer/DrawerFooter.d.ts +6 -0
  14. package/lib/components/drawer/DrawerFooter.styles.d.ts +2 -0
  15. package/lib/components/drawer/DrawerHeader.d.ts +8 -0
  16. package/lib/components/drawer/DrawerHeader.styles.d.ts +2 -0
  17. package/lib/components/helpers.d.ts +1 -0
  18. package/lib/components/index.d.ts +5 -11
  19. package/lib/components/list/List.d.ts +3 -86
  20. package/lib/components/list/List.stories.data.d.ts +1 -1
  21. package/lib/components/list/List.styles.d.ts +0 -42
  22. package/lib/components/list/ListItem.styles.d.ts +42 -0
  23. package/lib/components/list/NestedList.styles.d.ts +2 -0
  24. package/lib/components/list/index.d.ts +2 -0
  25. package/lib/components/list/utils/helpers.d.ts +2 -0
  26. package/lib/components/list/utils/models.d.ts +86 -0
  27. package/lib/components/menu/Menu.d.ts +2 -0
  28. package/lib/components/menu/Menu.stories.data.d.ts +23 -0
  29. package/lib/components/menu/Menu.stories.styles.d.ts +2 -0
  30. package/lib/components/menu/utils/constants.d.ts +3 -0
  31. package/lib/components/menu/utils/helpers.d.ts +12 -0
  32. package/lib/components/sidebar/Sidebar.d.ts +1 -1
  33. package/lib/components/sidebar/Sidebar.stories.data.d.ts +83 -0
  34. package/lib/components/table/Table.d.ts +13 -3
  35. package/lib/components/table/Table.stories.data.d.ts +34 -2
  36. package/lib/components/table/TableBody.d.ts +7 -2
  37. package/lib/components/table/TableBody.styles.d.ts +2 -0
  38. package/lib/components/table/TableBodyCheckboxCell.d.ts +8 -0
  39. package/lib/components/table/TableBodyCheckboxCell.styles.d.ts +3 -0
  40. package/lib/components/table/TableCell.d.ts +6 -4
  41. package/lib/components/table/TableCell.styles.d.ts +3 -0
  42. package/lib/components/table/TableHeader.d.ts +10 -35
  43. package/lib/components/table/TableHeaderCell.d.ts +38 -0
  44. package/lib/components/table/TableHeaderCell.styles.d.ts +3 -0
  45. package/lib/components/table/TableHeaderCheckboxCell.d.ts +8 -0
  46. package/lib/components/table/TableHeaderCheckboxCell.styles.d.ts +3 -0
  47. package/lib/components/table/TablePagination.d.ts +6 -4
  48. package/lib/components/table/TablePagination.styles.d.ts +5 -2
  49. package/lib/components/table/TableRow.d.ts +9 -2
  50. package/lib/components/table/TableRow.styles.d.ts +2 -0
  51. package/lib/components/table/TableSelectionToolbar.d.ts +7 -0
  52. package/lib/components/table/TableSelectionToolbar.styles.d.ts +3 -0
  53. package/lib/components/table/index.d.ts +10 -0
  54. package/lib/components/table/utils/helpers.d.ts +9 -0
  55. package/lib/components/table/utils/models.d.ts +21 -0
  56. package/package.json +3 -2
package/CHANGE_LOG.md CHANGED
@@ -1,8 +1,93 @@
1
1
  # Changelog
2
2
 
3
- ## [Current](https://github.com/digital-ai/dot-components/tree/HEAD)
3
+ ## [1.6.2](https://github.com/digital-ai/dot-components/tree/1.6.2) (01/14/2022)
4
4
 
5
- [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.2...HEAD)
5
+ [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.6.1...1.6.2)
6
+
7
+ **Features:**
8
+
9
+ - `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)
10
+ - `DotTable` MultiSelect [\#817](https://github.com/digital-ai/dot-components/issues/817)
11
+ - S-80342: `DotTable` MultiSelect support [\#928](https://github.com/digital-ai/dot-components/pull/928) ([dmiletic85](https://github.com/dmiletic85))
12
+
13
+ **Fixed bugs:**
14
+
15
+ - `AppToolbar`: Unnecessary scrollbar on the menu [\#937](https://github.com/digital-ai/dot-components/issues/937)
16
+ - DotDrawer changes break existing component consumer [\#932](https://github.com/digital-ai/dot-components/issues/932)
17
+ - D-19520: `AppToolbar`: Unnecessary scrollbar on the menu [\#941](https://github.com/digital-ai/dot-components/pull/941) ([dmiletic85](https://github.com/dmiletic85))
18
+ - D-19474: DotDrawer fixes [\#939](https://github.com/digital-ai/dot-components/pull/939) ([selsemore](https://github.com/selsemore))
19
+
20
+ **Merged pull requests:**
21
+
22
+ - S-76846: storybook updates `develop` [\#935](https://github.com/digital-ai/dot-components/pull/935) ([CWSites](https://github.com/CWSites))
23
+
24
+ ## [1.6.1](https://github.com/digital-ai/dot-components/tree/1.6.1) (01/10/2022)
25
+
26
+ [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.6.0...1.6.1)
27
+
28
+ **Features:**
29
+
30
+ - S-78917: Character limit for breadcrumb items [\#921](https://github.com/digital-ai/dot-components/pull/921) ([monapatel91](https://github.com/monapatel91))
31
+
32
+ **Fixed bugs:**
33
+
34
+ - `1.6.0` - Sidebar links broken, import was moved [\#925](https://github.com/digital-ai/dot-components/issues/925)
35
+ - `Autocomplete` doesn't have `dot-input` class [\#923](https://github.com/digital-ai/dot-components/issues/923)
36
+ - 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))
37
+ - D-19390: `Autocomplete` doesn't have `dot-input` class [\#924](https://github.com/digital-ai/dot-components/pull/924) ([dmiletic85](https://github.com/dmiletic85))
38
+
39
+ ## [1.6.0](https://github.com/digital-ai/dot-components/tree/1.6.0) (01/03/2022)
40
+
41
+ [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.4...1.6.0)
42
+
43
+ **Features:**
44
+
45
+ - S-77210: Component - Drawer [\#893](https://github.com/digital-ai/dot-components/pull/893) ([monapatel91](https://github.com/monapatel91))
46
+
47
+ **Fixed bugs:**
48
+
49
+ - `DynamicForm`: `isRequired` with value of `false` is not respected [\#918](https://github.com/digital-ai/dot-components/issues/918)
50
+ - `storybook`: issue while clicking on docs page of `menu` component [\#916](https://github.com/digital-ai/dot-components/issues/916)
51
+ - `DynamicForm` doesn't export all types [\#913](https://github.com/digital-ai/dot-components/issues/913)
52
+ - `AutoComplete` doesn't have `required` property [\#912](https://github.com/digital-ai/dot-components/issues/912)
53
+ - `Menu`: `maxVisibleItems` prop does not control visible items anymore [\#910](https://github.com/digital-ai/dot-components/issues/910)
54
+ - `Menu`: Circular dependency [\#908](https://github.com/digital-ai/dot-components/issues/908)
55
+ - `Breadcrumbs`: invalid combination of props [\#903](https://github.com/digital-ai/dot-components/issues/903)
56
+ - Styled component shouldn't need typeof [\#892](https://github.com/digital-ai/dot-components/issues/892)
57
+ - `Table` Cells in the Table component should be wrapped by DotTypography [\#805](https://github.com/digital-ai/dot-components/issues/805)
58
+ - `DotTable` Allow custom alignment on the last column of the table header [\#747](https://github.com/digital-ai/dot-components/issues/747)
59
+ - 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))
60
+ - 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))
61
+ - D-19379: `DynamicForm` doesn't export all types [\#915](https://github.com/digital-ai/dot-components/pull/915) ([dmiletic85](https://github.com/dmiletic85))
62
+ - D-19378: `AutoComplete` doesn't have `required` property [\#914](https://github.com/digital-ai/dot-components/pull/914) ([dmiletic85](https://github.com/dmiletic85))
63
+ - 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
+ - D-19366: `Menu`: Circular dependency [\#909](https://github.com/digital-ai/dot-components/pull/909) ([dmiletic85](https://github.com/dmiletic85))
65
+ - D-19355: `Breadcrumbs`: invalid combination of props [\#907](https://github.com/digital-ai/dot-components/pull/907) ([dmiletic85](https://github.com/dmiletic85))
66
+
67
+ ## [1.5.4](https://github.com/digital-ai/dot-components/tree/1.5.4) (12/28/2021)
68
+
69
+ [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.3...1.5.4)
70
+
71
+ **Features:**
72
+
73
+ - `sidebar` Changes on back arrow [\#890](https://github.com/digital-ai/dot-components/issues/890)
74
+ - `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
+ - 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
+ - S-80871: `Sidebar` Changes on back arrow [\#896](https://github.com/digital-ai/dot-components/pull/896) ([dmiletic85](https://github.com/dmiletic85))
77
+
78
+ **Fixed bugs:**
79
+
80
+ - Circular dependency [\#895](https://github.com/digital-ai/dot-components/issues/895)
81
+ - `AppToolbar` shouldn't have grey dividers [\#889](https://github.com/digital-ai/dot-components/issues/889)
82
+ - `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
+ - D-19337: `List`: Circular dependency [\#897](https://github.com/digital-ai/dot-components/pull/897) ([dmiletic85](https://github.com/dmiletic85))
85
+ - D-19330: `AppToolbar` shouldn't have grey dividers [\#891](https://github.com/digital-ai/dot-components/pull/891) ([dmiletic85](https://github.com/dmiletic85))
86
+ - 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))
87
+
88
+ ## [1.5.3](https://github.com/digital-ai/dot-components/tree/1.5.3) (12/17/2021)
89
+
90
+ [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.2...1.5.3)
6
91
 
7
92
  **Features:**
8
93
 
@@ -24,6 +109,10 @@
24
109
 
25
110
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.1...1.5.2)
26
111
 
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
+
27
116
  **Fixed bugs:**
28
117
 
29
118
  - `Apptoolbar`: primary logo link is hardcoded to `/` [\#879](https://github.com/digital-ai/dot-components/issues/879)
@@ -89,7 +178,6 @@
89
178
 
90
179
  - S-76843: setup PR release template [\#853](https://github.com/digital-ai/dot-components/pull/853) ([CWSites](https://github.com/CWSites))
91
180
  - S-76843 automation improvements III [\#852](https://github.com/digital-ai/dot-components/pull/852) ([CWSites](https://github.com/CWSites))
92
- - Merge `master` back to `develop` [\#849](https://github.com/digital-ai/dot-components/pull/849) ([CWSites](https://github.com/CWSites))
93
181
 
94
182
  ## [1.3.6](https://github.com/digital-ai/dot-components/tree/1.3.6) (12/10/2021)
95
183
 
@@ -134,10 +222,6 @@
134
222
  - D-19151: `DotBadge` generates console warnings [\#827](https://github.com/digital-ai/dot-components/pull/827) ([dmiletic85](https://github.com/dmiletic85))
135
223
  - 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))
136
224
 
137
- **Merged pull requests:**
138
-
139
- - merge `master` \> `develop` [\#825](https://github.com/digital-ai/dot-components/pull/825) ([CWSites](https://github.com/CWSites))
140
-
141
225
  ## [1.3.4](https://github.com/digital-ai/dot-components/tree/1.3.4) (11/30/2021)
142
226
 
143
227
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.3.3...1.3.4)
@@ -149,6 +233,7 @@
149
233
  - S-80369: Create `ProgressButton` component [\#822](https://github.com/digital-ai/dot-components/pull/822) ([dmiletic85](https://github.com/dmiletic85))
150
234
  - 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))
151
235
  - S-80264: Agility wrapper sandbox documentation [\#810](https://github.com/digital-ai/dot-components/pull/810) ([CWSites](https://github.com/CWSites))
236
+ - 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))
152
237
 
153
238
  **Fixed bugs:**
154
239
 
@@ -161,14 +246,12 @@
161
246
  - \#795 Address AlertBanner style issues [\#815](https://github.com/digital-ai/dot-components/pull/815) ([angel-git](https://github.com/angel-git))
162
247
  - D-19138: Remove margin-bottom from breadcrumbs [\#813](https://github.com/digital-ai/dot-components/pull/813) ([angel-git](https://github.com/angel-git))
163
248
  - 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))
249
+ - \[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))
164
250
 
165
251
  **Merged pull requests:**
166
252
 
167
253
  - 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))
168
- - \[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))
169
254
  - 17 nov2021 update icon [\#803](https://github.com/digital-ai/dot-components/pull/803) ([BojanKocijan](https://github.com/BojanKocijan))
170
- - 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))
171
- - Bringing `master` back into `develop` [\#797](https://github.com/digital-ai/dot-components/pull/797) ([CWSites](https://github.com/CWSites))
172
255
 
173
256
  ## [1.3.3](https://github.com/digital-ai/dot-components/tree/1.3.3) (11/16/2021)
174
257
 
@@ -185,20 +268,19 @@
185
268
  - Wrong z-index for autocomplete [\#779](https://github.com/digital-ai/dot-components/issues/779)
186
269
  - DotInputText startIcon and endIcon are not aligned with text [\#764](https://github.com/digital-ai/dot-components/issues/764)
187
270
  - Allow normal text formatting inside DotAlertBanner [\#738](https://github.com/digital-ai/dot-components/issues/738)
188
-
189
- **Merged pull requests:**
190
-
191
- - Next minor release [\#796](https://github.com/digital-ai/dot-components/pull/796) ([CWSites](https://github.com/CWSites))
192
271
  - D-19069: `AutoComplete` z-index not behaving as expected [\#793](https://github.com/digital-ai/dot-components/pull/793) ([CWSites](https://github.com/CWSites))
193
272
  - 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))
194
273
  - 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))
195
274
  - D-19065: `DotProgress` remove default `title` value [\#790](https://github.com/digital-ai/dot-components/pull/790) ([CWSites](https://github.com/CWSites))
275
+
276
+ **Merged pull requests:**
277
+
278
+ - Next minor release [\#796](https://github.com/digital-ai/dot-components/pull/796) ([CWSites](https://github.com/CWSites))
196
279
  - 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))
197
280
  - S-79880: Add 'target' prop to ListItemProps [\#788](https://github.com/digital-ai/dot-components/pull/788) ([selsemore](https://github.com/selsemore))
198
281
  - 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))
199
282
  - 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))
200
283
  - S-80048: product wrapper demo [\#782](https://github.com/digital-ai/dot-components/pull/782) ([CWSites](https://github.com/CWSites))
201
- - bring `master` back into `develop` [\#781](https://github.com/digital-ai/dot-components/pull/781) ([CWSites](https://github.com/CWSites))
202
284
 
203
285
  ## [1.3.2](https://github.com/digital-ai/dot-components/tree/1.3.2) (11/05/2021)
204
286
 
@@ -209,35 +291,39 @@
209
291
  - Add submitButtonProps prop to DotJsonSchemaForm component [\#774](https://github.com/digital-ai/dot-components/issues/774)
210
292
  - Export all neutral colors [\#770](https://github.com/digital-ai/dot-components/issues/770)
211
293
 
294
+ **Fixed bugs:**
295
+
296
+ - \#770 Add Neutral colors missing [\#771](https://github.com/digital-ai/dot-components/pull/771) ([angel-git](https://github.com/angel-git))
297
+ - D-19042: remove duplicate tooltips [\#769](https://github.com/digital-ai/dot-components/pull/769) ([CWSites](https://github.com/CWSites))
298
+
212
299
  **Merged pull requests:**
213
300
 
214
301
  - Patch release [\#780](https://github.com/digital-ai/dot-components/pull/780) ([TheKeithStewart](https://github.com/TheKeithStewart))
215
302
  - S-79985: temporarily remove react-jsonschema-form from library [\#776](https://github.com/digital-ai/dot-components/pull/776) ([TheKeithStewart](https://github.com/TheKeithStewart))
216
303
  - Add submitButtonProps prop to DotJsonSchemaForm component [\#775](https://github.com/digital-ai/dot-components/pull/775) ([selsemore](https://github.com/selsemore))
217
- - \#770 Add Neutral colors missing [\#771](https://github.com/digital-ai/dot-components/pull/771) ([angel-git](https://github.com/angel-git))
218
- - D-19042: remove duplicate tooltips [\#769](https://github.com/digital-ai/dot-components/pull/769) ([CWSites](https://github.com/CWSites))
219
304
  - S-76893: Webpack 4 - update peer dependencies [\#768](https://github.com/digital-ai/dot-components/pull/768) ([CWSites](https://github.com/CWSites))
220
305
  - S-79957: improve husky [\#765](https://github.com/digital-ai/dot-components/pull/765) ([CWSites](https://github.com/CWSites))
221
- - merge `master` \> `develop` [\#763](https://github.com/digital-ai/dot-components/pull/763) ([CWSites](https://github.com/CWSites))
222
306
 
223
307
  ## [1.3.1](https://github.com/digital-ai/dot-components/tree/1.3.1) (10/30/2021)
224
308
 
225
309
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.3.0...1.3.1)
226
310
 
311
+ **Features:**
312
+
313
+ - S-77126: react jsonschema form wrapper [\#728](https://github.com/digital-ai/dot-components/pull/728) ([TheKeithStewart](https://github.com/TheKeithStewart))
314
+
227
315
  **Fixed bugs:**
228
316
 
229
317
  - Lato 700 is not rendered correctly on Digital.ai Release with dot-components [\#758](https://github.com/digital-ai/dot-components/issues/758)
230
318
  - Circular Dependency - Dynamic Form [\#757](https://github.com/digital-ai/dot-components/issues/757)
319
+ - 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))
320
+ - D-18543: proper export of type and interface [\#760](https://github.com/digital-ai/dot-components/pull/760) ([CWSites](https://github.com/CWSites))
321
+ - D-19023: Circular Dependency in `DynamicForm` component [\#759](https://github.com/digital-ai/dot-components/pull/759) ([dmiletic85](https://github.com/dmiletic85))
231
322
 
232
323
  **Merged pull requests:**
233
324
 
234
325
  - Next \[PATCH\] Release [\#762](https://github.com/digital-ai/dot-components/pull/762) ([CWSites](https://github.com/CWSites))
235
- - 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))
236
- - D-18543: proper export of type and interface [\#760](https://github.com/digital-ai/dot-components/pull/760) ([CWSites](https://github.com/CWSites))
237
- - D-19023: Circular Dependency in `DynamicForm` component [\#759](https://github.com/digital-ai/dot-components/pull/759) ([dmiletic85](https://github.com/dmiletic85))
238
- - Bring `master` back into `develop` [\#756](https://github.com/digital-ai/dot-components/pull/756) ([CWSites](https://github.com/CWSites))
239
326
  - 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))
240
- - S-77126: react jsonschema form wrapper [\#728](https://github.com/digital-ai/dot-components/pull/728) ([TheKeithStewart](https://github.com/TheKeithStewart))
241
327
 
242
328
  ## [1.3.0](https://github.com/digital-ai/dot-components/tree/1.3.0) (10/28/2021)
243
329
 
@@ -246,29 +332,29 @@
246
332
  **Features:**
247
333
 
248
334
  - Forms [\#594](https://github.com/digital-ai/dot-components/issues/594)
335
+ - S-77126: Dynamic Form [\#717](https://github.com/digital-ai/dot-components/pull/717) ([dmiletic85](https://github.com/dmiletic85))
249
336
 
250
337
  **Fixed bugs:**
251
338
 
252
339
  - AppToolbar height change breaks layout for consumer [\#733](https://github.com/digital-ai/dot-components/issues/733)
253
340
  - `DotMenu` max height calculation doesn't take paddings into the consideration [\#707](https://github.com/digital-ai/dot-components/issues/707)
341
+ - 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))
342
+ - D-19004: update readme link to be accurate [\#750](https://github.com/digital-ai/dot-components/pull/750) ([CWSites](https://github.com/CWSites))
343
+ - 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))
344
+ - 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))
345
+ - 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))
346
+ - 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))
347
+ - 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))
254
348
 
255
349
  **Merged pull requests:**
256
350
 
257
- - 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))
258
351
  - Next \[MINOR\] release [\#753](https://github.com/digital-ai/dot-components/pull/753) ([monapatel91](https://github.com/monapatel91))
259
352
  - 27 oct2021 update name of progression icon [\#751](https://github.com/digital-ai/dot-components/pull/751) ([BojanKocijan](https://github.com/BojanKocijan))
260
- - D-19004: update readme link to be accurate [\#750](https://github.com/digital-ai/dot-components/pull/750) ([CWSites](https://github.com/CWSites))
261
- - 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))
262
353
  - Updated icons 26 oct 2021 [\#748](https://github.com/digital-ai/dot-components/pull/748) ([BojanKocijan](https://github.com/BojanKocijan))
263
- - 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))
264
354
  - Icons: integrations, plugins [\#744](https://github.com/digital-ai/dot-components/pull/744) ([BojanKocijan](https://github.com/BojanKocijan))
265
355
  - Icons update oct 25 2021 [\#743](https://github.com/digital-ai/dot-components/pull/743) ([BojanKocijan](https://github.com/BojanKocijan))
266
356
  - S-79594: Add optional debounce prop to `DotInputText` [\#742](https://github.com/digital-ai/dot-components/pull/742) ([dmiletic85](https://github.com/dmiletic85))
267
- - 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))
268
357
  - S-76892: create generator for new components [\#736](https://github.com/digital-ai/dot-components/pull/736) ([CWSites](https://github.com/CWSites))
269
- - 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))
270
- - 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))
271
- - S-77126: Dynamic Form [\#717](https://github.com/digital-ai/dot-components/pull/717) ([dmiletic85](https://github.com/dmiletic85))
272
358
 
273
359
  ## [1.2.1](https://github.com/digital-ai/dot-components/tree/1.2.1) (10/15/2021)
274
360
 
@@ -277,6 +363,8 @@
277
363
  **Fixed bugs:**
278
364
 
279
365
  - Alpha .25 doesn't work well within agility dark theme [\#710](https://github.com/digital-ai/dot-components/issues/710)
366
+ - D-18963: add ariaLabel to sidebar collapse button [\#731](https://github.com/digital-ai/dot-components/pull/731) ([CWSites](https://github.com/CWSites))
367
+ - D-18979: export `Tooltip` component [\#729](https://github.com/digital-ai/dot-components/pull/729) ([CWSites](https://github.com/CWSites))
280
368
 
281
369
  **Closed issues:**
282
370
 
@@ -285,9 +373,7 @@
285
373
  **Merged pull requests:**
286
374
 
287
375
  - next release [\#732](https://github.com/digital-ai/dot-components/pull/732) ([CWSites](https://github.com/CWSites))
288
- - D-18963: add ariaLabel to sidebar collapse button [\#731](https://github.com/digital-ai/dot-components/pull/731) ([CWSites](https://github.com/CWSites))
289
376
  - S-76840: update contributing guidelines and PR template [\#730](https://github.com/digital-ai/dot-components/pull/730) ([CWSites](https://github.com/CWSites))
290
- - D-18979: export `Tooltip` component [\#729](https://github.com/digital-ai/dot-components/pull/729) ([CWSites](https://github.com/CWSites))
291
377
  - Merge pull request \#719 from digital-ai/develop [\#727](https://github.com/digital-ai/dot-components/pull/727) ([CWSites](https://github.com/CWSites))
292
378
 
293
379
  ## [1.2.0](https://github.com/digital-ai/dot-components/tree/1.2.0) (10/14/2021)
@@ -300,14 +386,14 @@
300
386
  - Menu className doesn't apply to relevant attribute or theming not correct [\#711](https://github.com/digital-ai/dot-components/issues/711)
301
387
  - `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)
302
388
  - Wrong background colour on `DotAlertBanner` on top of a `DotDialog` [\#702](https://github.com/digital-ai/dot-components/issues/702)
303
-
304
- **Merged pull requests:**
305
-
306
389
  - D-18961: update dialog styles to be more explicit [\#726](https://github.com/digital-ai/dot-components/pull/726) ([CWSites](https://github.com/CWSites))
307
390
  - 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))
308
391
  - D-18973: `DotList` missing return statement [\#724](https://github.com/digital-ai/dot-components/pull/724) ([CWSites](https://github.com/CWSites))
309
392
  - D-18972: custom logo height constraints [\#723](https://github.com/digital-ai/dot-components/pull/723) ([CWSites](https://github.com/CWSites))
310
393
  - D-18970: remove color prop from Badge storybook config [\#722](https://github.com/digital-ai/dot-components/pull/722) ([CWSites](https://github.com/CWSites))
394
+
395
+ **Merged pull requests:**
396
+
311
397
  - MINOR release [\#719](https://github.com/digital-ai/dot-components/pull/719) ([CWSites](https://github.com/CWSites))
312
398
  - Icons oct 13 2021 [\#718](https://github.com/digital-ai/dot-components/pull/718) ([BojanKocijan](https://github.com/BojanKocijan))
313
399
  - S-78918: add loading indicator to menu [\#716](https://github.com/digital-ai/dot-components/pull/716) ([CWSites](https://github.com/CWSites))
@@ -315,13 +401,16 @@
315
401
  - S-77041: New component tooltip [\#713](https://github.com/digital-ai/dot-components/pull/713) ([monapatel91](https://github.com/monapatel91))
316
402
  - S-76773: product badges in app toolbar and sidebar [\#712](https://github.com/digital-ai/dot-components/pull/712) ([CWSites](https://github.com/CWSites))
317
403
  - Icons update oct 7th 2021 [\#709](https://github.com/digital-ai/dot-components/pull/709) ([BojanKocijan](https://github.com/BojanKocijan))
318
- - Bring `master` back into `develop` [\#705](https://github.com/digital-ai/dot-components/pull/705) ([CWSites](https://github.com/CWSites))
319
404
  - S-78833 agility sidebar [\#701](https://github.com/digital-ai/dot-components/pull/701) ([CWSites](https://github.com/CWSites))
320
405
 
321
406
  ## [1.1.1](https://github.com/digital-ai/dot-components/tree/1.1.1) (10/06/2021)
322
407
 
323
408
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.1.0...1.1.1)
324
409
 
410
+ **Features:**
411
+
412
+ - S-78164: Sticky menu item on DotMenu component [\#687](https://github.com/digital-ai/dot-components/pull/687) ([dmiletic85](https://github.com/dmiletic85))
413
+
325
414
  **Closed issues:**
326
415
 
327
416
  - Security Updates [\#699](https://github.com/digital-ai/dot-components/issues/699)
@@ -332,9 +421,7 @@
332
421
  - S-79291: update nested dependencies [\#700](https://github.com/digital-ai/dot-components/pull/700) ([CWSites](https://github.com/CWSites))
333
422
  - S-78832: Agility icon & badge updates [\#698](https://github.com/digital-ai/dot-components/pull/698) ([CWSites](https://github.com/CWSites))
334
423
  - 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))
335
- - Bring `master` back into `develop` [\#696](https://github.com/digital-ai/dot-components/pull/696) ([CWSites](https://github.com/CWSites))
336
424
  - S-76906: table action column [\#692](https://github.com/digital-ai/dot-components/pull/692) ([monapatel91](https://github.com/monapatel91))
337
- - S-78164: Sticky menu item on DotMenu component [\#687](https://github.com/digital-ai/dot-components/pull/687) ([dmiletic85](https://github.com/dmiletic85))
338
425
 
339
426
  ## [1.1.0](https://github.com/digital-ai/dot-components/tree/1.1.0) (09/29/2021)
340
427
 
@@ -349,27 +436,28 @@
349
436
  - MINOR release [\#695](https://github.com/digital-ai/dot-components/pull/695) ([CWSites](https://github.com/CWSites))
350
437
  - pass value to tab [\#694](https://github.com/digital-ai/dot-components/pull/694) ([kmmarsh](https://github.com/kmmarsh))
351
438
  - S-78831: update AppToolbar component for Agility [\#691](https://github.com/digital-ai/dot-components/pull/691) ([CWSites](https://github.com/CWSites))
352
- - Bring `master` back into `develop` [\#690](https://github.com/digital-ai/dot-components/pull/690) ([CWSites](https://github.com/CWSites))
353
439
 
354
440
  ## [1.0.12](https://github.com/digital-ai/dot-components/tree/1.0.12) (09/23/2021)
355
441
 
356
442
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.0.11...1.0.12)
357
443
 
444
+ **Features:**
445
+
446
+ - S-78051: Feedback on Navigation Rail component [\#681](https://github.com/digital-ai/dot-components/pull/681) ([dmiletic85](https://github.com/dmiletic85))
447
+
358
448
  **Fixed bugs:**
359
449
 
360
450
  - `DotAppToobar` has z-index higher than autocomplete [\#669](https://github.com/digital-ai/dot-components/issues/669)
361
451
  - `Link` component is not triggered on `Enter` key [\#630](https://github.com/digital-ai/dot-components/issues/630)
362
452
  - `AutoComplete` component has incorrectly typed `AutoCompleteValue` in `onChange` signature [\#627](https://github.com/digital-ai/dot-components/issues/627)
363
-
364
- **Merged pull requests:**
365
-
366
- - Next Release [\#689](https://github.com/digital-ai/dot-components/pull/689) ([CWSites](https://github.com/CWSites))
367
453
  - D-18817: set mainMenuItems to `null` by default [\#688](https://github.com/digital-ai/dot-components/pull/688) ([CWSites](https://github.com/CWSites))
368
454
  - D-18664: update link to allow for keypress [\#686](https://github.com/digital-ai/dot-components/pull/686) ([CWSites](https://github.com/CWSites))
369
455
  - D-18665: AppToolbar z-index update [\#685](https://github.com/digital-ai/dot-components/pull/685) ([CWSites](https://github.com/CWSites))
370
456
  - D-18663: Update AutoComplete value typing [\#684](https://github.com/digital-ai/dot-components/pull/684) ([CWSites](https://github.com/CWSites))
371
- - Bring `master` back into `develop` [\#683](https://github.com/digital-ai/dot-components/pull/683) ([CWSites](https://github.com/CWSites))
372
- - S-78051: Feedback on Navigation Rail component [\#681](https://github.com/digital-ai/dot-components/pull/681) ([dmiletic85](https://github.com/dmiletic85))
457
+
458
+ **Merged pull requests:**
459
+
460
+ - Next Release [\#689](https://github.com/digital-ai/dot-components/pull/689) ([CWSites](https://github.com/CWSites))
373
461
 
374
462
  ## [1.0.11](https://github.com/digital-ai/dot-components/tree/1.0.11) (09/16/2021)
375
463
 
@@ -378,13 +466,11 @@
378
466
  **Fixed bugs:**
379
467
 
380
468
  - DotListItem [\#611](https://github.com/digital-ai/dot-components/issues/611)
469
+ - D-18421: close hamburger on navigate [\#679](https://github.com/digital-ai/dot-components/pull/679) ([CWSites](https://github.com/CWSites))
381
470
 
382
471
  **Merged pull requests:**
383
472
 
384
- - Next Release [\#682](https://github.com/digital-ai/dot-components/pull/682) ([CWSites](https://github.com/CWSites))
385
473
  - 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))
386
- - D-18421: close hamburger on navigate [\#679](https://github.com/digital-ai/dot-components/pull/679) ([CWSites](https://github.com/CWSites))
387
- - Bring `master` back into `develop` after release. [\#678](https://github.com/digital-ai/dot-components/pull/678) ([CWSites](https://github.com/CWSites))
388
474
 
389
475
  ## [1.0.10](https://github.com/digital-ai/dot-components/tree/1.0.10) (09/09/2021)
390
476
 
@@ -393,13 +479,12 @@
393
479
  **Fixed bugs:**
394
480
 
395
481
  - Console warnings while running unit tests for codebase that is consuming dot-components library [\#629](https://github.com/digital-ai/dot-components/issues/629)
482
+ - D-18424: include breadcrumb wrapper with breadcrumb component [\#675](https://github.com/digital-ai/dot-components/pull/675) ([CWSites](https://github.com/CWSites))
483
+ - D-18536: material 4.12.3 upgrade [\#667](https://github.com/digital-ai/dot-components/pull/667) ([CWSites](https://github.com/CWSites))
396
484
 
397
485
  **Merged pull requests:**
398
486
 
399
487
  - New patch release [\#677](https://github.com/digital-ai/dot-components/pull/677) ([CWSites](https://github.com/CWSites))
400
- - D-18424: include breadcrumb wrapper with breadcrumb component [\#675](https://github.com/digital-ai/dot-components/pull/675) ([CWSites](https://github.com/CWSites))
401
- - Merge `master` back to `develop` [\#674](https://github.com/digital-ai/dot-components/pull/674) ([CWSites](https://github.com/CWSites))
402
- - D-18536: material 4.12.3 upgrade [\#667](https://github.com/digital-ai/dot-components/pull/667) ([CWSites](https://github.com/CWSites))
403
488
 
404
489
  ## [1.0.9](https://github.com/digital-ai/dot-components/tree/1.0.9) (09/02/2021)
405
490
 
@@ -409,26 +494,26 @@
409
494
 
410
495
  - \[DotTable\] Ability to make table body cell centered [\#609](https://github.com/digital-ai/dot-components/issues/609)
411
496
  - \[DotTable\] Additional prop for making table cell field truncated and displayed in one line [\#602](https://github.com/digital-ai/dot-components/issues/602)
497
+ - 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))
412
498
 
413
499
  **Fixed bugs:**
414
500
 
415
501
  - untouched modified files [\#660](https://github.com/digital-ai/dot-components/issues/660)
416
502
  - Update Agility colors [\#656](https://github.com/digital-ai/dot-components/issues/656)
417
503
  - Add aria-label property [\#632](https://github.com/digital-ai/dot-components/issues/632)
504
+ - D-18730: action toolbar support [\#671](https://github.com/digital-ai/dot-components/pull/671) ([CWSites](https://github.com/CWSites))
505
+ - 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))
418
506
 
419
507
  **Merged pull requests:**
420
508
 
421
509
  - Release `1.0.8` [\#673](https://github.com/digital-ai/dot-components/pull/673) ([CWSites](https://github.com/CWSites))
422
- - D-18730: action toolbar support [\#671](https://github.com/digital-ai/dot-components/pull/671) ([CWSites](https://github.com/CWSites))
423
510
  - S-78572: Make entire sidebar backitem clickable [\#670](https://github.com/digital-ai/dot-components/pull/670) ([selsemore](https://github.com/selsemore))
424
511
  - improving table component by fixing issues reported on github [\#668](https://github.com/digital-ai/dot-components/pull/668) ([monapatel91](https://github.com/monapatel91))
425
512
  - S-78516 extra files being formatted [\#665](https://github.com/digital-ai/dot-components/pull/665) ([TheKeithStewart](https://github.com/TheKeithStewart))
426
513
  - S-78464: add main branch name [\#664](https://github.com/digital-ai/dot-components/pull/664) ([CWSites](https://github.com/CWSites))
427
514
  - S-78497: Add 'page' prop to DotTable [\#662](https://github.com/digital-ai/dot-components/pull/662) ([selsemore](https://github.com/selsemore))
428
- - 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))
429
515
  - Issue \#632: Add aria-label property [\#659](https://github.com/digital-ai/dot-components/pull/659) ([dmiletic85](https://github.com/dmiletic85))
430
516
  - S-78464: SonarQube [\#657](https://github.com/digital-ai/dot-components/pull/657) ([CWSites](https://github.com/CWSites))
431
- - 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))
432
517
  - 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))
433
518
  - S-77872: gather test coverage in sonarcloud [\#653](https://github.com/digital-ai/dot-components/pull/653) ([CWSites](https://github.com/CWSites))
434
519
 
@@ -444,7 +529,6 @@
444
529
 
445
530
  - add export back to component library [\#652](https://github.com/digital-ai/dot-components/pull/652) ([CWSites](https://github.com/CWSites))
446
531
  - add back missing items from export [\#651](https://github.com/digital-ai/dot-components/pull/651) ([TheKeithStewart](https://github.com/TheKeithStewart))
447
- - Master back into develop [\#649](https://github.com/digital-ai/dot-components/pull/649) ([CWSites](https://github.com/CWSites))
448
532
 
449
533
  ## [1.0.7](https://github.com/digital-ai/dot-components/tree/1.0.7) (08/23/2021)
450
534
 
@@ -466,7 +550,6 @@
466
550
  - Patch release [\#645](https://github.com/digital-ai/dot-components/pull/645) ([CWSites](https://github.com/CWSites))
467
551
  - S-78162: adjust link color [\#642](https://github.com/digital-ai/dot-components/pull/642) ([CWSites](https://github.com/CWSites))
468
552
  - 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))
469
- - Custom main logo in the AppToolbar [\#637](https://github.com/digital-ai/dot-components/pull/637) ([monapatel91](https://github.com/monapatel91))
470
553
 
471
554
  ## [1.0.6](https://github.com/digital-ai/dot-components/tree/1.0.6) (08/18/2021)
472
555
 
@@ -474,12 +557,14 @@
474
557
 
475
558
  **Features:**
476
559
 
560
+ - Custom main logo in the AppToolbar [\#637](https://github.com/digital-ai/dot-components/pull/637) ([monapatel91](https://github.com/monapatel91))
477
561
  - New component alert banner [\#625](https://github.com/digital-ai/dot-components/pull/625) ([monapatel91](https://github.com/monapatel91))
478
562
 
479
563
  **Fixed bugs:**
480
564
 
481
565
  - Dialog and autocomplete dont follow agility dark theme [\#631](https://github.com/digital-ai/dot-components/issues/631)
482
566
  - Fix agility theme colors [\#623](https://github.com/digital-ai/dot-components/issues/623)
567
+ - D-18346: fix sidebar menu item height [\#624](https://github.com/digital-ai/dot-components/pull/624) ([selsemore](https://github.com/selsemore))
483
568
 
484
569
  **Merged pull requests:**
485
570
 
@@ -488,8 +573,6 @@
488
573
  - 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))
489
574
  - Feedback of snackbar [\#628](https://github.com/digital-ai/dot-components/pull/628) ([monapatel91](https://github.com/monapatel91))
490
575
  - S-77873: Support agility themes in certain components [\#626](https://github.com/digital-ai/dot-components/pull/626) ([CWSites](https://github.com/CWSites))
491
- - D-18346: fix sidebar menu item height [\#624](https://github.com/digital-ai/dot-components/pull/624) ([selsemore](https://github.com/selsemore))
492
- - Merging master back into develop [\#622](https://github.com/digital-ai/dot-components/pull/622) ([CWSites](https://github.com/CWSites))
493
576
 
494
577
  ## [1.0.5](https://github.com/digital-ai/dot-components/tree/1.0.5) (07/28/2021)
495
578
 
@@ -497,7 +580,6 @@
497
580
 
498
581
  **Merged pull requests:**
499
582
 
500
- - Merging develop onto master [\#621](https://github.com/digital-ai/dot-components/pull/621) ([TheKeithStewart](https://github.com/TheKeithStewart))
501
583
  - pin material-ui lab version [\#620](https://github.com/digital-ai/dot-components/pull/620) ([TheKeithStewart](https://github.com/TheKeithStewart))
502
584
 
503
585
  ## [1.0.4](https://github.com/digital-ai/dot-components/tree/1.0.4) (07/28/2021)
@@ -507,19 +589,21 @@
507
589
  **Features:**
508
590
 
509
591
  - S-76930: New Component: DotSnackbar [\#607](https://github.com/digital-ai/dot-components/pull/607) ([coryell1287](https://github.com/coryell1287))
592
+ - S-76918: DialogButtonProps updated with more available BaseButtonProps [\#605](https://github.com/digital-ai/dot-components/pull/605) ([CWSites](https://github.com/CWSites))
593
+
594
+ **Fixed bugs:**
595
+
596
+ - D-18306: lock material UI to `4.11.x` [\#604](https://github.com/digital-ai/dot-components/pull/604) ([CWSites](https://github.com/CWSites))
510
597
 
511
598
  **Merged pull requests:**
512
599
 
513
600
  - 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))
514
- - Merging master back into develop [\#618](https://github.com/digital-ai/dot-components/pull/618) ([CWSites](https://github.com/CWSites))
515
601
  - 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))
516
602
  - S-76627: new snackbar provider [\#616](https://github.com/digital-ai/dot-components/pull/616) ([TheKeithStewart](https://github.com/TheKeithStewart))
517
603
  - S-76905 split button component back to experimental [\#614](https://github.com/digital-ai/dot-components/pull/614) ([CWSites](https://github.com/CWSites))
518
604
  - S-76905: update SplitButton design and functionality [\#613](https://github.com/digital-ai/dot-components/pull/613) ([CWSites](https://github.com/CWSites))
519
605
  - 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))
520
606
  - S-76838: address Sonarcloud code issues [\#608](https://github.com/digital-ai/dot-components/pull/608) ([CWSites](https://github.com/CWSites))
521
- - S-76918: DialogButtonProps updated with more available BaseButtonProps [\#605](https://github.com/digital-ai/dot-components/pull/605) ([CWSites](https://github.com/CWSites))
522
- - D-18306: lock material UI to `4.11.x` [\#604](https://github.com/digital-ai/dot-components/pull/604) ([CWSites](https://github.com/CWSites))
523
607
  - S-77317: Add 'height' prop to DotDrawer component [\#603](https://github.com/digital-ai/dot-components/pull/603) ([selsemore](https://github.com/selsemore))
524
608
  - Update GitHub prerelease [\#599](https://github.com/digital-ai/dot-components/pull/599) ([CWSites](https://github.com/CWSites))
525
609
  - S-76917: remove progressionBoard styles from theme provider [\#597](https://github.com/digital-ai/dot-components/pull/597) ([CWSites](https://github.com/CWSites))
@@ -537,20 +621,19 @@
537
621
 
538
622
  - Not all button props are passed to the buttons in a Dialog [\#571](https://github.com/digital-ai/dot-components/issues/571)
539
623
 
540
- **Merged pull requests:**
541
-
542
- - Deploying latest to master [\#615](https://github.com/digital-ai/dot-components/pull/615) ([CWSites](https://github.com/CWSites))
543
-
544
624
  ## [1.0.2](https://github.com/digital-ai/dot-components/tree/1.0.2) (07/08/2021)
545
625
 
546
626
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.0.1...1.0.2)
547
627
 
628
+ **Features:**
629
+
630
+ - 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))
631
+
548
632
  **Merged pull requests:**
549
633
 
550
634
  - 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))
551
635
  - 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))
552
636
  - updating github workflow to default to patch release [\#593](https://github.com/digital-ai/dot-components/pull/593) ([CWSites](https://github.com/CWSites))
553
- - 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))
554
637
  - Update icons [\#589](https://github.com/digital-ai/dot-components/pull/589) ([BojanKocijan](https://github.com/BojanKocijan))
555
638
  - Issue \#555: build warnings [\#588](https://github.com/digital-ai/dot-components/pull/588) ([CWSites](https://github.com/CWSites))
556
639
  - Issue \#181: Create Security Policy [\#584](https://github.com/digital-ai/dot-components/pull/584) ([CWSites](https://github.com/CWSites))
@@ -565,7 +648,6 @@
565
648
  - New icons 27 5 2021 [\#564](https://github.com/digital-ai/dot-components/pull/564) ([BojanKocijan](https://github.com/BojanKocijan))
566
649
  - Add isUnderToolbar property to Sidebar for use beneath AppToolbar [\#560](https://github.com/digital-ai/dot-components/pull/560) ([selsemore](https://github.com/selsemore))
567
650
  - Move approved components to "Stable" [\#559](https://github.com/digital-ai/dot-components/pull/559) ([CWSites](https://github.com/CWSites))
568
- - merging master \> develop [\#557](https://github.com/digital-ai/dot-components/pull/557) ([CWSites](https://github.com/CWSites))
569
651
  - 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))
570
652
  - 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))
571
653
 
@@ -612,10 +694,6 @@
612
694
  - S-73859: Configure Sonar Cloud [\#95](https://github.com/digital-ai/dot-components/issues/95)
613
695
  - Future roadmap [\#90](https://github.com/digital-ai/dot-components/issues/90)
614
696
 
615
- **Merged pull requests:**
616
-
617
- - Deploying latest to master [\#592](https://github.com/digital-ai/dot-components/pull/592) ([CWSites](https://github.com/CWSites))
618
-
619
697
  ## [v0.0.1-alpha.0](https://github.com/digital-ai/dot-components/tree/v0.0.1-alpha.0) (05/19/2021)
620
698
 
621
699
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/v0.0.0-alpha.45...v0.0.1-alpha.0)