@appquality/unguess-design-system 3.1.109 → 3.1.111
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/.github/workflows/storybook.yml +2 -2
- package/CHANGELOG.md +26 -0
- package/build/index.d.ts +11 -10
- package/build/index.js +1133 -524
- package/build/stories/alerts/index.d.ts +272 -2
- package/build/stories/buttons/button/index.d.ts +292 -3
- package/build/stories/buttons/button/index.stories.d.ts +0 -1
- package/build/stories/buttons/utils.d.ts +858 -6
- package/build/stories/charts/ChartContainer.d.ts +1 -1
- package/build/stories/chat/index.d.ts +271 -2
- package/build/stories/chat/index.stories.d.ts +0 -1
- package/build/stories/chat/parts/containers.d.ts +278 -7
- package/build/stories/chat/parts/header.d.ts +271 -1
- package/build/stories/dropdowns/field/index.d.ts +271 -2
- package/build/stories/dropdowns/select/index.d.ts +271 -1
- package/build/stories/dropdowns/select/index.stories.d.ts +0 -1
- package/build/stories/editor/index.stories.d.ts +0 -1
- package/build/stories/forms/input/index.d.ts +271 -2
- package/build/stories/forms/input-toggle/index.d.ts +271 -1
- package/build/stories/highlight/CreateObservationButton.d.ts +3 -3
- package/build/stories/highlight/index.stories.d.ts +0 -1
- package/build/stories/label/index.d.ts +272 -2
- package/build/stories/lightbox/parts/body.d.ts +812 -3
- package/build/stories/lightbox/parts/footer.d.ts +271 -2
- package/build/stories/modals/fullscreen/index.d.ts +1090 -8
- package/build/stories/modals/index.d.ts +271 -2
- package/build/stories/navigation/header/header-item/brandItem.d.ts +286 -2
- package/build/stories/navigation/nav/nav-item/accordionItem.d.ts +3 -3
- package/build/stories/navigation/nav/nav-item/navItemProject.d.ts +1 -1
- package/build/stories/navigation/page-header/index.d.ts +1091 -8
- package/build/stories/navigation/page-header/styled/main.d.ts +1092 -8
- package/build/stories/player/index.stories.d.ts +0 -1
- package/build/stories/player/parts/container.d.ts +1 -1
- package/build/stories/player/parts/controlButton.d.ts +292 -2
- package/build/stories/player/parts/controls.d.ts +273 -2
- package/build/stories/player/parts/floatingControls.d.ts +1 -1
- package/build/stories/profile-modal/components/menuItem.d.ts +272 -1
- package/build/stories/profile-modal/components/menuItemIcon.d.ts +1 -1
- package/build/stories/slider/parts/container.d.ts +272 -1
- package/build/stories/slider/parts/slickSlider.d.ts +1 -1
- package/build/stories/special-cards/index.d.ts +829 -11
- package/build/stories/special-cards/styled/header.d.ts +827 -9
- package/build/stories/special-cards/styled/meta.d.ts +1 -1
- package/build/stories/special-cards/styled/thumbnail.d.ts +1 -1
- package/build/stories/stepper/index.d.ts +813 -6
- package/build/stories/tags/index.d.ts +552 -6
- package/build/stories/timeline/index.d.ts +273 -4
- package/build/stories/transcript/_data.d.ts +17 -0
- package/build/stories/transcript/extensions/theme/index.d.ts +347 -0
- package/build/stories/transcript/findActiveWord.d.ts +2 -0
- package/build/stories/transcript/floatingMenu.d.ts +8 -0
- package/build/stories/transcript/getParsedContent.d.ts +26 -0
- package/build/stories/transcript/index.d.ts +53 -0
- package/build/stories/transcript/index.stories.d.ts +23 -0
- package/build/stories/transcript/nodes/active/Component.d.ts +6 -0
- package/build/stories/transcript/nodes/active/index.d.ts +4 -0
- package/build/stories/transcript/nodes/observation/Component.d.ts +6 -0
- package/build/stories/transcript/nodes/observation/index.d.ts +2 -0
- package/build/stories/transcript/nodes/paragraph/Component.d.ts +6 -0
- package/build/stories/transcript/nodes/paragraph/index.d.ts +2 -0
- package/build/stories/transcript/nodes/word/Component.d.ts +6 -0
- package/build/stories/transcript/nodes/word/index.d.ts +2 -0
- package/build/stories/transcript/search.d.ts +9 -0
- package/build/stories/transcript/useEditor.d.ts +11 -0
- package/build/stories/typography/typescale/anchortag/index.stories.d.ts +1 -5
- package/build/stories/typography/typescale/index.d.ts +286 -14
- package/build/stories/typography/typescale/index.stories.d.ts +1 -5
- package/package.json +22 -14
|
@@ -24,10 +24,10 @@ jobs:
|
|
|
24
24
|
- uses: actions/checkout@v2
|
|
25
25
|
with:
|
|
26
26
|
fetch-depth: 0
|
|
27
|
-
- name: Use Node.js
|
|
27
|
+
- name: Use Node.js 18.x
|
|
28
28
|
uses: actions/setup-node@v2
|
|
29
29
|
with:
|
|
30
|
-
node-version: "
|
|
30
|
+
node-version: "18"
|
|
31
31
|
|
|
32
32
|
- name: Publish storybook
|
|
33
33
|
id: storybook
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
# v3.1.111 (Wed Oct 02 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- fix: Add tiptap text-style dependency [#417](https://github.com/AppQuality/unguess-design-system/pull/417) ([@d-beezee](https://github.com/d-beezee))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@d-beezee](https://github.com/d-beezee)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v3.1.110 (Wed Oct 02 2024)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- Add new transcript [#416](https://github.com/AppQuality/unguess-design-system/pull/416) ([@cannarocks](https://github.com/cannarocks) [@d-beezee](https://github.com/d-beezee))
|
|
18
|
+
- New highlight component [#411](https://github.com/AppQuality/unguess-design-system/pull/411) ([@cannarocks](https://github.com/cannarocks) [@d-beezee](https://github.com/d-beezee))
|
|
19
|
+
|
|
20
|
+
#### Authors: 2
|
|
21
|
+
|
|
22
|
+
- [@d-beezee](https://github.com/d-beezee)
|
|
23
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
1
27
|
# v3.1.109 (Wed Oct 02 2024)
|
|
2
28
|
|
|
3
29
|
#### 🐛 Bug Fix
|
package/build/index.d.ts
CHANGED
|
@@ -16,23 +16,23 @@ export * from "./stories/info-cards";
|
|
|
16
16
|
export * from "./stories/special-cards";
|
|
17
17
|
export * from "./stories/charts/bar";
|
|
18
18
|
export * from "./stories/charts/bullet";
|
|
19
|
-
export * from "./stories/charts/pie";
|
|
20
19
|
export * from "./stories/charts/halfPie";
|
|
20
|
+
export * from "./stories/charts/pie";
|
|
21
|
+
export * from "./stories/charts/sentiment";
|
|
21
22
|
export * from "./stories/charts/sunburst";
|
|
22
23
|
export * from "./stories/charts/waffle";
|
|
23
|
-
export * from "./stories/charts/sentiment";
|
|
24
24
|
export * from "./stories/chat";
|
|
25
25
|
export * from "./stories/close";
|
|
26
26
|
export * from "./stories/color-swatch";
|
|
27
27
|
export * from "./stories/drawers";
|
|
28
|
+
export * from "./stories/dropdowns/autocomplete";
|
|
29
|
+
export * from "./stories/dropdowns/countermultiselect";
|
|
28
30
|
export * as DropdownField from "./stories/dropdowns/field";
|
|
29
31
|
export * from "./stories/dropdowns/item";
|
|
30
32
|
export * from "./stories/dropdowns/item-content";
|
|
31
33
|
export * from "./stories/dropdowns/menu";
|
|
32
|
-
export * from "./stories/dropdowns/countermultiselect";
|
|
33
|
-
export * from "./stories/dropdowns/select";
|
|
34
|
-
export * from "./stories/dropdowns/autocomplete";
|
|
35
34
|
export * from "./stories/dropdowns/menuheader";
|
|
35
|
+
export * from "./stories/dropdowns/select";
|
|
36
36
|
export * from "./stories/editor";
|
|
37
37
|
export * from "./stories/forms/checkbox";
|
|
38
38
|
export * from "./stories/forms/checkbox/cards";
|
|
@@ -45,30 +45,30 @@ export * from "./stories/forms/radio/cards";
|
|
|
45
45
|
export * from "./stories/forms/textarea";
|
|
46
46
|
export * from "./stories/forms/toggle";
|
|
47
47
|
export * from "./stories/grid/col";
|
|
48
|
-
export * from "./stories/grid/row";
|
|
49
48
|
export * from "./stories/grid/grid";
|
|
49
|
+
export * from "./stories/grid/row";
|
|
50
50
|
export * from "./stories/highlight";
|
|
51
51
|
export * from "./stories/icons";
|
|
52
52
|
export * from "./stories/label";
|
|
53
53
|
export * from "./stories/lightbox";
|
|
54
|
+
export * from "./stories/loaders/dots";
|
|
54
55
|
export * from "./stories/loaders/progress";
|
|
55
56
|
export * from "./stories/loaders/skeleton";
|
|
56
57
|
export * from "./stories/loaders/spinner";
|
|
57
|
-
export * from "./stories/loaders/dots";
|
|
58
58
|
export * from "./stories/login-form";
|
|
59
59
|
export * from "./stories/logo";
|
|
60
60
|
export * from "./stories/multiselect";
|
|
61
61
|
export * from "./stories/modals";
|
|
62
62
|
export * from "./stories/modals/fullscreen";
|
|
63
|
+
export * from "./stories/navigation/app-header";
|
|
63
64
|
export * from "./stories/navigation/body";
|
|
65
|
+
export * from "./stories/navigation/chrome";
|
|
64
66
|
export * from "./stories/navigation/content";
|
|
65
67
|
export * from "./stories/navigation/header";
|
|
66
68
|
export * from "./stories/navigation/header/header-item";
|
|
67
|
-
export * from "./stories/navigation/app-header";
|
|
68
69
|
export * from "./stories/navigation/main";
|
|
69
70
|
export * from "./stories/navigation/nav";
|
|
70
71
|
export * from "./stories/navigation/nav/nav-item";
|
|
71
|
-
export * from "./stories/navigation/chrome";
|
|
72
72
|
export * from "./stories/notifications";
|
|
73
73
|
export * from "./stories/pagination";
|
|
74
74
|
export * from "./stories/navigation/page-header";
|
|
@@ -76,7 +76,7 @@ export * from "./stories/player";
|
|
|
76
76
|
export * from "./stories/profile-modal";
|
|
77
77
|
export * from "./stories/slider";
|
|
78
78
|
export * from "./stories/stepper";
|
|
79
|
-
export {
|
|
79
|
+
export { Caption, HeaderCell, HeaderRow, Table, Body as TableBody, Cell as TableCell, Head as TableHead, Row as TableRow, } from "./stories/table";
|
|
80
80
|
export { GroupRow, GroupedTable } from "./stories/table/grouped";
|
|
81
81
|
export * from "./stories/tabs";
|
|
82
82
|
export * from "./stories/tags";
|
|
@@ -95,4 +95,5 @@ export * from "./stories/typography/lists";
|
|
|
95
95
|
export * from "./stories/typography/paragraph";
|
|
96
96
|
export * from "./stories/typography/span";
|
|
97
97
|
export * from "./stories/typography/typescale";
|
|
98
|
+
export * from "./stories/transcript";
|
|
98
99
|
export { GlobalStyle };
|