@digital-ai/dot-components 2.15.2 → 2.17.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 (27) hide show
  1. package/CHANGE_LOG.md +35 -10
  2. package/index.esm.js +425 -227
  3. package/index.umd.js +617 -395
  4. package/lib/components/button/CopyButton.d.ts +10 -3
  5. package/lib/components/button/CopyButton.stories.d.ts +1 -1
  6. package/lib/components/button/IconButton.d.ts +5 -3
  7. package/lib/components/file-upload/FileUpload.d.ts +13 -1
  8. package/lib/components/file-upload/FileUpload.stories.d.ts +2 -1
  9. package/lib/components/file-upload/utils/helpers.d.ts +4 -3
  10. package/lib/components/file-upload/utils/models.d.ts +2 -0
  11. package/lib/components/table/Table.d.ts +4 -2
  12. package/lib/components/table/Table.stories.d.ts +3 -1
  13. package/lib/components/table/Table.stories.data.d.ts +59 -0
  14. package/lib/components/table/TableBody.d.ts +3 -2
  15. package/lib/components/table/TableBodyCollapsibleTable.d.ts +8 -0
  16. package/lib/components/table/TableBodyCollapsibleTable.styles.d.ts +2 -0
  17. package/lib/components/table/TableBodyExpandCollapseCell.d.ts +8 -0
  18. package/lib/components/table/TableBodyExpandCollapseCell.styles.d.ts +3 -0
  19. package/lib/components/table/TableHeader.d.ts +3 -2
  20. package/lib/components/table/TableRow.d.ts +3 -2
  21. package/lib/components/table/utils/helpers.d.ts +1 -0
  22. package/lib/components/table/utils/models.d.ts +19 -0
  23. package/lib/components/tooltip/Tooltip.d.ts +3 -1
  24. package/lib/components/tooltip/Tooltip.stories.d.ts +1 -1
  25. package/lib/components/truncate-with-tooltip/TruncateWithTooltip.d.ts +3 -1
  26. package/lib/components/truncate-with-tooltip/TruncateWithTooltip.stories.d.ts +1 -1
  27. package/package.json +1 -1
package/CHANGE_LOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.17.0](https://www.npmjs.com/package/@digital-ai/dot-components) (10/03/2023)
4
+
5
+ [Full Changelog](https://digital-ai.github.io/dot-components/?path=/story/introduction--page/digital-ai/dot-components/compare/2.16.0...2.17.0)
6
+
7
+ **Features:**
8
+
9
+ - S-95856: Added collapsible-table feature within DotTable. [\#1625](https://github.com/digital-ai/dot-components/pull/1625) ([maheswaran-cn519](https://github.com/maheswaran-cn519))
10
+
11
+ ## [2.16.0](https://www.npmjs.com/package/@digital-ai/dot-components) (09/28/2023)
12
+
13
+ [Full Changelog](https://digital-ai.github.io/dot-components/?path=/story/introduction--page/digital-ai/dot-components/compare/2.15.2...2.16.0)
14
+
15
+ **Features:**
16
+
17
+ - S-96608: `DotFileUpload` Allow to pass props to upload button [\#1627](https://github.com/digital-ai/dot-components/pull/1627) ([angel-git](https://github.com/angel-git))
18
+ - S-96168: Add DotIconButton props to DotCopyButton [\#1626](https://github.com/digital-ai/dot-components/pull/1626) ([jmcnally](https://github.com/jmcnally))
19
+ - D-21922: Support `arrow` prop in tooltip components [\#1615](https://github.com/digital-ai/dot-components/pull/1615) ([BoraAksoy](https://github.com/BoraAksoy))
20
+
21
+ **Fixed bugs:**
22
+
23
+ - D-26820: `DotInputText` Fix double tab issue [\#1629](https://github.com/digital-ai/dot-components/pull/1629) ([dmiletic85](https://github.com/dmiletic85))
24
+
25
+ **Misc:**
26
+
27
+ - Master \> Develop [\#1624](https://github.com/digital-ai/dot-components/pull/1624) ([ryangamble](https://github.com/ryangamble))
28
+
3
29
  ## [2.15.2](https://www.npmjs.com/package/@digital-ai/dot-components) (09/25/2023)
4
30
 
5
31
  [Full Changelog](https://digital-ai.github.io/dot-components/?path=/story/introduction--page/digital-ai/dot-components/compare/2.15.1...2.15.2)
@@ -195,10 +221,6 @@
195
221
 
196
222
  [Full Changelog](https://digital-ai.github.io/dot-components/?path=/story/introduction--page/digital-ai/dot-components/compare/2.8.2...2.9.0)
197
223
 
198
- **Features:**
199
-
200
- - S-90959: `DotAvatar` support numbers [\#1515](https://github.com/digital-ai/dot-components/pull/1515) ([CWSites](https://github.com/CWSites))
201
-
202
224
  **Fixed bugs:**
203
225
 
204
226
  - S-90959: Update breadcrumb separator alignment [\#1517](https://github.com/digital-ai/dot-components/pull/1517) ([CWSites](https://github.com/CWSites))
@@ -214,6 +236,10 @@
214
236
 
215
237
  [Full Changelog](https://digital-ai.github.io/dot-components/?path=/story/introduction--page/digital-ai/dot-components/compare/1.21.11...2.8.2)
216
238
 
239
+ **Features:**
240
+
241
+ - S-90959: `DotAvatar` support numbers [\#1515](https://github.com/digital-ai/dot-components/pull/1515) ([CWSites](https://github.com/CWSites))
242
+
217
243
  **Fixed bugs:**
218
244
 
219
245
  - S-91947: DotStepper step onClick validation [\#1503](https://github.com/digital-ai/dot-components/pull/1503) ([ryangamble](https://github.com/ryangamble))
@@ -953,7 +979,6 @@
953
979
 
954
980
  **Features:**
955
981
 
956
- - S-82390: Configure `tsconfig.json` so that `React` imports are obsolete [\#1041](https://github.com/digital-ai/dot-components/pull/1041) ([dmiletic85](https://github.com/dmiletic85))
957
982
  - S-81800: `Badge`: Add ability to render the number [\#1037](https://github.com/digital-ai/dot-components/pull/1037) ([dmiletic85](https://github.com/dmiletic85))
958
983
  - S-82311: deprecate startIconId, endIconId ListItem props in favor of startIcon, endIcon [\#1035](https://github.com/digital-ai/dot-components/pull/1035) ([selsemore](https://github.com/selsemore))
959
984
 
@@ -1127,8 +1152,8 @@
1127
1152
  - D-19378: `AutoComplete` doesn't have `required` property [\#914](https://github.com/digital-ai/dot-components/pull/914) ([dmiletic85](https://github.com/dmiletic85))
1128
1153
  - 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))
1129
1154
  - D-19366: `Menu`: Circular dependency [\#909](https://github.com/digital-ai/dot-components/pull/909) ([dmiletic85](https://github.com/dmiletic85))
1155
+ - D-19355: `Breadcrumbs`: invalid combination of props [\#907](https://github.com/digital-ai/dot-components/pull/907) ([dmiletic85](https://github.com/dmiletic85))
1130
1156
  - 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))
1131
- - D-19337: `List`: Circular dependency [\#897](https://github.com/digital-ai/dot-components/pull/897) ([dmiletic85](https://github.com/dmiletic85))
1132
1157
 
1133
1158
  ## [1.5.4](https://www.npmjs.com/package/@digital-ai/dot-components) (12/28/2021)
1134
1159
 
@@ -1142,7 +1167,7 @@
1142
1167
 
1143
1168
  **Fixed bugs:**
1144
1169
 
1145
- - D-19355: `Breadcrumbs`: invalid combination of props [\#907](https://github.com/digital-ai/dot-components/pull/907) ([dmiletic85](https://github.com/dmiletic85))
1170
+ - D-19337: `List`: Circular dependency [\#897](https://github.com/digital-ai/dot-components/pull/897) ([dmiletic85](https://github.com/dmiletic85))
1146
1171
  - D-19330: `AppToolbar` shouldn't have grey dividers [\#891](https://github.com/digital-ai/dot-components/pull/891) ([dmiletic85](https://github.com/dmiletic85))
1147
1172
  - 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))
1148
1173
 
@@ -1327,7 +1352,6 @@
1327
1352
  - 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))
1328
1353
  - D-18543: proper export of type and interface [\#760](https://github.com/digital-ai/dot-components/pull/760) ([CWSites](https://github.com/CWSites))
1329
1354
  - D-19023: Circular Dependency in `DynamicForm` component [\#759](https://github.com/digital-ai/dot-components/pull/759) ([dmiletic85](https://github.com/dmiletic85))
1330
- - D-19004: update readme link to be accurate [\#750](https://github.com/digital-ai/dot-components/pull/750) ([CWSites](https://github.com/CWSites))
1331
1355
 
1332
1356
  **Misc:**
1333
1357
 
@@ -1345,6 +1369,7 @@
1345
1369
  **Fixed bugs:**
1346
1370
 
1347
1371
  - 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))
1372
+ - D-19004: update readme link to be accurate [\#750](https://github.com/digital-ai/dot-components/pull/750) ([CWSites](https://github.com/CWSites))
1348
1373
  - 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))
1349
1374
  - 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))
1350
1375
  - 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))
@@ -1438,6 +1463,7 @@
1438
1463
  - D-18817: set mainMenuItems to `null` by default [\#688](https://github.com/digital-ai/dot-components/pull/688) ([CWSites](https://github.com/CWSites))
1439
1464
  - D-18664: update link to allow for keypress [\#686](https://github.com/digital-ai/dot-components/pull/686) ([CWSites](https://github.com/CWSites))
1440
1465
  - D-18665: AppToolbar z-index update [\#685](https://github.com/digital-ai/dot-components/pull/685) ([CWSites](https://github.com/CWSites))
1466
+ - D-18663: Update AutoComplete value typing [\#684](https://github.com/digital-ai/dot-components/pull/684) ([CWSites](https://github.com/CWSites))
1441
1467
 
1442
1468
  **Misc:**
1443
1469
 
@@ -1461,7 +1487,6 @@
1461
1487
 
1462
1488
  **Fixed bugs:**
1463
1489
 
1464
- - D-18663: Update AutoComplete value typing [\#684](https://github.com/digital-ai/dot-components/pull/684) ([CWSites](https://github.com/CWSites))
1465
1490
  - D-18424: include breadcrumb wrapper with breadcrumb component [\#675](https://github.com/digital-ai/dot-components/pull/675) ([CWSites](https://github.com/CWSites))
1466
1491
  - D-18536: material 4.12.3 upgrade [\#667](https://github.com/digital-ai/dot-components/pull/667) ([CWSites](https://github.com/CWSites))
1467
1492
 
@@ -1492,6 +1517,7 @@
1492
1517
  - S-78497: Add 'page' prop to DotTable [\#662](https://github.com/digital-ai/dot-components/pull/662) ([selsemore](https://github.com/selsemore))
1493
1518
  - Issue \#632: Add aria-label property [\#659](https://github.com/digital-ai/dot-components/pull/659) ([dmiletic85](https://github.com/dmiletic85))
1494
1519
  - S-78464: SonarQube [\#657](https://github.com/digital-ai/dot-components/pull/657) ([CWSites](https://github.com/CWSites))
1520
+ - 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))
1495
1521
  - S-77872: gather test coverage in sonarcloud [\#653](https://github.com/digital-ai/dot-components/pull/653) ([CWSites](https://github.com/CWSites))
1496
1522
 
1497
1523
  ## [1.0.8](https://www.npmjs.com/package/@digital-ai/dot-components) (08/23/2021)
@@ -1500,7 +1526,6 @@
1500
1526
 
1501
1527
  **Misc:**
1502
1528
 
1503
- - 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))
1504
1529
  - add export back to component library [\#652](https://github.com/digital-ai/dot-components/pull/652) ([CWSites](https://github.com/CWSites))
1505
1530
  - add back missing items from export [\#651](https://github.com/digital-ai/dot-components/pull/651) ([TheKeithStewart](https://github.com/TheKeithStewart))
1506
1531