zhihao-ui 1.2.7 → 1.2.9

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.
Files changed (47) hide show
  1. package/dist/es/{BaseInfo-CboHDiqp.js → BaseInfo-Dv-eon6t.js} +1 -1
  2. package/dist/es/Button-DBbUF88w.js +51 -0
  3. package/dist/es/{DatePicker-AcRbvS-8.js → DatePicker-CWQoV03Q.js} +13 -13
  4. package/dist/es/{DetailHeader-CoaVXtN3.js → DetailHeader-C_mAB8-2.js} +3 -3
  5. package/dist/es/{DetailSubTitle-Csp4LjFx.js → DetailSubTitle-DD7Yllhf.js} +2 -2
  6. package/dist/es/Dialog-DyDSVm-6.js +109 -0
  7. package/dist/es/{DiyDataTable-CP7yYQaU.js → DiyDataTable-KOY6vjPs.js} +90 -85
  8. package/dist/es/{EditInfoPair-DBbRqppY.js → EditInfoPair-D0b5jY5Y.js} +3 -3
  9. package/dist/es/{FileWrapper-BwQhQopY.js → FileWrapper-CMSYWmEz.js} +4 -4
  10. package/dist/es/{Grid-B-FutGih.js → Grid-B5O9dZNI.js} +1 -1
  11. package/dist/es/{InfoPair-WmMCXoUh.js → InfoPair-Do3sSVw-.js} +3 -3
  12. package/dist/es/{Input-DFnH7_jo.js → Input-DVpd0Yte.js} +11 -11
  13. package/dist/es/{Loading-BW6Doqh_.js → Loading-DwtfOhMD.js} +2 -2
  14. package/dist/es/{Map-IjNHD4K5.js → Map-CMiThYaG.js} +641 -315
  15. package/dist/es/MessageBox-BowhqMYW.js +48 -0
  16. package/dist/es/{MoneyInput-BwkFhS2B.js → MoneyInput-CaTrJLi1.js} +7 -7
  17. package/dist/es/{PageHeadPanel-BhR3Bq1A.js → PageHeadPanel-_mKu2rMQ.js} +2 -2
  18. package/dist/es/{ToolTips-BEYXkt4n.js → ToolTips-BTCP0N--.js} +3 -3
  19. package/dist/es/index.js +30 -28
  20. package/dist/es/{utils-B1dH8Kx6.js → utils-DZ8-2Fg2.js} +1 -1
  21. package/dist/es/{vendor-Cu-cEPs_.js → vendor-BY-fHNA3.js} +9646 -8896
  22. package/dist/index.css +1 -1
  23. package/dist/types/components/ButtonGroup/ButtonGroup.test.d.ts +1 -0
  24. package/dist/types/components/ButtonGroup/ButtonGroup.vue.d.ts +37 -0
  25. package/dist/types/components/ButtonGroup/index.d.ts +38 -0
  26. package/dist/types/components/Dialog/Dialog.test.d.ts +1 -0
  27. package/dist/types/components/Dialog/Dialog.vue.d.ts +187 -14
  28. package/dist/types/components/Dialog/index.d.ts +296 -25
  29. package/dist/types/components/Dialog/types.d.ts +15 -5
  30. package/dist/types/components/DiyDataTable/type.d.ts +5 -3
  31. package/dist/types/components/Map/Map.vue.d.ts +15 -5
  32. package/dist/types/components/Map/index.d.ts +27 -0
  33. package/dist/types/components/Map/interface/entity/render.d.ts +32 -0
  34. package/dist/types/components/Map/interface/entity/shipInfoVo.d.ts +4 -0
  35. package/dist/types/components/Map/interface/index.d.ts +1 -0
  36. package/dist/types/components/Map/render/canvasRender/canvasRender.d.ts +5 -3
  37. package/dist/types/components/Map/render/drawPolygon.d.ts +9 -0
  38. package/dist/types/components/MessageBox/MessageBox.test.d.ts +1 -0
  39. package/dist/types/components/MessageBox/MessageBox.vue.d.ts +11 -218
  40. package/dist/types/components/MessageBox/index.d.ts +4 -342
  41. package/dist/types/components/index.d.ts +1 -0
  42. package/dist/umd/index.css +1 -1
  43. package/dist/umd/index.umd.cjs +25 -17
  44. package/package.json +1 -1
  45. package/dist/es/Button-C1Q6WvkI.js +0 -32
  46. package/dist/es/Dialog-CtU-qGdR.js +0 -74
  47. package/dist/es/MessageBox-CjuBt74R.js +0 -100
@@ -1,219 +1,12 @@
1
+ import { ElMessageBoxOptions } from 'element-plus';
1
2
 
2
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
- visible: import('vue').PropType<boolean>;
4
- title: {
5
- type: import('vue').PropType<string>;
6
- required: true;
7
- };
8
- subtitle: {
9
- type: import('vue').PropType<string>;
10
- };
11
- tip: {
12
- type: import('vue').PropType<string>;
13
- };
14
- placeholder: {
15
- type: import('vue').PropType<string>;
16
- };
17
- formItemProps: {
18
- type: import('vue').PropType<Partial<import('element-plus').FormItemProps>>;
19
- };
20
- formProps: {
21
- type: import('vue').PropType<Partial<import('element-plus').FormProps>>;
22
- };
23
- inputProps: {
24
- type: import('vue').PropType<Partial<{
25
- readonly disabled: boolean;
26
- readonly id: string;
27
- readonly type: string;
28
- readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
29
- readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
30
- readonly readonly: boolean;
31
- readonly autosize: import('element-plus').InputAutoSize;
32
- readonly autocomplete: string;
33
- readonly containerRole: string;
34
- readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
35
- readonly inputStyle: import('vue').StyleValue;
36
- readonly rows: number;
37
- readonly clearable: boolean;
38
- readonly showPassword: boolean;
39
- readonly showWordLimit: boolean;
40
- readonly autofocus: boolean;
41
- }> & Omit<{
42
- readonly type: string;
43
- readonly disabled: boolean;
44
- readonly autofocus: boolean;
45
- readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
46
- readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
47
- readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
48
- readonly clearable: boolean;
49
- readonly readonly: boolean;
50
- readonly autocomplete: string;
51
- readonly autosize: import('element-plus').InputAutoSize;
52
- readonly showPassword: boolean;
53
- readonly showWordLimit: boolean;
54
- readonly inputStyle: import('vue').StyleValue;
55
- readonly rows: number;
56
- readonly size?: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
57
- readonly ariaLabel?: string | undefined;
58
- readonly id?: string | undefined;
59
- readonly prefixIcon?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown> | undefined;
60
- readonly placeholder?: string | undefined;
61
- readonly form?: string | undefined;
62
- readonly maxlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
63
- readonly formatter?: Function | undefined;
64
- readonly parser?: Function | undefined;
65
- readonly minlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
66
- readonly resize?: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "horizontal" | "vertical" | "none" | "both", unknown> | undefined;
67
- readonly suffixIcon?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown> | undefined;
68
- readonly containerRole?: string | undefined;
69
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
70
- onChange?: ((value: string) => any) | undefined;
71
- onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
72
- onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
73
- onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
74
- onFocus?: ((evt: FocusEvent) => any) | undefined;
75
- onBlur?: ((evt: FocusEvent) => any) | undefined;
76
- onInput?: ((value: string) => any) | undefined;
77
- onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
78
- onMouseenter?: ((evt: MouseEvent) => any) | undefined;
79
- onMouseleave?: ((evt: MouseEvent) => any) | undefined;
80
- onClear?: (() => any) | undefined;
81
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "disabled" | "autofocus" | "modelValue" | "tabindex" | "validateEvent" | "id" | "clearable" | "readonly" | "autocomplete" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows">>;
82
- };
83
- closeOnClickModal: {
84
- type: import('vue').PropType<boolean>;
85
- };
86
- callBack: {
87
- type: import('vue').PropType<(params: any) => void>;
88
- };
89
- onAction: {
90
- type: import('vue').PropType<(params: any) => void>;
91
- };
92
- onVanish: {
93
- type: import('vue').PropType<() => void>;
94
- };
95
- submitText: {
96
- type: import('vue').PropType<string>;
97
- };
98
- render: {
99
- type: import('vue').PropType<Function>;
100
- };
101
- maxlength: {
102
- type: import('vue').PropType<number>;
103
- };
104
- renderProps: {
105
- type: import('vue').PropType<any>;
106
- };
107
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
108
- action: (...args: any[]) => void;
109
- vanish: (...args: any[]) => void;
110
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
111
- visible: import('vue').PropType<boolean>;
112
- title: {
113
- type: import('vue').PropType<string>;
114
- required: true;
115
- };
116
- subtitle: {
117
- type: import('vue').PropType<string>;
118
- };
119
- tip: {
120
- type: import('vue').PropType<string>;
121
- };
122
- placeholder: {
123
- type: import('vue').PropType<string>;
124
- };
125
- formItemProps: {
126
- type: import('vue').PropType<Partial<import('element-plus').FormItemProps>>;
127
- };
128
- formProps: {
129
- type: import('vue').PropType<Partial<import('element-plus').FormProps>>;
130
- };
131
- inputProps: {
132
- type: import('vue').PropType<Partial<{
133
- readonly disabled: boolean;
134
- readonly id: string;
135
- readonly type: string;
136
- readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
137
- readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
138
- readonly readonly: boolean;
139
- readonly autosize: import('element-plus').InputAutoSize;
140
- readonly autocomplete: string;
141
- readonly containerRole: string;
142
- readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
143
- readonly inputStyle: import('vue').StyleValue;
144
- readonly rows: number;
145
- readonly clearable: boolean;
146
- readonly showPassword: boolean;
147
- readonly showWordLimit: boolean;
148
- readonly autofocus: boolean;
149
- }> & Omit<{
150
- readonly type: string;
151
- readonly disabled: boolean;
152
- readonly autofocus: boolean;
153
- readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
154
- readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
155
- readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
156
- readonly clearable: boolean;
157
- readonly readonly: boolean;
158
- readonly autocomplete: string;
159
- readonly autosize: import('element-plus').InputAutoSize;
160
- readonly showPassword: boolean;
161
- readonly showWordLimit: boolean;
162
- readonly inputStyle: import('vue').StyleValue;
163
- readonly rows: number;
164
- readonly size?: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
165
- readonly ariaLabel?: string | undefined;
166
- readonly id?: string | undefined;
167
- readonly prefixIcon?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown> | undefined;
168
- readonly placeholder?: string | undefined;
169
- readonly form?: string | undefined;
170
- readonly maxlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
171
- readonly formatter?: Function | undefined;
172
- readonly parser?: Function | undefined;
173
- readonly minlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
174
- readonly resize?: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "horizontal" | "vertical" | "none" | "both", unknown> | undefined;
175
- readonly suffixIcon?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown> | undefined;
176
- readonly containerRole?: string | undefined;
177
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
178
- onChange?: ((value: string) => any) | undefined;
179
- onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
180
- onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
181
- onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
182
- onFocus?: ((evt: FocusEvent) => any) | undefined;
183
- onBlur?: ((evt: FocusEvent) => any) | undefined;
184
- onInput?: ((value: string) => any) | undefined;
185
- onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
186
- onMouseenter?: ((evt: MouseEvent) => any) | undefined;
187
- onMouseleave?: ((evt: MouseEvent) => any) | undefined;
188
- onClear?: (() => any) | undefined;
189
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "disabled" | "autofocus" | "modelValue" | "tabindex" | "validateEvent" | "id" | "clearable" | "readonly" | "autocomplete" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows">>;
190
- };
191
- closeOnClickModal: {
192
- type: import('vue').PropType<boolean>;
193
- };
194
- callBack: {
195
- type: import('vue').PropType<(params: any) => void>;
196
- };
197
- onAction: {
198
- type: import('vue').PropType<(params: any) => void>;
199
- };
200
- onVanish: {
201
- type: import('vue').PropType<() => void>;
202
- };
203
- submitText: {
204
- type: import('vue').PropType<string>;
205
- };
206
- render: {
207
- type: import('vue').PropType<Function>;
208
- };
209
- maxlength: {
210
- type: import('vue').PropType<number>;
211
- };
212
- renderProps: {
213
- type: import('vue').PropType<any>;
214
- };
215
- }>> & Readonly<{
216
- onAction?: ((...args: any[]) => any) | undefined;
217
- onVanish?: ((...args: any[]) => any) | undefined;
218
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
219
- export default _default;
3
+ type MessageBoxOptions = Partial<ElMessageBoxOptions>;
4
+ export declare const ZhMessageBox: {
5
+ confirm(message: string, title?: string, options?: MessageBoxOptions): Promise<import('element-plus').MessageBoxData>;
6
+ alert(message: string, title?: string, options?: MessageBoxOptions): Promise<import('element-plus').MessageBoxData>;
7
+ prompt(message: string, title?: string, options?: MessageBoxOptions): Promise<import('element-plus').MessageBoxData>;
8
+ };
9
+ export declare const ZhConfirm: (message: string, title?: string, options?: MessageBoxOptions) => Promise<import('element-plus').MessageBoxData>;
10
+ export declare const ZhAlert: (message: string, title?: string, options?: MessageBoxOptions) => Promise<import('element-plus').MessageBoxData>;
11
+ export declare const ZhPrompt: (message: string, title?: string, options?: MessageBoxOptions) => Promise<import('element-plus').MessageBoxData>;
12
+ export default ZhMessageBox;
@@ -1,343 +1,5 @@
1
1
  export declare const ZhMessageBox: {
2
- new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
3
- visible: import('vue').PropType<boolean>;
4
- title: {
5
- type: import('vue').PropType<string>;
6
- required: true;
7
- };
8
- subtitle: {
9
- type: import('vue').PropType<string>;
10
- };
11
- tip: {
12
- type: import('vue').PropType<string>;
13
- };
14
- placeholder: {
15
- type: import('vue').PropType<string>;
16
- };
17
- formItemProps: {
18
- type: import('vue').PropType<Partial<import('element-plus').FormItemProps>>;
19
- };
20
- formProps: {
21
- type: import('vue').PropType<Partial<import('element-plus').FormProps>>;
22
- };
23
- inputProps: {
24
- type: import('vue').PropType<Partial<{
25
- readonly disabled: boolean;
26
- readonly id: string;
27
- readonly type: string;
28
- readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
29
- readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
30
- readonly readonly: boolean;
31
- readonly autosize: import('element-plus').InputAutoSize;
32
- readonly autocomplete: string;
33
- readonly containerRole: string;
34
- readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
35
- readonly inputStyle: import('vue').StyleValue;
36
- readonly rows: number;
37
- readonly clearable: boolean;
38
- readonly showPassword: boolean;
39
- readonly showWordLimit: boolean;
40
- readonly autofocus: boolean;
41
- }> & Omit<{
42
- readonly type: string;
43
- readonly disabled: boolean;
44
- readonly autofocus: boolean;
45
- readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
46
- readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
47
- readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
48
- readonly clearable: boolean;
49
- readonly readonly: boolean;
50
- readonly autocomplete: string;
51
- readonly autosize: import('element-plus').InputAutoSize;
52
- readonly showPassword: boolean;
53
- readonly showWordLimit: boolean;
54
- readonly inputStyle: import('vue').StyleValue;
55
- readonly rows: number;
56
- readonly size?: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
57
- readonly ariaLabel?: string | undefined;
58
- readonly id?: string | undefined;
59
- readonly prefixIcon?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown> | undefined;
60
- readonly placeholder?: string | undefined;
61
- readonly form?: string | undefined;
62
- readonly maxlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
63
- readonly formatter?: Function | undefined;
64
- readonly parser?: Function | undefined;
65
- readonly minlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
66
- readonly resize?: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "horizontal" | "vertical" | "none" | "both", unknown> | undefined;
67
- readonly suffixIcon?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown> | undefined;
68
- readonly containerRole?: string | undefined;
69
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
70
- onChange?: ((value: string) => any) | undefined;
71
- onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
72
- onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
73
- onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
74
- onFocus?: ((evt: FocusEvent) => any) | undefined;
75
- onBlur?: ((evt: FocusEvent) => any) | undefined;
76
- onInput?: ((value: string) => any) | undefined;
77
- onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
78
- onMouseenter?: ((evt: MouseEvent) => any) | undefined;
79
- onMouseleave?: ((evt: MouseEvent) => any) | undefined;
80
- onClear?: (() => any) | undefined;
81
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "disabled" | "autofocus" | "modelValue" | "tabindex" | "validateEvent" | "id" | "clearable" | "readonly" | "autocomplete" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows">>;
82
- };
83
- closeOnClickModal: {
84
- type: import('vue').PropType<boolean>;
85
- };
86
- callBack: {
87
- type: import('vue').PropType<(params: any) => void>;
88
- };
89
- onAction: {
90
- type: import('vue').PropType<(params: any) => void>;
91
- };
92
- onVanish: {
93
- type: import('vue').PropType<() => void>;
94
- };
95
- submitText: {
96
- type: import('vue').PropType<string>;
97
- };
98
- render: {
99
- type: import('vue').PropType<Function>;
100
- };
101
- maxlength: {
102
- type: import('vue').PropType<number>;
103
- };
104
- renderProps: {
105
- type: import('vue').PropType<any>;
106
- };
107
- }>> & Readonly<{
108
- onAction?: ((...args: any[]) => any) | undefined;
109
- onVanish?: ((...args: any[]) => any) | undefined;
110
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
111
- action: (...args: any[]) => void;
112
- vanish: (...args: any[]) => void;
113
- }, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
114
- P: {};
115
- B: {};
116
- D: {};
117
- C: {};
118
- M: {};
119
- Defaults: {};
120
- }, Readonly<import('vue').ExtractPropTypes<{
121
- visible: import('vue').PropType<boolean>;
122
- title: {
123
- type: import('vue').PropType<string>;
124
- required: true;
125
- };
126
- subtitle: {
127
- type: import('vue').PropType<string>;
128
- };
129
- tip: {
130
- type: import('vue').PropType<string>;
131
- };
132
- placeholder: {
133
- type: import('vue').PropType<string>;
134
- };
135
- formItemProps: {
136
- type: import('vue').PropType<Partial<import('element-plus').FormItemProps>>;
137
- };
138
- formProps: {
139
- type: import('vue').PropType<Partial<import('element-plus').FormProps>>;
140
- };
141
- inputProps: {
142
- type: import('vue').PropType<Partial<{
143
- readonly disabled: boolean;
144
- readonly id: string;
145
- readonly type: string;
146
- readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
147
- readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
148
- readonly readonly: boolean;
149
- readonly autosize: import('element-plus').InputAutoSize;
150
- readonly autocomplete: string;
151
- readonly containerRole: string;
152
- readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
153
- readonly inputStyle: import('vue').StyleValue;
154
- readonly rows: number;
155
- readonly clearable: boolean;
156
- readonly showPassword: boolean;
157
- readonly showWordLimit: boolean;
158
- readonly autofocus: boolean;
159
- }> & Omit<{
160
- readonly type: string;
161
- readonly disabled: boolean;
162
- readonly autofocus: boolean;
163
- readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
164
- readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
165
- readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
166
- readonly clearable: boolean;
167
- readonly readonly: boolean;
168
- readonly autocomplete: string;
169
- readonly autosize: import('element-plus').InputAutoSize;
170
- readonly showPassword: boolean;
171
- readonly showWordLimit: boolean;
172
- readonly inputStyle: import('vue').StyleValue;
173
- readonly rows: number;
174
- readonly size?: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
175
- readonly ariaLabel?: string | undefined;
176
- readonly id?: string | undefined;
177
- readonly prefixIcon?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown> | undefined;
178
- readonly placeholder?: string | undefined;
179
- readonly form?: string | undefined;
180
- readonly maxlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
181
- readonly formatter?: Function | undefined;
182
- readonly parser?: Function | undefined;
183
- readonly minlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
184
- readonly resize?: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "horizontal" | "vertical" | "none" | "both", unknown> | undefined;
185
- readonly suffixIcon?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown> | undefined;
186
- readonly containerRole?: string | undefined;
187
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
188
- onChange?: ((value: string) => any) | undefined;
189
- onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
190
- onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
191
- onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
192
- onFocus?: ((evt: FocusEvent) => any) | undefined;
193
- onBlur?: ((evt: FocusEvent) => any) | undefined;
194
- onInput?: ((value: string) => any) | undefined;
195
- onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
196
- onMouseenter?: ((evt: MouseEvent) => any) | undefined;
197
- onMouseleave?: ((evt: MouseEvent) => any) | undefined;
198
- onClear?: (() => any) | undefined;
199
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "disabled" | "autofocus" | "modelValue" | "tabindex" | "validateEvent" | "id" | "clearable" | "readonly" | "autocomplete" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows">>;
200
- };
201
- closeOnClickModal: {
202
- type: import('vue').PropType<boolean>;
203
- };
204
- callBack: {
205
- type: import('vue').PropType<(params: any) => void>;
206
- };
207
- onAction: {
208
- type: import('vue').PropType<(params: any) => void>;
209
- };
210
- onVanish: {
211
- type: import('vue').PropType<() => void>;
212
- };
213
- submitText: {
214
- type: import('vue').PropType<string>;
215
- };
216
- render: {
217
- type: import('vue').PropType<Function>;
218
- };
219
- maxlength: {
220
- type: import('vue').PropType<number>;
221
- };
222
- renderProps: {
223
- type: import('vue').PropType<any>;
224
- };
225
- }>> & Readonly<{
226
- onAction?: ((...args: any[]) => any) | undefined;
227
- onVanish?: ((...args: any[]) => any) | undefined;
228
- }>, {}, {}, {}, {}, {}>;
229
- __isFragment?: never;
230
- __isTeleport?: never;
231
- __isSuspense?: never;
232
- } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
233
- visible: import('vue').PropType<boolean>;
234
- title: {
235
- type: import('vue').PropType<string>;
236
- required: true;
237
- };
238
- subtitle: {
239
- type: import('vue').PropType<string>;
240
- };
241
- tip: {
242
- type: import('vue').PropType<string>;
243
- };
244
- placeholder: {
245
- type: import('vue').PropType<string>;
246
- };
247
- formItemProps: {
248
- type: import('vue').PropType<Partial<import('element-plus').FormItemProps>>;
249
- };
250
- formProps: {
251
- type: import('vue').PropType<Partial<import('element-plus').FormProps>>;
252
- };
253
- inputProps: {
254
- type: import('vue').PropType<Partial<{
255
- readonly disabled: boolean;
256
- readonly id: string;
257
- readonly type: string;
258
- readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
259
- readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
260
- readonly readonly: boolean;
261
- readonly autosize: import('element-plus').InputAutoSize;
262
- readonly autocomplete: string;
263
- readonly containerRole: string;
264
- readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
265
- readonly inputStyle: import('vue').StyleValue;
266
- readonly rows: number;
267
- readonly clearable: boolean;
268
- readonly showPassword: boolean;
269
- readonly showWordLimit: boolean;
270
- readonly autofocus: boolean;
271
- }> & Omit<{
272
- readonly type: string;
273
- readonly disabled: boolean;
274
- readonly autofocus: boolean;
275
- readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
276
- readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
277
- readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
278
- readonly clearable: boolean;
279
- readonly readonly: boolean;
280
- readonly autocomplete: string;
281
- readonly autosize: import('element-plus').InputAutoSize;
282
- readonly showPassword: boolean;
283
- readonly showWordLimit: boolean;
284
- readonly inputStyle: import('vue').StyleValue;
285
- readonly rows: number;
286
- readonly size?: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
287
- readonly ariaLabel?: string | undefined;
288
- readonly id?: string | undefined;
289
- readonly prefixIcon?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown> | undefined;
290
- readonly placeholder?: string | undefined;
291
- readonly form?: string | undefined;
292
- readonly maxlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
293
- readonly formatter?: Function | undefined;
294
- readonly parser?: Function | undefined;
295
- readonly minlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
296
- readonly resize?: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "horizontal" | "vertical" | "none" | "both", unknown> | undefined;
297
- readonly suffixIcon?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown> | undefined;
298
- readonly containerRole?: string | undefined;
299
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
300
- onChange?: ((value: string) => any) | undefined;
301
- onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
302
- onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
303
- onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
304
- onFocus?: ((evt: FocusEvent) => any) | undefined;
305
- onBlur?: ((evt: FocusEvent) => any) | undefined;
306
- onInput?: ((value: string) => any) | undefined;
307
- onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
308
- onMouseenter?: ((evt: MouseEvent) => any) | undefined;
309
- onMouseleave?: ((evt: MouseEvent) => any) | undefined;
310
- onClear?: (() => any) | undefined;
311
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "disabled" | "autofocus" | "modelValue" | "tabindex" | "validateEvent" | "id" | "clearable" | "readonly" | "autocomplete" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows">>;
312
- };
313
- closeOnClickModal: {
314
- type: import('vue').PropType<boolean>;
315
- };
316
- callBack: {
317
- type: import('vue').PropType<(params: any) => void>;
318
- };
319
- onAction: {
320
- type: import('vue').PropType<(params: any) => void>;
321
- };
322
- onVanish: {
323
- type: import('vue').PropType<() => void>;
324
- };
325
- submitText: {
326
- type: import('vue').PropType<string>;
327
- };
328
- render: {
329
- type: import('vue').PropType<Function>;
330
- };
331
- maxlength: {
332
- type: import('vue').PropType<number>;
333
- };
334
- renderProps: {
335
- type: import('vue').PropType<any>;
336
- };
337
- }>> & Readonly<{
338
- onAction?: ((...args: any[]) => any) | undefined;
339
- onVanish?: ((...args: any[]) => any) | undefined;
340
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
341
- action: (...args: any[]) => void;
342
- vanish: (...args: any[]) => void;
343
- }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin;
2
+ confirm(message: string, title?: string, options?: Partial<import('element-plus').ElMessageBoxOptions>): Promise<import('element-plus').MessageBoxData>;
3
+ alert(message: string, title?: string, options?: Partial<import('element-plus').ElMessageBoxOptions>): Promise<import('element-plus').MessageBoxData>;
4
+ prompt(message: string, title?: string, options?: Partial<import('element-plus').ElMessageBoxOptions>): Promise<import('element-plus').MessageBoxData>;
5
+ } & import('vue').Plugin;
@@ -1,4 +1,5 @@
1
1
  export * from './Button';
2
+ export * from './ButtonGroup';
2
3
  export * from './DatePicker';
3
4
  export * from './DetailSubTitle';
4
5
  export * from './Dialog';