@appquality/unguess-design-system 2.9.0 → 2.10.2
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 +41 -0
- package/build/index.d.ts +4 -0
- package/build/index.js +356 -214
- package/build/stories/forms/checkbox/cards/_types.d.ts +9 -0
- package/build/stories/forms/checkbox/cards/index.d.ts +4 -0
- package/build/stories/forms/checkbox/cards/index.stories.d.ts +13 -0
- package/build/stories/forms/radio/cards/_types.d.ts +11 -0
- package/build/stories/forms/radio/cards/index.d.ts +4 -0
- package/build/stories/forms/radio/cards/index.stories.d.ts +13 -0
- package/build/stories/stepper/_types.d.ts +14 -0
- package/build/stories/stepper/index.d.ts +15 -0
- package/build/stories/stepper/index.stories.d.ts +15 -0
- package/build/stories/theme/mixins.d.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,44 @@
|
|
|
1
|
+
# v2.10.2 (Tue May 03 2022)
|
|
2
|
+
|
|
3
|
+
#### ⚠️ Pushed to `master`
|
|
4
|
+
|
|
5
|
+
- build(components): add full screen modal and radio card to main export ([@cannarocks](https://github.com/cannarocks))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v2.10.1 (Mon May 02 2022)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- Cup 647 radio cards [#48](https://github.com/AppQuality/unguess-design-system/pull/48) ([@marcbon](https://github.com/marcbon))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
# v2.10.0 (Mon May 02 2022)
|
|
26
|
+
|
|
27
|
+
#### 🚀 Enhancement
|
|
28
|
+
|
|
29
|
+
- feat(stepper): add stepper component with unguess color scheme [#47](https://github.com/AppQuality/unguess-design-system/pull/47) ([@cannarocks](https://github.com/cannarocks))
|
|
30
|
+
|
|
31
|
+
#### 🐛 Bug Fix
|
|
32
|
+
|
|
33
|
+
- Cup 648 checkbox cards [#46](https://github.com/AppQuality/unguess-design-system/pull/46) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
|
|
34
|
+
|
|
35
|
+
#### Authors: 2
|
|
36
|
+
|
|
37
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
38
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
1
42
|
# v2.9.0 (Fri Apr 29 2022)
|
|
2
43
|
|
|
3
44
|
#### 🚀 Enhancement
|
package/build/index.d.ts
CHANGED
|
@@ -20,10 +20,12 @@ export * from "./stories/dropdowns/multiselect";
|
|
|
20
20
|
export * from "./stories/dropdowns/select";
|
|
21
21
|
export * from "./stories/dropdowns/autocomplete";
|
|
22
22
|
export * from "./stories/forms/checkbox";
|
|
23
|
+
export * from "./stories/forms/checkbox/cards";
|
|
23
24
|
export * as FormField from "./stories/forms/field";
|
|
24
25
|
export * from "./stories/forms/input";
|
|
25
26
|
export * from "./stories/forms/mediaInput";
|
|
26
27
|
export * from "./stories/forms/radio";
|
|
28
|
+
export * from "./stories/forms/radio/cards";
|
|
27
29
|
export * from "./stories/forms/textarea";
|
|
28
30
|
export * from "./stories/forms/toggle";
|
|
29
31
|
export * from "./stories/grid/col";
|
|
@@ -38,6 +40,7 @@ export * from "./stories/page/pageLoader";
|
|
|
38
40
|
export * from "./stories/login-form";
|
|
39
41
|
export * from "./stories/logo";
|
|
40
42
|
export * from "./stories/modals";
|
|
43
|
+
export * from "./stories/modals/fullscreen";
|
|
41
44
|
export * from "./stories/navigation/body";
|
|
42
45
|
export * from "./stories/navigation/content";
|
|
43
46
|
export * from "./stories/navigation/header";
|
|
@@ -51,6 +54,7 @@ export * from "./stories/navigation/chrome";
|
|
|
51
54
|
export * from "./stories/notifications";
|
|
52
55
|
export * from "./stories/pagination";
|
|
53
56
|
export * from "./stories/profile-modal";
|
|
57
|
+
export * from "./stories/stepper";
|
|
54
58
|
export { Table, Head as TableHead, HeaderRow, HeaderCell, Body as TableBody, Row as TableRow, Cell as TableCell, Caption, } from "./stories/table";
|
|
55
59
|
export { GroupRow, GroupedTable, } from "./stories/table/grouped";
|
|
56
60
|
export * from "./stories/tags";
|