@digital-ai/dot-components 1.5.1 → 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 +145 -72
- package/dot-components.esm.js +1272 -1004
- package/dot-components.umd.js +1286 -1019
- package/lib/components/app-toolbar/AppToolbar.d.ts +4 -2
- 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/breadcrumbs/utils/helpers.d.ts +8 -2
- package/lib/components/breadcrumbs/utils/useBreadcrumbsObserver.d.ts +0 -2
- package/lib/components/breadcrumbs/utils/useBreadcrumbsResizer.d.ts +2 -0
- package/lib/components/drawer/Drawer.d.ts +11 -1
- package/lib/components/drawer/DrawerBody.d.ts +9 -0
- package/lib/components/drawer/DrawerBody.styles.d.ts +2 -0
- package/lib/components/drawer/DrawerFooter.d.ts +6 -0
- package/lib/components/drawer/DrawerFooter.styles.d.ts +2 -0
- package/lib/components/drawer/DrawerHeader.d.ts +8 -0
- package/lib/components/drawer/DrawerHeader.styles.d.ts +2 -0
- package/lib/components/helpers.d.ts +2 -0
- package/lib/components/index.d.ts +6 -5
- package/lib/components/list/List.d.ts +3 -86
- package/lib/components/list/List.stories.data.d.ts +1 -1
- package/lib/components/list/List.styles.d.ts +0 -42
- package/lib/components/list/ListItem.styles.d.ts +42 -0
- package/lib/components/list/NestedList.styles.d.ts +2 -0
- package/lib/components/list/index.d.ts +2 -0
- package/lib/components/list/utils/helpers.d.ts +2 -0
- package/lib/components/list/utils/models.d.ts +86 -0
- package/lib/components/menu/Menu.d.ts +2 -0
- package/lib/components/menu/Menu.stories.data.d.ts +23 -0
- package/lib/components/menu/Menu.stories.styles.d.ts +2 -0
- package/lib/components/menu/utils/constants.d.ts +3 -0
- package/lib/components/menu/utils/helpers.d.ts +12 -0
- package/lib/components/sidebar/Sidebar.d.ts +1 -1
- package/lib/components/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,86 @@
|
|
|
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
|
+
|
|
32
|
+
## [1.5.4](https://github.com/digital-ai/dot-components/tree/1.5.4) (12/28/2021)
|
|
33
|
+
|
|
34
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.3...1.5.4)
|
|
35
|
+
|
|
36
|
+
**Features:**
|
|
37
|
+
|
|
38
|
+
- `sidebar` Changes on back arrow [\#890](https://github.com/digital-ai/dot-components/issues/890)
|
|
39
|
+
- `Breadcrumbs` Display tooltip on last item \(on hover\) when it is clipped with ellipsis [\#878](https://github.com/digital-ai/dot-components/issues/878)
|
|
40
|
+
- 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))
|
|
41
|
+
- S-80871: `Sidebar` Changes on back arrow [\#896](https://github.com/digital-ai/dot-components/pull/896) ([dmiletic85](https://github.com/dmiletic85))
|
|
42
|
+
- 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))
|
|
43
|
+
|
|
44
|
+
**Fixed bugs:**
|
|
45
|
+
|
|
46
|
+
- Circular dependency [\#895](https://github.com/digital-ai/dot-components/issues/895)
|
|
47
|
+
- `AppToolbar` shouldn't have grey dividers [\#889](https://github.com/digital-ai/dot-components/issues/889)
|
|
48
|
+
- `List` Nested list drawer is not rendering correctly. [\#835](https://github.com/digital-ai/dot-components/issues/835)
|
|
49
|
+
- D-19337: `List`: Circular dependency [\#897](https://github.com/digital-ai/dot-components/pull/897) ([dmiletic85](https://github.com/dmiletic85))
|
|
50
|
+
- D-19330: `AppToolbar` shouldn't have grey dividers [\#891](https://github.com/digital-ai/dot-components/pull/891) ([dmiletic85](https://github.com/dmiletic85))
|
|
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))
|
|
52
|
+
|
|
53
|
+
## [1.5.3](https://github.com/digital-ai/dot-components/tree/1.5.3) (12/17/2021)
|
|
54
|
+
|
|
55
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.2...1.5.3)
|
|
56
|
+
|
|
57
|
+
**Features:**
|
|
58
|
+
|
|
59
|
+
- `Sidebar` Ability to view the sub nav items without expanding the DotSidebar [\#787](https://github.com/digital-ai/dot-components/issues/787)
|
|
60
|
+
|
|
61
|
+
**Fixed bugs:**
|
|
62
|
+
|
|
63
|
+
- Circular dependency on `useBreadcrumbsObserver` [\#881](https://github.com/digital-ai/dot-components/issues/881)
|
|
64
|
+
- `Sidebar` Collapsed sidebar with long divider titles [\#801](https://github.com/digital-ai/dot-components/issues/801)
|
|
65
|
+
- `List` Extended sidenav should open if custom onClick handler is supplied [\#767](https://github.com/digital-ai/dot-components/issues/767)
|
|
66
|
+
- D-19321: `Breadcrumbs` - Circular dependency on `useBreadcrumbsObserver` [\#882](https://github.com/digital-ai/dot-components/pull/882) ([dmiletic85](https://github.com/dmiletic85))
|
|
67
|
+
- S-79458: `Sidebar` & `List` updates [\#872](https://github.com/digital-ai/dot-components/pull/872) ([CWSites](https://github.com/CWSites))
|
|
68
|
+
|
|
69
|
+
**Merged pull requests:**
|
|
70
|
+
|
|
71
|
+
- S-80787: include changelog generation with release [\#877](https://github.com/digital-ai/dot-components/pull/877) ([CWSites](https://github.com/CWSites))
|
|
72
|
+
|
|
73
|
+
## [1.5.2](https://github.com/digital-ai/dot-components/tree/1.5.2) (12/17/2021)
|
|
74
|
+
|
|
75
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.1...1.5.2)
|
|
76
|
+
|
|
77
|
+
**Fixed bugs:**
|
|
78
|
+
|
|
79
|
+
- `Apptoolbar`: primary logo link is hardcoded to `/` [\#879](https://github.com/digital-ai/dot-components/issues/879)
|
|
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))
|
|
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))
|
|
83
|
+
|
|
3
84
|
## [1.5.1](https://github.com/digital-ai/dot-components/tree/1.5.1) (12/17/2021)
|
|
4
85
|
|
|
5
86
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.5.0...1.5.1)
|
|
@@ -58,7 +139,6 @@
|
|
|
58
139
|
|
|
59
140
|
- S-76843: setup PR release template [\#853](https://github.com/digital-ai/dot-components/pull/853) ([CWSites](https://github.com/CWSites))
|
|
60
141
|
- S-76843 automation improvements III [\#852](https://github.com/digital-ai/dot-components/pull/852) ([CWSites](https://github.com/CWSites))
|
|
61
|
-
- Merge `master` back to `develop` [\#849](https://github.com/digital-ai/dot-components/pull/849) ([CWSites](https://github.com/CWSites))
|
|
62
142
|
|
|
63
143
|
## [1.3.6](https://github.com/digital-ai/dot-components/tree/1.3.6) (12/10/2021)
|
|
64
144
|
|
|
@@ -103,10 +183,6 @@
|
|
|
103
183
|
- D-19151: `DotBadge` generates console warnings [\#827](https://github.com/digital-ai/dot-components/pull/827) ([dmiletic85](https://github.com/dmiletic85))
|
|
104
184
|
- 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))
|
|
105
185
|
|
|
106
|
-
**Merged pull requests:**
|
|
107
|
-
|
|
108
|
-
- merge `master` \> `develop` [\#825](https://github.com/digital-ai/dot-components/pull/825) ([CWSites](https://github.com/CWSites))
|
|
109
|
-
|
|
110
186
|
## [1.3.4](https://github.com/digital-ai/dot-components/tree/1.3.4) (11/30/2021)
|
|
111
187
|
|
|
112
188
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.3.3...1.3.4)
|
|
@@ -118,6 +194,7 @@
|
|
|
118
194
|
- S-80369: Create `ProgressButton` component [\#822](https://github.com/digital-ai/dot-components/pull/822) ([dmiletic85](https://github.com/dmiletic85))
|
|
119
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))
|
|
120
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))
|
|
121
198
|
|
|
122
199
|
**Fixed bugs:**
|
|
123
200
|
|
|
@@ -130,14 +207,12 @@
|
|
|
130
207
|
- \#795 Address AlertBanner style issues [\#815](https://github.com/digital-ai/dot-components/pull/815) ([angel-git](https://github.com/angel-git))
|
|
131
208
|
- D-19138: Remove margin-bottom from breadcrumbs [\#813](https://github.com/digital-ai/dot-components/pull/813) ([angel-git](https://github.com/angel-git))
|
|
132
209
|
- 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))
|
|
210
|
+
- \[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))
|
|
133
211
|
|
|
134
212
|
**Merged pull requests:**
|
|
135
213
|
|
|
136
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))
|
|
137
|
-
- \[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))
|
|
138
215
|
- 17 nov2021 update icon [\#803](https://github.com/digital-ai/dot-components/pull/803) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
139
|
-
- 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))
|
|
140
|
-
- Bringing `master` back into `develop` [\#797](https://github.com/digital-ai/dot-components/pull/797) ([CWSites](https://github.com/CWSites))
|
|
141
216
|
|
|
142
217
|
## [1.3.3](https://github.com/digital-ai/dot-components/tree/1.3.3) (11/16/2021)
|
|
143
218
|
|
|
@@ -154,20 +229,19 @@
|
|
|
154
229
|
- Wrong z-index for autocomplete [\#779](https://github.com/digital-ai/dot-components/issues/779)
|
|
155
230
|
- DotInputText startIcon and endIcon are not aligned with text [\#764](https://github.com/digital-ai/dot-components/issues/764)
|
|
156
231
|
- Allow normal text formatting inside DotAlertBanner [\#738](https://github.com/digital-ai/dot-components/issues/738)
|
|
157
|
-
|
|
158
|
-
**Merged pull requests:**
|
|
159
|
-
|
|
160
|
-
- Next minor release [\#796](https://github.com/digital-ai/dot-components/pull/796) ([CWSites](https://github.com/CWSites))
|
|
161
232
|
- D-19069: `AutoComplete` z-index not behaving as expected [\#793](https://github.com/digital-ai/dot-components/pull/793) ([CWSites](https://github.com/CWSites))
|
|
162
233
|
- 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))
|
|
163
234
|
- 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))
|
|
164
235
|
- D-19065: `DotProgress` remove default `title` value [\#790](https://github.com/digital-ai/dot-components/pull/790) ([CWSites](https://github.com/CWSites))
|
|
236
|
+
|
|
237
|
+
**Merged pull requests:**
|
|
238
|
+
|
|
239
|
+
- Next minor release [\#796](https://github.com/digital-ai/dot-components/pull/796) ([CWSites](https://github.com/CWSites))
|
|
165
240
|
- 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))
|
|
166
241
|
- S-79880: Add 'target' prop to ListItemProps [\#788](https://github.com/digital-ai/dot-components/pull/788) ([selsemore](https://github.com/selsemore))
|
|
167
242
|
- 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))
|
|
168
243
|
- 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))
|
|
169
244
|
- S-80048: product wrapper demo [\#782](https://github.com/digital-ai/dot-components/pull/782) ([CWSites](https://github.com/CWSites))
|
|
170
|
-
- bring `master` back into `develop` [\#781](https://github.com/digital-ai/dot-components/pull/781) ([CWSites](https://github.com/CWSites))
|
|
171
245
|
|
|
172
246
|
## [1.3.2](https://github.com/digital-ai/dot-components/tree/1.3.2) (11/05/2021)
|
|
173
247
|
|
|
@@ -178,35 +252,39 @@
|
|
|
178
252
|
- Add submitButtonProps prop to DotJsonSchemaForm component [\#774](https://github.com/digital-ai/dot-components/issues/774)
|
|
179
253
|
- Export all neutral colors [\#770](https://github.com/digital-ai/dot-components/issues/770)
|
|
180
254
|
|
|
255
|
+
**Fixed bugs:**
|
|
256
|
+
|
|
257
|
+
- \#770 Add Neutral colors missing [\#771](https://github.com/digital-ai/dot-components/pull/771) ([angel-git](https://github.com/angel-git))
|
|
258
|
+
- D-19042: remove duplicate tooltips [\#769](https://github.com/digital-ai/dot-components/pull/769) ([CWSites](https://github.com/CWSites))
|
|
259
|
+
|
|
181
260
|
**Merged pull requests:**
|
|
182
261
|
|
|
183
262
|
- Patch release [\#780](https://github.com/digital-ai/dot-components/pull/780) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
184
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))
|
|
185
264
|
- Add submitButtonProps prop to DotJsonSchemaForm component [\#775](https://github.com/digital-ai/dot-components/pull/775) ([selsemore](https://github.com/selsemore))
|
|
186
|
-
- \#770 Add Neutral colors missing [\#771](https://github.com/digital-ai/dot-components/pull/771) ([angel-git](https://github.com/angel-git))
|
|
187
|
-
- D-19042: remove duplicate tooltips [\#769](https://github.com/digital-ai/dot-components/pull/769) ([CWSites](https://github.com/CWSites))
|
|
188
265
|
- S-76893: Webpack 4 - update peer dependencies [\#768](https://github.com/digital-ai/dot-components/pull/768) ([CWSites](https://github.com/CWSites))
|
|
189
266
|
- S-79957: improve husky [\#765](https://github.com/digital-ai/dot-components/pull/765) ([CWSites](https://github.com/CWSites))
|
|
190
|
-
- merge `master` \> `develop` [\#763](https://github.com/digital-ai/dot-components/pull/763) ([CWSites](https://github.com/CWSites))
|
|
191
267
|
|
|
192
268
|
## [1.3.1](https://github.com/digital-ai/dot-components/tree/1.3.1) (10/30/2021)
|
|
193
269
|
|
|
194
270
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.3.0...1.3.1)
|
|
195
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
|
+
|
|
196
276
|
**Fixed bugs:**
|
|
197
277
|
|
|
198
278
|
- Lato 700 is not rendered correctly on Digital.ai Release with dot-components [\#758](https://github.com/digital-ai/dot-components/issues/758)
|
|
199
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))
|
|
200
283
|
|
|
201
284
|
**Merged pull requests:**
|
|
202
285
|
|
|
203
286
|
- Next \[PATCH\] Release [\#762](https://github.com/digital-ai/dot-components/pull/762) ([CWSites](https://github.com/CWSites))
|
|
204
|
-
- 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))
|
|
205
|
-
- D-18543: proper export of type and interface [\#760](https://github.com/digital-ai/dot-components/pull/760) ([CWSites](https://github.com/CWSites))
|
|
206
|
-
- D-19023: Circular Dependency in `DynamicForm` component [\#759](https://github.com/digital-ai/dot-components/pull/759) ([dmiletic85](https://github.com/dmiletic85))
|
|
207
|
-
- Bring `master` back into `develop` [\#756](https://github.com/digital-ai/dot-components/pull/756) ([CWSites](https://github.com/CWSites))
|
|
208
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))
|
|
209
|
-
- S-77126: react jsonschema form wrapper [\#728](https://github.com/digital-ai/dot-components/pull/728) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
210
288
|
|
|
211
289
|
## [1.3.0](https://github.com/digital-ai/dot-components/tree/1.3.0) (10/28/2021)
|
|
212
290
|
|
|
@@ -215,28 +293,29 @@
|
|
|
215
293
|
**Features:**
|
|
216
294
|
|
|
217
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))
|
|
218
297
|
|
|
219
298
|
**Fixed bugs:**
|
|
220
299
|
|
|
221
300
|
- AppToolbar height change breaks layout for consumer [\#733](https://github.com/digital-ai/dot-components/issues/733)
|
|
222
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))
|
|
223
309
|
|
|
224
310
|
**Merged pull requests:**
|
|
225
311
|
|
|
226
|
-
- 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))
|
|
227
312
|
- Next \[MINOR\] release [\#753](https://github.com/digital-ai/dot-components/pull/753) ([monapatel91](https://github.com/monapatel91))
|
|
228
313
|
- 27 oct2021 update name of progression icon [\#751](https://github.com/digital-ai/dot-components/pull/751) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
229
|
-
- D-19004: update readme link to be accurate [\#750](https://github.com/digital-ai/dot-components/pull/750) ([CWSites](https://github.com/CWSites))
|
|
230
|
-
- 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))
|
|
231
314
|
- Updated icons 26 oct 2021 [\#748](https://github.com/digital-ai/dot-components/pull/748) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
232
|
-
- 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))
|
|
233
315
|
- Icons: integrations, plugins [\#744](https://github.com/digital-ai/dot-components/pull/744) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
234
316
|
- Icons update oct 25 2021 [\#743](https://github.com/digital-ai/dot-components/pull/743) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
235
317
|
- S-79594: Add optional debounce prop to `DotInputText` [\#742](https://github.com/digital-ai/dot-components/pull/742) ([dmiletic85](https://github.com/dmiletic85))
|
|
236
|
-
- 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))
|
|
237
318
|
- S-76892: create generator for new components [\#736](https://github.com/digital-ai/dot-components/pull/736) ([CWSites](https://github.com/CWSites))
|
|
238
|
-
- 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))
|
|
239
|
-
- 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))
|
|
240
319
|
|
|
241
320
|
## [1.2.1](https://github.com/digital-ai/dot-components/tree/1.2.1) (10/15/2021)
|
|
242
321
|
|
|
@@ -245,6 +324,8 @@
|
|
|
245
324
|
**Fixed bugs:**
|
|
246
325
|
|
|
247
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))
|
|
248
329
|
|
|
249
330
|
**Closed issues:**
|
|
250
331
|
|
|
@@ -253,9 +334,7 @@
|
|
|
253
334
|
**Merged pull requests:**
|
|
254
335
|
|
|
255
336
|
- next release [\#732](https://github.com/digital-ai/dot-components/pull/732) ([CWSites](https://github.com/CWSites))
|
|
256
|
-
- D-18963: add ariaLabel to sidebar collapse button [\#731](https://github.com/digital-ai/dot-components/pull/731) ([CWSites](https://github.com/CWSites))
|
|
257
337
|
- S-76840: update contributing guidelines and PR template [\#730](https://github.com/digital-ai/dot-components/pull/730) ([CWSites](https://github.com/CWSites))
|
|
258
|
-
- D-18979: export `Tooltip` component [\#729](https://github.com/digital-ai/dot-components/pull/729) ([CWSites](https://github.com/CWSites))
|
|
259
338
|
- Merge pull request \#719 from digital-ai/develop [\#727](https://github.com/digital-ai/dot-components/pull/727) ([CWSites](https://github.com/CWSites))
|
|
260
339
|
|
|
261
340
|
## [1.2.0](https://github.com/digital-ai/dot-components/tree/1.2.0) (10/14/2021)
|
|
@@ -268,29 +347,31 @@
|
|
|
268
347
|
- Menu className doesn't apply to relevant attribute or theming not correct [\#711](https://github.com/digital-ai/dot-components/issues/711)
|
|
269
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)
|
|
270
349
|
- Wrong background colour on `DotAlertBanner` on top of a `DotDialog` [\#702](https://github.com/digital-ai/dot-components/issues/702)
|
|
271
|
-
|
|
272
|
-
**Merged pull requests:**
|
|
273
|
-
|
|
274
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))
|
|
275
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))
|
|
276
352
|
- D-18973: `DotList` missing return statement [\#724](https://github.com/digital-ai/dot-components/pull/724) ([CWSites](https://github.com/CWSites))
|
|
277
353
|
- D-18972: custom logo height constraints [\#723](https://github.com/digital-ai/dot-components/pull/723) ([CWSites](https://github.com/CWSites))
|
|
278
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
|
+
|
|
279
358
|
- MINOR release [\#719](https://github.com/digital-ai/dot-components/pull/719) ([CWSites](https://github.com/CWSites))
|
|
280
359
|
- Icons oct 13 2021 [\#718](https://github.com/digital-ai/dot-components/pull/718) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
281
|
-
- S-77126: Dynamic Form [\#717](https://github.com/digital-ai/dot-components/pull/717) ([dmiletic85](https://github.com/dmiletic85))
|
|
282
360
|
- S-78918: add loading indicator to menu [\#716](https://github.com/digital-ai/dot-components/pull/716) ([CWSites](https://github.com/CWSites))
|
|
283
361
|
- S-78834: update icon buttons to follow agility theme more closely [\#715](https://github.com/digital-ai/dot-components/pull/715) ([CWSites](https://github.com/CWSites))
|
|
284
362
|
- S-77041: New component tooltip [\#713](https://github.com/digital-ai/dot-components/pull/713) ([monapatel91](https://github.com/monapatel91))
|
|
285
363
|
- S-76773: product badges in app toolbar and sidebar [\#712](https://github.com/digital-ai/dot-components/pull/712) ([CWSites](https://github.com/CWSites))
|
|
286
364
|
- Icons update oct 7th 2021 [\#709](https://github.com/digital-ai/dot-components/pull/709) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
287
|
-
- Bring `master` back into `develop` [\#705](https://github.com/digital-ai/dot-components/pull/705) ([CWSites](https://github.com/CWSites))
|
|
288
365
|
- S-78833 agility sidebar [\#701](https://github.com/digital-ai/dot-components/pull/701) ([CWSites](https://github.com/CWSites))
|
|
289
366
|
|
|
290
367
|
## [1.1.1](https://github.com/digital-ai/dot-components/tree/1.1.1) (10/06/2021)
|
|
291
368
|
|
|
292
369
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.1.0...1.1.1)
|
|
293
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
|
+
|
|
294
375
|
**Closed issues:**
|
|
295
376
|
|
|
296
377
|
- Security Updates [\#699](https://github.com/digital-ai/dot-components/issues/699)
|
|
@@ -301,9 +382,7 @@
|
|
|
301
382
|
- S-79291: update nested dependencies [\#700](https://github.com/digital-ai/dot-components/pull/700) ([CWSites](https://github.com/CWSites))
|
|
302
383
|
- S-78832: Agility icon & badge updates [\#698](https://github.com/digital-ai/dot-components/pull/698) ([CWSites](https://github.com/CWSites))
|
|
303
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))
|
|
304
|
-
- Bring `master` back into `develop` [\#696](https://github.com/digital-ai/dot-components/pull/696) ([CWSites](https://github.com/CWSites))
|
|
305
385
|
- S-76906: table action column [\#692](https://github.com/digital-ai/dot-components/pull/692) ([monapatel91](https://github.com/monapatel91))
|
|
306
|
-
- S-78164: Sticky menu item on DotMenu component [\#687](https://github.com/digital-ai/dot-components/pull/687) ([dmiletic85](https://github.com/dmiletic85))
|
|
307
386
|
|
|
308
387
|
## [1.1.0](https://github.com/digital-ai/dot-components/tree/1.1.0) (09/29/2021)
|
|
309
388
|
|
|
@@ -318,27 +397,28 @@
|
|
|
318
397
|
- MINOR release [\#695](https://github.com/digital-ai/dot-components/pull/695) ([CWSites](https://github.com/CWSites))
|
|
319
398
|
- pass value to tab [\#694](https://github.com/digital-ai/dot-components/pull/694) ([kmmarsh](https://github.com/kmmarsh))
|
|
320
399
|
- S-78831: update AppToolbar component for Agility [\#691](https://github.com/digital-ai/dot-components/pull/691) ([CWSites](https://github.com/CWSites))
|
|
321
|
-
- Bring `master` back into `develop` [\#690](https://github.com/digital-ai/dot-components/pull/690) ([CWSites](https://github.com/CWSites))
|
|
322
400
|
|
|
323
401
|
## [1.0.12](https://github.com/digital-ai/dot-components/tree/1.0.12) (09/23/2021)
|
|
324
402
|
|
|
325
403
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.0.11...1.0.12)
|
|
326
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
|
+
|
|
327
409
|
**Fixed bugs:**
|
|
328
410
|
|
|
329
411
|
- `DotAppToobar` has z-index higher than autocomplete [\#669](https://github.com/digital-ai/dot-components/issues/669)
|
|
330
412
|
- `Link` component is not triggered on `Enter` key [\#630](https://github.com/digital-ai/dot-components/issues/630)
|
|
331
413
|
- `AutoComplete` component has incorrectly typed `AutoCompleteValue` in `onChange` signature [\#627](https://github.com/digital-ai/dot-components/issues/627)
|
|
332
|
-
|
|
333
|
-
**Merged pull requests:**
|
|
334
|
-
|
|
335
|
-
- Next Release [\#689](https://github.com/digital-ai/dot-components/pull/689) ([CWSites](https://github.com/CWSites))
|
|
336
414
|
- D-18817: set mainMenuItems to `null` by default [\#688](https://github.com/digital-ai/dot-components/pull/688) ([CWSites](https://github.com/CWSites))
|
|
337
415
|
- D-18664: update link to allow for keypress [\#686](https://github.com/digital-ai/dot-components/pull/686) ([CWSites](https://github.com/CWSites))
|
|
338
416
|
- D-18665: AppToolbar z-index update [\#685](https://github.com/digital-ai/dot-components/pull/685) ([CWSites](https://github.com/CWSites))
|
|
339
417
|
- D-18663: Update AutoComplete value typing [\#684](https://github.com/digital-ai/dot-components/pull/684) ([CWSites](https://github.com/CWSites))
|
|
340
|
-
|
|
341
|
-
|
|
418
|
+
|
|
419
|
+
**Merged pull requests:**
|
|
420
|
+
|
|
421
|
+
- Next Release [\#689](https://github.com/digital-ai/dot-components/pull/689) ([CWSites](https://github.com/CWSites))
|
|
342
422
|
|
|
343
423
|
## [1.0.11](https://github.com/digital-ai/dot-components/tree/1.0.11) (09/16/2021)
|
|
344
424
|
|
|
@@ -347,13 +427,11 @@
|
|
|
347
427
|
**Fixed bugs:**
|
|
348
428
|
|
|
349
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))
|
|
350
431
|
|
|
351
432
|
**Merged pull requests:**
|
|
352
433
|
|
|
353
|
-
- Next Release [\#682](https://github.com/digital-ai/dot-components/pull/682) ([CWSites](https://github.com/CWSites))
|
|
354
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))
|
|
355
|
-
- D-18421: close hamburger on navigate [\#679](https://github.com/digital-ai/dot-components/pull/679) ([CWSites](https://github.com/CWSites))
|
|
356
|
-
- Bring `master` back into `develop` after release. [\#678](https://github.com/digital-ai/dot-components/pull/678) ([CWSites](https://github.com/CWSites))
|
|
357
435
|
|
|
358
436
|
## [1.0.10](https://github.com/digital-ai/dot-components/tree/1.0.10) (09/09/2021)
|
|
359
437
|
|
|
@@ -362,13 +440,13 @@
|
|
|
362
440
|
**Fixed bugs:**
|
|
363
441
|
|
|
364
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))
|
|
365
445
|
|
|
366
446
|
**Merged pull requests:**
|
|
367
447
|
|
|
368
448
|
- New patch release [\#677](https://github.com/digital-ai/dot-components/pull/677) ([CWSites](https://github.com/CWSites))
|
|
369
|
-
-
|
|
370
|
-
- Merge `master` back to `develop` [\#674](https://github.com/digital-ai/dot-components/pull/674) ([CWSites](https://github.com/CWSites))
|
|
371
|
-
- 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))
|
|
372
450
|
|
|
373
451
|
## [1.0.9](https://github.com/digital-ai/dot-components/tree/1.0.9) (09/02/2021)
|
|
374
452
|
|
|
@@ -378,26 +456,25 @@
|
|
|
378
456
|
|
|
379
457
|
- \[DotTable\] Ability to make table body cell centered [\#609](https://github.com/digital-ai/dot-components/issues/609)
|
|
380
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))
|
|
381
460
|
|
|
382
461
|
**Fixed bugs:**
|
|
383
462
|
|
|
384
463
|
- untouched modified files [\#660](https://github.com/digital-ai/dot-components/issues/660)
|
|
385
464
|
- Update Agility colors [\#656](https://github.com/digital-ai/dot-components/issues/656)
|
|
386
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))
|
|
387
468
|
|
|
388
469
|
**Merged pull requests:**
|
|
389
470
|
|
|
390
471
|
- Release `1.0.8` [\#673](https://github.com/digital-ai/dot-components/pull/673) ([CWSites](https://github.com/CWSites))
|
|
391
|
-
- D-18730: action toolbar support [\#671](https://github.com/digital-ai/dot-components/pull/671) ([CWSites](https://github.com/CWSites))
|
|
392
|
-
- S-78572: Make entire sidebar backitem clickable [\#670](https://github.com/digital-ai/dot-components/pull/670) ([selsemore](https://github.com/selsemore))
|
|
393
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))
|
|
394
473
|
- S-78516 extra files being formatted [\#665](https://github.com/digital-ai/dot-components/pull/665) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
395
474
|
- S-78464: add main branch name [\#664](https://github.com/digital-ai/dot-components/pull/664) ([CWSites](https://github.com/CWSites))
|
|
396
475
|
- S-78497: Add 'page' prop to DotTable [\#662](https://github.com/digital-ai/dot-components/pull/662) ([selsemore](https://github.com/selsemore))
|
|
397
|
-
- 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))
|
|
398
476
|
- Issue \#632: Add aria-label property [\#659](https://github.com/digital-ai/dot-components/pull/659) ([dmiletic85](https://github.com/dmiletic85))
|
|
399
477
|
- S-78464: SonarQube [\#657](https://github.com/digital-ai/dot-components/pull/657) ([CWSites](https://github.com/CWSites))
|
|
400
|
-
- 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))
|
|
401
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))
|
|
402
479
|
- S-77872: gather test coverage in sonarcloud [\#653](https://github.com/digital-ai/dot-components/pull/653) ([CWSites](https://github.com/CWSites))
|
|
403
480
|
|
|
@@ -413,12 +490,15 @@
|
|
|
413
490
|
|
|
414
491
|
- add export back to component library [\#652](https://github.com/digital-ai/dot-components/pull/652) ([CWSites](https://github.com/CWSites))
|
|
415
492
|
- add back missing items from export [\#651](https://github.com/digital-ai/dot-components/pull/651) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
416
|
-
- Master back into develop [\#649](https://github.com/digital-ai/dot-components/pull/649) ([CWSites](https://github.com/CWSites))
|
|
417
493
|
|
|
418
494
|
## [1.0.7](https://github.com/digital-ai/dot-components/tree/1.0.7) (08/23/2021)
|
|
419
495
|
|
|
420
496
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.0.6...1.0.7)
|
|
421
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
|
+
|
|
422
502
|
**Fixed bugs:**
|
|
423
503
|
|
|
424
504
|
- Link color is hardcoded for agility product [\#641](https://github.com/digital-ai/dot-components/issues/641)
|
|
@@ -435,7 +515,6 @@
|
|
|
435
515
|
- Patch release [\#645](https://github.com/digital-ai/dot-components/pull/645) ([CWSites](https://github.com/CWSites))
|
|
436
516
|
- S-78162: adjust link color [\#642](https://github.com/digital-ai/dot-components/pull/642) ([CWSites](https://github.com/CWSites))
|
|
437
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))
|
|
438
|
-
- Custom main logo in the AppToolbar [\#637](https://github.com/digital-ai/dot-components/pull/637) ([monapatel91](https://github.com/monapatel91))
|
|
439
518
|
|
|
440
519
|
## [1.0.6](https://github.com/digital-ai/dot-components/tree/1.0.6) (08/18/2021)
|
|
441
520
|
|
|
@@ -449,6 +528,7 @@
|
|
|
449
528
|
|
|
450
529
|
- Dialog and autocomplete dont follow agility dark theme [\#631](https://github.com/digital-ai/dot-components/issues/631)
|
|
451
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))
|
|
452
532
|
|
|
453
533
|
**Merged pull requests:**
|
|
454
534
|
|
|
@@ -457,8 +537,6 @@
|
|
|
457
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))
|
|
458
538
|
- Feedback of snackbar [\#628](https://github.com/digital-ai/dot-components/pull/628) ([monapatel91](https://github.com/monapatel91))
|
|
459
539
|
- S-77873: Support agility themes in certain components [\#626](https://github.com/digital-ai/dot-components/pull/626) ([CWSites](https://github.com/CWSites))
|
|
460
|
-
- D-18346: fix sidebar menu item height [\#624](https://github.com/digital-ai/dot-components/pull/624) ([selsemore](https://github.com/selsemore))
|
|
461
|
-
- Merging master back into develop [\#622](https://github.com/digital-ai/dot-components/pull/622) ([CWSites](https://github.com/CWSites))
|
|
462
540
|
|
|
463
541
|
## [1.0.5](https://github.com/digital-ai/dot-components/tree/1.0.5) (07/28/2021)
|
|
464
542
|
|
|
@@ -466,7 +544,6 @@
|
|
|
466
544
|
|
|
467
545
|
**Merged pull requests:**
|
|
468
546
|
|
|
469
|
-
- Merging develop onto master [\#621](https://github.com/digital-ai/dot-components/pull/621) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
470
547
|
- pin material-ui lab version [\#620](https://github.com/digital-ai/dot-components/pull/620) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
471
548
|
|
|
472
549
|
## [1.0.4](https://github.com/digital-ai/dot-components/tree/1.0.4) (07/28/2021)
|
|
@@ -476,19 +553,21 @@
|
|
|
476
553
|
**Features:**
|
|
477
554
|
|
|
478
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))
|
|
479
561
|
|
|
480
562
|
**Merged pull requests:**
|
|
481
563
|
|
|
482
564
|
- 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))
|
|
483
|
-
- Merging master back into develop [\#618](https://github.com/digital-ai/dot-components/pull/618) ([CWSites](https://github.com/CWSites))
|
|
484
565
|
- 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))
|
|
485
566
|
- S-76627: new snackbar provider [\#616](https://github.com/digital-ai/dot-components/pull/616) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
486
567
|
- S-76905 split button component back to experimental [\#614](https://github.com/digital-ai/dot-components/pull/614) ([CWSites](https://github.com/CWSites))
|
|
487
568
|
- S-76905: update SplitButton design and functionality [\#613](https://github.com/digital-ai/dot-components/pull/613) ([CWSites](https://github.com/CWSites))
|
|
488
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))
|
|
489
570
|
- S-76838: address Sonarcloud code issues [\#608](https://github.com/digital-ai/dot-components/pull/608) ([CWSites](https://github.com/CWSites))
|
|
490
|
-
- S-76918: DialogButtonProps updated with more available BaseButtonProps [\#605](https://github.com/digital-ai/dot-components/pull/605) ([CWSites](https://github.com/CWSites))
|
|
491
|
-
- D-18306: lock material UI to `4.11.x` [\#604](https://github.com/digital-ai/dot-components/pull/604) ([CWSites](https://github.com/CWSites))
|
|
492
571
|
- S-77317: Add 'height' prop to DotDrawer component [\#603](https://github.com/digital-ai/dot-components/pull/603) ([selsemore](https://github.com/selsemore))
|
|
493
572
|
- Update GitHub prerelease [\#599](https://github.com/digital-ai/dot-components/pull/599) ([CWSites](https://github.com/CWSites))
|
|
494
573
|
- S-76917: remove progressionBoard styles from theme provider [\#597](https://github.com/digital-ai/dot-components/pull/597) ([CWSites](https://github.com/CWSites))
|
|
@@ -506,20 +585,19 @@
|
|
|
506
585
|
|
|
507
586
|
- Not all button props are passed to the buttons in a Dialog [\#571](https://github.com/digital-ai/dot-components/issues/571)
|
|
508
587
|
|
|
509
|
-
**Merged pull requests:**
|
|
510
|
-
|
|
511
|
-
- Deploying latest to master [\#615](https://github.com/digital-ai/dot-components/pull/615) ([CWSites](https://github.com/CWSites))
|
|
512
|
-
|
|
513
588
|
## [1.0.2](https://github.com/digital-ai/dot-components/tree/1.0.2) (07/08/2021)
|
|
514
589
|
|
|
515
590
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.0.1...1.0.2)
|
|
516
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
|
+
|
|
517
596
|
**Merged pull requests:**
|
|
518
597
|
|
|
519
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))
|
|
520
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))
|
|
521
600
|
- updating github workflow to default to patch release [\#593](https://github.com/digital-ai/dot-components/pull/593) ([CWSites](https://github.com/CWSites))
|
|
522
|
-
- 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))
|
|
523
601
|
- Update icons [\#589](https://github.com/digital-ai/dot-components/pull/589) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
524
602
|
- Issue \#555: build warnings [\#588](https://github.com/digital-ai/dot-components/pull/588) ([CWSites](https://github.com/CWSites))
|
|
525
603
|
- Issue \#181: Create Security Policy [\#584](https://github.com/digital-ai/dot-components/pull/584) ([CWSites](https://github.com/CWSites))
|
|
@@ -534,7 +612,6 @@
|
|
|
534
612
|
- New icons 27 5 2021 [\#564](https://github.com/digital-ai/dot-components/pull/564) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
535
613
|
- Add isUnderToolbar property to Sidebar for use beneath AppToolbar [\#560](https://github.com/digital-ai/dot-components/pull/560) ([selsemore](https://github.com/selsemore))
|
|
536
614
|
- Move approved components to "Stable" [\#559](https://github.com/digital-ai/dot-components/pull/559) ([CWSites](https://github.com/CWSites))
|
|
537
|
-
- merging master \> develop [\#557](https://github.com/digital-ai/dot-components/pull/557) ([CWSites](https://github.com/CWSites))
|
|
538
615
|
- 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))
|
|
539
616
|
- 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))
|
|
540
617
|
|
|
@@ -581,10 +658,6 @@
|
|
|
581
658
|
- S-73859: Configure Sonar Cloud [\#95](https://github.com/digital-ai/dot-components/issues/95)
|
|
582
659
|
- Future roadmap [\#90](https://github.com/digital-ai/dot-components/issues/90)
|
|
583
660
|
|
|
584
|
-
**Merged pull requests:**
|
|
585
|
-
|
|
586
|
-
- Deploying latest to master [\#592](https://github.com/digital-ai/dot-components/pull/592) ([CWSites](https://github.com/CWSites))
|
|
587
|
-
|
|
588
661
|
## [v0.0.1-alpha.0](https://github.com/digital-ai/dot-components/tree/v0.0.1-alpha.0) (05/19/2021)
|
|
589
662
|
|
|
590
663
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/v0.0.0-alpha.45...v0.0.1-alpha.0)
|