@trycourier/react-designer 0.0.0-canary-20251105150942 → 0.0.0-canary-20251111120550
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/README.md +2 -2
- package/dist/cjs/index.js +49 -49
- package/dist/cjs/index.js.map +3 -3
- package/dist/cjs/styles.css +669 -397
- package/dist/components/TemplateEditor/store.d.ts +7 -0
- package/dist/components/extensions/Column/ColumnComponent.d.ts +1 -0
- package/dist/esm/index.js +49 -49
- package/dist/esm/index.js.map +3 -3
- package/dist/esm/styles.css +669 -397
- package/dist/hooks/useAutoSave.d.ts +2 -1
- package/dist/index.d.ts +0 -1
- package/dist/styles.css +669 -397
- package/package.json +1 -1
- package/dist/cjs/index.css +0 -2
- package/dist/cjs/index.css.map +0 -7
- package/dist/esm/index.css +0 -2
- package/dist/esm/index.css.map +0 -7
|
@@ -32,3 +32,10 @@ export declare const variableValuesAtom: import("jotai").PrimitiveAtom<Record<st
|
|
|
32
32
|
export declare const isDraggingAtom: import("jotai").PrimitiveAtom<boolean> & {
|
|
33
33
|
init: boolean;
|
|
34
34
|
};
|
|
35
|
+
export type FlushFunction = () => void;
|
|
36
|
+
export declare const flushFunctionsAtom: import("jotai").WritableAtom<Map<string, FlushFunction>, [update: {
|
|
37
|
+
action: "register" | "unregister";
|
|
38
|
+
id: string;
|
|
39
|
+
fn?: FlushFunction;
|
|
40
|
+
}], void>;
|
|
41
|
+
export declare const flushAllPendingUpdates: (flushFunctions: Map<string, FlushFunction>) => void;
|
|
@@ -11,6 +11,7 @@ export declare const getActiveCellDrag: () => CellDragState | null;
|
|
|
11
11
|
export declare const ColumnComponent: React.FC<ColumnProps & {
|
|
12
12
|
node: Node;
|
|
13
13
|
columnsCount: number;
|
|
14
|
+
isPreviewMode?: boolean;
|
|
14
15
|
}>;
|
|
15
16
|
export declare const ColumnComponentNode: (props: NodeViewProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
17
|
export {};
|