@appquality/unguess-design-system 4.0.63 → 4.0.65
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/build/index.d.ts +7 -1
- package/build/index.js +2642 -2647
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
# v4.0.65 (Mon Feb 16 2026)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- release-20260216 [#582](https://github.com/AppQuality/unguess-design-system/pull/582) ([@iDome89](https://github.com/iDome89) [@Kariamos](https://github.com/Kariamos))
|
|
6
|
+
- feat: Add EditorRef interface and implement ref forwarding in Editor component [#581](https://github.com/AppQuality/unguess-design-system/pull/581) ([@iDome89](https://github.com/iDome89))
|
|
7
|
+
|
|
8
|
+
#### Authors: 2
|
|
9
|
+
|
|
10
|
+
- [@iDome89](https://github.com/iDome89)
|
|
11
|
+
- Marco ([@Kariamos](https://github.com/Kariamos))
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
# v4.0.64 (Thu Feb 12 2026)
|
|
16
|
+
|
|
17
|
+
#### 🐛 Bug Fix
|
|
18
|
+
|
|
19
|
+
- Fix autocomplete validation [#579](https://github.com/AppQuality/unguess-design-system/pull/579) ([@cannarocks](https://github.com/cannarocks))
|
|
20
|
+
- Improve regex handling for input validation in Autocomplete component [#578](https://github.com/AppQuality/unguess-design-system/pull/578) ([@cannarocks](https://github.com/cannarocks))
|
|
21
|
+
|
|
22
|
+
#### Authors: 1
|
|
23
|
+
|
|
24
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
1
28
|
# v4.0.63 (Mon Jan 19 2026)
|
|
2
29
|
|
|
3
30
|
#### 🐛 Bug Fix
|
package/build/index.d.ts
CHANGED
|
@@ -1073,7 +1073,9 @@ ref?: ((instance: HTMLDivElement | null) => void | DO_NOT_USE_OR_YOU_WILL_BE_FIR
|
|
|
1073
1073
|
Not for this:
|
|
1074
1074
|
- Simple text input, use textarea instead.
|
|
1075
1075
|
*/
|
|
1076
|
-
export declare const Editor:
|
|
1076
|
+
export declare const Editor: ForwardRefExoticComponent<EditorArgs & {
|
|
1077
|
+
children?: ReactNode | undefined;
|
|
1078
|
+
} & RefAttributes<EditorRef>>;
|
|
1077
1079
|
|
|
1078
1080
|
declare interface EditorArgs extends Partial<EditorOptions> {
|
|
1079
1081
|
placeholderOptions?: Partial<PlaceholderOptions>;
|
|
@@ -1087,6 +1089,10 @@ declare interface EditorArgs extends Partial<EditorOptions> {
|
|
|
1087
1089
|
disableSaveShortcut?: boolean;
|
|
1088
1090
|
}
|
|
1089
1091
|
|
|
1092
|
+
export declare interface EditorRef {
|
|
1093
|
+
getEditor: () => Editor_2 | null;
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1090
1096
|
/**
|
|
1091
1097
|
* Use Ellipsis to automatically provide text content with a native title attribute and text-overflow styling.
|
|
1092
1098
|
*/
|