@digital-ai/dot-components 1.11.3 → 1.12.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 +41 -6
  2. package/index.esm.js +488 -288
  3. package/index.umd.js +728 -458
  4. package/lib/components/draggable-list/DraggableList.d.ts +16 -0
  5. package/lib/components/draggable-list/DraggableList.stories.data.d.ts +15 -0
  6. package/lib/components/draggable-list/DraggableList.stories.styles.d.ts +4 -0
  7. package/lib/components/draggable-list/DraggableList.styles.d.ts +3 -0
  8. package/lib/components/draggable-list/index.d.ts +2 -0
  9. package/lib/components/draggable-list/utils/helpers.d.ts +4 -0
  10. package/lib/components/draggable-list/utils/models.d.ts +5 -0
  11. package/lib/components/helpers.d.ts +4 -0
  12. package/lib/components/index.d.ts +8 -3
  13. package/lib/components/inline-edit/InlineEdit.d.ts +12 -19
  14. package/lib/components/inline-edit/InlineEdit.styles.d.ts +11 -1
  15. package/lib/components/inline-edit/index.d.ts +3 -0
  16. package/lib/components/inline-edit/utils/helpers.d.ts +3 -0
  17. package/lib/components/inline-edit/utils/models.d.ts +5 -0
  18. package/lib/components/input-form-fields/InputFormFields.propTypes.d.ts +3 -1
  19. package/lib/components/input-form-fields/InputText.d.ts +1 -1
  20. package/lib/components/list/utils/models.d.ts +1 -1
  21. package/lib/components/snackbar/Snackbar.d.ts +5 -1
  22. package/lib/components/snackbar/index.d.ts +4 -0
  23. package/lib/components/truncate-with-tooltip/TruncateWithTooltip.d.ts +8 -0
  24. package/lib/components/truncate-with-tooltip/TruncateWithTooltip.styles.d.ts +3 -0
  25. package/lib/components/truncate-with-tooltip/index.d.ts +2 -0
  26. package/lib/components/truncate-with-tooltip/utils/helpers.d.ts +2 -0
  27. package/package.json +3 -2
package/CHANGE_LOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.12.0](https://github.com/digital-ai/dot-components/tree/1.12.0) (03/25/2022)
4
+
5
+ [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.11.3...1.12.0)
6
+
7
+ **Features:**
8
+
9
+ - `DotTypography`: Add more Storybook examples [\#1091](https://github.com/digital-ai/dot-components/issues/1091)
10
+ - `DotCheckbox`: Add more Storybook examples [\#1089](https://github.com/digital-ai/dot-components/issues/1089)
11
+ - Expose mouse up event on DotInputText input field [\#1057](https://github.com/digital-ai/dot-components/issues/1057)
12
+ - Allow positioning Snackbar [\#1050](https://github.com/digital-ai/dot-components/issues/1050)
13
+ - `TruncateWithTooltip`: Create new component [\#1047](https://github.com/digital-ai/dot-components/issues/1047)
14
+ - `DraggableList`: Create and export the component [\#1000](https://github.com/digital-ai/dot-components/issues/1000)
15
+ - S-82910: `DotTypography`: Add more Storybook examples [\#1092](https://github.com/digital-ai/dot-components/pull/1092) ([dmiletic85](https://github.com/dmiletic85))
16
+ - S-82899: `DotCheckbox`: Add more Storybook examples [\#1090](https://github.com/digital-ai/dot-components/pull/1090) ([dmiletic85](https://github.com/dmiletic85))
17
+ - S-82453: `TruncateWithTooltip`: Create new component [\#1072](https://github.com/digital-ai/dot-components/pull/1072) ([dmiletic85](https://github.com/dmiletic85))
18
+ - S-82519: `Snackbar` Allow positioning [\#1064](https://github.com/digital-ai/dot-components/pull/1064) ([dmiletic85](https://github.com/dmiletic85))
19
+ - S-82617: `DotInputText` Expose mouse up event [\#1063](https://github.com/digital-ai/dot-components/pull/1063) ([dmiletic85](https://github.com/dmiletic85))
20
+ - S-76904: `InlineEdit` improvements [\#1053](https://github.com/digital-ai/dot-components/pull/1053) ([dmiletic85](https://github.com/dmiletic85))
21
+ - S-82059: `DraggableList`: Create and export the component [\#1003](https://github.com/digital-ai/dot-components/pull/1003) ([dmiletic85](https://github.com/dmiletic85))
22
+
23
+ **Fixed bugs:**
24
+
25
+ - Double period causing "singleproject" icon to not render [\#1093](https://github.com/digital-ai/dot-components/issues/1093)
26
+ - Storybook - Clicking on Drawer component's Docs shows blank in doc view [\#1084](https://github.com/digital-ai/dot-components/issues/1084)
27
+ - `title` and `message` prop on DotConfirmation component is not applying correct font family [\#1078](https://github.com/digital-ai/dot-components/issues/1078)
28
+ - DotTable action menu should align with edge of table [\#1077](https://github.com/digital-ai/dot-components/issues/1077)
29
+ - Strange scrolling behavior with DotTable action menu [\#1075](https://github.com/digital-ai/dot-components/issues/1075)
30
+ - DotSnackbar breaks words in alert message [\#1073](https://github.com/digital-ai/dot-components/issues/1073)
31
+ - `DotDrawer`: Components inside the drawer are affected by `transition` property [\#1065](https://github.com/digital-ai/dot-components/issues/1065)
32
+ - `DotMenu` Clicking on sidebar doesn't close the modal [\#1052](https://github.com/digital-ai/dot-components/issues/1052)
33
+ - D-20511: remove extra period [\#1094](https://github.com/digital-ai/dot-components/pull/1094) ([CWSites](https://github.com/CWSites))
34
+ - 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))
35
+ - D-20418: `DotTable`: Strange scrolling behavior with action menu [\#1082](https://github.com/digital-ai/dot-components/pull/1082) ([dmiletic85](https://github.com/dmiletic85))
36
+ - 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))
37
+ - 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))
38
+ - 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))
39
+ - 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))
40
+
3
41
  ## [1.11.3](https://github.com/digital-ai/dot-components/tree/1.11.3) (03/16/2022)
4
42
 
5
43
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.11.2...1.11.3)
@@ -523,10 +561,6 @@
523
561
 
524
562
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/1.3.0...1.3.1)
525
563
 
526
- **Features:**
527
-
528
- - S-77126: react jsonschema form wrapper [\#728](https://github.com/digital-ai/dot-components/pull/728) ([TheKeithStewart](https://github.com/TheKeithStewart))
529
-
530
564
  **Fixed bugs:**
531
565
 
532
566
  - Lato 700 is not rendered correctly on Digital.ai Release with dot-components [\#758](https://github.com/digital-ai/dot-components/issues/758)
@@ -547,6 +581,7 @@
547
581
  **Features:**
548
582
 
549
583
  - Forms [\#594](https://github.com/digital-ai/dot-components/issues/594)
584
+ - S-77126: react jsonschema form wrapper [\#728](https://github.com/digital-ai/dot-components/pull/728) ([TheKeithStewart](https://github.com/TheKeithStewart))
550
585
  - S-77126: Dynamic Form [\#717](https://github.com/digital-ai/dot-components/pull/717) ([dmiletic85](https://github.com/dmiletic85))
551
586
 
552
587
  **Fixed bugs:**
@@ -590,6 +625,7 @@
590
625
  - next release [\#732](https://github.com/digital-ai/dot-components/pull/732) ([CWSites](https://github.com/CWSites))
591
626
  - S-76840: update contributing guidelines and PR template [\#730](https://github.com/digital-ai/dot-components/pull/730) ([CWSites](https://github.com/CWSites))
592
627
  - Merge pull request \#719 from digital-ai/develop [\#727](https://github.com/digital-ai/dot-components/pull/727) ([CWSites](https://github.com/CWSites))
628
+ - MINOR release [\#719](https://github.com/digital-ai/dot-components/pull/719) ([CWSites](https://github.com/CWSites))
593
629
 
594
630
  ## [1.2.0](https://github.com/digital-ai/dot-components/tree/1.2.0) (10/14/2021)
595
631
 
@@ -609,7 +645,6 @@
609
645
 
610
646
  **Merged pull requests:**
611
647
 
612
- - MINOR release [\#719](https://github.com/digital-ai/dot-components/pull/719) ([CWSites](https://github.com/CWSites))
613
648
  - Icons oct 13 2021 [\#718](https://github.com/digital-ai/dot-components/pull/718) ([BojanKocijan](https://github.com/BojanKocijan))
614
649
  - S-78918: add loading indicator to menu [\#716](https://github.com/digital-ai/dot-components/pull/716) ([CWSites](https://github.com/CWSites))
615
650
  - 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))
@@ -636,7 +671,6 @@
636
671
  - S-79291: update nested dependencies [\#700](https://github.com/digital-ai/dot-components/pull/700) ([CWSites](https://github.com/CWSites))
637
672
  - S-78832: Agility icon & badge updates [\#698](https://github.com/digital-ai/dot-components/pull/698) ([CWSites](https://github.com/CWSites))
638
673
  - 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))
639
- - S-76906: table action column [\#692](https://github.com/digital-ai/dot-components/pull/692) ([monapatel91](https://github.com/monapatel91))
640
674
 
641
675
  ## [1.1.0](https://github.com/digital-ai/dot-components/tree/1.1.0) (09/29/2021)
642
676
 
@@ -672,6 +706,7 @@
672
706
 
673
707
  **Merged pull requests:**
674
708
 
709
+ - S-76906: table action column [\#692](https://github.com/digital-ai/dot-components/pull/692) ([monapatel91](https://github.com/monapatel91))
675
710
  - Next Release [\#689](https://github.com/digital-ai/dot-components/pull/689) ([CWSites](https://github.com/CWSites))
676
711
 
677
712
  ## [1.0.11](https://github.com/digital-ai/dot-components/tree/1.0.11) (09/16/2021)