@digital-ai/dot-components 1.5.4 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGE_LOG.md +87 -41
- package/dot-components.esm.js +575 -358
- package/dot-components.umd.js +618 -402
- package/lib/components/app-toolbar/AppToolbar.styles.d.ts +1 -1
- package/lib/components/auto-complete/AutoComplete.d.ts +3 -1
- package/lib/components/breadcrumbs/Breadcrumbs.data.d.ts +2 -0
- package/lib/components/drawer/Drawer.d.ts +11 -1
- package/lib/components/drawer/DrawerBody.d.ts +9 -0
- package/lib/components/drawer/DrawerBody.styles.d.ts +2 -0
- package/lib/components/drawer/DrawerFooter.d.ts +6 -0
- package/lib/components/drawer/DrawerFooter.styles.d.ts +2 -0
- package/lib/components/drawer/DrawerHeader.d.ts +8 -0
- package/lib/components/drawer/DrawerHeader.styles.d.ts +2 -0
- package/lib/components/helpers.d.ts +1 -0
- package/lib/components/index.d.ts +4 -3
- package/lib/components/list/NestedList.styles.d.ts +1 -1
- package/lib/components/menu/Menu.d.ts +0 -3
- package/lib/components/menu/Menu.stories.styles.d.ts +2 -0
- package/lib/components/menu/utils/constants.d.ts +3 -0
- package/lib/components/menu/utils/helpers.d.ts +8 -1
- package/lib/components/table/Table.d.ts +10 -3
- package/lib/components/table/Table.stories.data.d.ts +34 -2
- package/lib/components/table/TableBody.d.ts +4 -2
- package/lib/components/table/TableBody.styles.d.ts +2 -0
- package/lib/components/table/TableCell.d.ts +6 -4
- package/lib/components/table/TableCell.styles.d.ts +3 -0
- package/lib/components/table/TableHeader.d.ts +8 -35
- package/lib/components/table/TableHeaderCell.d.ts +38 -0
- package/lib/components/table/TableHeaderCell.styles.d.ts +3 -0
- package/lib/components/table/TablePagination.d.ts +6 -4
- package/lib/components/table/TablePagination.styles.d.ts +5 -2
- package/lib/components/table/TableRow.d.ts +6 -2
- package/lib/components/table/utils/helpers.d.ts +7 -0
- package/package.json +1 -1
package/CHANGE_LOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.6.0](https://github.com/digital-ai/dot-components/tree/1.6.0) (01/03/2022)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.4...1.6.0)
|
|
6
|
+
|
|
7
|
+
**Features:**
|
|
8
|
+
|
|
9
|
+
- S-77210: Component - Drawer [\#893](https://github.com/digital-ai/dot-components/pull/893) ([monapatel91](https://github.com/monapatel91))
|
|
10
|
+
|
|
11
|
+
**Fixed bugs:**
|
|
12
|
+
|
|
13
|
+
- `DynamicForm`: `isRequired` with value of `false` is not respected [\#918](https://github.com/digital-ai/dot-components/issues/918)
|
|
14
|
+
- `storybook`: issue while clicking on docs page of `menu` component [\#916](https://github.com/digital-ai/dot-components/issues/916)
|
|
15
|
+
- `DynamicForm` doesn't export all types [\#913](https://github.com/digital-ai/dot-components/issues/913)
|
|
16
|
+
- `AutoComplete` doesn't have `required` property [\#912](https://github.com/digital-ai/dot-components/issues/912)
|
|
17
|
+
- `Menu`: `maxVisibleItems` prop does not control visible items anymore [\#910](https://github.com/digital-ai/dot-components/issues/910)
|
|
18
|
+
- `Menu`: Circular dependency [\#908](https://github.com/digital-ai/dot-components/issues/908)
|
|
19
|
+
- `Breadcrumbs`: invalid combination of props [\#903](https://github.com/digital-ai/dot-components/issues/903)
|
|
20
|
+
- Styled component shouldn't need typeof [\#892](https://github.com/digital-ai/dot-components/issues/892)
|
|
21
|
+
- `Table` Cells in the Table component should be wrapped by DotTypography [\#805](https://github.com/digital-ai/dot-components/issues/805)
|
|
22
|
+
- `DotTable` Allow custom alignment on the last column of the table header [\#747](https://github.com/digital-ai/dot-components/issues/747)
|
|
23
|
+
- 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))
|
|
24
|
+
- 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))
|
|
25
|
+
- D-19379: `DynamicForm` doesn't export all types [\#915](https://github.com/digital-ai/dot-components/pull/915) ([dmiletic85](https://github.com/dmiletic85))
|
|
26
|
+
- D-19378: `AutoComplete` doesn't have `required` property [\#914](https://github.com/digital-ai/dot-components/pull/914) ([dmiletic85](https://github.com/dmiletic85))
|
|
27
|
+
- 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))
|
|
28
|
+
- D-19366: `Menu`: Circular dependency [\#909](https://github.com/digital-ai/dot-components/pull/909) ([dmiletic85](https://github.com/dmiletic85))
|
|
29
|
+
- D-19355: `Breadcrumbs`: invalid combination of props [\#907](https://github.com/digital-ai/dot-components/pull/907) ([dmiletic85](https://github.com/dmiletic85))
|
|
30
|
+
- 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))
|
|
31
|
+
|
|
3
32
|
## [1.5.4](https://github.com/digital-ai/dot-components/tree/1.5.4) (12/28/2021)
|
|
4
33
|
|
|
5
34
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.3...1.5.4)
|
|
@@ -19,7 +48,6 @@
|
|
|
19
48
|
- `List` Nested list drawer is not rendering correctly. [\#835](https://github.com/digital-ai/dot-components/issues/835)
|
|
20
49
|
- D-19337: `List`: Circular dependency [\#897](https://github.com/digital-ai/dot-components/pull/897) ([dmiletic85](https://github.com/dmiletic85))
|
|
21
50
|
- 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
51
|
- 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
52
|
|
|
25
53
|
## [1.5.3](https://github.com/digital-ai/dot-components/tree/1.5.3) (12/17/2021)
|
|
@@ -50,6 +78,7 @@
|
|
|
50
78
|
|
|
51
79
|
- `Apptoolbar`: primary logo link is hardcoded to `/` [\#879](https://github.com/digital-ai/dot-components/issues/879)
|
|
52
80
|
- `AlertBanner` [\#834](https://github.com/digital-ai/dot-components/issues/834)
|
|
81
|
+
- 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
82
|
- 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
83
|
|
|
55
84
|
## [1.5.1](https://github.com/digital-ai/dot-components/tree/1.5.1) (12/17/2021)
|
|
@@ -68,6 +97,7 @@
|
|
|
68
97
|
**Features:**
|
|
69
98
|
|
|
70
99
|
- `Breadcrumbs` enhancement \(collapse and expand automatically\) [\#836](https://github.com/digital-ai/dot-components/issues/836)
|
|
100
|
+
- S-80586: Breadcrumbs enhancement \(collapse and expand automatically\) [\#843](https://github.com/digital-ai/dot-components/pull/843) ([dmiletic85](https://github.com/dmiletic85))
|
|
71
101
|
|
|
72
102
|
**Fixed bugs:**
|
|
73
103
|
|
|
@@ -79,6 +109,7 @@
|
|
|
79
109
|
|
|
80
110
|
**Merged pull requests:**
|
|
81
111
|
|
|
112
|
+
- S-80787: branch protection [\#868](https://github.com/digital-ai/dot-components/pull/868) ([CWSites](https://github.com/CWSites))
|
|
82
113
|
- S-80783: add ESLint rule for alpha order [\#867](https://github.com/digital-ai/dot-components/pull/867) ([CWSites](https://github.com/CWSites))
|
|
83
114
|
|
|
84
115
|
## [1.4.0](https://github.com/digital-ai/dot-components/tree/1.4.0) (12/13/2021)
|
|
@@ -106,7 +137,6 @@
|
|
|
106
137
|
|
|
107
138
|
**Merged pull requests:**
|
|
108
139
|
|
|
109
|
-
- S-80787: branch protection [\#868](https://github.com/digital-ai/dot-components/pull/868) ([CWSites](https://github.com/CWSites))
|
|
110
140
|
- S-76843: setup PR release template [\#853](https://github.com/digital-ai/dot-components/pull/853) ([CWSites](https://github.com/CWSites))
|
|
111
141
|
- S-76843 automation improvements III [\#852](https://github.com/digital-ai/dot-components/pull/852) ([CWSites](https://github.com/CWSites))
|
|
112
142
|
|
|
@@ -119,7 +149,6 @@
|
|
|
119
149
|
- Expose onKeyDown for input [\#714](https://github.com/digital-ai/dot-components/issues/714)
|
|
120
150
|
- S-79571: DotInput - expose onKeyDown [\#846](https://github.com/digital-ai/dot-components/pull/846) ([monapatel91](https://github.com/monapatel91))
|
|
121
151
|
- 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
152
|
- S-80621: file upload [\#840](https://github.com/digital-ai/dot-components/pull/840) ([CWSites](https://github.com/CWSites))
|
|
124
153
|
- S-76922: file upload [\#820](https://github.com/digital-ai/dot-components/pull/820) ([CWSites](https://github.com/CWSites))
|
|
125
154
|
|
|
@@ -165,6 +194,7 @@
|
|
|
165
194
|
- S-80369: Create `ProgressButton` component [\#822](https://github.com/digital-ai/dot-components/pull/822) ([dmiletic85](https://github.com/dmiletic85))
|
|
166
195
|
- 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
196
|
- S-80264: Agility wrapper sandbox documentation [\#810](https://github.com/digital-ai/dot-components/pull/810) ([CWSites](https://github.com/CWSites))
|
|
197
|
+
- 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
198
|
|
|
169
199
|
**Fixed bugs:**
|
|
170
200
|
|
|
@@ -183,7 +213,6 @@
|
|
|
183
213
|
|
|
184
214
|
- 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
215
|
- 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
216
|
|
|
188
217
|
## [1.3.3](https://github.com/digital-ai/dot-components/tree/1.3.3) (11/16/2021)
|
|
189
218
|
|
|
@@ -225,6 +254,7 @@
|
|
|
225
254
|
|
|
226
255
|
**Fixed bugs:**
|
|
227
256
|
|
|
257
|
+
- \#770 Add Neutral colors missing [\#771](https://github.com/digital-ai/dot-components/pull/771) ([angel-git](https://github.com/angel-git))
|
|
228
258
|
- D-19042: remove duplicate tooltips [\#769](https://github.com/digital-ai/dot-components/pull/769) ([CWSites](https://github.com/CWSites))
|
|
229
259
|
|
|
230
260
|
**Merged pull requests:**
|
|
@@ -232,7 +262,6 @@
|
|
|
232
262
|
- Patch release [\#780](https://github.com/digital-ai/dot-components/pull/780) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
233
263
|
- 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
264
|
- 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
265
|
- S-76893: Webpack 4 - update peer dependencies [\#768](https://github.com/digital-ai/dot-components/pull/768) ([CWSites](https://github.com/CWSites))
|
|
237
266
|
- S-79957: improve husky [\#765](https://github.com/digital-ai/dot-components/pull/765) ([CWSites](https://github.com/CWSites))
|
|
238
267
|
|
|
@@ -240,19 +269,22 @@
|
|
|
240
269
|
|
|
241
270
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.3.0...1.3.1)
|
|
242
271
|
|
|
272
|
+
**Features:**
|
|
273
|
+
|
|
274
|
+
- S-77126: react jsonschema form wrapper [\#728](https://github.com/digital-ai/dot-components/pull/728) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
275
|
+
|
|
243
276
|
**Fixed bugs:**
|
|
244
277
|
|
|
245
278
|
- Lato 700 is not rendered correctly on Digital.ai Release with dot-components [\#758](https://github.com/digital-ai/dot-components/issues/758)
|
|
246
279
|
- Circular Dependency - Dynamic Form [\#757](https://github.com/digital-ai/dot-components/issues/757)
|
|
280
|
+
- 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))
|
|
281
|
+
- D-18543: proper export of type and interface [\#760](https://github.com/digital-ai/dot-components/pull/760) ([CWSites](https://github.com/CWSites))
|
|
282
|
+
- D-19023: Circular Dependency in `DynamicForm` component [\#759](https://github.com/digital-ai/dot-components/pull/759) ([dmiletic85](https://github.com/dmiletic85))
|
|
247
283
|
|
|
248
284
|
**Merged pull requests:**
|
|
249
285
|
|
|
250
286
|
- 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
287
|
- 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
288
|
|
|
257
289
|
## [1.3.0](https://github.com/digital-ai/dot-components/tree/1.3.0) (10/28/2021)
|
|
258
290
|
|
|
@@ -261,29 +293,29 @@
|
|
|
261
293
|
**Features:**
|
|
262
294
|
|
|
263
295
|
- Forms [\#594](https://github.com/digital-ai/dot-components/issues/594)
|
|
296
|
+
- S-77126: Dynamic Form [\#717](https://github.com/digital-ai/dot-components/pull/717) ([dmiletic85](https://github.com/dmiletic85))
|
|
264
297
|
|
|
265
298
|
**Fixed bugs:**
|
|
266
299
|
|
|
267
300
|
- AppToolbar height change breaks layout for consumer [\#733](https://github.com/digital-ai/dot-components/issues/733)
|
|
268
301
|
- `DotMenu` max height calculation doesn't take paddings into the consideration [\#707](https://github.com/digital-ai/dot-components/issues/707)
|
|
302
|
+
- 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))
|
|
303
|
+
- D-19004: update readme link to be accurate [\#750](https://github.com/digital-ai/dot-components/pull/750) ([CWSites](https://github.com/CWSites))
|
|
304
|
+
- 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))
|
|
305
|
+
- 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))
|
|
306
|
+
- 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))
|
|
307
|
+
- 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))
|
|
308
|
+
- 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
309
|
|
|
270
310
|
**Merged pull requests:**
|
|
271
311
|
|
|
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
312
|
- Next \[MINOR\] release [\#753](https://github.com/digital-ai/dot-components/pull/753) ([monapatel91](https://github.com/monapatel91))
|
|
274
313
|
- 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
314
|
- 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
315
|
- Icons: integrations, plugins [\#744](https://github.com/digital-ai/dot-components/pull/744) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
280
316
|
- Icons update oct 25 2021 [\#743](https://github.com/digital-ai/dot-components/pull/743) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
281
317
|
- 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
318
|
- 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
319
|
|
|
288
320
|
## [1.2.1](https://github.com/digital-ai/dot-components/tree/1.2.1) (10/15/2021)
|
|
289
321
|
|
|
@@ -292,6 +324,8 @@
|
|
|
292
324
|
**Fixed bugs:**
|
|
293
325
|
|
|
294
326
|
- Alpha .25 doesn't work well within agility dark theme [\#710](https://github.com/digital-ai/dot-components/issues/710)
|
|
327
|
+
- D-18963: add ariaLabel to sidebar collapse button [\#731](https://github.com/digital-ai/dot-components/pull/731) ([CWSites](https://github.com/CWSites))
|
|
328
|
+
- D-18979: export `Tooltip` component [\#729](https://github.com/digital-ai/dot-components/pull/729) ([CWSites](https://github.com/CWSites))
|
|
295
329
|
|
|
296
330
|
**Closed issues:**
|
|
297
331
|
|
|
@@ -300,9 +334,7 @@
|
|
|
300
334
|
**Merged pull requests:**
|
|
301
335
|
|
|
302
336
|
- 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
337
|
- 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
338
|
- Merge pull request \#719 from digital-ai/develop [\#727](https://github.com/digital-ai/dot-components/pull/727) ([CWSites](https://github.com/CWSites))
|
|
307
339
|
|
|
308
340
|
## [1.2.0](https://github.com/digital-ai/dot-components/tree/1.2.0) (10/14/2021)
|
|
@@ -315,14 +347,14 @@
|
|
|
315
347
|
- Menu className doesn't apply to relevant attribute or theming not correct [\#711](https://github.com/digital-ai/dot-components/issues/711)
|
|
316
348
|
- `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
349
|
- 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
350
|
- 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
351
|
- 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
352
|
- D-18973: `DotList` missing return statement [\#724](https://github.com/digital-ai/dot-components/pull/724) ([CWSites](https://github.com/CWSites))
|
|
324
353
|
- D-18972: custom logo height constraints [\#723](https://github.com/digital-ai/dot-components/pull/723) ([CWSites](https://github.com/CWSites))
|
|
325
354
|
- D-18970: remove color prop from Badge storybook config [\#722](https://github.com/digital-ai/dot-components/pull/722) ([CWSites](https://github.com/CWSites))
|
|
355
|
+
|
|
356
|
+
**Merged pull requests:**
|
|
357
|
+
|
|
326
358
|
- MINOR release [\#719](https://github.com/digital-ai/dot-components/pull/719) ([CWSites](https://github.com/CWSites))
|
|
327
359
|
- Icons oct 13 2021 [\#718](https://github.com/digital-ai/dot-components/pull/718) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
328
360
|
- S-78918: add loading indicator to menu [\#716](https://github.com/digital-ai/dot-components/pull/716) ([CWSites](https://github.com/CWSites))
|
|
@@ -336,6 +368,10 @@
|
|
|
336
368
|
|
|
337
369
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.1.0...1.1.1)
|
|
338
370
|
|
|
371
|
+
**Features:**
|
|
372
|
+
|
|
373
|
+
- S-78164: Sticky menu item on DotMenu component [\#687](https://github.com/digital-ai/dot-components/pull/687) ([dmiletic85](https://github.com/dmiletic85))
|
|
374
|
+
|
|
339
375
|
**Closed issues:**
|
|
340
376
|
|
|
341
377
|
- Security Updates [\#699](https://github.com/digital-ai/dot-components/issues/699)
|
|
@@ -347,7 +383,6 @@
|
|
|
347
383
|
- S-78832: Agility icon & badge updates [\#698](https://github.com/digital-ai/dot-components/pull/698) ([CWSites](https://github.com/CWSites))
|
|
348
384
|
- 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
385
|
- 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
386
|
|
|
352
387
|
## [1.1.0](https://github.com/digital-ai/dot-components/tree/1.1.0) (09/29/2021)
|
|
353
388
|
|
|
@@ -367,20 +402,23 @@
|
|
|
367
402
|
|
|
368
403
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.0.11...1.0.12)
|
|
369
404
|
|
|
405
|
+
**Features:**
|
|
406
|
+
|
|
407
|
+
- S-78051: Feedback on Navigation Rail component [\#681](https://github.com/digital-ai/dot-components/pull/681) ([dmiletic85](https://github.com/dmiletic85))
|
|
408
|
+
|
|
370
409
|
**Fixed bugs:**
|
|
371
410
|
|
|
372
411
|
- `DotAppToobar` has z-index higher than autocomplete [\#669](https://github.com/digital-ai/dot-components/issues/669)
|
|
373
412
|
- `Link` component is not triggered on `Enter` key [\#630](https://github.com/digital-ai/dot-components/issues/630)
|
|
374
413
|
- `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
414
|
- D-18817: set mainMenuItems to `null` by default [\#688](https://github.com/digital-ai/dot-components/pull/688) ([CWSites](https://github.com/CWSites))
|
|
380
415
|
- D-18664: update link to allow for keypress [\#686](https://github.com/digital-ai/dot-components/pull/686) ([CWSites](https://github.com/CWSites))
|
|
381
416
|
- D-18665: AppToolbar z-index update [\#685](https://github.com/digital-ai/dot-components/pull/685) ([CWSites](https://github.com/CWSites))
|
|
382
417
|
- D-18663: Update AutoComplete value typing [\#684](https://github.com/digital-ai/dot-components/pull/684) ([CWSites](https://github.com/CWSites))
|
|
383
|
-
|
|
418
|
+
|
|
419
|
+
**Merged pull requests:**
|
|
420
|
+
|
|
421
|
+
- Next Release [\#689](https://github.com/digital-ai/dot-components/pull/689) ([CWSites](https://github.com/CWSites))
|
|
384
422
|
|
|
385
423
|
## [1.0.11](https://github.com/digital-ai/dot-components/tree/1.0.11) (09/16/2021)
|
|
386
424
|
|
|
@@ -389,12 +427,11 @@
|
|
|
389
427
|
**Fixed bugs:**
|
|
390
428
|
|
|
391
429
|
- DotListItem [\#611](https://github.com/digital-ai/dot-components/issues/611)
|
|
430
|
+
- D-18421: close hamburger on navigate [\#679](https://github.com/digital-ai/dot-components/pull/679) ([CWSites](https://github.com/CWSites))
|
|
392
431
|
|
|
393
432
|
**Merged pull requests:**
|
|
394
433
|
|
|
395
|
-
- Next Release [\#682](https://github.com/digital-ai/dot-components/pull/682) ([CWSites](https://github.com/CWSites))
|
|
396
434
|
- 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
435
|
|
|
399
436
|
## [1.0.10](https://github.com/digital-ai/dot-components/tree/1.0.10) (09/09/2021)
|
|
400
437
|
|
|
@@ -403,12 +440,13 @@
|
|
|
403
440
|
**Fixed bugs:**
|
|
404
441
|
|
|
405
442
|
- Console warnings while running unit tests for codebase that is consuming dot-components library [\#629](https://github.com/digital-ai/dot-components/issues/629)
|
|
443
|
+
- D-18424: include breadcrumb wrapper with breadcrumb component [\#675](https://github.com/digital-ai/dot-components/pull/675) ([CWSites](https://github.com/CWSites))
|
|
444
|
+
- D-18536: material 4.12.3 upgrade [\#667](https://github.com/digital-ai/dot-components/pull/667) ([CWSites](https://github.com/CWSites))
|
|
406
445
|
|
|
407
446
|
**Merged pull requests:**
|
|
408
447
|
|
|
409
448
|
- New patch release [\#677](https://github.com/digital-ai/dot-components/pull/677) ([CWSites](https://github.com/CWSites))
|
|
410
|
-
-
|
|
411
|
-
- D-18536: material 4.12.3 upgrade [\#667](https://github.com/digital-ai/dot-components/pull/667) ([CWSites](https://github.com/CWSites))
|
|
449
|
+
- S-78572: Make entire sidebar backitem clickable [\#670](https://github.com/digital-ai/dot-components/pull/670) ([selsemore](https://github.com/selsemore))
|
|
412
450
|
|
|
413
451
|
## [1.0.9](https://github.com/digital-ai/dot-components/tree/1.0.9) (09/02/2021)
|
|
414
452
|
|
|
@@ -418,26 +456,25 @@
|
|
|
418
456
|
|
|
419
457
|
- \[DotTable\] Ability to make table body cell centered [\#609](https://github.com/digital-ai/dot-components/issues/609)
|
|
420
458
|
- \[DotTable\] Additional prop for making table cell field truncated and displayed in one line [\#602](https://github.com/digital-ai/dot-components/issues/602)
|
|
459
|
+
- 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
460
|
|
|
422
461
|
**Fixed bugs:**
|
|
423
462
|
|
|
424
463
|
- untouched modified files [\#660](https://github.com/digital-ai/dot-components/issues/660)
|
|
425
464
|
- Update Agility colors [\#656](https://github.com/digital-ai/dot-components/issues/656)
|
|
426
465
|
- Add aria-label property [\#632](https://github.com/digital-ai/dot-components/issues/632)
|
|
466
|
+
- D-18730: action toolbar support [\#671](https://github.com/digital-ai/dot-components/pull/671) ([CWSites](https://github.com/CWSites))
|
|
467
|
+
- 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
468
|
|
|
428
469
|
**Merged pull requests:**
|
|
429
470
|
|
|
430
471
|
- 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
|
-
- S-78572: Make entire sidebar backitem clickable [\#670](https://github.com/digital-ai/dot-components/pull/670) ([selsemore](https://github.com/selsemore))
|
|
433
472
|
- 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
473
|
- S-78516 extra files being formatted [\#665](https://github.com/digital-ai/dot-components/pull/665) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
435
474
|
- S-78464: add main branch name [\#664](https://github.com/digital-ai/dot-components/pull/664) ([CWSites](https://github.com/CWSites))
|
|
436
475
|
- 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
476
|
- Issue \#632: Add aria-label property [\#659](https://github.com/digital-ai/dot-components/pull/659) ([dmiletic85](https://github.com/dmiletic85))
|
|
439
477
|
- 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
478
|
- 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
479
|
- S-77872: gather test coverage in sonarcloud [\#653](https://github.com/digital-ai/dot-components/pull/653) ([CWSites](https://github.com/CWSites))
|
|
443
480
|
|
|
@@ -458,6 +495,10 @@
|
|
|
458
495
|
|
|
459
496
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.0.6...1.0.7)
|
|
460
497
|
|
|
498
|
+
**Features:**
|
|
499
|
+
|
|
500
|
+
- Custom main logo in the AppToolbar [\#637](https://github.com/digital-ai/dot-components/pull/637) ([monapatel91](https://github.com/monapatel91))
|
|
501
|
+
|
|
461
502
|
**Fixed bugs:**
|
|
462
503
|
|
|
463
504
|
- Link color is hardcoded for agility product [\#641](https://github.com/digital-ai/dot-components/issues/641)
|
|
@@ -474,7 +515,6 @@
|
|
|
474
515
|
- Patch release [\#645](https://github.com/digital-ai/dot-components/pull/645) ([CWSites](https://github.com/CWSites))
|
|
475
516
|
- S-78162: adjust link color [\#642](https://github.com/digital-ai/dot-components/pull/642) ([CWSites](https://github.com/CWSites))
|
|
476
517
|
- 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
518
|
|
|
479
519
|
## [1.0.6](https://github.com/digital-ai/dot-components/tree/1.0.6) (08/18/2021)
|
|
480
520
|
|
|
@@ -488,6 +528,7 @@
|
|
|
488
528
|
|
|
489
529
|
- Dialog and autocomplete dont follow agility dark theme [\#631](https://github.com/digital-ai/dot-components/issues/631)
|
|
490
530
|
- Fix agility theme colors [\#623](https://github.com/digital-ai/dot-components/issues/623)
|
|
531
|
+
- D-18346: fix sidebar menu item height [\#624](https://github.com/digital-ai/dot-components/pull/624) ([selsemore](https://github.com/selsemore))
|
|
491
532
|
|
|
492
533
|
**Merged pull requests:**
|
|
493
534
|
|
|
@@ -496,7 +537,6 @@
|
|
|
496
537
|
- 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
538
|
- Feedback of snackbar [\#628](https://github.com/digital-ai/dot-components/pull/628) ([monapatel91](https://github.com/monapatel91))
|
|
498
539
|
- 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
540
|
|
|
501
541
|
## [1.0.5](https://github.com/digital-ai/dot-components/tree/1.0.5) (07/28/2021)
|
|
502
542
|
|
|
@@ -513,6 +553,11 @@
|
|
|
513
553
|
**Features:**
|
|
514
554
|
|
|
515
555
|
- S-76930: New Component: DotSnackbar [\#607](https://github.com/digital-ai/dot-components/pull/607) ([coryell1287](https://github.com/coryell1287))
|
|
556
|
+
- S-76918: DialogButtonProps updated with more available BaseButtonProps [\#605](https://github.com/digital-ai/dot-components/pull/605) ([CWSites](https://github.com/CWSites))
|
|
557
|
+
|
|
558
|
+
**Fixed bugs:**
|
|
559
|
+
|
|
560
|
+
- 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
561
|
|
|
517
562
|
**Merged pull requests:**
|
|
518
563
|
|
|
@@ -523,8 +568,6 @@
|
|
|
523
568
|
- S-76905: update SplitButton design and functionality [\#613](https://github.com/digital-ai/dot-components/pull/613) ([CWSites](https://github.com/CWSites))
|
|
524
569
|
- 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
570
|
- 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
571
|
- S-77317: Add 'height' prop to DotDrawer component [\#603](https://github.com/digital-ai/dot-components/pull/603) ([selsemore](https://github.com/selsemore))
|
|
529
572
|
- Update GitHub prerelease [\#599](https://github.com/digital-ai/dot-components/pull/599) ([CWSites](https://github.com/CWSites))
|
|
530
573
|
- 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 +589,15 @@
|
|
|
546
589
|
|
|
547
590
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.0.1...1.0.2)
|
|
548
591
|
|
|
592
|
+
**Features:**
|
|
593
|
+
|
|
594
|
+
- 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))
|
|
595
|
+
|
|
549
596
|
**Merged pull requests:**
|
|
550
597
|
|
|
551
598
|
- 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
599
|
- 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
600
|
- 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
601
|
- Update icons [\#589](https://github.com/digital-ai/dot-components/pull/589) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
556
602
|
- Issue \#555: build warnings [\#588](https://github.com/digital-ai/dot-components/pull/588) ([CWSites](https://github.com/CWSites))
|
|
557
603
|
- Issue \#181: Create Security Policy [\#584](https://github.com/digital-ai/dot-components/pull/584) ([CWSites](https://github.com/CWSites))
|