@zyui/components 0.0.55 → 0.0.57

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.
@@ -29,6 +29,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
29
29
  type: StringConstructor;
30
30
  default: string;
31
31
  };
32
+ isOccupy: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
32
36
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
33
37
  modelValue: import('vue').PropType<any[]>;
34
38
  /**
@@ -60,11 +64,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
60
64
  type: StringConstructor;
61
65
  default: string;
62
66
  };
67
+ isOccupy: {
68
+ type: BooleanConstructor;
69
+ default: boolean;
70
+ };
63
71
  }>> & Readonly<{}>, {
64
72
  size: string;
65
73
  label: string;
66
74
  id: string;
67
75
  mode: string;
68
76
  editorId: string;
77
+ isOccupy: boolean;
69
78
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
70
79
  export default _default;
@@ -7,6 +7,7 @@ type SelectParams = {
7
7
  editorId: string;
8
8
  id: string;
9
9
  color: Ref<string>;
10
+ isOccupy: Ref<boolean>;
10
11
  };
11
12
  export declare function useRegisterSelect(params: SelectParams): void;
12
13
  export {};