@appquality/unguess-design-system 2.1.0 → 2.2.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/CHANGELOG.md +27 -0
- package/package.json +9 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
# v2.2.0 (Tue Mar 15 2022)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- feat(tiles): add tiles component [#12](https://github.com/AppQuality/unguess-design-system/pull/12) ([@antoninojob](https://github.com/antoninojob))
|
|
6
|
+
- Login form [#15](https://github.com/AppQuality/unguess-design-system/pull/15) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
|
|
7
|
+
- Feat/improve storybook experience [#14](https://github.com/AppQuality/unguess-design-system/pull/14) ([@cannarocks](https://github.com/cannarocks))
|
|
8
|
+
|
|
9
|
+
#### 🐛 Bug Fix
|
|
10
|
+
|
|
11
|
+
- fix(table): changed types definition for extras elements [#13](https://github.com/AppQuality/unguess-design-system/pull/13) ([@antoninojob](https://github.com/antoninojob))
|
|
12
|
+
- Cup 438 table [#10](https://github.com/AppQuality/unguess-design-system/pull/10) ([@antoninojob](https://github.com/antoninojob))
|
|
13
|
+
- feat(tag): add tag component [#11](https://github.com/AppQuality/unguess-design-system/pull/11) ([@antoninojob](https://github.com/antoninojob))
|
|
14
|
+
|
|
15
|
+
#### ⚠️ Pushed to `master`
|
|
16
|
+
|
|
17
|
+
- fix(export): prevent naming conflicts ([@cannarocks](https://github.com/cannarocks))
|
|
18
|
+
- feat(loginform): add basic Login Form ([@cannarocks](https://github.com/cannarocks))
|
|
19
|
+
|
|
20
|
+
#### Authors: 3
|
|
21
|
+
|
|
22
|
+
- [@marcbon](https://github.com/marcbon)
|
|
23
|
+
- Antonino ([@antoninojob](https://github.com/antoninojob))
|
|
24
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
1
28
|
# v2.1.0 (Fri Mar 11 2022)
|
|
2
29
|
|
|
3
30
|
#### 🚀 Enhancement
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appquality/unguess-design-system",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@zendeskgarden/react-accordions": "^8.49.0",
|
|
6
6
|
"@zendeskgarden/react-avatars": "^8.49.0",
|
|
@@ -11,10 +11,13 @@
|
|
|
11
11
|
"@zendeskgarden/react-grid": "^8.49.0",
|
|
12
12
|
"@zendeskgarden/react-loaders": "^8.49.0",
|
|
13
13
|
"@zendeskgarden/react-notifications": "^8.49.0",
|
|
14
|
+
"@zendeskgarden/react-pagination": "^8.49.0",
|
|
15
|
+
"@zendeskgarden/react-tables": "^8.49.0",
|
|
14
16
|
"@zendeskgarden/react-tags": "^8.49.0",
|
|
15
17
|
"@zendeskgarden/react-tooltips": "^8.49.0",
|
|
16
18
|
"@zendeskgarden/react-typography": "^8.49.0",
|
|
17
|
-
"@zendeskgarden/svg-icons": "^6.31.1"
|
|
19
|
+
"@zendeskgarden/svg-icons": "^6.31.1",
|
|
20
|
+
"react-window": "^1.8.6"
|
|
18
21
|
},
|
|
19
22
|
"scripts": {
|
|
20
23
|
"start": "react-scripts start",
|
|
@@ -55,6 +58,7 @@
|
|
|
55
58
|
},
|
|
56
59
|
"peerDependencies": {
|
|
57
60
|
"@zendeskgarden/react-theming": "^8.48.2",
|
|
61
|
+
"formik": "^2.2.9",
|
|
58
62
|
"react": "^17.0.2",
|
|
59
63
|
"react-dom": "^17.0.2",
|
|
60
64
|
"styled-components": "^5.3.3"
|
|
@@ -77,18 +81,21 @@
|
|
|
77
81
|
"@types/node": "^16.11.26",
|
|
78
82
|
"@types/react": "^17.0.39",
|
|
79
83
|
"@types/react-dom": "^17.0.11",
|
|
84
|
+
"@types/react-window": "^1.8.5",
|
|
80
85
|
"@types/styled-components": "^5.1.23",
|
|
81
86
|
"@zendeskgarden/react-theming": "^8.48.2",
|
|
82
87
|
"auto": "^10.32.6",
|
|
83
88
|
"babel-loader": "^8.2.3",
|
|
84
89
|
"commitizen": "^4.2.4",
|
|
85
90
|
"cz-conventional-changelog": "3.3.0",
|
|
91
|
+
"formik": "^2.2.9",
|
|
86
92
|
"react": "^17.0.2",
|
|
87
93
|
"react-dom": "^17.0.2",
|
|
88
94
|
"react-scripts": "4.0.3",
|
|
89
95
|
"rimraf": "^3.0.2",
|
|
90
96
|
"rollup": "^2.68.0",
|
|
91
97
|
"rollup-plugin-typescript2": "^0.31.2",
|
|
98
|
+
"storybook-addon-designs": "^6.2.1",
|
|
92
99
|
"styled-components": "^5.3.3",
|
|
93
100
|
"typescript": "^4.5.0",
|
|
94
101
|
"web-vitals": "^2.1.4"
|