@appquality/unguess-design-system 3.1.65 → 3.1.67-bookmarks
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 +31 -0
- package/build/index.d.ts +1 -0
- package/build/index.js +557 -355
- package/build/stories/chat/_types.d.ts +5 -1
- package/build/stories/chat/context/chatContext.d.ts +2 -2
- package/build/stories/chat/parts/extensions.d.ts +1 -1
- package/build/stories/highlight/_types.d.ts +36 -0
- package/build/stories/highlight/index.d.ts +10 -0
- package/build/stories/highlight/index.stories.d.ts +16 -0
- package/build/stories/player/_types.d.ts +11 -0
- package/build/stories/player/index.stories.d.ts +1 -2
- package/build/stories/player/parts/bookmark.d.ts +2 -0
- package/build/stories/player/parts/controls.d.ts +5 -2
- package/build/stories/player/parts/controlsCenterGroup.d.ts +4 -1
- package/build/stories/profile-modal/_types.d.ts +16 -0
- package/build/stories/profile-modal/{UserContainer.d.ts → components/UserContainer.d.ts} +1 -1
- package/build/stories/profile-modal/{menuItem.d.ts → components/menuItem.d.ts} +1 -1
- package/build/stories/profile-modal/{previousMenuButton.d.ts → components/previousMenuButton.d.ts} +1 -1
- package/build/stories/profile-modal/{helpMenuItem.d.ts → items/helpMenuItem.d.ts} +1 -1
- package/build/stories/profile-modal/{languageMenuItem.d.ts → items/languageMenuItem.d.ts} +1 -1
- package/build/stories/profile-modal/items/settingsMenuItem.d.ts +21 -0
- package/package.json +3 -2
- package/build/stories/chat/parts/editorButton.d.ts +0 -5
- /package/build/stories/profile-modal/{menuItemIcon.d.ts → components/menuItemIcon.d.ts} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
# v3.1.67 (Wed Jan 24 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Minor changes [#305](https://github.com/AppQuality/unguess-design-system/pull/305) ([@cannarocks](https://github.com/cannarocks) [@iDome89](https://github.com/iDome89) [@marcbon](https://github.com/marcbon))
|
|
6
|
+
- fixed behaviour when editor is empty [#304](https://github.com/AppQuality/unguess-design-system/pull/304) ([@iDome89](https://github.com/iDome89))
|
|
7
|
+
- 🔧 fix(chat): fix typo in mentionList.tsx [#303](https://github.com/AppQuality/unguess-design-system/pull/303) ([@marcbon](https://github.com/marcbon))
|
|
8
|
+
- Comments design refinement [#302](https://github.com/AppQuality/unguess-design-system/pull/302) ([@iDome89](https://github.com/iDome89) [@marcbon](https://github.com/marcbon))
|
|
9
|
+
- chore(storybook): add extension [#301](https://github.com/AppQuality/unguess-design-system/pull/301) ([@cannarocks](https://github.com/cannarocks))
|
|
10
|
+
|
|
11
|
+
#### Authors: 3
|
|
12
|
+
|
|
13
|
+
- [@iDome89](https://github.com/iDome89)
|
|
14
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
15
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
# v3.1.66 (Fri Jan 19 2024)
|
|
20
|
+
|
|
21
|
+
#### 🐛 Bug Fix
|
|
22
|
+
|
|
23
|
+
- Fix editable comments in chat [#300](https://github.com/AppQuality/unguess-design-system/pull/300) ([@marcbon](https://github.com/marcbon))
|
|
24
|
+
- 🎨 style(comment.tsx): update ReadOnly style to make it more readable [#299](https://github.com/AppQuality/unguess-design-system/pull/299) ([@marcbon](https://github.com/marcbon))
|
|
25
|
+
|
|
26
|
+
#### Authors: 1
|
|
27
|
+
|
|
28
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
1
32
|
# v3.1.65 (Fri Jan 19 2024)
|
|
2
33
|
|
|
3
34
|
#### 🐛 Bug Fix
|
package/build/index.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ export * from "./stories/forms/toggle";
|
|
|
47
47
|
export * from "./stories/grid/col";
|
|
48
48
|
export * from "./stories/grid/row";
|
|
49
49
|
export * from "./stories/grid/grid";
|
|
50
|
+
export * from "./stories/highlight";
|
|
50
51
|
export * from "./stories/icons";
|
|
51
52
|
export * from "./stories/label";
|
|
52
53
|
export * from "./stories/lightbox";
|