@appquality/unguess-design-system 2.1.0 → 2.3.1
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 +60 -0
- package/build/index.d.ts +31 -1
- package/build/index.js +625 -19
- package/build/stories/accordions/index.stories.d.ts +1 -0
- package/build/stories/avatar/index.d.ts +1 -1
- package/build/stories/dropdowns/field/_types.d.ts +2 -0
- package/build/stories/dropdowns/field/index.d.ts +4 -0
- package/build/stories/dropdowns/item/_types.d.ts +9 -0
- package/build/stories/dropdowns/item/index.d.ts +4 -0
- package/build/stories/dropdowns/menu/_types.d.ts +31 -0
- package/build/stories/dropdowns/menu/index.d.ts +7 -0
- package/build/stories/dropdowns/multiselect/_types.d.ts +17 -0
- package/build/stories/dropdowns/multiselect/index.d.ts +11 -0
- package/build/stories/dropdowns/multiselect/index.stories.d.ts +21 -0
- package/build/stories/dropdowns/select/_types.d.ts +5 -1
- package/build/stories/dropdowns/select/index.d.ts +16 -0
- package/build/stories/dropdowns/select/index.stories.d.ts +20 -0
- package/build/stories/{field → forms/field}/_types.d.ts +0 -0
- package/build/stories/{field → forms/field}/index.d.ts +0 -0
- package/build/stories/{field → forms/field}/index.stories.d.ts +0 -0
- package/build/stories/forms/radio/_types.d.ts +3 -0
- package/build/stories/forms/radio/index.d.ts +14 -0
- package/build/stories/forms/radio/index.stories.d.ts +7 -0
- package/build/stories/forms/textarea/_types.d.ts +15 -0
- package/build/stories/forms/textarea/index.d.ts +10 -0
- package/build/stories/forms/textarea/index.stories.d.ts +8 -0
- package/build/stories/forms/toggle/_types.d.ts +3 -0
- package/build/stories/forms/toggle/index.d.ts +13 -0
- package/build/stories/forms/toggle/index.stories.d.ts +10 -0
- package/build/stories/login-form/_types.d.ts +19 -0
- package/build/stories/login-form/index.d.ts +10 -0
- package/build/stories/login-form/index.stories.d.ts +7 -0
- package/build/stories/pagination/_types.d.ts +34 -0
- package/build/stories/pagination/index.d.ts +17 -0
- package/build/stories/pagination/index.stories.d.ts +7 -0
- package/build/stories/table/_types.d.ts +54 -0
- package/build/stories/table/index.d.ts +21 -0
- package/build/stories/table/index.stories.d.ts +32 -0
- package/build/stories/tags/_types.d.ts +17 -0
- package/build/stories/tags/index.d.ts +22 -0
- package/build/stories/tags/index.stories.d.ts +19 -0
- package/build/stories/theme/gradients.d.ts +4 -0
- package/build/stories/theme/index.d.ts +155 -11
- package/build/stories/theme/palette.d.ts +141 -0
- package/build/stories/theme/palette.stories.d.ts +15 -0
- package/build/stories/theme/utils.d.ts +1 -0
- package/build/stories/tiles/_types.d.ts +12 -0
- package/build/stories/tiles/index.d.ts +22 -0
- package/build/stories/tiles/index.stories.d.ts +25 -0
- package/build/stories/trigger/_types.d.ts +3 -0
- package/build/stories/trigger/index.d.ts +7 -0
- package/build/stories/typography/paragraph/{ordered.stories.d.ts → index.stories.d.ts} +0 -0
- package/build/stories/typography/span/_types.d.ts +13 -0
- package/build/stories/typography/span/index.d.ts +13 -0
- package/build/stories/typography/span/index.stories.d.ts +6 -0
- package/package.json +9 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,63 @@
|
|
|
1
|
+
# v2.3.1 (Tue Mar 15 2022)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# v2.2.0 (Tue Mar 15 2022)
|
|
8
|
+
|
|
9
|
+
#### 🚀 Enhancement
|
|
10
|
+
|
|
11
|
+
- feat(tiles): add tiles component [#12](https://github.com/AppQuality/unguess-design-system/pull/12) ([@antoninojob](https://github.com/antoninojob))
|
|
12
|
+
- Login form [#15](https://github.com/AppQuality/unguess-design-system/pull/15) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
|
|
13
|
+
- Feat/improve storybook experience [#14](https://github.com/AppQuality/unguess-design-system/pull/14) ([@cannarocks](https://github.com/cannarocks))
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- fix(table): changed types definition for extras elements [#13](https://github.com/AppQuality/unguess-design-system/pull/13) ([@antoninojob](https://github.com/antoninojob))
|
|
18
|
+
- Cup 438 table [#10](https://github.com/AppQuality/unguess-design-system/pull/10) ([@antoninojob](https://github.com/antoninojob))
|
|
19
|
+
- feat(tag): add tag component [#11](https://github.com/AppQuality/unguess-design-system/pull/11) ([@antoninojob](https://github.com/antoninojob))
|
|
20
|
+
|
|
21
|
+
#### ⚠️ Pushed to `master`
|
|
22
|
+
|
|
23
|
+
- fix(export): prevent naming conflicts ([@cannarocks](https://github.com/cannarocks))
|
|
24
|
+
- feat(loginform): add basic Login Form ([@cannarocks](https://github.com/cannarocks))
|
|
25
|
+
|
|
26
|
+
#### Authors: 3
|
|
27
|
+
|
|
28
|
+
- Antonino ([@antoninojob](https://github.com/antoninojob))
|
|
29
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
30
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
# v2.2.0 (Tue Mar 15 2022)
|
|
35
|
+
|
|
36
|
+
#### 🚀 Enhancement
|
|
37
|
+
|
|
38
|
+
- feat(tiles): add tiles component [#12](https://github.com/AppQuality/unguess-design-system/pull/12) ([@antoninojob](https://github.com/antoninojob))
|
|
39
|
+
- Login form [#15](https://github.com/AppQuality/unguess-design-system/pull/15) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
|
|
40
|
+
- Feat/improve storybook experience [#14](https://github.com/AppQuality/unguess-design-system/pull/14) ([@cannarocks](https://github.com/cannarocks))
|
|
41
|
+
|
|
42
|
+
#### 🐛 Bug Fix
|
|
43
|
+
|
|
44
|
+
- fix(table): changed types definition for extras elements [#13](https://github.com/AppQuality/unguess-design-system/pull/13) ([@antoninojob](https://github.com/antoninojob))
|
|
45
|
+
- Cup 438 table [#10](https://github.com/AppQuality/unguess-design-system/pull/10) ([@antoninojob](https://github.com/antoninojob))
|
|
46
|
+
- feat(tag): add tag component [#11](https://github.com/AppQuality/unguess-design-system/pull/11) ([@antoninojob](https://github.com/antoninojob))
|
|
47
|
+
|
|
48
|
+
#### ⚠️ Pushed to `master`
|
|
49
|
+
|
|
50
|
+
- fix(export): prevent naming conflicts ([@cannarocks](https://github.com/cannarocks))
|
|
51
|
+
- feat(loginform): add basic Login Form ([@cannarocks](https://github.com/cannarocks))
|
|
52
|
+
|
|
53
|
+
#### Authors: 3
|
|
54
|
+
|
|
55
|
+
- [@marcbon](https://github.com/marcbon)
|
|
56
|
+
- Antonino ([@antoninojob](https://github.com/antoninojob))
|
|
57
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
1
61
|
# v2.1.0 (Fri Mar 11 2022)
|
|
2
62
|
|
|
3
63
|
#### 🚀 Enhancement
|
package/build/index.d.ts
CHANGED
|
@@ -1,11 +1,41 @@
|
|
|
1
1
|
import { GlobalStyle } from './stories/shared/globalStyle';
|
|
2
|
+
export * from './stories/accordions';
|
|
2
3
|
export * from './stories/avatar';
|
|
3
4
|
export * from './stories/breadcrumbs';
|
|
4
|
-
export * from './stories/buttons/button';
|
|
5
5
|
export * from './stories/buttons/anchor';
|
|
6
|
+
export * from './stories/buttons/button';
|
|
6
7
|
export * from './stories/buttons/button-group';
|
|
7
8
|
export * from './stories/buttons/icon-button';
|
|
8
9
|
export * from './stories/buttons/split-button';
|
|
10
|
+
export * from './stories/cards';
|
|
11
|
+
export * from './stories/close';
|
|
12
|
+
export * as DropdownField from './stories/dropdowns/field';
|
|
13
|
+
export * from './stories/dropdowns/item';
|
|
14
|
+
export * from './stories/dropdowns/menu';
|
|
15
|
+
export * from './stories/dropdowns/multiselect';
|
|
16
|
+
export * from './stories/dropdowns/select';
|
|
17
|
+
export * from './stories/forms/checkbox';
|
|
18
|
+
export * as FormField from './stories/forms/field';
|
|
19
|
+
export * from './stories/forms/input';
|
|
20
|
+
export * from './stories/forms/radio';
|
|
21
|
+
export * from './stories/forms/textarea';
|
|
22
|
+
export * from './stories/forms/toggle';
|
|
23
|
+
export * from './stories/grid/col';
|
|
24
|
+
export * from './stories/grid/row';
|
|
25
|
+
export * from './stories/grid/grid';
|
|
26
|
+
export * from './stories/label';
|
|
9
27
|
export * from './stories/loaders/spinner';
|
|
28
|
+
export * from './stories/login-form';
|
|
29
|
+
export * from './stories/notifications';
|
|
30
|
+
export { Table, Head as TableHead, HeaderRow, HeaderCell, Body as TableRow, Cell as TableCell, GroupRow, Caption } from './stories/table';
|
|
10
31
|
export * from './stories/theme';
|
|
32
|
+
export * from './stories/title';
|
|
33
|
+
export * from './stories/trigger';
|
|
34
|
+
export * from './stories/typography/block-quote';
|
|
35
|
+
export * from './stories/typography/code';
|
|
36
|
+
export * from './stories/typography/ellipsis';
|
|
37
|
+
export * from './stories/typography/lists';
|
|
38
|
+
export * from './stories/typography/paragraph';
|
|
39
|
+
export * from './stories/typography/span';
|
|
40
|
+
export * from './stories/typography/typescale';
|
|
11
41
|
export { GlobalStyle };
|