@hy-bricks/canvas 0.6.0 → 0.6.1
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 +16 -0
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +4 -0
- package/dist/index.mjs +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ parentLayoutMode: ContainerLayoutConfig["mode"];
|
|
|
45
45
|
}>, {
|
|
46
46
|
mode: CanvasMode;
|
|
47
47
|
freeSplitEnabled: boolean | (() => boolean);
|
|
48
|
+
freeSplitControlsAlways: boolean | (() => boolean);
|
|
48
49
|
cascadeRemove: boolean;
|
|
49
50
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
50
51
|
stageContainerEl: HTMLDivElement;
|
|
@@ -97,6 +98,7 @@ declare type __VLS_Props_2 = {
|
|
|
97
98
|
adapters?: CanvasAdapters;
|
|
98
99
|
canvasId?: string;
|
|
99
100
|
freeSplitEnabled?: boolean | (() => boolean);
|
|
101
|
+
freeSplitControlsAlways?: boolean | (() => boolean);
|
|
100
102
|
cascadeRemove?: boolean;
|
|
101
103
|
};
|
|
102
104
|
|
|
@@ -543,6 +545,7 @@ export declare interface CanvasContext {
|
|
|
543
545
|
registerHooks(hooks: CanvasActionHooks): () => void;
|
|
544
546
|
readonly isRecordingSuppressed: ComputedRef<boolean>;
|
|
545
547
|
readonly freeSplitEnabled: ComputedRef<boolean>;
|
|
548
|
+
readonly freeSplitControlsAlways: ComputedRef<boolean>;
|
|
546
549
|
readonly cascadeRemove: boolean;
|
|
547
550
|
suppressRecording<T>(fn: () => T): T;
|
|
548
551
|
readonly effectiveBehavior: ComputedRef<CanvasBehaviorConfig>;
|
|
@@ -578,6 +581,7 @@ export declare interface CanvasContextOptions {
|
|
|
578
581
|
hooks?: CanvasActionHooks;
|
|
579
582
|
getMode?: () => CanvasMode;
|
|
580
583
|
freeSplitEnabled?: boolean | (() => boolean | undefined);
|
|
584
|
+
freeSplitControlsAlways?: boolean | (() => boolean | undefined);
|
|
581
585
|
cascadeRemove?: boolean;
|
|
582
586
|
}
|
|
583
587
|
|