@appquality/unguess-design-system 2.11.4 → 2.11.7
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/CHANGELOG.md +36 -0
- package/build/index.d.ts +2 -0
- package/build/index.js +219 -137
- package/build/stories/buttons/anchor/index.d.ts +2 -1
- package/build/stories/buttons/anchor/index.stories.d.ts +2 -1
- package/build/stories/buttons/button/_types.d.ts +1 -1
- package/build/stories/buttons/button/index.d.ts +9 -13
- package/build/stories/buttons/button/index.stories.d.ts +4 -4
- package/build/stories/buttons/button-group/index.d.ts +2 -1
- package/build/stories/buttons/button-group/index.stories.d.ts +2 -1
- package/build/stories/buttons/icon-button/index.d.ts +2 -1
- package/build/stories/buttons/icon-button/index.stories.d.ts +2 -1
- package/build/stories/buttons/split-button/index.d.ts +2 -1
- package/build/stories/buttons/split-button/index.stories.d.ts +2 -1
- package/build/stories/forms/input/index.d.ts +1 -1
- package/build/stories/forms/input/index.stories.d.ts +2 -1
- package/build/stories/forms/input-toggle/_types.d.ts +15 -0
- package/build/stories/forms/input-toggle/index.d.ts +10 -0
- package/build/stories/forms/input-toggle/index.stories.d.ts +8 -0
- package/build/stories/tooltip-modal/_types.d.ts +21 -0
- package/build/stories/tooltip-modal/index.d.ts +18 -0
- package/build/stories/tooltip-modal/index.stories.d.ts +13 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,39 @@
|
|
|
1
|
+
# v2.11.7 (Wed Sep 07 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- fix(input-toggle): add missing export for input-toggle component [#83](https://github.com/AppQuality/unguess-design-system/pull/83) ([@marcbon](https://github.com/marcbon))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v2.11.6 (Wed Sep 07 2022)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- feat(input-toggle): add new component behavior [#82](https://github.com/AppQuality/unguess-design-system/pull/82) ([@marcbon](https://github.com/marcbon))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
# v2.11.5 (Wed Sep 07 2022)
|
|
26
|
+
|
|
27
|
+
#### 🐛 Bug Fix
|
|
28
|
+
|
|
29
|
+
- Add tooltip modal (skip-ci) [#81](https://github.com/AppQuality/unguess-design-system/pull/81) ([@cannarocks](https://github.com/cannarocks))
|
|
30
|
+
|
|
31
|
+
#### Authors: 1
|
|
32
|
+
|
|
33
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
1
37
|
# v2.11.4 (Thu Aug 18 2022)
|
|
2
38
|
|
|
3
39
|
#### ⚠️ Pushed to `master`
|
package/build/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export * from "./stories/forms/checkbox";
|
|
|
29
29
|
export * from "./stories/forms/checkbox/cards";
|
|
30
30
|
export * as FormField from "./stories/forms/field";
|
|
31
31
|
export * from "./stories/forms/input";
|
|
32
|
+
export * from "./stories/forms/input-toggle";
|
|
32
33
|
export * from "./stories/forms/mediaInput";
|
|
33
34
|
export * from "./stories/forms/radio";
|
|
34
35
|
export * from "./stories/forms/radio/cards";
|
|
@@ -69,6 +70,7 @@ export * from "./stories/tiles";
|
|
|
69
70
|
export * from "./stories/timeline";
|
|
70
71
|
export * from "./stories/theme";
|
|
71
72
|
export * from "./stories/title";
|
|
73
|
+
export * from "./stories/tooltip-modal";
|
|
72
74
|
export * from "./stories/trigger";
|
|
73
75
|
export * from "./stories/typography/block-quote";
|
|
74
76
|
export * from "./stories/typography/code";
|