@hy-bricks/canvas 0.6.2 → 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 +24 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -89,6 +89,7 @@ declare type __VLS_Props = {
|
|
|
89
89
|
canvasId?: string;
|
|
90
90
|
adapters?: CanvasAdapters;
|
|
91
91
|
keepHiddenMounted?: boolean;
|
|
92
|
+
persistInstanceState?: boolean;
|
|
92
93
|
};
|
|
93
94
|
|
|
94
95
|
declare type __VLS_Props_2 = {
|
|
@@ -101,6 +102,7 @@ declare type __VLS_Props_2 = {
|
|
|
101
102
|
freeSplitEnabled?: boolean | (() => boolean);
|
|
102
103
|
freeSplitControlsAlways?: boolean | (() => boolean);
|
|
103
104
|
cascadeRemove?: boolean;
|
|
105
|
+
persistInstanceState?: boolean;
|
|
104
106
|
};
|
|
105
107
|
|
|
106
108
|
declare type __VLS_Props_3 = {
|
|
@@ -108,6 +110,7 @@ declare type __VLS_Props_3 = {
|
|
|
108
110
|
mode?: CanvasMode;
|
|
109
111
|
schedulerOptions?: RenderSchedulerOptions;
|
|
110
112
|
canvasId?: string;
|
|
113
|
+
persistInstanceState?: boolean;
|
|
111
114
|
};
|
|
112
115
|
|
|
113
116
|
declare type __VLS_Props_4 = {
|