@appquality/unguess-design-system 2.5.7 → 2.6.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 +42 -0
- package/build/index.d.ts +2 -0
- package/build/index.js +638 -117
- package/build/stories/campaignCards/_types.d.ts +39 -0
- package/build/stories/campaignCards/index.d.ts +4 -0
- package/build/stories/campaignCards/index.stories.d.ts +7 -0
- package/build/stories/forms/field/index.d.ts +2 -1
- package/build/stories/login-form/_types.d.ts +6 -0
- package/build/stories/logo/index.d.ts +1 -1
- package/build/stories/theme/index.d.ts +11 -9
- package/build/stories/theme/utils.d.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,45 @@
|
|
|
1
|
+
# v2.6.2 (Thu Mar 31 2022)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# v2.6.1 (Thu Mar 31 2022)
|
|
8
|
+
|
|
9
|
+
#### ⚠️ Pushed to `master`
|
|
10
|
+
|
|
11
|
+
- fix(login): add generic error message ([@cannarocks](https://github.com/cannarocks))
|
|
12
|
+
|
|
13
|
+
#### Authors: 1
|
|
14
|
+
|
|
15
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
# v2.6.0 (Tue Mar 29 2022)
|
|
20
|
+
|
|
21
|
+
#### 🚀 Enhancement
|
|
22
|
+
|
|
23
|
+
- Feature/cup 500 campaign card [#27](https://github.com/AppQuality/unguess-design-system/pull/27) ([@cicababba](https://github.com/cicababba) [@marcbon](https://github.com/marcbon))
|
|
24
|
+
|
|
25
|
+
#### 🐛 Bug Fix
|
|
26
|
+
|
|
27
|
+
- Fix/campaign cards [#28](https://github.com/AppQuality/unguess-design-system/pull/28) ([@marcbon](https://github.com/marcbon))
|
|
28
|
+
|
|
29
|
+
#### ⚠️ Pushed to `master`
|
|
30
|
+
|
|
31
|
+
- fix(campaigncard): add html props to campaign card ([@cannarocks](https://github.com/cannarocks))
|
|
32
|
+
- fix(scroll): hide <Main /> scroll ([@cannarocks](https://github.com/cannarocks))
|
|
33
|
+
- fix(counter): fix error on zero counter values ([@cannarocks](https://github.com/cannarocks))
|
|
34
|
+
|
|
35
|
+
#### Authors: 3
|
|
36
|
+
|
|
37
|
+
- cicababba ([@cicababba](https://github.com/cicababba))
|
|
38
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
39
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
1
43
|
# v2.5.7 (Mon Mar 28 2022)
|
|
2
44
|
|
|
3
45
|
|
package/build/index.d.ts
CHANGED
|
@@ -8,7 +8,9 @@ export * from './stories/buttons/button-group';
|
|
|
8
8
|
export * from './stories/buttons/icon-button';
|
|
9
9
|
export * from './stories/buttons/split-button';
|
|
10
10
|
export * from './stories/cards';
|
|
11
|
+
export * from './stories/campaignCards';
|
|
11
12
|
export * from './stories/close';
|
|
13
|
+
export * from './stories/counter';
|
|
12
14
|
export * as DropdownField from './stories/dropdowns/field';
|
|
13
15
|
export * from './stories/dropdowns/item';
|
|
14
16
|
export * from './stories/dropdowns/menu';
|