@digital-ai/dot-components 1.19.1 → 1.20.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 +25 -4
- package/index.esm.js +2055 -1494
- package/index.umd.js +2096 -1530
- package/lib/components/alert-banner/AlertBanner.d.ts +3 -1
- package/lib/components/input-form-fields/InputFormFields.propTypes.d.ts +8 -0
- package/lib/components/input-form-fields/InputFormFields.styles.d.ts +4 -1
- package/lib/components/input-form-fields/InputLabel.d.ts +17 -0
- package/lib/components/input-form-fields/InputSelect.d.ts +1 -3
- package/lib/components/input-form-fields/InputText.d.ts +11 -4
- package/lib/components/navigation-rail/NavigationRail.d.ts +4 -0
- package/lib/components/navigation-rail/NavigationRail.stories.data.d.ts +9 -0
- package/lib/components/navigation-rail/NavigationRail.stories.styles.d.ts +2 -0
- package/lib/components/typography/Typography.d.ts +3 -1
- package/package.json +1 -1
package/CHANGE_LOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.20.0](https://github.com/digital-ai/dot-components/tree/1.20.0) (07/23/2022)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.19.1...1.20.0)
|
|
6
|
+
|
|
7
|
+
**Features:**
|
|
8
|
+
|
|
9
|
+
- Adjust margin of `DotTypography` [\#1210](https://github.com/digital-ai/dot-components/issues/1210)
|
|
10
|
+
- `DotInputText` allow to set `shrink` property [\#1124](https://github.com/digital-ai/dot-components/issues/1124)
|
|
11
|
+
- `DotInputText` Should show `\*` on `helperText` if field is required [\#1122](https://github.com/digital-ai/dot-components/issues/1122)
|
|
12
|
+
- S-86369: input field success [\#1226](https://github.com/digital-ai/dot-components/pull/1226) ([CWSites](https://github.com/CWSites))
|
|
13
|
+
- S-84069: expose shrink prop to input fields [\#1223](https://github.com/digital-ai/dot-components/pull/1223) ([CWSites](https://github.com/CWSites))
|
|
14
|
+
- Issue \#1210: add prop for noMargin to typography [\#1222](https://github.com/digital-ai/dot-components/pull/1222) ([CWSites](https://github.com/CWSites))
|
|
15
|
+
- S-83952: persistent label for text field and select field [\#1219](https://github.com/digital-ai/dot-components/pull/1219) ([CWSites](https://github.com/CWSites))
|
|
16
|
+
- S-85811: `NavigationRail` Allow badges [\#1215](https://github.com/digital-ai/dot-components/pull/1215) ([dmiletic85](https://github.com/dmiletic85))
|
|
17
|
+
|
|
18
|
+
**Fixed bugs:**
|
|
19
|
+
|
|
20
|
+
- Incorrect spacing between inputs in DotForm [\#1071](https://github.com/digital-ai/dot-components/issues/1071)
|
|
21
|
+
- D-20378: update input margin to account for helper text [\#1212](https://github.com/digital-ai/dot-components/pull/1212) ([CWSites](https://github.com/CWSites))
|
|
22
|
+
- D-21918: Update `DotAlertBanner` to match Figma [\#1208](https://github.com/digital-ai/dot-components/pull/1208) ([CWSites](https://github.com/CWSites))
|
|
23
|
+
|
|
3
24
|
## [1.19.1](https://github.com/digital-ai/dot-components/tree/1.19.1) (07/18/2022)
|
|
4
25
|
|
|
5
26
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.19.0...1.19.1)
|
|
@@ -840,6 +861,10 @@
|
|
|
840
861
|
|
|
841
862
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.1.0...1.1.1)
|
|
842
863
|
|
|
864
|
+
**Features:**
|
|
865
|
+
|
|
866
|
+
- S-78164: Sticky menu item on DotMenu component [\#687](https://github.com/digital-ai/dot-components/pull/687) ([dmiletic85](https://github.com/dmiletic85))
|
|
867
|
+
|
|
843
868
|
**Closed issues:**
|
|
844
869
|
|
|
845
870
|
- Security Updates [\#699](https://github.com/digital-ai/dot-components/issues/699)
|
|
@@ -856,10 +881,6 @@
|
|
|
856
881
|
|
|
857
882
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.0.12...1.1.0)
|
|
858
883
|
|
|
859
|
-
**Features:**
|
|
860
|
-
|
|
861
|
-
- S-78164: Sticky menu item on DotMenu component [\#687](https://github.com/digital-ai/dot-components/pull/687) ([dmiletic85](https://github.com/dmiletic85))
|
|
862
|
-
|
|
863
884
|
**Fixed bugs:**
|
|
864
885
|
|
|
865
886
|
- value prop isn't being passed to tab [\#693](https://github.com/digital-ai/dot-components/issues/693)
|