@appquality/unguess-design-system 4.0.64 → 4.0.66

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 CHANGED
@@ -1,3 +1,29 @@
1
+ # v4.0.66 (Mon Feb 16 2026)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Include editor ref type [#583](https://github.com/AppQuality/unguess-design-system/pull/583) ([@cannarocks](https://github.com/cannarocks))
6
+
7
+ #### Authors: 1
8
+
9
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
10
+
11
+ ---
12
+
13
+ # v4.0.65 (Mon Feb 16 2026)
14
+
15
+ #### 🐛 Bug Fix
16
+
17
+ - release-20260216 [#582](https://github.com/AppQuality/unguess-design-system/pull/582) ([@iDome89](https://github.com/iDome89) [@Kariamos](https://github.com/Kariamos))
18
+ - 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))
19
+
20
+ #### Authors: 2
21
+
22
+ - [@iDome89](https://github.com/iDome89)
23
+ - Marco ([@Kariamos](https://github.com/Kariamos))
24
+
25
+ ---
26
+
1
27
  # v4.0.64 (Thu Feb 12 2026)
2
28
 
3
29
  #### 🐛 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: ({ onSave, headerTitle, footerSaveText, placeholderOptions, ...props }: PropsWithChildren<EditorArgs>) => JSX_2.Element | null;
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
  */