@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.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;