@chaibuilder/sdk 2.3.7 → 2.4.0
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 +2 -0
- package/dist/core.js +470 -406
- package/dist/render.cjs +2 -2
- package/dist/render.js +114 -103
- package/dist/web-blocks.cjs +1 -1
- package/dist/web-blocks.js +335 -342
- package/package.json +1 -1
package/dist/core.d.ts
CHANGED
|
@@ -681,6 +681,8 @@ export declare const usePermissions: () => {
|
|
|
681
681
|
*/
|
|
682
682
|
export declare const usePreviewMode: () => [boolean, Function];
|
|
683
683
|
|
|
684
|
+
export declare const useRemoveAllClassesForBlock: () => (block: ChaiBlock, undo?: boolean) => void;
|
|
685
|
+
|
|
684
686
|
export declare const useRemoveBlocks: () => (blockIds: Array<string>) => void;
|
|
685
687
|
|
|
686
688
|
export declare const useRemoveClassesFromBlocks: () => Function;
|