@digital-ai/dot-components 1.5.4 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/CHANGE_LOG.md +166 -40
  2. package/dot-components.esm.js +3468 -3209
  3. package/dot-components.umd.js +1290 -529
  4. package/lib/components/accordion/Accordion.styles.d.ts +0 -1
  5. package/lib/components/app-toolbar/AppToolbar.d.ts +4 -2
  6. package/lib/components/app-toolbar/AppToolbar.stories.data.d.ts +15 -0
  7. package/lib/components/app-toolbar/AppToolbar.stories.styles.d.ts +2 -0
  8. package/lib/components/app-toolbar/AppToolbar.styles.d.ts +1 -1
  9. package/lib/components/auto-complete/AutoComplete.d.ts +18 -5
  10. package/lib/components/auto-complete/Autocomplete.stories.data.d.ts +5 -0
  11. package/lib/components/breadcrumbs/Breadcrumbs.d.ts +3 -1
  12. package/lib/components/breadcrumbs/Breadcrumbs.data.d.ts +3 -0
  13. package/lib/components/drawer/Drawer.d.ts +11 -1
  14. package/lib/components/drawer/DrawerBody.d.ts +9 -0
  15. package/lib/components/drawer/DrawerBody.styles.d.ts +2 -0
  16. package/lib/components/drawer/DrawerFooter.d.ts +6 -0
  17. package/lib/components/drawer/DrawerFooter.styles.d.ts +2 -0
  18. package/lib/components/drawer/DrawerHeader.d.ts +8 -0
  19. package/lib/components/drawer/DrawerHeader.styles.d.ts +2 -0
  20. package/lib/components/helpers.d.ts +1 -0
  21. package/lib/components/index.d.ts +4 -10
  22. package/lib/components/input-form-fields/Input.stories.data.d.ts +13 -0
  23. package/lib/components/input-form-fields/InputFormFields.propTypes.d.ts +1 -1
  24. package/lib/components/input-form-fields/InputSelect.d.ts +8 -1
  25. package/lib/components/list/List.stories.data.d.ts +1 -1
  26. package/lib/components/list/ListItem.styles.d.ts +1 -1
  27. package/lib/components/list/NestedList.styles.d.ts +1 -1
  28. package/lib/components/menu/Menu.d.ts +0 -3
  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 +8 -1
  32. package/lib/components/sidebar/Sidebar.stories.data.d.ts +90 -0
  33. package/lib/components/table/Table.d.ts +13 -3
  34. package/lib/components/table/Table.stories.data.d.ts +34 -2
  35. package/lib/components/table/TableBody.d.ts +7 -2
  36. package/lib/components/table/TableBody.styles.d.ts +2 -0
  37. package/lib/components/table/TableBodyCheckboxCell.d.ts +8 -0
  38. package/lib/components/table/TableBodyCheckboxCell.styles.d.ts +3 -0
  39. package/lib/components/table/TableCell.d.ts +6 -4
  40. package/lib/components/table/TableCell.styles.d.ts +3 -0
  41. package/lib/components/table/TableHeader.d.ts +10 -35
  42. package/lib/components/table/TableHeaderCell.d.ts +38 -0
  43. package/lib/components/table/TableHeaderCell.styles.d.ts +3 -0
  44. package/lib/components/table/TableHeaderCheckboxCell.d.ts +8 -0
  45. package/lib/components/table/TableHeaderCheckboxCell.styles.d.ts +3 -0
  46. package/lib/components/table/TablePagination.d.ts +6 -4
  47. package/lib/components/table/TablePagination.styles.d.ts +5 -2
  48. package/lib/components/table/TableRow.d.ts +9 -2
  49. package/lib/components/table/TableRow.styles.d.ts +2 -0
  50. package/lib/components/table/TableSelectionToolbar.d.ts +7 -0
  51. package/lib/components/table/TableSelectionToolbar.styles.d.ts +3 -0
  52. package/lib/components/table/index.d.ts +10 -0
  53. package/lib/components/table/utils/helpers.d.ts +9 -0
  54. package/lib/components/table/utils/models.d.ts +21 -0
  55. package/package.json +3 -2
package/CHANGE_LOG.md CHANGED
@@ -1,5 +1,114 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.7.0](https://github.com/digital-ai/dot-components/tree/1.7.0) (01/28/2022)
4
+
5
+ [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.6.2...1.7.0)
6
+
7
+ **Features:**
8
+
9
+ - Allow option/value pairs as DotInputSelect options in addition to strings [\#958](https://github.com/digital-ai/dot-components/issues/958)
10
+ - `Autocomplete` expose internal `onInputChange` [\#948](https://github.com/digital-ai/dot-components/issues/948)
11
+ - `Autocomplete` async options [\#946](https://github.com/digital-ai/dot-components/issues/946)
12
+ - `InputText` Component, Ability to add htmlElement\(hyperlink\) inside helperText property [\#831](https://github.com/digital-ai/dot-components/issues/831)
13
+ - `Menu` Improve support for custom open/close of `mainMenu` [\#773](https://github.com/digital-ai/dot-components/issues/773)
14
+ - S-81597: Allow for option/value pairs as DotInputSelect options [\#960](https://github.com/digital-ai/dot-components/pull/960) ([selsemore](https://github.com/selsemore))
15
+ - S-81394: `AppToolbar`: Improve support for custom open/close of `mainMenu` [\#953](https://github.com/digital-ai/dot-components/pull/953) ([dmiletic85](https://github.com/dmiletic85))
16
+ - S-81346: `Autocomplete` expose internal `onInputChange` [\#949](https://github.com/digital-ai/dot-components/pull/949) ([dmiletic85](https://github.com/dmiletic85))
17
+ - S-81317: `Autocomplete` async options [\#947](https://github.com/digital-ai/dot-components/pull/947) ([dmiletic85](https://github.com/dmiletic85))
18
+ - S-81304: `InputText`: Ability to add htmlElement\(hyperlink\) inside `helperText` property [\#945](https://github.com/digital-ai/dot-components/pull/945) ([dmiletic85](https://github.com/dmiletic85))
19
+
20
+ **Fixed bugs:**
21
+
22
+ - `Accordion`: `startIcon` is not aligned with the rest of the text [\#967](https://github.com/digital-ai/dot-components/issues/967)
23
+ - `IconButton`: `titleTooltip` deprecation console warning is displaying in the Storybook [\#965](https://github.com/digital-ai/dot-components/issues/965)
24
+ - `AppToolbar`: `fontSize` deprecation console warning is displaying [\#962](https://github.com/digital-ai/dot-components/issues/962)
25
+ - `Accordion`: Overflowing text when `noWrap` is set to `true` [\#959](https://github.com/digital-ai/dot-components/issues/959)
26
+ - Hamburger menu back button color is wrong [\#943](https://github.com/digital-ai/dot-components/issues/943)
27
+ - DotIconButton disableRipple prop is ignored [\#851](https://github.com/digital-ai/dot-components/issues/851)
28
+ - `Table` action menu items should be left aligned [\#794](https://github.com/digital-ai/dot-components/issues/794)
29
+ - D-19705: `Accordion`: `startIcon` is not aligned with the rest of the text [\#968](https://github.com/digital-ai/dot-components/pull/968) ([dmiletic85](https://github.com/dmiletic85))
30
+ - D-19700: `IconButton`: `titleTooltip` deprecation console warning is displaying in the Storybook [\#966](https://github.com/digital-ai/dot-components/pull/966) ([dmiletic85](https://github.com/dmiletic85))
31
+ - D-19697: `AppToolbar`: `fontSize` deprecation console warning is displaying [\#963](https://github.com/digital-ai/dot-components/pull/963) ([dmiletic85](https://github.com/dmiletic85))
32
+ - D-19691: `Accordion`: Overflowing text when `noWrap` is set to `true` [\#961](https://github.com/digital-ai/dot-components/pull/961) ([dmiletic85](https://github.com/dmiletic85))
33
+ - D-19558: `AppToolbar`: Hamburger menu back button color is wrong [\#955](https://github.com/digital-ai/dot-components/pull/955) ([dmiletic85](https://github.com/dmiletic85))
34
+ - D-19633: `Table` action menu items should be left aligned [\#954](https://github.com/digital-ai/dot-components/pull/954) ([dmiletic85](https://github.com/dmiletic85))
35
+
36
+ **Closed issues:**
37
+
38
+ - Deprecate `minWidth` prop on `Breadcrumbs` [\#777](https://github.com/digital-ai/dot-components/issues/777)
39
+
40
+ **Merged pull requests:**
41
+
42
+ - S-76846: upgrade to NX & storybook to latest `minor` release [\#951](https://github.com/digital-ai/dot-components/pull/951) ([CWSites](https://github.com/CWSites))
43
+ - S-76846: upgrade NX to latest [\#950](https://github.com/digital-ai/dot-components/pull/950) ([CWSites](https://github.com/CWSites))
44
+ - D-19517: Deprecate `minWidth` prop on Breadcrumbs [\#944](https://github.com/digital-ai/dot-components/pull/944) ([dmiletic85](https://github.com/dmiletic85))
45
+ - S-76846: Storybook updates [\#936](https://github.com/digital-ai/dot-components/pull/936) ([CWSites](https://github.com/CWSites))
46
+
47
+ ## [1.6.2](https://github.com/digital-ai/dot-components/tree/1.6.2) (01/14/2022)
48
+
49
+ [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.6.1...1.6.2)
50
+
51
+ **Features:**
52
+
53
+ - `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)
54
+ - `DotTable` MultiSelect [\#817](https://github.com/digital-ai/dot-components/issues/817)
55
+ - S-80342: `DotTable` MultiSelect support [\#928](https://github.com/digital-ai/dot-components/pull/928) ([dmiletic85](https://github.com/dmiletic85))
56
+
57
+ **Fixed bugs:**
58
+
59
+ - `AppToolbar`: Unnecessary scrollbar on the menu [\#937](https://github.com/digital-ai/dot-components/issues/937)
60
+ - DotDrawer changes break existing component consumer [\#932](https://github.com/digital-ai/dot-components/issues/932)
61
+ - D-19520: `AppToolbar`: Unnecessary scrollbar on the menu [\#941](https://github.com/digital-ai/dot-components/pull/941) ([dmiletic85](https://github.com/dmiletic85))
62
+ - D-19474: DotDrawer fixes [\#939](https://github.com/digital-ai/dot-components/pull/939) ([selsemore](https://github.com/selsemore))
63
+
64
+ **Merged pull requests:**
65
+
66
+ - S-76846: storybook updates `develop` [\#935](https://github.com/digital-ai/dot-components/pull/935) ([CWSites](https://github.com/CWSites))
67
+
68
+ ## [1.6.1](https://github.com/digital-ai/dot-components/tree/1.6.1) (01/10/2022)
69
+
70
+ [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.6.0...1.6.1)
71
+
72
+ **Features:**
73
+
74
+ - S-78917: Character limit for breadcrumb items [\#921](https://github.com/digital-ai/dot-components/pull/921) ([monapatel91](https://github.com/monapatel91))
75
+
76
+ **Fixed bugs:**
77
+
78
+ - `1.6.0` - Sidebar links broken, import was moved [\#925](https://github.com/digital-ai/dot-components/issues/925)
79
+ - `Autocomplete` doesn't have `dot-input` class [\#923](https://github.com/digital-ai/dot-components/issues/923)
80
+ - 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))
81
+ - D-19390: `Autocomplete` doesn't have `dot-input` class [\#924](https://github.com/digital-ai/dot-components/pull/924) ([dmiletic85](https://github.com/dmiletic85))
82
+
83
+ ## [1.6.0](https://github.com/digital-ai/dot-components/tree/1.6.0) (01/03/2022)
84
+
85
+ [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.4...1.6.0)
86
+
87
+ **Features:**
88
+
89
+ - S-77210: Component - Drawer [\#893](https://github.com/digital-ai/dot-components/pull/893) ([monapatel91](https://github.com/monapatel91))
90
+
91
+ **Fixed bugs:**
92
+
93
+ - `DynamicForm`: `isRequired` with value of `false` is not respected [\#918](https://github.com/digital-ai/dot-components/issues/918)
94
+ - `storybook`: issue while clicking on docs page of `menu` component [\#916](https://github.com/digital-ai/dot-components/issues/916)
95
+ - `DynamicForm` doesn't export all types [\#913](https://github.com/digital-ai/dot-components/issues/913)
96
+ - `AutoComplete` doesn't have `required` property [\#912](https://github.com/digital-ai/dot-components/issues/912)
97
+ - `Menu`: `maxVisibleItems` prop does not control visible items anymore [\#910](https://github.com/digital-ai/dot-components/issues/910)
98
+ - `Menu`: Circular dependency [\#908](https://github.com/digital-ai/dot-components/issues/908)
99
+ - `Breadcrumbs`: invalid combination of props [\#903](https://github.com/digital-ai/dot-components/issues/903)
100
+ - Styled component shouldn't need typeof [\#892](https://github.com/digital-ai/dot-components/issues/892)
101
+ - `Table` Cells in the Table component should be wrapped by DotTypography [\#805](https://github.com/digital-ai/dot-components/issues/805)
102
+ - `DotTable` Allow custom alignment on the last column of the table header [\#747](https://github.com/digital-ai/dot-components/issues/747)
103
+ - 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))
104
+ - 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))
105
+ - D-19379: `DynamicForm` doesn't export all types [\#915](https://github.com/digital-ai/dot-components/pull/915) ([dmiletic85](https://github.com/dmiletic85))
106
+ - D-19378: `AutoComplete` doesn't have `required` property [\#914](https://github.com/digital-ai/dot-components/pull/914) ([dmiletic85](https://github.com/dmiletic85))
107
+ - D-19376: `Menu`: `maxVisibleItems` prop does not control visible items anymore [\#911](https://github.com/digital-ai/dot-components/pull/911) ([dmiletic85](https://github.com/dmiletic85))
108
+ - D-19366: `Menu`: Circular dependency [\#909](https://github.com/digital-ai/dot-components/pull/909) ([dmiletic85](https://github.com/dmiletic85))
109
+ - D-19355: `Breadcrumbs`: invalid combination of props [\#907](https://github.com/digital-ai/dot-components/pull/907) ([dmiletic85](https://github.com/dmiletic85))
110
+ - D-19129: `Table`: Cells in the Table component should be wrapped by `DotTypography` [\#900](https://github.com/digital-ai/dot-components/pull/900) ([dmiletic85](https://github.com/dmiletic85))
111
+
3
112
  ## [1.5.4](https://github.com/digital-ai/dot-components/tree/1.5.4) (12/28/2021)
4
113
 
5
114
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.3...1.5.4)
@@ -19,7 +128,6 @@
19
128
  - `List` Nested list drawer is not rendering correctly. [\#835](https://github.com/digital-ai/dot-components/issues/835)
20
129
  - D-19337: `List`: Circular dependency [\#897](https://github.com/digital-ai/dot-components/pull/897) ([dmiletic85](https://github.com/dmiletic85))
21
130
  - D-19330: `AppToolbar` shouldn't have grey dividers [\#891](https://github.com/digital-ai/dot-components/pull/891) ([dmiletic85](https://github.com/dmiletic85))
22
- - D-19319: `Apptoolbar`: primary logo link is hardcoded to `/` [\#880](https://github.com/digital-ai/dot-components/pull/880) ([dmiletic85](https://github.com/dmiletic85))
23
131
  - D-19200: `List` Nested list drawer is not rendering correctly [\#869](https://github.com/digital-ai/dot-components/pull/869) ([dmiletic85](https://github.com/dmiletic85))
24
132
 
25
133
  ## [1.5.3](https://github.com/digital-ai/dot-components/tree/1.5.3) (12/17/2021)
@@ -50,6 +158,7 @@
50
158
 
51
159
  - `Apptoolbar`: primary logo link is hardcoded to `/` [\#879](https://github.com/digital-ai/dot-components/issues/879)
52
160
  - `AlertBanner` [\#834](https://github.com/digital-ai/dot-components/issues/834)
161
+ - D-19319: `Apptoolbar`: primary logo link is hardcoded to `/` [\#880](https://github.com/digital-ai/dot-components/pull/880) ([dmiletic85](https://github.com/dmiletic85))
53
162
  - D-19197: Warning in console when using html elements as `AlertBanner` children. [\#874](https://github.com/digital-ai/dot-components/pull/874) ([dmiletic85](https://github.com/dmiletic85))
54
163
 
55
164
  ## [1.5.1](https://github.com/digital-ai/dot-components/tree/1.5.1) (12/17/2021)
@@ -68,6 +177,7 @@
68
177
  **Features:**
69
178
 
70
179
  - `Breadcrumbs` enhancement \(collapse and expand automatically\) [\#836](https://github.com/digital-ai/dot-components/issues/836)
180
+ - S-80586: Breadcrumbs enhancement \(collapse and expand automatically\) [\#843](https://github.com/digital-ai/dot-components/pull/843) ([dmiletic85](https://github.com/dmiletic85))
71
181
 
72
182
  **Fixed bugs:**
73
183
 
@@ -79,6 +189,7 @@
79
189
 
80
190
  **Merged pull requests:**
81
191
 
192
+ - S-80787: branch protection [\#868](https://github.com/digital-ai/dot-components/pull/868) ([CWSites](https://github.com/CWSites))
82
193
  - S-80783: add ESLint rule for alpha order [\#867](https://github.com/digital-ai/dot-components/pull/867) ([CWSites](https://github.com/CWSites))
83
194
 
84
195
  ## [1.4.0](https://github.com/digital-ai/dot-components/tree/1.4.0) (12/13/2021)
@@ -106,7 +217,6 @@
106
217
 
107
218
  **Merged pull requests:**
108
219
 
109
- - S-80787: branch protection [\#868](https://github.com/digital-ai/dot-components/pull/868) ([CWSites](https://github.com/CWSites))
110
220
  - S-76843: setup PR release template [\#853](https://github.com/digital-ai/dot-components/pull/853) ([CWSites](https://github.com/CWSites))
111
221
  - S-76843 automation improvements III [\#852](https://github.com/digital-ai/dot-components/pull/852) ([CWSites](https://github.com/CWSites))
112
222
 
@@ -119,7 +229,6 @@
119
229
  - Expose onKeyDown for input [\#714](https://github.com/digital-ai/dot-components/issues/714)
120
230
  - S-79571: DotInput - expose onKeyDown [\#846](https://github.com/digital-ai/dot-components/pull/846) ([monapatel91](https://github.com/monapatel91))
121
231
  - S-79357: evaluate codebase and remove old references to core Tooltip [\#844](https://github.com/digital-ai/dot-components/pull/844) ([CWSites](https://github.com/CWSites))
122
- - S-80586: Breadcrumbs enhancement \(collapse and expand automatically\) [\#843](https://github.com/digital-ai/dot-components/pull/843) ([dmiletic85](https://github.com/dmiletic85))
123
232
  - S-80621: file upload [\#840](https://github.com/digital-ai/dot-components/pull/840) ([CWSites](https://github.com/CWSites))
124
233
  - S-76922: file upload [\#820](https://github.com/digital-ai/dot-components/pull/820) ([CWSites](https://github.com/CWSites))
125
234
 
@@ -165,6 +274,7 @@
165
274
  - S-80369: Create `ProgressButton` component [\#822](https://github.com/digital-ai/dot-components/pull/822) ([dmiletic85](https://github.com/dmiletic85))
166
275
  - 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))
167
276
  - S-80264: Agility wrapper sandbox documentation [\#810](https://github.com/digital-ai/dot-components/pull/810) ([CWSites](https://github.com/CWSites))
277
+ - 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))
168
278
 
169
279
  **Fixed bugs:**
170
280
 
@@ -183,7 +293,6 @@
183
293
 
184
294
  - 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))
185
295
  - 17 nov2021 update icon [\#803](https://github.com/digital-ai/dot-components/pull/803) ([BojanKocijan](https://github.com/BojanKocijan))
186
- - 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))
187
296
 
188
297
  ## [1.3.3](https://github.com/digital-ai/dot-components/tree/1.3.3) (11/16/2021)
189
298
 
@@ -225,6 +334,7 @@
225
334
 
226
335
  **Fixed bugs:**
227
336
 
337
+ - \#770 Add Neutral colors missing [\#771](https://github.com/digital-ai/dot-components/pull/771) ([angel-git](https://github.com/angel-git))
228
338
  - D-19042: remove duplicate tooltips [\#769](https://github.com/digital-ai/dot-components/pull/769) ([CWSites](https://github.com/CWSites))
229
339
 
230
340
  **Merged pull requests:**
@@ -232,7 +342,6 @@
232
342
  - Patch release [\#780](https://github.com/digital-ai/dot-components/pull/780) ([TheKeithStewart](https://github.com/TheKeithStewart))
233
343
  - S-79985: temporarily remove react-jsonschema-form from library [\#776](https://github.com/digital-ai/dot-components/pull/776) ([TheKeithStewart](https://github.com/TheKeithStewart))
234
344
  - Add submitButtonProps prop to DotJsonSchemaForm component [\#775](https://github.com/digital-ai/dot-components/pull/775) ([selsemore](https://github.com/selsemore))
235
- - \#770 Add Neutral colors missing [\#771](https://github.com/digital-ai/dot-components/pull/771) ([angel-git](https://github.com/angel-git))
236
345
  - S-76893: Webpack 4 - update peer dependencies [\#768](https://github.com/digital-ai/dot-components/pull/768) ([CWSites](https://github.com/CWSites))
237
346
  - S-79957: improve husky [\#765](https://github.com/digital-ai/dot-components/pull/765) ([CWSites](https://github.com/CWSites))
238
347
 
@@ -240,19 +349,22 @@
240
349
 
241
350
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.3.0...1.3.1)
242
351
 
352
+ **Features:**
353
+
354
+ - S-77126: react jsonschema form wrapper [\#728](https://github.com/digital-ai/dot-components/pull/728) ([TheKeithStewart](https://github.com/TheKeithStewart))
355
+
243
356
  **Fixed bugs:**
244
357
 
245
358
  - Lato 700 is not rendered correctly on Digital.ai Release with dot-components [\#758](https://github.com/digital-ai/dot-components/issues/758)
246
359
  - Circular Dependency - Dynamic Form [\#757](https://github.com/digital-ai/dot-components/issues/757)
360
+ - 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))
361
+ - D-18543: proper export of type and interface [\#760](https://github.com/digital-ai/dot-components/pull/760) ([CWSites](https://github.com/CWSites))
362
+ - D-19023: Circular Dependency in `DynamicForm` component [\#759](https://github.com/digital-ai/dot-components/pull/759) ([dmiletic85](https://github.com/dmiletic85))
247
363
 
248
364
  **Merged pull requests:**
249
365
 
250
366
  - Next \[PATCH\] Release [\#762](https://github.com/digital-ai/dot-components/pull/762) ([CWSites](https://github.com/CWSites))
251
- - 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))
252
- - D-18543: proper export of type and interface [\#760](https://github.com/digital-ai/dot-components/pull/760) ([CWSites](https://github.com/CWSites))
253
- - D-19023: Circular Dependency in `DynamicForm` component [\#759](https://github.com/digital-ai/dot-components/pull/759) ([dmiletic85](https://github.com/dmiletic85))
254
367
  - 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))
255
- - S-77126: react jsonschema form wrapper [\#728](https://github.com/digital-ai/dot-components/pull/728) ([TheKeithStewart](https://github.com/TheKeithStewart))
256
368
 
257
369
  ## [1.3.0](https://github.com/digital-ai/dot-components/tree/1.3.0) (10/28/2021)
258
370
 
@@ -261,29 +373,29 @@
261
373
  **Features:**
262
374
 
263
375
  - Forms [\#594](https://github.com/digital-ai/dot-components/issues/594)
376
+ - S-77126: Dynamic Form [\#717](https://github.com/digital-ai/dot-components/pull/717) ([dmiletic85](https://github.com/dmiletic85))
264
377
 
265
378
  **Fixed bugs:**
266
379
 
267
380
  - AppToolbar height change breaks layout for consumer [\#733](https://github.com/digital-ai/dot-components/issues/733)
268
381
  - `DotMenu` max height calculation doesn't take paddings into the consideration [\#707](https://github.com/digital-ai/dot-components/issues/707)
382
+ - 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))
383
+ - D-19004: update readme link to be accurate [\#750](https://github.com/digital-ai/dot-components/pull/750) ([CWSites](https://github.com/CWSites))
384
+ - 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))
385
+ - 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))
386
+ - 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))
387
+ - 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))
388
+ - 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))
269
389
 
270
390
  **Merged pull requests:**
271
391
 
272
- - 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))
273
392
  - Next \[MINOR\] release [\#753](https://github.com/digital-ai/dot-components/pull/753) ([monapatel91](https://github.com/monapatel91))
274
393
  - 27 oct2021 update name of progression icon [\#751](https://github.com/digital-ai/dot-components/pull/751) ([BojanKocijan](https://github.com/BojanKocijan))
275
- - D-19004: update readme link to be accurate [\#750](https://github.com/digital-ai/dot-components/pull/750) ([CWSites](https://github.com/CWSites))
276
- - 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))
277
394
  - Updated icons 26 oct 2021 [\#748](https://github.com/digital-ai/dot-components/pull/748) ([BojanKocijan](https://github.com/BojanKocijan))
278
- - 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))
279
395
  - Icons: integrations, plugins [\#744](https://github.com/digital-ai/dot-components/pull/744) ([BojanKocijan](https://github.com/BojanKocijan))
280
396
  - Icons update oct 25 2021 [\#743](https://github.com/digital-ai/dot-components/pull/743) ([BojanKocijan](https://github.com/BojanKocijan))
281
397
  - S-79594: Add optional debounce prop to `DotInputText` [\#742](https://github.com/digital-ai/dot-components/pull/742) ([dmiletic85](https://github.com/dmiletic85))
282
- - 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))
283
398
  - S-76892: create generator for new components [\#736](https://github.com/digital-ai/dot-components/pull/736) ([CWSites](https://github.com/CWSites))
284
- - 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))
285
- - 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))
286
- - S-77126: Dynamic Form [\#717](https://github.com/digital-ai/dot-components/pull/717) ([dmiletic85](https://github.com/dmiletic85))
287
399
 
288
400
  ## [1.2.1](https://github.com/digital-ai/dot-components/tree/1.2.1) (10/15/2021)
289
401
 
@@ -292,6 +404,8 @@
292
404
  **Fixed bugs:**
293
405
 
294
406
  - Alpha .25 doesn't work well within agility dark theme [\#710](https://github.com/digital-ai/dot-components/issues/710)
407
+ - D-18963: add ariaLabel to sidebar collapse button [\#731](https://github.com/digital-ai/dot-components/pull/731) ([CWSites](https://github.com/CWSites))
408
+ - D-18979: export `Tooltip` component [\#729](https://github.com/digital-ai/dot-components/pull/729) ([CWSites](https://github.com/CWSites))
295
409
 
296
410
  **Closed issues:**
297
411
 
@@ -300,9 +414,7 @@
300
414
  **Merged pull requests:**
301
415
 
302
416
  - next release [\#732](https://github.com/digital-ai/dot-components/pull/732) ([CWSites](https://github.com/CWSites))
303
- - D-18963: add ariaLabel to sidebar collapse button [\#731](https://github.com/digital-ai/dot-components/pull/731) ([CWSites](https://github.com/CWSites))
304
417
  - S-76840: update contributing guidelines and PR template [\#730](https://github.com/digital-ai/dot-components/pull/730) ([CWSites](https://github.com/CWSites))
305
- - D-18979: export `Tooltip` component [\#729](https://github.com/digital-ai/dot-components/pull/729) ([CWSites](https://github.com/CWSites))
306
418
  - Merge pull request \#719 from digital-ai/develop [\#727](https://github.com/digital-ai/dot-components/pull/727) ([CWSites](https://github.com/CWSites))
307
419
 
308
420
  ## [1.2.0](https://github.com/digital-ai/dot-components/tree/1.2.0) (10/14/2021)
@@ -315,14 +427,14 @@
315
427
  - Menu className doesn't apply to relevant attribute or theming not correct [\#711](https://github.com/digital-ai/dot-components/issues/711)
316
428
  - `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)
317
429
  - Wrong background colour on `DotAlertBanner` on top of a `DotDialog` [\#702](https://github.com/digital-ai/dot-components/issues/702)
318
-
319
- **Merged pull requests:**
320
-
321
430
  - D-18961: update dialog styles to be more explicit [\#726](https://github.com/digital-ai/dot-components/pull/726) ([CWSites](https://github.com/CWSites))
322
431
  - 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))
323
432
  - D-18973: `DotList` missing return statement [\#724](https://github.com/digital-ai/dot-components/pull/724) ([CWSites](https://github.com/CWSites))
324
433
  - D-18972: custom logo height constraints [\#723](https://github.com/digital-ai/dot-components/pull/723) ([CWSites](https://github.com/CWSites))
325
434
  - D-18970: remove color prop from Badge storybook config [\#722](https://github.com/digital-ai/dot-components/pull/722) ([CWSites](https://github.com/CWSites))
435
+
436
+ **Merged pull requests:**
437
+
326
438
  - MINOR release [\#719](https://github.com/digital-ai/dot-components/pull/719) ([CWSites](https://github.com/CWSites))
327
439
  - Icons oct 13 2021 [\#718](https://github.com/digital-ai/dot-components/pull/718) ([BojanKocijan](https://github.com/BojanKocijan))
328
440
  - S-78918: add loading indicator to menu [\#716](https://github.com/digital-ai/dot-components/pull/716) ([CWSites](https://github.com/CWSites))
@@ -336,6 +448,10 @@
336
448
 
337
449
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.1.0...1.1.1)
338
450
 
451
+ **Features:**
452
+
453
+ - S-78164: Sticky menu item on DotMenu component [\#687](https://github.com/digital-ai/dot-components/pull/687) ([dmiletic85](https://github.com/dmiletic85))
454
+
339
455
  **Closed issues:**
340
456
 
341
457
  - Security Updates [\#699](https://github.com/digital-ai/dot-components/issues/699)
@@ -347,7 +463,6 @@
347
463
  - S-78832: Agility icon & badge updates [\#698](https://github.com/digital-ai/dot-components/pull/698) ([CWSites](https://github.com/CWSites))
348
464
  - 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))
349
465
  - S-76906: table action column [\#692](https://github.com/digital-ai/dot-components/pull/692) ([monapatel91](https://github.com/monapatel91))
350
- - S-78164: Sticky menu item on DotMenu component [\#687](https://github.com/digital-ai/dot-components/pull/687) ([dmiletic85](https://github.com/dmiletic85))
351
466
 
352
467
  ## [1.1.0](https://github.com/digital-ai/dot-components/tree/1.1.0) (09/29/2021)
353
468
 
@@ -367,20 +482,23 @@
367
482
 
368
483
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.0.11...1.0.12)
369
484
 
485
+ **Features:**
486
+
487
+ - S-78051: Feedback on Navigation Rail component [\#681](https://github.com/digital-ai/dot-components/pull/681) ([dmiletic85](https://github.com/dmiletic85))
488
+
370
489
  **Fixed bugs:**
371
490
 
372
491
  - `DotAppToobar` has z-index higher than autocomplete [\#669](https://github.com/digital-ai/dot-components/issues/669)
373
492
  - `Link` component is not triggered on `Enter` key [\#630](https://github.com/digital-ai/dot-components/issues/630)
374
493
  - `AutoComplete` component has incorrectly typed `AutoCompleteValue` in `onChange` signature [\#627](https://github.com/digital-ai/dot-components/issues/627)
375
-
376
- **Merged pull requests:**
377
-
378
- - Next Release [\#689](https://github.com/digital-ai/dot-components/pull/689) ([CWSites](https://github.com/CWSites))
379
494
  - D-18817: set mainMenuItems to `null` by default [\#688](https://github.com/digital-ai/dot-components/pull/688) ([CWSites](https://github.com/CWSites))
380
495
  - D-18664: update link to allow for keypress [\#686](https://github.com/digital-ai/dot-components/pull/686) ([CWSites](https://github.com/CWSites))
381
496
  - D-18665: AppToolbar z-index update [\#685](https://github.com/digital-ai/dot-components/pull/685) ([CWSites](https://github.com/CWSites))
382
497
  - D-18663: Update AutoComplete value typing [\#684](https://github.com/digital-ai/dot-components/pull/684) ([CWSites](https://github.com/CWSites))
383
- - S-78051: Feedback on Navigation Rail component [\#681](https://github.com/digital-ai/dot-components/pull/681) ([dmiletic85](https://github.com/dmiletic85))
498
+
499
+ **Merged pull requests:**
500
+
501
+ - Next Release [\#689](https://github.com/digital-ai/dot-components/pull/689) ([CWSites](https://github.com/CWSites))
384
502
 
385
503
  ## [1.0.11](https://github.com/digital-ai/dot-components/tree/1.0.11) (09/16/2021)
386
504
 
@@ -389,12 +507,11 @@
389
507
  **Fixed bugs:**
390
508
 
391
509
  - DotListItem [\#611](https://github.com/digital-ai/dot-components/issues/611)
510
+ - D-18421: close hamburger on navigate [\#679](https://github.com/digital-ai/dot-components/pull/679) ([CWSites](https://github.com/CWSites))
392
511
 
393
512
  **Merged pull requests:**
394
513
 
395
- - Next Release [\#682](https://github.com/digital-ai/dot-components/pull/682) ([CWSites](https://github.com/CWSites))
396
514
  - 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))
397
- - D-18421: close hamburger on navigate [\#679](https://github.com/digital-ai/dot-components/pull/679) ([CWSites](https://github.com/CWSites))
398
515
 
399
516
  ## [1.0.10](https://github.com/digital-ai/dot-components/tree/1.0.10) (09/09/2021)
400
517
 
@@ -403,12 +520,12 @@
403
520
  **Fixed bugs:**
404
521
 
405
522
  - Console warnings while running unit tests for codebase that is consuming dot-components library [\#629](https://github.com/digital-ai/dot-components/issues/629)
523
+ - D-18424: include breadcrumb wrapper with breadcrumb component [\#675](https://github.com/digital-ai/dot-components/pull/675) ([CWSites](https://github.com/CWSites))
524
+ - D-18536: material 4.12.3 upgrade [\#667](https://github.com/digital-ai/dot-components/pull/667) ([CWSites](https://github.com/CWSites))
406
525
 
407
526
  **Merged pull requests:**
408
527
 
409
528
  - New patch release [\#677](https://github.com/digital-ai/dot-components/pull/677) ([CWSites](https://github.com/CWSites))
410
- - D-18424: include breadcrumb wrapper with breadcrumb component [\#675](https://github.com/digital-ai/dot-components/pull/675) ([CWSites](https://github.com/CWSites))
411
- - D-18536: material 4.12.3 upgrade [\#667](https://github.com/digital-ai/dot-components/pull/667) ([CWSites](https://github.com/CWSites))
412
529
 
413
530
  ## [1.0.9](https://github.com/digital-ai/dot-components/tree/1.0.9) (09/02/2021)
414
531
 
@@ -418,26 +535,26 @@
418
535
 
419
536
  - \[DotTable\] Ability to make table body cell centered [\#609](https://github.com/digital-ai/dot-components/issues/609)
420
537
  - \[DotTable\] Additional prop for making table cell field truncated and displayed in one line [\#602](https://github.com/digital-ai/dot-components/issues/602)
538
+ - 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))
421
539
 
422
540
  **Fixed bugs:**
423
541
 
424
542
  - untouched modified files [\#660](https://github.com/digital-ai/dot-components/issues/660)
425
543
  - Update Agility colors [\#656](https://github.com/digital-ai/dot-components/issues/656)
426
544
  - Add aria-label property [\#632](https://github.com/digital-ai/dot-components/issues/632)
545
+ - D-18730: action toolbar support [\#671](https://github.com/digital-ai/dot-components/pull/671) ([CWSites](https://github.com/CWSites))
546
+ - 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))
427
547
 
428
548
  **Merged pull requests:**
429
549
 
430
550
  - Release `1.0.8` [\#673](https://github.com/digital-ai/dot-components/pull/673) ([CWSites](https://github.com/CWSites))
431
- - D-18730: action toolbar support [\#671](https://github.com/digital-ai/dot-components/pull/671) ([CWSites](https://github.com/CWSites))
432
551
  - S-78572: Make entire sidebar backitem clickable [\#670](https://github.com/digital-ai/dot-components/pull/670) ([selsemore](https://github.com/selsemore))
433
552
  - improving table component by fixing issues reported on github [\#668](https://github.com/digital-ai/dot-components/pull/668) ([monapatel91](https://github.com/monapatel91))
434
553
  - S-78516 extra files being formatted [\#665](https://github.com/digital-ai/dot-components/pull/665) ([TheKeithStewart](https://github.com/TheKeithStewart))
435
554
  - S-78464: add main branch name [\#664](https://github.com/digital-ai/dot-components/pull/664) ([CWSites](https://github.com/CWSites))
436
555
  - S-78497: Add 'page' prop to DotTable [\#662](https://github.com/digital-ai/dot-components/pull/662) ([selsemore](https://github.com/selsemore))
437
- - 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))
438
556
  - Issue \#632: Add aria-label property [\#659](https://github.com/digital-ai/dot-components/pull/659) ([dmiletic85](https://github.com/dmiletic85))
439
557
  - S-78464: SonarQube [\#657](https://github.com/digital-ai/dot-components/pull/657) ([CWSites](https://github.com/CWSites))
440
- - 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))
441
558
  - 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))
442
559
  - S-77872: gather test coverage in sonarcloud [\#653](https://github.com/digital-ai/dot-components/pull/653) ([CWSites](https://github.com/CWSites))
443
560
 
@@ -458,6 +575,10 @@
458
575
 
459
576
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.0.6...1.0.7)
460
577
 
578
+ **Features:**
579
+
580
+ - Custom main logo in the AppToolbar [\#637](https://github.com/digital-ai/dot-components/pull/637) ([monapatel91](https://github.com/monapatel91))
581
+
461
582
  **Fixed bugs:**
462
583
 
463
584
  - Link color is hardcoded for agility product [\#641](https://github.com/digital-ai/dot-components/issues/641)
@@ -474,7 +595,6 @@
474
595
  - Patch release [\#645](https://github.com/digital-ai/dot-components/pull/645) ([CWSites](https://github.com/CWSites))
475
596
  - S-78162: adjust link color [\#642](https://github.com/digital-ai/dot-components/pull/642) ([CWSites](https://github.com/CWSites))
476
597
  - 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))
477
- - Custom main logo in the AppToolbar [\#637](https://github.com/digital-ai/dot-components/pull/637) ([monapatel91](https://github.com/monapatel91))
478
598
 
479
599
  ## [1.0.6](https://github.com/digital-ai/dot-components/tree/1.0.6) (08/18/2021)
480
600
 
@@ -488,6 +608,7 @@
488
608
 
489
609
  - Dialog and autocomplete dont follow agility dark theme [\#631](https://github.com/digital-ai/dot-components/issues/631)
490
610
  - Fix agility theme colors [\#623](https://github.com/digital-ai/dot-components/issues/623)
611
+ - D-18346: fix sidebar menu item height [\#624](https://github.com/digital-ai/dot-components/pull/624) ([selsemore](https://github.com/selsemore))
491
612
 
492
613
  **Merged pull requests:**
493
614
 
@@ -496,7 +617,6 @@
496
617
  - 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))
497
618
  - Feedback of snackbar [\#628](https://github.com/digital-ai/dot-components/pull/628) ([monapatel91](https://github.com/monapatel91))
498
619
  - S-77873: Support agility themes in certain components [\#626](https://github.com/digital-ai/dot-components/pull/626) ([CWSites](https://github.com/CWSites))
499
- - D-18346: fix sidebar menu item height [\#624](https://github.com/digital-ai/dot-components/pull/624) ([selsemore](https://github.com/selsemore))
500
620
 
501
621
  ## [1.0.5](https://github.com/digital-ai/dot-components/tree/1.0.5) (07/28/2021)
502
622
 
@@ -513,6 +633,11 @@
513
633
  **Features:**
514
634
 
515
635
  - S-76930: New Component: DotSnackbar [\#607](https://github.com/digital-ai/dot-components/pull/607) ([coryell1287](https://github.com/coryell1287))
636
+ - S-76918: DialogButtonProps updated with more available BaseButtonProps [\#605](https://github.com/digital-ai/dot-components/pull/605) ([CWSites](https://github.com/CWSites))
637
+
638
+ **Fixed bugs:**
639
+
640
+ - D-18306: lock material UI to `4.11.x` [\#604](https://github.com/digital-ai/dot-components/pull/604) ([CWSites](https://github.com/CWSites))
516
641
 
517
642
  **Merged pull requests:**
518
643
 
@@ -523,8 +648,6 @@
523
648
  - S-76905: update SplitButton design and functionality [\#613](https://github.com/digital-ai/dot-components/pull/613) ([CWSites](https://github.com/CWSites))
524
649
  - 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))
525
650
  - S-76838: address Sonarcloud code issues [\#608](https://github.com/digital-ai/dot-components/pull/608) ([CWSites](https://github.com/CWSites))
526
- - S-76918: DialogButtonProps updated with more available BaseButtonProps [\#605](https://github.com/digital-ai/dot-components/pull/605) ([CWSites](https://github.com/CWSites))
527
- - D-18306: lock material UI to `4.11.x` [\#604](https://github.com/digital-ai/dot-components/pull/604) ([CWSites](https://github.com/CWSites))
528
651
  - S-77317: Add 'height' prop to DotDrawer component [\#603](https://github.com/digital-ai/dot-components/pull/603) ([selsemore](https://github.com/selsemore))
529
652
  - Update GitHub prerelease [\#599](https://github.com/digital-ai/dot-components/pull/599) ([CWSites](https://github.com/CWSites))
530
653
  - S-76917: remove progressionBoard styles from theme provider [\#597](https://github.com/digital-ai/dot-components/pull/597) ([CWSites](https://github.com/CWSites))
@@ -546,12 +669,15 @@
546
669
 
547
670
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.0.1...1.0.2)
548
671
 
672
+ **Features:**
673
+
674
+ - 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))
675
+
549
676
  **Merged pull requests:**
550
677
 
551
678
  - 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))
552
679
  - 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))
553
680
  - updating github workflow to default to patch release [\#593](https://github.com/digital-ai/dot-components/pull/593) ([CWSites](https://github.com/CWSites))
554
- - 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))
555
681
  - Update icons [\#589](https://github.com/digital-ai/dot-components/pull/589) ([BojanKocijan](https://github.com/BojanKocijan))
556
682
  - Issue \#555: build warnings [\#588](https://github.com/digital-ai/dot-components/pull/588) ([CWSites](https://github.com/CWSites))
557
683
  - Issue \#181: Create Security Policy [\#584](https://github.com/digital-ai/dot-components/pull/584) ([CWSites](https://github.com/CWSites))