@appquality/unguess-design-system 2.10.32 → 2.10.35
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 +1 -0
- package/build/index.js +330 -242
- package/build/stories/navigation/sidebar/_types.d.ts +1 -0
- package/build/stories/timeline/_types.d.ts +14 -0
- package/build/stories/timeline/index.d.ts +17 -0
- package/build/stories/timeline/index.stories.d.ts +20 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,39 @@
|
|
|
1
|
+
# v2.10.35 (Wed May 18 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- feat(sidebar): add templates menu item [#59](https://github.com/AppQuality/unguess-design-system/pull/59) ([@cannarocks](https://github.com/cannarocks))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v2.10.34 (Wed May 18 2022)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- fix(timeline): update component padding [#57](https://github.com/AppQuality/unguess-design-system/pull/57) ([@cannarocks](https://github.com/cannarocks))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
# v2.10.33 (Tue May 17 2022)
|
|
26
|
+
|
|
27
|
+
#### 🐛 Bug Fix
|
|
28
|
+
|
|
29
|
+
- Cup 739 timeline component [#56](https://github.com/AppQuality/unguess-design-system/pull/56) ([@cannarocks](https://github.com/cannarocks))
|
|
30
|
+
|
|
31
|
+
#### Authors: 1
|
|
32
|
+
|
|
33
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
1
37
|
# v2.10.32 (Tue May 17 2022)
|
|
2
38
|
|
|
3
39
|
#### ⚠️ Pushed to `master`
|
package/build/index.d.ts
CHANGED
|
@@ -61,6 +61,7 @@ export { Table, Head as TableHead, HeaderRow, HeaderCell, Body as TableBody, Row
|
|
|
61
61
|
export { GroupRow, GroupedTable, } from "./stories/table/grouped";
|
|
62
62
|
export * from "./stories/tags";
|
|
63
63
|
export * from "./stories/tiles";
|
|
64
|
+
export * from "./stories/timeline";
|
|
64
65
|
export * from "./stories/theme";
|
|
65
66
|
export * from "./stories/title";
|
|
66
67
|
export * from "./stories/trigger";
|