@digital-ai/dot-components 1.11.2 → 1.13.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 (33) hide show
  1. package/CHANGE_LOG.md +64 -2
  2. package/fonts/dot.woff +0 -0
  3. package/fonts/selection.json +479 -249
  4. package/index.esm.js +489 -289
  5. package/index.umd.js +729 -459
  6. package/lib/components/button-toggle/ButtonToggle.d.ts +1 -10
  7. package/lib/components/button-toggle/index.d.ts +3 -1
  8. package/lib/components/button-toggle/utils/models.d.ts +12 -0
  9. package/lib/components/draggable-list/DraggableList.d.ts +16 -0
  10. package/lib/components/draggable-list/DraggableList.stories.data.d.ts +15 -0
  11. package/lib/components/draggable-list/DraggableList.stories.styles.d.ts +4 -0
  12. package/lib/components/draggable-list/DraggableList.styles.d.ts +3 -0
  13. package/lib/components/draggable-list/index.d.ts +2 -0
  14. package/lib/components/draggable-list/utils/helpers.d.ts +4 -0
  15. package/lib/components/draggable-list/utils/models.d.ts +5 -0
  16. package/lib/components/helpers.d.ts +4 -0
  17. package/lib/components/index.d.ts +11 -5
  18. package/lib/components/inline-edit/InlineEdit.d.ts +12 -19
  19. package/lib/components/inline-edit/InlineEdit.styles.d.ts +11 -1
  20. package/lib/components/inline-edit/index.d.ts +3 -0
  21. package/lib/components/inline-edit/utils/helpers.d.ts +3 -0
  22. package/lib/components/inline-edit/utils/models.d.ts +5 -0
  23. package/lib/components/input-form-fields/InputFormFields.propTypes.d.ts +3 -1
  24. package/lib/components/input-form-fields/InputText.d.ts +1 -1
  25. package/lib/components/list/utils/models.d.ts +1 -1
  26. package/lib/components/progress/index.d.ts +2 -0
  27. package/lib/components/snackbar/Snackbar.d.ts +5 -1
  28. package/lib/components/snackbar/index.d.ts +4 -0
  29. package/lib/components/truncate-with-tooltip/TruncateWithTooltip.d.ts +8 -0
  30. package/lib/components/truncate-with-tooltip/TruncateWithTooltip.styles.d.ts +3 -0
  31. package/lib/components/truncate-with-tooltip/index.d.ts +2 -0
  32. package/lib/components/truncate-with-tooltip/utils/helpers.d.ts +2 -0
  33. package/package.json +2 -1
package/CHANGE_LOG.md CHANGED
@@ -1,12 +1,74 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.13.0](https://github.com/digital-ai/dot-components/tree/1.13.0) (03/28/2022)
4
+
5
+ [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.12.0...1.13.0)
6
+
7
+ **Features:**
8
+
9
+ - `DotProgress`: Add more Storybook examples [\#1097](https://github.com/digital-ai/dot-components/issues/1097)
10
+ - S-82940: `DotProgress`: Add more Storybook examples [\#1098](https://github.com/digital-ai/dot-components/pull/1098) ([dmiletic85](https://github.com/dmiletic85))
11
+
12
+ **Fixed bugs:**
13
+
14
+ - `DotButtonToggle` wrong type for `value` and `onChange` props [\#1085](https://github.com/digital-ai/dot-components/issues/1085)
15
+ - react-grid-layout library should not be peer dependency [\#1083](https://github.com/digital-ai/dot-components/issues/1083)
16
+ - Check Box not Working with checked attribute property set--- Identified in Release Core [\#1076](https://github.com/digital-ai/dot-components/issues/1076)
17
+ - D-20483: `react-grid-layout` library should not be peer dependency [\#1088](https://github.com/digital-ai/dot-components/pull/1088) ([dmiletic85](https://github.com/dmiletic85))
18
+ - D-20465: `DotButtonToggle` wrong `type` for value and `onChange` [\#1087](https://github.com/digital-ai/dot-components/pull/1087) ([dmiletic85](https://github.com/dmiletic85))
19
+
20
+ ## [1.12.0](https://github.com/digital-ai/dot-components/tree/1.12.0) (03/25/2022)
21
+
22
+ [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.11.3...1.12.0)
23
+
24
+ **Features:**
25
+
26
+ - `DotTypography`: Add more Storybook examples [\#1091](https://github.com/digital-ai/dot-components/issues/1091)
27
+ - `DotCheckbox`: Add more Storybook examples [\#1089](https://github.com/digital-ai/dot-components/issues/1089)
28
+ - Expose mouse up event on DotInputText input field [\#1057](https://github.com/digital-ai/dot-components/issues/1057)
29
+ - Allow positioning Snackbar [\#1050](https://github.com/digital-ai/dot-components/issues/1050)
30
+ - `TruncateWithTooltip`: Create new component [\#1047](https://github.com/digital-ai/dot-components/issues/1047)
31
+ - `DraggableList`: Create and export the component [\#1000](https://github.com/digital-ai/dot-components/issues/1000)
32
+ - S-82910: `DotTypography`: Add more Storybook examples [\#1092](https://github.com/digital-ai/dot-components/pull/1092) ([dmiletic85](https://github.com/dmiletic85))
33
+ - S-82899: `DotCheckbox`: Add more Storybook examples [\#1090](https://github.com/digital-ai/dot-components/pull/1090) ([dmiletic85](https://github.com/dmiletic85))
34
+ - S-82453: `TruncateWithTooltip`: Create new component [\#1072](https://github.com/digital-ai/dot-components/pull/1072) ([dmiletic85](https://github.com/dmiletic85))
35
+ - S-82519: `Snackbar` Allow positioning [\#1064](https://github.com/digital-ai/dot-components/pull/1064) ([dmiletic85](https://github.com/dmiletic85))
36
+ - S-82617: `DotInputText` Expose mouse up event [\#1063](https://github.com/digital-ai/dot-components/pull/1063) ([dmiletic85](https://github.com/dmiletic85))
37
+ - S-76904: `InlineEdit` improvements [\#1053](https://github.com/digital-ai/dot-components/pull/1053) ([dmiletic85](https://github.com/dmiletic85))
38
+ - S-82059: `DraggableList`: Create and export the component [\#1003](https://github.com/digital-ai/dot-components/pull/1003) ([dmiletic85](https://github.com/dmiletic85))
39
+
40
+ **Fixed bugs:**
41
+
42
+ - Double period causing "singleproject" icon to not render [\#1093](https://github.com/digital-ai/dot-components/issues/1093)
43
+ - Storybook - Clicking on Drawer component's Docs shows blank in doc view [\#1084](https://github.com/digital-ai/dot-components/issues/1084)
44
+ - `title` and `message` prop on DotConfirmation component is not applying correct font family [\#1078](https://github.com/digital-ai/dot-components/issues/1078)
45
+ - DotTable action menu should align with edge of table [\#1077](https://github.com/digital-ai/dot-components/issues/1077)
46
+ - Strange scrolling behavior with DotTable action menu [\#1075](https://github.com/digital-ai/dot-components/issues/1075)
47
+ - DotSnackbar breaks words in alert message [\#1073](https://github.com/digital-ai/dot-components/issues/1073)
48
+ - `DotDrawer`: Components inside the drawer are affected by `transition` property [\#1065](https://github.com/digital-ai/dot-components/issues/1065)
49
+ - `DotMenu` Clicking on sidebar doesn't close the modal [\#1052](https://github.com/digital-ai/dot-components/issues/1052)
50
+ - D-20511: remove extra period [\#1094](https://github.com/digital-ai/dot-components/pull/1094) ([CWSites](https://github.com/CWSites))
51
+ - D-20463: Change the DotDrawer stories to make drawers not open initially [\#1086](https://github.com/digital-ai/dot-components/pull/1086) ([selsemore](https://github.com/selsemore))
52
+ - D-20418: `DotTable`: Strange scrolling behavior with action menu [\#1082](https://github.com/digital-ai/dot-components/pull/1082) ([dmiletic85](https://github.com/dmiletic85))
53
+ - D-20426: `DotConfirmation `: `title` and `message` prop are not applying correct font family [\#1081](https://github.com/digital-ai/dot-components/pull/1081) ([dmiletic85](https://github.com/dmiletic85))
54
+ - D-20423: `DotTable`: action menu should align with edge of table [\#1080](https://github.com/digital-ai/dot-components/pull/1080) ([dmiletic85](https://github.com/dmiletic85))
55
+ - D-20405: Remove break-all word-break styling from snackbar message [\#1074](https://github.com/digital-ai/dot-components/pull/1074) ([selsemore](https://github.com/selsemore))
56
+ - D-20285: `DotMenu` Clicking on sidebar doesn't close the modal [\#1056](https://github.com/digital-ai/dot-components/pull/1056) ([dmiletic85](https://github.com/dmiletic85))
57
+
58
+ ## [1.11.3](https://github.com/digital-ai/dot-components/tree/1.11.3) (03/16/2022)
59
+
60
+ [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.11.2...1.11.3)
61
+
62
+ **Merged pull requests:**
63
+
64
+ - March 16 2022 Agility icons [\#1066](https://github.com/digital-ai/dot-components/pull/1066) ([BojanKocijan](https://github.com/BojanKocijan))
65
+
3
66
  ## [1.11.2](https://github.com/digital-ai/dot-components/tree/1.11.2) (03/15/2022)
4
67
 
5
68
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/2.0.0-rc.1...1.11.2)
6
69
 
7
70
  **Merged pull requests:**
8
71
 
9
- - PATCH Release [\#1060](https://github.com/digital-ai/dot-components/pull/1060) ([TheKeithStewart](https://github.com/TheKeithStewart))
10
72
  - March14th2022 update [\#1058](https://github.com/digital-ai/dot-components/pull/1058) ([BojanKocijan](https://github.com/BojanKocijan))
11
73
 
12
74
  ## [2.0.0-rc.1](https://github.com/digital-ai/dot-components/tree/2.0.0-rc.1) (03/14/2022)
@@ -441,6 +503,7 @@
441
503
  - S-80369: Create `ProgressButton` component [\#822](https://github.com/digital-ai/dot-components/pull/822) ([dmiletic85](https://github.com/dmiletic85))
442
504
  - 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))
443
505
  - S-80264: Agility wrapper sandbox documentation [\#810](https://github.com/digital-ai/dot-components/pull/810) ([CWSites](https://github.com/CWSites))
506
+ - 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))
444
507
 
445
508
  **Fixed bugs:**
446
509
 
@@ -468,7 +531,6 @@
468
531
 
469
532
  - Add 'target' prop to ListItemProps [\#784](https://github.com/digital-ai/dot-components/issues/784)
470
533
  - Expose built-in `leaveDelay`, `onClose`, `open` props on `DotTooltip` component [\#778](https://github.com/digital-ai/dot-components/issues/778)
471
- - 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))
472
534
 
473
535
  **Fixed bugs:**
474
536
 
package/fonts/dot.woff CHANGED
Binary file