lew-ui 2.7.68 → 2.7.70

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.
@@ -1,4 +1,4 @@
1
1
  export declare const treeSelectEmits: {
2
- readonly change: (value?: string) => string | undefined;
2
+ readonly change: (value?: string | string[]) => string | string[] | undefined;
3
3
  readonly clear: () => void;
4
4
  };
@@ -3,7 +3,7 @@ import { LewSize, LewTreeDataSource, LewTrigger } from '../../../..';
3
3
  import { ExtractPublicPropTypes, PropType } from 'vue';
4
4
  export declare const treeSelectModel: {
5
5
  modelValue: {
6
- type: StringConstructor;
6
+ type: (StringConstructor | ArrayConstructor)[];
7
7
  default: undefined;
8
8
  };
9
9
  };
@@ -43,11 +43,21 @@ export declare const treeSelectProps: {
43
43
  default: boolean;
44
44
  validator: (value: any) => boolean;
45
45
  };
46
+ multiple: {
47
+ type: BooleanConstructor;
48
+ default: boolean;
49
+ validator: (value: any) => boolean;
50
+ };
46
51
  checkable: {
47
52
  type: BooleanConstructor;
48
53
  default: boolean;
49
54
  validator: (value: any) => boolean;
50
55
  };
56
+ onlyLeafSelectable: {
57
+ type: BooleanConstructor;
58
+ default: boolean;
59
+ validator: (value: any) => boolean;
60
+ };
51
61
  showAllLevels: {
52
62
  type: BooleanConstructor;
53
63
  default: boolean;
@@ -1,3 +1,2 @@
1
- export * from './src/emits';
2
1
  export { default as LewTextTrim } from './src/LewTextTrim.vue';
3
2
  export * from './src/props';
@@ -50,11 +50,7 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
50
50
  type: NumberConstructor;
51
51
  validator: (value: any) => boolean;
52
52
  };
53
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
54
- click: (event: MouseEvent) => any;
55
- mouseenter: () => any;
56
- mouseleave: () => any;
57
- }, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
53
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
58
54
  text: {
59
55
  type: StringConstructor;
60
56
  validator: (value: any) => boolean;
@@ -93,11 +89,7 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
93
89
  type: NumberConstructor;
94
90
  validator: (value: any) => boolean;
95
91
  };
96
- }>> & Readonly<{
97
- onClick?: ((event: MouseEvent) => any) | undefined;
98
- onMouseenter?: (() => any) | undefined;
99
- onMouseleave?: (() => any) | undefined;
100
- }>, {
92
+ }>> & Readonly<{}>, {
101
93
  offset: [number, number];
102
94
  textAlign: import("csstype").Property.TextAlign;
103
95
  allowHTML: boolean;
@@ -23,10 +23,12 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
23
23
  };
24
24
  dropdownLabel: {
25
25
  type: null;
26
+ typePopKeys: string[];
26
27
  default: string;
27
28
  };
28
29
  dropdownIcon: {
29
30
  type: null;
31
+ typePopKeys: string[];
30
32
  };
31
33
  iconOnly: {
32
34
  type: BooleanConstructor;
@@ -57,10 +59,12 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
57
59
  };
58
60
  dropdownLabel: {
59
61
  type: null;
62
+ typePopKeys: string[];
60
63
  default: string;
61
64
  };
62
65
  dropdownIcon: {
63
66
  type: null;
67
+ typePopKeys: string[];
64
68
  };
65
69
  iconOnly: {
66
70
  type: BooleanConstructor;
@@ -25,10 +25,12 @@ export declare const actionBoxProps: {
25
25
  };
26
26
  dropdownLabel: {
27
27
  type: null;
28
+ typePopKeys: string[];
28
29
  default: string;
29
30
  };
30
31
  dropdownIcon: {
31
32
  type: null;
33
+ typePopKeys: string[];
32
34
  };
33
35
  iconOnly: {
34
36
  type: BooleanConstructor;