@chaibuilder/sdk 2.0.0-beta.74 → 2.0.0-beta.76
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 +1273 -1256
- package/dist/render.cjs +2 -2
- package/dist/render.d.ts +6 -0
- package/dist/render.js +118 -101
- package/dist/runtime.d.ts +6 -0
- package/dist/tailwind.d.ts +6 -0
- package/dist/ui.d.ts +6 -0
- package/dist/web-blocks.cjs +2 -29
- package/dist/web-blocks.d.ts +6 -0
- package/dist/web-blocks.js +397 -929
- package/package.json +4 -3
package/dist/core.d.ts
CHANGED
|
@@ -90,6 +90,7 @@ export declare interface ChaiBuilderEditorProps {
|
|
|
90
90
|
* Optional pageId. If not provided, a random pageId will be generated
|
|
91
91
|
*/
|
|
92
92
|
pageId?: string;
|
|
93
|
+
pageExternalData?: Record<string, any>;
|
|
93
94
|
themePresets?: Record<string, Partial<ChaiBuilderThemeValues>>[];
|
|
94
95
|
themeOptions?: ChaiBuilderThemeOptions | ((defaultThemeOptions: ChaiBuilderThemeOptions) => ChaiBuilderThemeOptions);
|
|
95
96
|
theme?: Partial<ChaiBuilderThemeValues>;
|
|
@@ -610,3 +611,9 @@ export declare const useWrapperBlock: () => ChaiBlock_2;
|
|
|
610
611
|
declare type VariableKey = string;
|
|
611
612
|
|
|
612
613
|
export { }
|
|
614
|
+
|
|
615
|
+
declare global {
|
|
616
|
+
interface Window {
|
|
617
|
+
clarity: any;
|
|
618
|
+
}
|
|
619
|
+
}
|