@hy-bricks/canvas 0.6.1 → 0.6.3
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/CHANGELOG.md +39 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -88,6 +88,8 @@ declare type __VLS_Props = {
|
|
|
88
88
|
schedulerOptions?: RenderSchedulerOptions;
|
|
89
89
|
canvasId?: string;
|
|
90
90
|
adapters?: CanvasAdapters;
|
|
91
|
+
keepHiddenMounted?: boolean;
|
|
92
|
+
persistInstanceState?: boolean;
|
|
91
93
|
};
|
|
92
94
|
|
|
93
95
|
declare type __VLS_Props_2 = {
|
|
@@ -100,6 +102,7 @@ declare type __VLS_Props_2 = {
|
|
|
100
102
|
freeSplitEnabled?: boolean | (() => boolean);
|
|
101
103
|
freeSplitControlsAlways?: boolean | (() => boolean);
|
|
102
104
|
cascadeRemove?: boolean;
|
|
105
|
+
persistInstanceState?: boolean;
|
|
103
106
|
};
|
|
104
107
|
|
|
105
108
|
declare type __VLS_Props_3 = {
|
|
@@ -107,6 +110,7 @@ declare type __VLS_Props_3 = {
|
|
|
107
110
|
mode?: CanvasMode;
|
|
108
111
|
schedulerOptions?: RenderSchedulerOptions;
|
|
109
112
|
canvasId?: string;
|
|
113
|
+
persistInstanceState?: boolean;
|
|
110
114
|
};
|
|
111
115
|
|
|
112
116
|
declare type __VLS_Props_4 = {
|
|
@@ -2031,6 +2035,7 @@ export declare function renderLayoutBoxStyle(layoutBox: LayoutBox, zIndex: numbe
|
|
|
2031
2035
|
export declare interface RenderScheduler {
|
|
2032
2036
|
register(instanceId: string, el: Element): void;
|
|
2033
2037
|
unregister(instanceId: string): void;
|
|
2038
|
+
setHeld(instanceId: string, held: boolean): void;
|
|
2034
2039
|
isMounted(instanceId: string): boolean;
|
|
2035
2040
|
getState(instanceId: string): MountState;
|
|
2036
2041
|
readonly state: Readonly<Record<string, MountState>>;
|