@hy-bricks/canvas 0.6.1 → 0.6.2

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/index.d.ts CHANGED
@@ -88,6 +88,7 @@ declare type __VLS_Props = {
88
88
  schedulerOptions?: RenderSchedulerOptions;
89
89
  canvasId?: string;
90
90
  adapters?: CanvasAdapters;
91
+ keepHiddenMounted?: boolean;
91
92
  };
92
93
 
93
94
  declare type __VLS_Props_2 = {
@@ -2031,6 +2032,7 @@ export declare function renderLayoutBoxStyle(layoutBox: LayoutBox, zIndex: numbe
2031
2032
  export declare interface RenderScheduler {
2032
2033
  register(instanceId: string, el: Element): void;
2033
2034
  unregister(instanceId: string): void;
2035
+ setHeld(instanceId: string, held: boolean): void;
2034
2036
  isMounted(instanceId: string): boolean;
2035
2037
  getState(instanceId: string): MountState;
2036
2038
  readonly state: Readonly<Record<string, MountState>>;