@chaibuilder/sdk 2.2.29 → 2.2.30
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/dist/core.cjs +4 -4
- package/dist/core.d.ts +7 -0
- package/dist/core.js +958 -942
- package/dist/render.cjs +2 -2
- package/dist/render.js +76 -68
- package/dist/web-blocks.cjs +1 -1
- package/dist/web-blocks.js +1 -1
- package/package.json +1 -1
package/dist/core.d.ts
CHANGED
|
@@ -604,6 +604,13 @@ export declare const useHiddenBlockIds: () => readonly [string[], (args_0: strin
|
|
|
604
604
|
*/
|
|
605
605
|
export declare const useHighlightBlockId: () => [string, Function];
|
|
606
606
|
|
|
607
|
+
export declare const useInlineEditing: () => {
|
|
608
|
+
editingBlockId: string;
|
|
609
|
+
editingItemIndex: number;
|
|
610
|
+
setEditingBlockId: (args_0: string | ((prev: string) => string)) => void;
|
|
611
|
+
setEditingItemIndex: (args_0: number | ((prev: number) => number)) => void;
|
|
612
|
+
};
|
|
613
|
+
|
|
607
614
|
export declare const useLanguages: () => {
|
|
608
615
|
languages: any[];
|
|
609
616
|
fallbackLang: string;
|