zhihao-ui 1.2.4 → 1.2.5
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/es/{BaseInfo-DSoB7lXu.js → BaseInfo-CboHDiqp.js} +1 -1
- package/dist/es/{Button-CSkwolvy.js → Button-C1Q6WvkI.js} +2 -2
- package/dist/es/{DatePicker-BuM1QvvJ.js → DatePicker-AcRbvS-8.js} +2 -2
- package/dist/es/{DetailHeader-DLWS2a6d.js → DetailHeader-CoaVXtN3.js} +3 -3
- package/dist/es/{DetailSubTitle-Bohm33lU.js → DetailSubTitle-Csp4LjFx.js} +2 -2
- package/dist/es/{Dialog-dbO52Pj0.js → Dialog-CtU-qGdR.js} +3 -3
- package/dist/es/DiyDataTable-DBonLs6p.js +276 -0
- package/dist/es/{EditInfoPair-sJNaUadM.js → EditInfoPair-DBbRqppY.js} +3 -3
- package/dist/es/{FileWrapper-BQgaAu1K.js → FileWrapper-BwQhQopY.js} +4 -4
- package/dist/es/{Grid-P-t8UiMv.js → Grid-B-FutGih.js} +1 -1
- package/dist/es/{InfoPair-BNypeCJn.js → InfoPair-WmMCXoUh.js} +3 -3
- package/dist/es/{Input-DpsLV8LI.js → Input-DFnH7_jo.js} +11 -11
- package/dist/es/{Loading-DXdxoKLU.js → Loading-BW6Doqh_.js} +2 -2
- package/dist/es/{Map-BchE1ZDm.js → Map-BLQnapy4.js} +3 -3
- package/dist/es/{MessageBox-DRwBLDiG.js → MessageBox-CjuBt74R.js} +15 -15
- package/dist/es/{MoneyInput-E6oSL6tO.js → MoneyInput-BwkFhS2B.js} +7 -7
- package/dist/es/{PageHeadPanel-fhMuGUkI.js → PageHeadPanel-BhR3Bq1A.js} +2 -2
- package/dist/es/{ToolTips-lv_GNnZo.js → ToolTips-BEYXkt4n.js} +3 -3
- package/dist/es/index.js +25 -22
- package/dist/es/{utils-BMWHW3o7.js → utils-B1dH8Kx6.js} +1 -1
- package/dist/es/{vendor-BXx3MaXc.js → vendor-Cu-cEPs_.js} +14931 -10415
- package/dist/index.css +1 -1
- package/dist/types/components/DiyDataTable/DiyDataTable.vue.d.ts +70 -0
- package/dist/types/components/DiyDataTable/index.d.ts +151 -0
- package/dist/types/components/DiyDataTable/type.d.ts +46 -0
- package/dist/types/components/MessageBox/MessageBox.vue.d.ts +8 -8
- package/dist/types/components/MessageBox/index.d.ts +12 -12
- package/dist/types/components/index.d.ts +1 -0
- package/dist/umd/index.css +1 -1
- package/dist/umd/index.umd.cjs +50 -37
- package/package.json +1 -1
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { DiyDataTableColumnItem, DiyDataType, DIY_DATA_TYPE } from './type';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
rawData: {
|
|
5
|
+
required: true;
|
|
6
|
+
type: import('vue').PropType<DiyDataType[]>;
|
|
7
|
+
};
|
|
8
|
+
isEdit: {
|
|
9
|
+
type: import('vue').PropType<boolean>;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
maxRowLength: {
|
|
13
|
+
type: import('vue').PropType<number>;
|
|
14
|
+
default: number;
|
|
15
|
+
};
|
|
16
|
+
maxColLength: {
|
|
17
|
+
type: import('vue').PropType<number>;
|
|
18
|
+
default: number;
|
|
19
|
+
};
|
|
20
|
+
}>, {
|
|
21
|
+
/** 初始化数据 */
|
|
22
|
+
initData: (rawdata: DiyDataType[], rawColumns: DiyDataTableColumnItem[]) => void;
|
|
23
|
+
/** 获取数据 */
|
|
24
|
+
getData: () => Promise<{
|
|
25
|
+
data: DiyDataType[];
|
|
26
|
+
columns: {
|
|
27
|
+
prop: string;
|
|
28
|
+
label: string;
|
|
29
|
+
key?: (number | string) | undefined;
|
|
30
|
+
isAdd?: boolean | undefined;
|
|
31
|
+
width?: number | undefined;
|
|
32
|
+
maxlength?: number | undefined;
|
|
33
|
+
headerMaxlength?: number | undefined;
|
|
34
|
+
placeholder?: string | undefined;
|
|
35
|
+
required?: boolean | undefined;
|
|
36
|
+
isEditHeader?: boolean | undefined;
|
|
37
|
+
isSameData?: boolean | undefined;
|
|
38
|
+
type?: DIY_DATA_TYPE | undefined;
|
|
39
|
+
completeList?: string[] | undefined;
|
|
40
|
+
formatter?: ((value: string | DiyDataType) => string) | undefined;
|
|
41
|
+
parser?: ((value: string) => string) | undefined;
|
|
42
|
+
varidate?: ((value: string | number | undefined) => true | string) | undefined;
|
|
43
|
+
fixed?: ("left" | "right") | undefined;
|
|
44
|
+
}[];
|
|
45
|
+
} | undefined>;
|
|
46
|
+
/** 更新列配置数据 */
|
|
47
|
+
updateColumn: (index: number, column: DiyDataTableColumnItem) => void;
|
|
48
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
49
|
+
rawData: {
|
|
50
|
+
required: true;
|
|
51
|
+
type: import('vue').PropType<DiyDataType[]>;
|
|
52
|
+
};
|
|
53
|
+
isEdit: {
|
|
54
|
+
type: import('vue').PropType<boolean>;
|
|
55
|
+
default: boolean;
|
|
56
|
+
};
|
|
57
|
+
maxRowLength: {
|
|
58
|
+
type: import('vue').PropType<number>;
|
|
59
|
+
default: number;
|
|
60
|
+
};
|
|
61
|
+
maxColLength: {
|
|
62
|
+
type: import('vue').PropType<number>;
|
|
63
|
+
default: number;
|
|
64
|
+
};
|
|
65
|
+
}>> & Readonly<{}>, {
|
|
66
|
+
isEdit: boolean;
|
|
67
|
+
maxRowLength: number;
|
|
68
|
+
maxColLength: number;
|
|
69
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
70
|
+
export default _default;
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
export declare const ZhDiyDataTable: {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
3
|
+
rawData: {
|
|
4
|
+
required: true;
|
|
5
|
+
type: import('vue').PropType<import('./type').DiyDataType[]>;
|
|
6
|
+
};
|
|
7
|
+
isEdit: {
|
|
8
|
+
type: import('vue').PropType<boolean>;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
maxRowLength: {
|
|
12
|
+
type: import('vue').PropType<number>;
|
|
13
|
+
default: number;
|
|
14
|
+
};
|
|
15
|
+
maxColLength: {
|
|
16
|
+
type: import('vue').PropType<number>;
|
|
17
|
+
default: number;
|
|
18
|
+
};
|
|
19
|
+
}>> & Readonly<{}>, {
|
|
20
|
+
initData: (rawdata: import('./type').DiyDataType[], rawColumns: import('./type').DiyDataTableColumnItem[]) => void;
|
|
21
|
+
getData: () => Promise<{
|
|
22
|
+
data: import('./type').DiyDataType[];
|
|
23
|
+
columns: {
|
|
24
|
+
prop: string;
|
|
25
|
+
label: string;
|
|
26
|
+
key?: (number | string) | undefined;
|
|
27
|
+
isAdd?: boolean | undefined;
|
|
28
|
+
width?: number | undefined;
|
|
29
|
+
maxlength?: number | undefined;
|
|
30
|
+
headerMaxlength?: number | undefined;
|
|
31
|
+
placeholder?: string | undefined;
|
|
32
|
+
required?: boolean | undefined;
|
|
33
|
+
isEditHeader?: boolean | undefined;
|
|
34
|
+
isSameData?: boolean | undefined;
|
|
35
|
+
type?: import('./type').DIY_DATA_TYPE | undefined;
|
|
36
|
+
completeList?: string[] | undefined;
|
|
37
|
+
formatter?: ((value: string | import('./type').DiyDataType) => string) | undefined;
|
|
38
|
+
parser?: ((value: string) => string) | undefined;
|
|
39
|
+
varidate?: ((value: string | number | undefined) => true | string) | undefined;
|
|
40
|
+
fixed?: ("left" | "right") | undefined;
|
|
41
|
+
}[];
|
|
42
|
+
} | undefined>;
|
|
43
|
+
updateColumn: (index: number, column: import('./type').DiyDataTableColumnItem) => void;
|
|
44
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
45
|
+
isEdit: boolean;
|
|
46
|
+
maxRowLength: number;
|
|
47
|
+
maxColLength: number;
|
|
48
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
49
|
+
P: {};
|
|
50
|
+
B: {};
|
|
51
|
+
D: {};
|
|
52
|
+
C: {};
|
|
53
|
+
M: {};
|
|
54
|
+
Defaults: {};
|
|
55
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
56
|
+
rawData: {
|
|
57
|
+
required: true;
|
|
58
|
+
type: import('vue').PropType<import('./type').DiyDataType[]>;
|
|
59
|
+
};
|
|
60
|
+
isEdit: {
|
|
61
|
+
type: import('vue').PropType<boolean>;
|
|
62
|
+
default: boolean;
|
|
63
|
+
};
|
|
64
|
+
maxRowLength: {
|
|
65
|
+
type: import('vue').PropType<number>;
|
|
66
|
+
default: number;
|
|
67
|
+
};
|
|
68
|
+
maxColLength: {
|
|
69
|
+
type: import('vue').PropType<number>;
|
|
70
|
+
default: number;
|
|
71
|
+
};
|
|
72
|
+
}>> & Readonly<{}>, {
|
|
73
|
+
initData: (rawdata: import('./type').DiyDataType[], rawColumns: import('./type').DiyDataTableColumnItem[]) => void;
|
|
74
|
+
getData: () => Promise<{
|
|
75
|
+
data: import('./type').DiyDataType[];
|
|
76
|
+
columns: {
|
|
77
|
+
prop: string;
|
|
78
|
+
label: string;
|
|
79
|
+
key?: (number | string) | undefined;
|
|
80
|
+
isAdd?: boolean | undefined;
|
|
81
|
+
width?: number | undefined;
|
|
82
|
+
maxlength?: number | undefined;
|
|
83
|
+
headerMaxlength?: number | undefined;
|
|
84
|
+
placeholder?: string | undefined;
|
|
85
|
+
required?: boolean | undefined;
|
|
86
|
+
isEditHeader?: boolean | undefined;
|
|
87
|
+
isSameData?: boolean | undefined;
|
|
88
|
+
type?: import('./type').DIY_DATA_TYPE | undefined;
|
|
89
|
+
completeList?: string[] | undefined;
|
|
90
|
+
formatter?: ((value: string | import('./type').DiyDataType) => string) | undefined;
|
|
91
|
+
parser?: ((value: string) => string) | undefined;
|
|
92
|
+
varidate?: ((value: string | number | undefined) => true | string) | undefined;
|
|
93
|
+
fixed?: ("left" | "right") | undefined;
|
|
94
|
+
}[];
|
|
95
|
+
} | undefined>;
|
|
96
|
+
updateColumn: (index: number, column: import('./type').DiyDataTableColumnItem) => void;
|
|
97
|
+
}, {}, {}, {}, {
|
|
98
|
+
isEdit: boolean;
|
|
99
|
+
maxRowLength: number;
|
|
100
|
+
maxColLength: number;
|
|
101
|
+
}>;
|
|
102
|
+
__isFragment?: never;
|
|
103
|
+
__isTeleport?: never;
|
|
104
|
+
__isSuspense?: never;
|
|
105
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
106
|
+
rawData: {
|
|
107
|
+
required: true;
|
|
108
|
+
type: import('vue').PropType<import('./type').DiyDataType[]>;
|
|
109
|
+
};
|
|
110
|
+
isEdit: {
|
|
111
|
+
type: import('vue').PropType<boolean>;
|
|
112
|
+
default: boolean;
|
|
113
|
+
};
|
|
114
|
+
maxRowLength: {
|
|
115
|
+
type: import('vue').PropType<number>;
|
|
116
|
+
default: number;
|
|
117
|
+
};
|
|
118
|
+
maxColLength: {
|
|
119
|
+
type: import('vue').PropType<number>;
|
|
120
|
+
default: number;
|
|
121
|
+
};
|
|
122
|
+
}>> & Readonly<{}>, {
|
|
123
|
+
initData: (rawdata: import('./type').DiyDataType[], rawColumns: import('./type').DiyDataTableColumnItem[]) => void;
|
|
124
|
+
getData: () => Promise<{
|
|
125
|
+
data: import('./type').DiyDataType[];
|
|
126
|
+
columns: {
|
|
127
|
+
prop: string;
|
|
128
|
+
label: string;
|
|
129
|
+
key?: (number | string) | undefined;
|
|
130
|
+
isAdd?: boolean | undefined;
|
|
131
|
+
width?: number | undefined;
|
|
132
|
+
maxlength?: number | undefined;
|
|
133
|
+
headerMaxlength?: number | undefined;
|
|
134
|
+
placeholder?: string | undefined;
|
|
135
|
+
required?: boolean | undefined;
|
|
136
|
+
isEditHeader?: boolean | undefined;
|
|
137
|
+
isSameData?: boolean | undefined;
|
|
138
|
+
type?: import('./type').DIY_DATA_TYPE | undefined;
|
|
139
|
+
completeList?: string[] | undefined;
|
|
140
|
+
formatter?: ((value: string | import('./type').DiyDataType) => string) | undefined;
|
|
141
|
+
parser?: ((value: string) => string) | undefined;
|
|
142
|
+
varidate?: ((value: string | number | undefined) => true | string) | undefined;
|
|
143
|
+
fixed?: ("left" | "right") | undefined;
|
|
144
|
+
}[];
|
|
145
|
+
} | undefined>;
|
|
146
|
+
updateColumn: (index: number, column: import('./type').DiyDataTableColumnItem) => void;
|
|
147
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
148
|
+
isEdit: boolean;
|
|
149
|
+
maxRowLength: number;
|
|
150
|
+
maxColLength: number;
|
|
151
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/** 自定义数据项 */
|
|
2
|
+
export type DiyDataType = Record<string, string | number | undefined>;
|
|
3
|
+
/** 列输入框类型 */
|
|
4
|
+
export declare enum DIY_DATA_TYPE {
|
|
5
|
+
/** 自动补全输入框 */
|
|
6
|
+
AUTOCOMPLETE = "autocomplete",
|
|
7
|
+
/** 格式化文本 */
|
|
8
|
+
FORMAT = "format"
|
|
9
|
+
}
|
|
10
|
+
/** 列配置 */
|
|
11
|
+
export type DiyDataTableColumnItem = {
|
|
12
|
+
/** 字段名 */
|
|
13
|
+
prop: string;
|
|
14
|
+
/** 表头名称 */
|
|
15
|
+
label: string;
|
|
16
|
+
/** 列key */
|
|
17
|
+
key?: number | string;
|
|
18
|
+
/** 是否是添加的列 */
|
|
19
|
+
isAdd?: boolean;
|
|
20
|
+
/** 宽度 */
|
|
21
|
+
width?: number;
|
|
22
|
+
/** 最大长度 */
|
|
23
|
+
maxlength?: number;
|
|
24
|
+
/** 头部最大长度 */
|
|
25
|
+
headerMaxlength?: number;
|
|
26
|
+
/** 输入框占位符 */
|
|
27
|
+
placeholder?: string;
|
|
28
|
+
/** 是否必填 */
|
|
29
|
+
required?: boolean;
|
|
30
|
+
/** 是否固定标签 */
|
|
31
|
+
isEditHeader?: boolean;
|
|
32
|
+
/** 是否相同数据 */
|
|
33
|
+
isSameData?: boolean;
|
|
34
|
+
/** 列输入框类型 */
|
|
35
|
+
type?: DIY_DATA_TYPE;
|
|
36
|
+
/** 自动补全输入框 数据 */
|
|
37
|
+
completeList?: string[];
|
|
38
|
+
/** 格式化input值,type为FORMAT:格式化数据 */
|
|
39
|
+
formatter?: (value: string | DiyDataType) => string;
|
|
40
|
+
/** input值解析 */
|
|
41
|
+
parser?: (value: string) => string;
|
|
42
|
+
/** 校验 */
|
|
43
|
+
varidate?: (value: string | number | undefined) => true | string;
|
|
44
|
+
/** 固定列位置 */
|
|
45
|
+
fixed?: 'left' | 'right';
|
|
46
|
+
};
|
|
@@ -47,8 +47,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
47
47
|
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
48
48
|
readonly clearable: boolean;
|
|
49
49
|
readonly readonly: boolean;
|
|
50
|
-
readonly autosize: import('element-plus').InputAutoSize;
|
|
51
50
|
readonly autocomplete: string;
|
|
51
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
52
52
|
readonly showPassword: boolean;
|
|
53
53
|
readonly showWordLimit: boolean;
|
|
54
54
|
readonly inputStyle: import('vue').StyleValue;
|
|
@@ -59,11 +59,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
59
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
60
|
readonly placeholder?: string | undefined;
|
|
61
61
|
readonly form?: string | undefined;
|
|
62
|
-
readonly resize?: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "horizontal" | "vertical" | "none" | "both", unknown> | undefined;
|
|
63
62
|
readonly maxlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
|
|
64
|
-
readonly minlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
|
|
65
63
|
readonly formatter?: Function | undefined;
|
|
66
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
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
68
|
readonly containerRole?: string | undefined;
|
|
69
69
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
@@ -78,7 +78,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
78
78
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
79
79
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
80
80
|
onClear?: (() => any) | undefined;
|
|
81
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "disabled" | "autofocus" | "modelValue" | "tabindex" | "validateEvent" | "id" | "clearable" | "readonly" | "
|
|
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
82
|
};
|
|
83
83
|
closeOnClickModal: {
|
|
84
84
|
type: import('vue').PropType<boolean>;
|
|
@@ -155,8 +155,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
155
155
|
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
156
156
|
readonly clearable: boolean;
|
|
157
157
|
readonly readonly: boolean;
|
|
158
|
-
readonly autosize: import('element-plus').InputAutoSize;
|
|
159
158
|
readonly autocomplete: string;
|
|
159
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
160
160
|
readonly showPassword: boolean;
|
|
161
161
|
readonly showWordLimit: boolean;
|
|
162
162
|
readonly inputStyle: import('vue').StyleValue;
|
|
@@ -167,11 +167,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
167
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
168
|
readonly placeholder?: string | undefined;
|
|
169
169
|
readonly form?: string | undefined;
|
|
170
|
-
readonly resize?: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "horizontal" | "vertical" | "none" | "both", unknown> | undefined;
|
|
171
170
|
readonly maxlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
|
|
172
|
-
readonly minlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
|
|
173
171
|
readonly formatter?: Function | undefined;
|
|
174
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
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
176
|
readonly containerRole?: string | undefined;
|
|
177
177
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
@@ -186,7 +186,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
186
186
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
187
187
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
188
188
|
onClear?: (() => any) | undefined;
|
|
189
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "disabled" | "autofocus" | "modelValue" | "tabindex" | "validateEvent" | "id" | "clearable" | "readonly" | "
|
|
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
190
|
};
|
|
191
191
|
closeOnClickModal: {
|
|
192
192
|
type: import('vue').PropType<boolean>;
|
|
@@ -47,8 +47,8 @@ export declare const ZhMessageBox: {
|
|
|
47
47
|
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
48
48
|
readonly clearable: boolean;
|
|
49
49
|
readonly readonly: boolean;
|
|
50
|
-
readonly autosize: import('element-plus').InputAutoSize;
|
|
51
50
|
readonly autocomplete: string;
|
|
51
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
52
52
|
readonly showPassword: boolean;
|
|
53
53
|
readonly showWordLimit: boolean;
|
|
54
54
|
readonly inputStyle: import('vue').StyleValue;
|
|
@@ -59,11 +59,11 @@ export declare const ZhMessageBox: {
|
|
|
59
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
60
|
readonly placeholder?: string | undefined;
|
|
61
61
|
readonly form?: string | undefined;
|
|
62
|
-
readonly resize?: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "horizontal" | "vertical" | "none" | "both", unknown> | undefined;
|
|
63
62
|
readonly maxlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
|
|
64
|
-
readonly minlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
|
|
65
63
|
readonly formatter?: Function | undefined;
|
|
66
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
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
68
|
readonly containerRole?: string | undefined;
|
|
69
69
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
@@ -78,7 +78,7 @@ export declare const ZhMessageBox: {
|
|
|
78
78
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
79
79
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
80
80
|
onClear?: (() => any) | undefined;
|
|
81
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "disabled" | "autofocus" | "modelValue" | "tabindex" | "validateEvent" | "id" | "clearable" | "readonly" | "
|
|
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
82
|
};
|
|
83
83
|
closeOnClickModal: {
|
|
84
84
|
type: import('vue').PropType<boolean>;
|
|
@@ -165,8 +165,8 @@ export declare const ZhMessageBox: {
|
|
|
165
165
|
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
166
166
|
readonly clearable: boolean;
|
|
167
167
|
readonly readonly: boolean;
|
|
168
|
-
readonly autosize: import('element-plus').InputAutoSize;
|
|
169
168
|
readonly autocomplete: string;
|
|
169
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
170
170
|
readonly showPassword: boolean;
|
|
171
171
|
readonly showWordLimit: boolean;
|
|
172
172
|
readonly inputStyle: import('vue').StyleValue;
|
|
@@ -177,11 +177,11 @@ export declare const ZhMessageBox: {
|
|
|
177
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
178
|
readonly placeholder?: string | undefined;
|
|
179
179
|
readonly form?: string | undefined;
|
|
180
|
-
readonly resize?: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "horizontal" | "vertical" | "none" | "both", unknown> | undefined;
|
|
181
180
|
readonly maxlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
|
|
182
|
-
readonly minlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
|
|
183
181
|
readonly formatter?: Function | undefined;
|
|
184
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
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
186
|
readonly containerRole?: string | undefined;
|
|
187
187
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
@@ -196,7 +196,7 @@ export declare const ZhMessageBox: {
|
|
|
196
196
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
197
197
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
198
198
|
onClear?: (() => any) | undefined;
|
|
199
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "disabled" | "autofocus" | "modelValue" | "tabindex" | "validateEvent" | "id" | "clearable" | "readonly" | "
|
|
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
200
|
};
|
|
201
201
|
closeOnClickModal: {
|
|
202
202
|
type: import('vue').PropType<boolean>;
|
|
@@ -277,8 +277,8 @@ export declare const ZhMessageBox: {
|
|
|
277
277
|
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
278
278
|
readonly clearable: boolean;
|
|
279
279
|
readonly readonly: boolean;
|
|
280
|
-
readonly autosize: import('element-plus').InputAutoSize;
|
|
281
280
|
readonly autocomplete: string;
|
|
281
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
282
282
|
readonly showPassword: boolean;
|
|
283
283
|
readonly showWordLimit: boolean;
|
|
284
284
|
readonly inputStyle: import('vue').StyleValue;
|
|
@@ -289,11 +289,11 @@ export declare const ZhMessageBox: {
|
|
|
289
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
290
|
readonly placeholder?: string | undefined;
|
|
291
291
|
readonly form?: string | undefined;
|
|
292
|
-
readonly resize?: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "horizontal" | "vertical" | "none" | "both", unknown> | undefined;
|
|
293
292
|
readonly maxlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
|
|
294
|
-
readonly minlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
|
|
295
293
|
readonly formatter?: Function | undefined;
|
|
296
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
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
298
|
readonly containerRole?: string | undefined;
|
|
299
299
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
@@ -308,7 +308,7 @@ export declare const ZhMessageBox: {
|
|
|
308
308
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
309
309
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
310
310
|
onClear?: (() => any) | undefined;
|
|
311
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "disabled" | "autofocus" | "modelValue" | "tabindex" | "validateEvent" | "id" | "clearable" | "readonly" | "
|
|
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
312
|
};
|
|
313
313
|
closeOnClickModal: {
|
|
314
314
|
type: import('vue').PropType<boolean>;
|