@xiaohaih/json-form-vant 0.0.1
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/CHANGELOG.md +9 -0
- package/README.md +807 -0
- package/TODO.md +36 -0
- package/components/area/index.ts +6 -0
- package/components/area/index.vue +120 -0
- package/components/area/types.ts +84 -0
- package/components/cascader/index.ts +6 -0
- package/components/cascader/index.vue +146 -0
- package/components/cascader/types.ts +75 -0
- package/components/checkbox/index.ts +6 -0
- package/components/checkbox/index.vue +59 -0
- package/components/checkbox/types.ts +54 -0
- package/components/checkbox-group/index.ts +6 -0
- package/components/checkbox-group/index.vue +67 -0
- package/components/checkbox-group/types.ts +63 -0
- package/components/component-definition/components.ts +29 -0
- package/components/component-definition/definition.ts +25 -0
- package/components/component-definition/index.ts +4 -0
- package/components/custom-render/index.ts +6 -0
- package/components/custom-render/index.vue +66 -0
- package/components/custom-render/types.ts +43 -0
- package/components/date-picker/index.ts +6 -0
- package/components/date-picker/index.vue +130 -0
- package/components/date-picker/types.ts +91 -0
- package/components/date-time-picker-group/index.ts +6 -0
- package/components/date-time-picker-group/index.vue +158 -0
- package/components/date-time-picker-group/types.ts +115 -0
- package/components/datetime-picker/index.ts +6 -0
- package/components/datetime-picker/index.vue +128 -0
- package/components/datetime-picker/types.ts +78 -0
- package/components/dynamic-group/index.ts +10 -0
- package/components/dynamic-group/index.vue +140 -0
- package/components/dynamic-group/types.ts +68 -0
- package/components/group/assist.ts +99 -0
- package/components/group/index.ts +7 -0
- package/components/group/index.vue +117 -0
- package/components/group/types.ts +57 -0
- package/components/group/virtual-group.vue +38 -0
- package/components/index.ts +10 -0
- package/components/input/index.ts +6 -0
- package/components/input/index.vue +83 -0
- package/components/input/types.ts +43 -0
- package/components/input-slot/index.ts +6 -0
- package/components/input-slot/index.vue +148 -0
- package/components/input-slot/types.ts +34 -0
- package/components/number-keyboard/index.ts +6 -0
- package/components/number-keyboard/index.vue +81 -0
- package/components/number-keyboard/types.ts +57 -0
- package/components/password-input/index.ts +6 -0
- package/components/password-input/index.vue +103 -0
- package/components/password-input/types.ts +64 -0
- package/components/picker/index.ts +6 -0
- package/components/picker/index.vue +136 -0
- package/components/picker/types.ts +94 -0
- package/components/radio/index.ts +6 -0
- package/components/radio/index.vue +68 -0
- package/components/radio/types.ts +58 -0
- package/components/radio-group/index.ts +6 -0
- package/components/radio-group/index.vue +74 -0
- package/components/radio-group/types.ts +65 -0
- package/components/rate/index.ts +6 -0
- package/components/rate/index.vue +63 -0
- package/components/rate/types.ts +47 -0
- package/components/share.ts +78 -0
- package/components/signature/index.ts +6 -0
- package/components/signature/index.vue +65 -0
- package/components/signature/instance.vue +161 -0
- package/components/signature/types.ts +79 -0
- package/components/slider/index.ts +6 -0
- package/components/slider/index.vue +63 -0
- package/components/slider/types.ts +53 -0
- package/components/stepper/index.ts +6 -0
- package/components/stepper/index.vue +62 -0
- package/components/stepper/types.ts +47 -0
- package/components/switch/index.ts +6 -0
- package/components/switch/index.vue +61 -0
- package/components/switch/types.ts +51 -0
- package/components/time-picker/index.ts +6 -0
- package/components/time-picker/index.vue +130 -0
- package/components/time-picker/types.ts +91 -0
- package/components/tree-select/index.ts +6 -0
- package/components/tree-select/index.vue +160 -0
- package/components/tree-select/types.ts +77 -0
- package/components/upload/index.ts +6 -0
- package/components/upload/index.vue +109 -0
- package/components/upload/types.ts +85 -0
- package/components/use.ts +45 -0
- package/components/utils.ts +52 -0
- package/components/wrapper/index.ts +6 -0
- package/components/wrapper/index.vue +117 -0
- package/components/wrapper/types.ts +94 -0
- package/dist/components/area/index.d.ts +5 -0
- package/dist/components/area/index.vue.d.ts +1843 -0
- package/dist/components/area/types.d.ts +1434 -0
- package/dist/components/cascader/index.d.ts +5 -0
- package/dist/components/cascader/index.vue.d.ts +2467 -0
- package/dist/components/cascader/types.d.ts +1419 -0
- package/dist/components/checkbox/index.d.ts +5 -0
- package/dist/components/checkbox/index.vue.d.ts +1550 -0
- package/dist/components/checkbox/types.d.ts +1313 -0
- package/dist/components/checkbox-group/index.d.ts +5 -0
- package/dist/components/checkbox-group/index.vue.d.ts +1643 -0
- package/dist/components/checkbox-group/types.d.ts +1372 -0
- package/dist/components/component-definition/components.d.ts +30 -0
- package/dist/components/component-definition/index.d.ts +4 -0
- package/dist/components/custom-render/index.d.ts +5 -0
- package/dist/components/custom-render/index.vue.d.ts +1473 -0
- package/dist/components/custom-render/types.d.ts +1175 -0
- package/dist/components/date-picker/index.d.ts +5 -0
- package/dist/components/date-picker/index.vue.d.ts +1888 -0
- package/dist/components/date-picker/types.d.ts +1458 -0
- package/dist/components/date-time-picker-group/index.d.ts +5 -0
- package/dist/components/date-time-picker-group/index.vue.d.ts +2181 -0
- package/dist/components/date-time-picker-group/types.d.ts +1549 -0
- package/dist/components/dynamic-group/index.d.ts +5 -0
- package/dist/components/dynamic-group/index.vue.d.ts +457 -0
- package/dist/components/dynamic-group/types.d.ts +403 -0
- package/dist/components/group/assist.d.ts +58 -0
- package/dist/components/group/index.d.ts +6 -0
- package/dist/components/group/index.vue.d.ts +139 -0
- package/dist/components/group/types.d.ts +189 -0
- package/dist/components/group/virtual-group.vue.d.ts +42 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/components/input/index.d.ts +5 -0
- package/dist/components/input/index.vue.d.ts +2229 -0
- package/dist/components/input/types.d.ts +1258 -0
- package/dist/components/input-slot/index.d.ts +5 -0
- package/dist/components/input-slot/index.vue.d.ts +626 -0
- package/dist/components/input-slot/types.d.ts +311 -0
- package/dist/components/number-keyboard/index.d.ts +5 -0
- package/dist/components/number-keyboard/index.vue.d.ts +1643 -0
- package/dist/components/number-keyboard/types.d.ts +1324 -0
- package/dist/components/password-input/index.d.ts +5 -0
- package/dist/components/password-input/index.vue.d.ts +1715 -0
- package/dist/components/password-input/types.d.ts +1357 -0
- package/dist/components/picker/index.d.ts +5 -0
- package/dist/components/picker/index.vue.d.ts +1868 -0
- package/dist/components/picker/types.d.ts +1466 -0
- package/dist/components/radio/index.d.ts +5 -0
- package/dist/components/radio/index.vue.d.ts +1563 -0
- package/dist/components/radio/types.d.ts +1327 -0
- package/dist/components/radio-group/index.d.ts +5 -0
- package/dist/components/radio-group/index.vue.d.ts +1617 -0
- package/dist/components/radio-group/types.d.ts +1383 -0
- package/dist/components/rate/index.d.ts +5 -0
- package/dist/components/rate/index.vue.d.ts +1557 -0
- package/dist/components/rate/types.d.ts +1281 -0
- package/dist/components/share.d.ts +679 -0
- package/dist/components/signature/index.d.ts +5 -0
- package/dist/components/signature/index.vue.d.ts +3017 -0
- package/dist/components/signature/instance.vue.d.ts +1614 -0
- package/dist/components/signature/types.d.ts +1369 -0
- package/dist/components/slider/index.d.ts +5 -0
- package/dist/components/slider/index.vue.d.ts +1563 -0
- package/dist/components/slider/types.d.ts +1302 -0
- package/dist/components/stepper/index.d.ts +5 -0
- package/dist/components/stepper/index.vue.d.ts +1620 -0
- package/dist/components/stepper/types.d.ts +1281 -0
- package/dist/components/switch/index.d.ts +5 -0
- package/dist/components/switch/index.vue.d.ts +1529 -0
- package/dist/components/switch/types.d.ts +1296 -0
- package/dist/components/time-picker/index.d.ts +5 -0
- package/dist/components/time-picker/index.vue.d.ts +1936 -0
- package/dist/components/time-picker/types.d.ts +1458 -0
- package/dist/components/tree-select/index.d.ts +5 -0
- package/dist/components/tree-select/index.vue.d.ts +1802 -0
- package/dist/components/tree-select/types.d.ts +1411 -0
- package/dist/components/upload/index.d.ts +5 -0
- package/dist/components/upload/index.vue.d.ts +1697 -0
- package/dist/components/upload/types.d.ts +1376 -0
- package/dist/components/use.d.ts +53 -0
- package/dist/components/utils.d.ts +15 -0
- package/dist/components/wrapper/index.d.ts +5 -0
- package/dist/components/wrapper/index.vue.d.ts +1085 -0
- package/dist/components/wrapper/types.d.ts +541 -0
- package/dist/docs/.vitepress/config.d.ts +3 -0
- package/dist/docs/.vitepress/theme/index.d.ts +2 -0
- package/dist/index.cjs.js +5459 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.cjs.min.js +3568 -0
- package/dist/index.cjs.min.js.map +1 -0
- package/dist/index.esm.js +5264 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.esm.min.js +3559 -0
- package/dist/index.esm.min.js.map +1 -0
- package/dist/index.umd.js +5465 -0
- package/dist/index.umd.js.map +1 -0
- package/dist/index.umd.min.js +3573 -0
- package/dist/index.umd.min.js.map +1 -0
- package/dist/src/assist.d.ts +32 -0
- package/dist/src/index.d.ts +5 -0
- package/dist/src/interface.d.ts +129 -0
- package/dist/src/utils.d.ts +9 -0
- package/dist/src/version.d.ts +2 -0
- package/docs/.vitepress/config.ts +99 -0
- package/docs/.vitepress/theme/index.ts +5 -0
- package/docs/README.md +20 -0
- package/docs/index.md +25 -0
- package/env.d.ts +8 -0
- package/package.json +71 -0
- package/scripts/generate-version.mjs +26 -0
- package/scripts/postinstall.cjs +13 -0
- package/scripts/utils.cjs +67 -0
- package/src/assist.ts +40 -0
- package/src/index.ts +5 -0
- package/src/interface.ts +293 -0
- package/src/utils.ts +22 -0
- package/src/version.ts +2 -0
- package/tsconfig.app.json +41 -0
- package/tsconfig.json +7 -0
- package/tsconfig.node.json +24 -0
- package/tsdown.config.ts +12 -0
- package/vite.config.ts +93 -0
|
@@ -0,0 +1,1936 @@
|
|
|
1
|
+
import { getNode } from '@xiaohaih/json-form-core';
|
|
2
|
+
import { Popup as VanPopup, TimePicker as VanTimePicker } from 'vant';
|
|
3
|
+
import { SlotsType } from 'vue';
|
|
4
|
+
import { PickerOption } from '../picker/types';
|
|
5
|
+
import { TimePickerSlots } from './types';
|
|
6
|
+
/**
|
|
7
|
+
* @file 时间选择框
|
|
8
|
+
*/
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
10
|
+
export default _default;
|
|
11
|
+
declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
12
|
+
readonly timePickerProps: {
|
|
13
|
+
readonly type: import('vue').PropType<Partial<import('vue-component-type-helpers').ComponentProps<typeof VanTimePicker>>>;
|
|
14
|
+
};
|
|
15
|
+
readonly timePickerOn: {
|
|
16
|
+
readonly type: import('vue').PropType<Partial<ReturnType<typeof import('@xiaohaih/json-form-core').emits2obj>>>;
|
|
17
|
+
readonly default: () => {};
|
|
18
|
+
};
|
|
19
|
+
readonly timePickerSlots: {
|
|
20
|
+
readonly type: import('vue').PropType<{
|
|
21
|
+
toolbar?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
22
|
+
title?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
23
|
+
confirm?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
24
|
+
cancel?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
25
|
+
option?: import('..').ComponentType<{
|
|
26
|
+
option: PickerOption;
|
|
27
|
+
index: number;
|
|
28
|
+
} & import('..').CommonSlotsProps<any, any>> | undefined;
|
|
29
|
+
columnsTop?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
30
|
+
columnsBottom?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
31
|
+
}>;
|
|
32
|
+
};
|
|
33
|
+
readonly isLink: {
|
|
34
|
+
readonly type: BooleanConstructor;
|
|
35
|
+
readonly default: true;
|
|
36
|
+
};
|
|
37
|
+
readonly onRowClick: {
|
|
38
|
+
readonly type: import('vue').PropType<(option: {
|
|
39
|
+
open: () => void;
|
|
40
|
+
close: () => void;
|
|
41
|
+
}, ev: MouseEvent) => void>;
|
|
42
|
+
};
|
|
43
|
+
readonly separator: {
|
|
44
|
+
readonly type: StringConstructor;
|
|
45
|
+
readonly default: ":";
|
|
46
|
+
};
|
|
47
|
+
readonly format: {
|
|
48
|
+
readonly type: import('vue').PropType<(option: string[], separator: string) => any>;
|
|
49
|
+
readonly default: (option: string[], separator: string) => string;
|
|
50
|
+
};
|
|
51
|
+
readonly valueFormat: {
|
|
52
|
+
readonly type: import('vue').PropType<(option: string[], separator: string) => any>;
|
|
53
|
+
readonly default: (option: string[], separator: string) => string;
|
|
54
|
+
};
|
|
55
|
+
readonly valueUnformat: {
|
|
56
|
+
readonly type: import('vue').PropType<(option: any, separator: string) => string[]>;
|
|
57
|
+
readonly default: (val: string, separator: string) => string[] | (string & any[]);
|
|
58
|
+
};
|
|
59
|
+
readonly valueTrigger: {
|
|
60
|
+
readonly type: import('vue').PropType<"change" | "confirm" | "cancel">;
|
|
61
|
+
readonly default: "confirm";
|
|
62
|
+
};
|
|
63
|
+
readonly popupProps: {
|
|
64
|
+
readonly type: import('vue').PropType<Partial<import('vue-component-type-helpers').ComponentExposed<typeof VanPopup>>>;
|
|
65
|
+
};
|
|
66
|
+
readonly popupOn: {
|
|
67
|
+
readonly type: import('vue').PropType<Partial<ReturnType<typeof import('@xiaohaih/json-form-core').emits2obj>>>;
|
|
68
|
+
readonly default: () => {};
|
|
69
|
+
};
|
|
70
|
+
readonly field: Omit<{
|
|
71
|
+
readonly type: import('vue').PropType<string>;
|
|
72
|
+
readonly required: true;
|
|
73
|
+
}, "required">;
|
|
74
|
+
readonly fields: {
|
|
75
|
+
readonly type: import('vue').PropType<string[]>;
|
|
76
|
+
};
|
|
77
|
+
readonly query: {
|
|
78
|
+
readonly type: import('vue').PropType<Record<string, any>>;
|
|
79
|
+
readonly required: true;
|
|
80
|
+
};
|
|
81
|
+
readonly parentQuery: {
|
|
82
|
+
readonly type: import('vue').PropType<Record<string, any>>;
|
|
83
|
+
};
|
|
84
|
+
readonly depend: {
|
|
85
|
+
readonly type: import('vue').PropType<boolean>;
|
|
86
|
+
readonly default: undefined;
|
|
87
|
+
};
|
|
88
|
+
readonly resetByDependValueChange: {
|
|
89
|
+
readonly type: import('vue').PropType<boolean | ((query: Record<string, any>) => boolean)>;
|
|
90
|
+
readonly default: true;
|
|
91
|
+
};
|
|
92
|
+
readonly dependFields: {
|
|
93
|
+
readonly type: import('vue').PropType<string | string[]>;
|
|
94
|
+
};
|
|
95
|
+
readonly dependWatchOption: {
|
|
96
|
+
readonly type: import('vue').PropType<import('vue').WatchOptions>;
|
|
97
|
+
};
|
|
98
|
+
readonly optionsDepend: {
|
|
99
|
+
readonly type: import('vue').PropType<boolean>;
|
|
100
|
+
};
|
|
101
|
+
readonly optionsDependFields: {
|
|
102
|
+
readonly type: import('vue').PropType<string | string[]>;
|
|
103
|
+
};
|
|
104
|
+
readonly validator: {
|
|
105
|
+
readonly type: import('vue').PropType<(query: Record<string, any>) => any | Promise<any>>;
|
|
106
|
+
};
|
|
107
|
+
readonly initialValue: {
|
|
108
|
+
readonly type: import('vue').PropType<((option: {
|
|
109
|
+
query: Query;
|
|
110
|
+
}) => any) | any>;
|
|
111
|
+
readonly default: undefined;
|
|
112
|
+
};
|
|
113
|
+
readonly defaultValue: {
|
|
114
|
+
readonly type: import('vue').PropType<((option: {
|
|
115
|
+
query: Query;
|
|
116
|
+
}) => any) | any>;
|
|
117
|
+
readonly default: undefined;
|
|
118
|
+
};
|
|
119
|
+
readonly defaultValueConflictCallback: {
|
|
120
|
+
readonly type: import('vue').PropType<(value: any, checked: import('vue').Ref<any>) => void>;
|
|
121
|
+
readonly default: typeof import('@xiaohaih/json-form-core').noop;
|
|
122
|
+
};
|
|
123
|
+
readonly options: {
|
|
124
|
+
readonly type: import('vue').PropType<any>;
|
|
125
|
+
readonly default: () => never[];
|
|
126
|
+
};
|
|
127
|
+
readonly getOptions: {
|
|
128
|
+
readonly type: import('vue').PropType<import('@xiaohaih/json-form-core').GetOptions<Record<string, any>, Record<string, any>>>;
|
|
129
|
+
};
|
|
130
|
+
readonly uniqueValue: {
|
|
131
|
+
readonly type: import('vue').PropType<string | number>;
|
|
132
|
+
};
|
|
133
|
+
readonly hooks: {
|
|
134
|
+
readonly type: import('vue').PropType<import('@xiaohaih/json-form-core').HookOption<Record<string, any>, Record<string, any>>>;
|
|
135
|
+
readonly default: undefined;
|
|
136
|
+
};
|
|
137
|
+
readonly disabled: {
|
|
138
|
+
readonly type: import('vue').PropType<boolean>;
|
|
139
|
+
readonly default: undefined;
|
|
140
|
+
};
|
|
141
|
+
readonly readonly: {
|
|
142
|
+
readonly type: import('vue').PropType<boolean>;
|
|
143
|
+
readonly default: undefined;
|
|
144
|
+
};
|
|
145
|
+
readonly hide: {
|
|
146
|
+
readonly type: import('vue').PropType<boolean>;
|
|
147
|
+
readonly default: undefined;
|
|
148
|
+
};
|
|
149
|
+
readonly slots: {
|
|
150
|
+
readonly type: import('vue').PropType<import('..').CommonSlots>;
|
|
151
|
+
};
|
|
152
|
+
readonly type: {
|
|
153
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldType | undefined>>;
|
|
154
|
+
validator: undefined;
|
|
155
|
+
};
|
|
156
|
+
readonly tag: {
|
|
157
|
+
type: import('vue').PropType<NonNullable<keyof HTMLElementTagNameMap | undefined>>;
|
|
158
|
+
validator: undefined;
|
|
159
|
+
};
|
|
160
|
+
readonly center: {
|
|
161
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
162
|
+
validator: undefined;
|
|
163
|
+
};
|
|
164
|
+
readonly autofocus: {
|
|
165
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
166
|
+
validator: undefined;
|
|
167
|
+
};
|
|
168
|
+
readonly border: {
|
|
169
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
170
|
+
validator: undefined;
|
|
171
|
+
};
|
|
172
|
+
readonly required: {
|
|
173
|
+
type: import('vue').PropType<NonNullable<boolean | "auto" | undefined>>;
|
|
174
|
+
validator: undefined;
|
|
175
|
+
};
|
|
176
|
+
readonly clickable: {
|
|
177
|
+
type: import('vue').PropType<NonNullable<boolean | null | undefined>>;
|
|
178
|
+
validator: undefined;
|
|
179
|
+
};
|
|
180
|
+
readonly clearable: {
|
|
181
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
182
|
+
validator: undefined;
|
|
183
|
+
};
|
|
184
|
+
readonly clearIcon: {
|
|
185
|
+
type: import('vue').PropType<string>;
|
|
186
|
+
validator: undefined;
|
|
187
|
+
};
|
|
188
|
+
readonly modelValue: {
|
|
189
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
190
|
+
validator: undefined;
|
|
191
|
+
};
|
|
192
|
+
readonly clearTrigger: {
|
|
193
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldClearTrigger | undefined>>;
|
|
194
|
+
validator: undefined;
|
|
195
|
+
};
|
|
196
|
+
readonly formatTrigger: {
|
|
197
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldFormatTrigger | undefined>>;
|
|
198
|
+
validator: undefined;
|
|
199
|
+
};
|
|
200
|
+
readonly spellcheck: {
|
|
201
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
202
|
+
validator: undefined;
|
|
203
|
+
};
|
|
204
|
+
readonly error: {
|
|
205
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
206
|
+
validator: undefined;
|
|
207
|
+
};
|
|
208
|
+
readonly showWordLimit: {
|
|
209
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
210
|
+
validator: undefined;
|
|
211
|
+
};
|
|
212
|
+
readonly colon: {
|
|
213
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
214
|
+
validator: undefined;
|
|
215
|
+
};
|
|
216
|
+
readonly size: {
|
|
217
|
+
type: import('vue').PropType<NonNullable<import('vant').CellSize | undefined>>;
|
|
218
|
+
validator: undefined;
|
|
219
|
+
};
|
|
220
|
+
readonly value: {
|
|
221
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
222
|
+
validator: undefined;
|
|
223
|
+
};
|
|
224
|
+
readonly name: {
|
|
225
|
+
type: import('vue').PropType<string>;
|
|
226
|
+
validator: undefined;
|
|
227
|
+
};
|
|
228
|
+
readonly class: {
|
|
229
|
+
type: import('vue').PropType<{}>;
|
|
230
|
+
validator: undefined;
|
|
231
|
+
};
|
|
232
|
+
readonly icon: {
|
|
233
|
+
type: import('vue').PropType<string>;
|
|
234
|
+
validator: undefined;
|
|
235
|
+
};
|
|
236
|
+
readonly title: {
|
|
237
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
238
|
+
validator: undefined;
|
|
239
|
+
};
|
|
240
|
+
readonly label: {
|
|
241
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
242
|
+
validator: undefined;
|
|
243
|
+
};
|
|
244
|
+
readonly iconPrefix: {
|
|
245
|
+
type: import('vue').PropType<string>;
|
|
246
|
+
validator: undefined;
|
|
247
|
+
};
|
|
248
|
+
readonly valueClass: {
|
|
249
|
+
type: import('vue').PropType<{}>;
|
|
250
|
+
validator: undefined;
|
|
251
|
+
};
|
|
252
|
+
readonly labelClass: {
|
|
253
|
+
type: import('vue').PropType<{}>;
|
|
254
|
+
validator: undefined;
|
|
255
|
+
};
|
|
256
|
+
readonly titleClass: {
|
|
257
|
+
type: import('vue').PropType<{}>;
|
|
258
|
+
validator: undefined;
|
|
259
|
+
};
|
|
260
|
+
readonly titleStyle: {
|
|
261
|
+
type: import('vue').PropType<NonNullable<string | import('vue').CSSProperties | undefined>>;
|
|
262
|
+
validator: undefined;
|
|
263
|
+
};
|
|
264
|
+
readonly arrowDirection: {
|
|
265
|
+
type: import('vue').PropType<NonNullable<import('vant').CellArrowDirection | undefined>>;
|
|
266
|
+
validator: undefined;
|
|
267
|
+
};
|
|
268
|
+
readonly id: {
|
|
269
|
+
type: import('vue').PropType<string>;
|
|
270
|
+
validator: undefined;
|
|
271
|
+
};
|
|
272
|
+
readonly leftIcon: {
|
|
273
|
+
type: import('vue').PropType<string>;
|
|
274
|
+
validator: undefined;
|
|
275
|
+
};
|
|
276
|
+
readonly rightIcon: {
|
|
277
|
+
type: import('vue').PropType<string>;
|
|
278
|
+
validator: undefined;
|
|
279
|
+
};
|
|
280
|
+
readonly maxlength: {
|
|
281
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
282
|
+
validator: undefined;
|
|
283
|
+
};
|
|
284
|
+
readonly max: {
|
|
285
|
+
type: import('vue').PropType<number>;
|
|
286
|
+
validator: undefined;
|
|
287
|
+
};
|
|
288
|
+
readonly min: {
|
|
289
|
+
type: import('vue').PropType<number>;
|
|
290
|
+
validator: undefined;
|
|
291
|
+
};
|
|
292
|
+
readonly formatter: {
|
|
293
|
+
type: import('vue').PropType<(value: string) => string>;
|
|
294
|
+
validator: undefined;
|
|
295
|
+
};
|
|
296
|
+
readonly inputAlign: {
|
|
297
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
298
|
+
validator: undefined;
|
|
299
|
+
};
|
|
300
|
+
readonly placeholder: {
|
|
301
|
+
type: import('vue').PropType<string>;
|
|
302
|
+
validator: undefined;
|
|
303
|
+
};
|
|
304
|
+
readonly autocomplete: {
|
|
305
|
+
type: import('vue').PropType<string>;
|
|
306
|
+
validator: undefined;
|
|
307
|
+
};
|
|
308
|
+
readonly autocapitalize: {
|
|
309
|
+
type: import('vue').PropType<string>;
|
|
310
|
+
validator: undefined;
|
|
311
|
+
};
|
|
312
|
+
readonly autocorrect: {
|
|
313
|
+
type: import('vue').PropType<string>;
|
|
314
|
+
validator: undefined;
|
|
315
|
+
};
|
|
316
|
+
readonly errorMessage: {
|
|
317
|
+
type: import('vue').PropType<string>;
|
|
318
|
+
validator: undefined;
|
|
319
|
+
};
|
|
320
|
+
readonly enterkeyhint: {
|
|
321
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldEnterKeyHint | undefined>>;
|
|
322
|
+
validator: undefined;
|
|
323
|
+
};
|
|
324
|
+
readonly inputmode: {
|
|
325
|
+
type: import('vue').PropType<NonNullable<"search" | "tel" | "url" | "text" | "email" | "none" | "numeric" | "decimal" | undefined>>;
|
|
326
|
+
validator: undefined;
|
|
327
|
+
};
|
|
328
|
+
readonly rows: {
|
|
329
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
330
|
+
validator: undefined;
|
|
331
|
+
};
|
|
332
|
+
readonly rules: {
|
|
333
|
+
type: import('vue').PropType<import('vant').FieldRule[]>;
|
|
334
|
+
validator: undefined;
|
|
335
|
+
};
|
|
336
|
+
readonly autosize: {
|
|
337
|
+
type: import('vue').PropType<NonNullable<boolean | import('vant').FieldAutosizeConfig | undefined>>;
|
|
338
|
+
validator: undefined;
|
|
339
|
+
};
|
|
340
|
+
readonly labelWidth: {
|
|
341
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
342
|
+
validator: undefined;
|
|
343
|
+
};
|
|
344
|
+
readonly labelAlign: {
|
|
345
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
346
|
+
validator: undefined;
|
|
347
|
+
};
|
|
348
|
+
readonly errorMessageAlign: {
|
|
349
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
350
|
+
validator: undefined;
|
|
351
|
+
};
|
|
352
|
+
readonly style: {
|
|
353
|
+
type: import('vue').PropType<{}>;
|
|
354
|
+
validator: undefined;
|
|
355
|
+
};
|
|
356
|
+
readonly onBlur: {
|
|
357
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
358
|
+
validator: undefined;
|
|
359
|
+
};
|
|
360
|
+
readonly onFocus: {
|
|
361
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
362
|
+
validator: undefined;
|
|
363
|
+
};
|
|
364
|
+
readonly onKeypress: {
|
|
365
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
366
|
+
validator: undefined;
|
|
367
|
+
};
|
|
368
|
+
readonly onClear: {
|
|
369
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
370
|
+
validator: undefined;
|
|
371
|
+
};
|
|
372
|
+
readonly onClickInput: {
|
|
373
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
374
|
+
validator: undefined;
|
|
375
|
+
};
|
|
376
|
+
readonly onEndValidate: {
|
|
377
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
378
|
+
validator: undefined;
|
|
379
|
+
};
|
|
380
|
+
readonly onStartValidate: {
|
|
381
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
382
|
+
validator: undefined;
|
|
383
|
+
};
|
|
384
|
+
readonly onClickLeftIcon: {
|
|
385
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
386
|
+
validator: undefined;
|
|
387
|
+
};
|
|
388
|
+
readonly onClickRightIcon: {
|
|
389
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
390
|
+
validator: undefined;
|
|
391
|
+
};
|
|
392
|
+
readonly "onUpdate:modelValue": {
|
|
393
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
394
|
+
validator: undefined;
|
|
395
|
+
};
|
|
396
|
+
readonly key: {
|
|
397
|
+
type: import('vue').PropType<NonNullable<PropertyKey | undefined>>;
|
|
398
|
+
validator: undefined;
|
|
399
|
+
};
|
|
400
|
+
readonly ref: {
|
|
401
|
+
type: import('vue').PropType<NonNullable<import('vue').VNodeRef | undefined>>;
|
|
402
|
+
validator: undefined;
|
|
403
|
+
};
|
|
404
|
+
readonly ref_for: {
|
|
405
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
406
|
+
validator: undefined;
|
|
407
|
+
};
|
|
408
|
+
readonly ref_key: {
|
|
409
|
+
type: import('vue').PropType<string>;
|
|
410
|
+
validator: undefined;
|
|
411
|
+
};
|
|
412
|
+
readonly onVnodeBeforeMount: {
|
|
413
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
414
|
+
validator: undefined;
|
|
415
|
+
};
|
|
416
|
+
readonly onVnodeMounted: {
|
|
417
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
418
|
+
validator: undefined;
|
|
419
|
+
};
|
|
420
|
+
readonly onVnodeBeforeUpdate: {
|
|
421
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
|
|
422
|
+
validator: undefined;
|
|
423
|
+
};
|
|
424
|
+
readonly onVnodeUpdated: {
|
|
425
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
|
|
426
|
+
validator: undefined;
|
|
427
|
+
};
|
|
428
|
+
readonly onVnodeBeforeUnmount: {
|
|
429
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
430
|
+
validator: undefined;
|
|
431
|
+
};
|
|
432
|
+
readonly onVnodeUnmounted: {
|
|
433
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
434
|
+
validator: undefined;
|
|
435
|
+
};
|
|
436
|
+
readonly onClick: {
|
|
437
|
+
type: import('vue').PropType<(...args: any[]) => void>;
|
|
438
|
+
validator: undefined;
|
|
439
|
+
};
|
|
440
|
+
}>, {
|
|
441
|
+
slotProps: import('vue').ComputedRef<{
|
|
442
|
+
props: import('@vue/shared').LooseRequired<Readonly<import('vue').ExtractPropTypes<{
|
|
443
|
+
readonly timePickerProps: {
|
|
444
|
+
readonly type: import('vue').PropType<Partial<import('vue-component-type-helpers').ComponentProps<typeof VanTimePicker>>>;
|
|
445
|
+
};
|
|
446
|
+
readonly timePickerOn: {
|
|
447
|
+
readonly type: import('vue').PropType<Partial<ReturnType<typeof import('@xiaohaih/json-form-core').emits2obj>>>;
|
|
448
|
+
readonly default: () => {};
|
|
449
|
+
};
|
|
450
|
+
readonly timePickerSlots: {
|
|
451
|
+
readonly type: import('vue').PropType<{
|
|
452
|
+
toolbar?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
453
|
+
title?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
454
|
+
confirm?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
455
|
+
cancel?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
456
|
+
option?: import('..').ComponentType<{
|
|
457
|
+
option: PickerOption;
|
|
458
|
+
index: number;
|
|
459
|
+
} & import('..').CommonSlotsProps<any, any>> | undefined;
|
|
460
|
+
columnsTop?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
461
|
+
columnsBottom?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
462
|
+
}>;
|
|
463
|
+
};
|
|
464
|
+
readonly isLink: {
|
|
465
|
+
readonly type: BooleanConstructor;
|
|
466
|
+
readonly default: true;
|
|
467
|
+
};
|
|
468
|
+
readonly onRowClick: {
|
|
469
|
+
readonly type: import('vue').PropType<(option: {
|
|
470
|
+
open: () => void;
|
|
471
|
+
close: () => void;
|
|
472
|
+
}, ev: MouseEvent) => void>;
|
|
473
|
+
};
|
|
474
|
+
readonly separator: {
|
|
475
|
+
readonly type: StringConstructor;
|
|
476
|
+
readonly default: ":";
|
|
477
|
+
};
|
|
478
|
+
readonly format: {
|
|
479
|
+
readonly type: import('vue').PropType<(option: string[], separator: string) => any>;
|
|
480
|
+
readonly default: (option: string[], separator: string) => string;
|
|
481
|
+
};
|
|
482
|
+
readonly valueFormat: {
|
|
483
|
+
readonly type: import('vue').PropType<(option: string[], separator: string) => any>;
|
|
484
|
+
readonly default: (option: string[], separator: string) => string;
|
|
485
|
+
};
|
|
486
|
+
readonly valueUnformat: {
|
|
487
|
+
readonly type: import('vue').PropType<(option: any, separator: string) => string[]>;
|
|
488
|
+
readonly default: (val: string, separator: string) => string[] | (string & any[]);
|
|
489
|
+
};
|
|
490
|
+
readonly valueTrigger: {
|
|
491
|
+
readonly type: import('vue').PropType<"change" | "confirm" | "cancel">;
|
|
492
|
+
readonly default: "confirm";
|
|
493
|
+
};
|
|
494
|
+
readonly popupProps: {
|
|
495
|
+
readonly type: import('vue').PropType<Partial<import('vue-component-type-helpers').ComponentExposed<typeof VanPopup>>>;
|
|
496
|
+
};
|
|
497
|
+
readonly popupOn: {
|
|
498
|
+
readonly type: import('vue').PropType<Partial<ReturnType<typeof import('@xiaohaih/json-form-core').emits2obj>>>;
|
|
499
|
+
readonly default: () => {};
|
|
500
|
+
};
|
|
501
|
+
readonly field: Omit<{
|
|
502
|
+
readonly type: import('vue').PropType<string>;
|
|
503
|
+
readonly required: true;
|
|
504
|
+
}, "required">;
|
|
505
|
+
readonly fields: {
|
|
506
|
+
readonly type: import('vue').PropType<string[]>;
|
|
507
|
+
};
|
|
508
|
+
readonly query: {
|
|
509
|
+
readonly type: import('vue').PropType<Record<string, any>>;
|
|
510
|
+
readonly required: true;
|
|
511
|
+
};
|
|
512
|
+
readonly parentQuery: {
|
|
513
|
+
readonly type: import('vue').PropType<Record<string, any>>;
|
|
514
|
+
};
|
|
515
|
+
readonly depend: {
|
|
516
|
+
readonly type: import('vue').PropType<boolean>;
|
|
517
|
+
readonly default: undefined;
|
|
518
|
+
};
|
|
519
|
+
readonly resetByDependValueChange: {
|
|
520
|
+
readonly type: import('vue').PropType<boolean | ((query: Record<string, any>) => boolean)>;
|
|
521
|
+
readonly default: true;
|
|
522
|
+
};
|
|
523
|
+
readonly dependFields: {
|
|
524
|
+
readonly type: import('vue').PropType<string | string[]>;
|
|
525
|
+
};
|
|
526
|
+
readonly dependWatchOption: {
|
|
527
|
+
readonly type: import('vue').PropType<import('vue').WatchOptions>;
|
|
528
|
+
};
|
|
529
|
+
readonly optionsDepend: {
|
|
530
|
+
readonly type: import('vue').PropType<boolean>;
|
|
531
|
+
};
|
|
532
|
+
readonly optionsDependFields: {
|
|
533
|
+
readonly type: import('vue').PropType<string | string[]>;
|
|
534
|
+
};
|
|
535
|
+
readonly validator: {
|
|
536
|
+
readonly type: import('vue').PropType<(query: Record<string, any>) => any | Promise<any>>;
|
|
537
|
+
};
|
|
538
|
+
readonly initialValue: {
|
|
539
|
+
readonly type: import('vue').PropType<((option: {
|
|
540
|
+
query: Query;
|
|
541
|
+
}) => any) | any>;
|
|
542
|
+
readonly default: undefined;
|
|
543
|
+
};
|
|
544
|
+
readonly defaultValue: {
|
|
545
|
+
readonly type: import('vue').PropType<((option: {
|
|
546
|
+
query: Query;
|
|
547
|
+
}) => any) | any>;
|
|
548
|
+
readonly default: undefined;
|
|
549
|
+
};
|
|
550
|
+
readonly defaultValueConflictCallback: {
|
|
551
|
+
readonly type: import('vue').PropType<(value: any, checked: import('vue').Ref<any>) => void>;
|
|
552
|
+
readonly default: typeof import('@xiaohaih/json-form-core').noop;
|
|
553
|
+
};
|
|
554
|
+
readonly options: {
|
|
555
|
+
readonly type: import('vue').PropType<any>;
|
|
556
|
+
readonly default: () => never[];
|
|
557
|
+
};
|
|
558
|
+
readonly getOptions: {
|
|
559
|
+
readonly type: import('vue').PropType<import('@xiaohaih/json-form-core').GetOptions<Record<string, any>, Record<string, any>>>;
|
|
560
|
+
};
|
|
561
|
+
readonly uniqueValue: {
|
|
562
|
+
readonly type: import('vue').PropType<string | number>;
|
|
563
|
+
};
|
|
564
|
+
readonly hooks: {
|
|
565
|
+
readonly type: import('vue').PropType<import('@xiaohaih/json-form-core').HookOption<Record<string, any>, Record<string, any>>>;
|
|
566
|
+
readonly default: undefined;
|
|
567
|
+
};
|
|
568
|
+
readonly disabled: {
|
|
569
|
+
readonly type: import('vue').PropType<boolean>;
|
|
570
|
+
readonly default: undefined;
|
|
571
|
+
};
|
|
572
|
+
readonly readonly: {
|
|
573
|
+
readonly type: import('vue').PropType<boolean>;
|
|
574
|
+
readonly default: undefined;
|
|
575
|
+
};
|
|
576
|
+
readonly hide: {
|
|
577
|
+
readonly type: import('vue').PropType<boolean>;
|
|
578
|
+
readonly default: undefined;
|
|
579
|
+
};
|
|
580
|
+
readonly slots: {
|
|
581
|
+
readonly type: import('vue').PropType<import('..').CommonSlots>;
|
|
582
|
+
};
|
|
583
|
+
readonly type: {
|
|
584
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldType | undefined>>;
|
|
585
|
+
validator: undefined;
|
|
586
|
+
};
|
|
587
|
+
readonly tag: {
|
|
588
|
+
type: import('vue').PropType<NonNullable<keyof HTMLElementTagNameMap | undefined>>;
|
|
589
|
+
validator: undefined;
|
|
590
|
+
};
|
|
591
|
+
readonly center: {
|
|
592
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
593
|
+
validator: undefined;
|
|
594
|
+
};
|
|
595
|
+
readonly autofocus: {
|
|
596
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
597
|
+
validator: undefined;
|
|
598
|
+
};
|
|
599
|
+
readonly border: {
|
|
600
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
601
|
+
validator: undefined;
|
|
602
|
+
};
|
|
603
|
+
readonly required: {
|
|
604
|
+
type: import('vue').PropType<NonNullable<boolean | "auto" | undefined>>;
|
|
605
|
+
validator: undefined;
|
|
606
|
+
};
|
|
607
|
+
readonly clickable: {
|
|
608
|
+
type: import('vue').PropType<NonNullable<boolean | null | undefined>>;
|
|
609
|
+
validator: undefined;
|
|
610
|
+
};
|
|
611
|
+
readonly clearable: {
|
|
612
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
613
|
+
validator: undefined;
|
|
614
|
+
};
|
|
615
|
+
readonly clearIcon: {
|
|
616
|
+
type: import('vue').PropType<string>;
|
|
617
|
+
validator: undefined;
|
|
618
|
+
};
|
|
619
|
+
readonly modelValue: {
|
|
620
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
621
|
+
validator: undefined;
|
|
622
|
+
};
|
|
623
|
+
readonly clearTrigger: {
|
|
624
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldClearTrigger | undefined>>;
|
|
625
|
+
validator: undefined;
|
|
626
|
+
};
|
|
627
|
+
readonly formatTrigger: {
|
|
628
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldFormatTrigger | undefined>>;
|
|
629
|
+
validator: undefined;
|
|
630
|
+
};
|
|
631
|
+
readonly spellcheck: {
|
|
632
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
633
|
+
validator: undefined;
|
|
634
|
+
};
|
|
635
|
+
readonly error: {
|
|
636
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
637
|
+
validator: undefined;
|
|
638
|
+
};
|
|
639
|
+
readonly showWordLimit: {
|
|
640
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
641
|
+
validator: undefined;
|
|
642
|
+
};
|
|
643
|
+
readonly colon: {
|
|
644
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
645
|
+
validator: undefined;
|
|
646
|
+
};
|
|
647
|
+
readonly size: {
|
|
648
|
+
type: import('vue').PropType<NonNullable<import('vant').CellSize | undefined>>;
|
|
649
|
+
validator: undefined;
|
|
650
|
+
};
|
|
651
|
+
readonly value: {
|
|
652
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
653
|
+
validator: undefined;
|
|
654
|
+
};
|
|
655
|
+
readonly name: {
|
|
656
|
+
type: import('vue').PropType<string>;
|
|
657
|
+
validator: undefined;
|
|
658
|
+
};
|
|
659
|
+
readonly class: {
|
|
660
|
+
type: import('vue').PropType<{}>;
|
|
661
|
+
validator: undefined;
|
|
662
|
+
};
|
|
663
|
+
readonly icon: {
|
|
664
|
+
type: import('vue').PropType<string>;
|
|
665
|
+
validator: undefined;
|
|
666
|
+
};
|
|
667
|
+
readonly title: {
|
|
668
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
669
|
+
validator: undefined;
|
|
670
|
+
};
|
|
671
|
+
readonly label: {
|
|
672
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
673
|
+
validator: undefined;
|
|
674
|
+
};
|
|
675
|
+
readonly iconPrefix: {
|
|
676
|
+
type: import('vue').PropType<string>;
|
|
677
|
+
validator: undefined;
|
|
678
|
+
};
|
|
679
|
+
readonly valueClass: {
|
|
680
|
+
type: import('vue').PropType<{}>;
|
|
681
|
+
validator: undefined;
|
|
682
|
+
};
|
|
683
|
+
readonly labelClass: {
|
|
684
|
+
type: import('vue').PropType<{}>;
|
|
685
|
+
validator: undefined;
|
|
686
|
+
};
|
|
687
|
+
readonly titleClass: {
|
|
688
|
+
type: import('vue').PropType<{}>;
|
|
689
|
+
validator: undefined;
|
|
690
|
+
};
|
|
691
|
+
readonly titleStyle: {
|
|
692
|
+
type: import('vue').PropType<NonNullable<string | import('vue').CSSProperties | undefined>>;
|
|
693
|
+
validator: undefined;
|
|
694
|
+
};
|
|
695
|
+
readonly arrowDirection: {
|
|
696
|
+
type: import('vue').PropType<NonNullable<import('vant').CellArrowDirection | undefined>>;
|
|
697
|
+
validator: undefined;
|
|
698
|
+
};
|
|
699
|
+
readonly id: {
|
|
700
|
+
type: import('vue').PropType<string>;
|
|
701
|
+
validator: undefined;
|
|
702
|
+
};
|
|
703
|
+
readonly leftIcon: {
|
|
704
|
+
type: import('vue').PropType<string>;
|
|
705
|
+
validator: undefined;
|
|
706
|
+
};
|
|
707
|
+
readonly rightIcon: {
|
|
708
|
+
type: import('vue').PropType<string>;
|
|
709
|
+
validator: undefined;
|
|
710
|
+
};
|
|
711
|
+
readonly maxlength: {
|
|
712
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
713
|
+
validator: undefined;
|
|
714
|
+
};
|
|
715
|
+
readonly max: {
|
|
716
|
+
type: import('vue').PropType<number>;
|
|
717
|
+
validator: undefined;
|
|
718
|
+
};
|
|
719
|
+
readonly min: {
|
|
720
|
+
type: import('vue').PropType<number>;
|
|
721
|
+
validator: undefined;
|
|
722
|
+
};
|
|
723
|
+
readonly formatter: {
|
|
724
|
+
type: import('vue').PropType<(value: string) => string>;
|
|
725
|
+
validator: undefined;
|
|
726
|
+
};
|
|
727
|
+
readonly inputAlign: {
|
|
728
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
729
|
+
validator: undefined;
|
|
730
|
+
};
|
|
731
|
+
readonly placeholder: {
|
|
732
|
+
type: import('vue').PropType<string>;
|
|
733
|
+
validator: undefined;
|
|
734
|
+
};
|
|
735
|
+
readonly autocomplete: {
|
|
736
|
+
type: import('vue').PropType<string>;
|
|
737
|
+
validator: undefined;
|
|
738
|
+
};
|
|
739
|
+
readonly autocapitalize: {
|
|
740
|
+
type: import('vue').PropType<string>;
|
|
741
|
+
validator: undefined;
|
|
742
|
+
};
|
|
743
|
+
readonly autocorrect: {
|
|
744
|
+
type: import('vue').PropType<string>;
|
|
745
|
+
validator: undefined;
|
|
746
|
+
};
|
|
747
|
+
readonly errorMessage: {
|
|
748
|
+
type: import('vue').PropType<string>;
|
|
749
|
+
validator: undefined;
|
|
750
|
+
};
|
|
751
|
+
readonly enterkeyhint: {
|
|
752
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldEnterKeyHint | undefined>>;
|
|
753
|
+
validator: undefined;
|
|
754
|
+
};
|
|
755
|
+
readonly inputmode: {
|
|
756
|
+
type: import('vue').PropType<NonNullable<"search" | "tel" | "url" | "text" | "email" | "none" | "numeric" | "decimal" | undefined>>;
|
|
757
|
+
validator: undefined;
|
|
758
|
+
};
|
|
759
|
+
readonly rows: {
|
|
760
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
761
|
+
validator: undefined;
|
|
762
|
+
};
|
|
763
|
+
readonly rules: {
|
|
764
|
+
type: import('vue').PropType<import('vant').FieldRule[]>;
|
|
765
|
+
validator: undefined;
|
|
766
|
+
};
|
|
767
|
+
readonly autosize: {
|
|
768
|
+
type: import('vue').PropType<NonNullable<boolean | import('vant').FieldAutosizeConfig | undefined>>;
|
|
769
|
+
validator: undefined;
|
|
770
|
+
};
|
|
771
|
+
readonly labelWidth: {
|
|
772
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
773
|
+
validator: undefined;
|
|
774
|
+
};
|
|
775
|
+
readonly labelAlign: {
|
|
776
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
777
|
+
validator: undefined;
|
|
778
|
+
};
|
|
779
|
+
readonly errorMessageAlign: {
|
|
780
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
781
|
+
validator: undefined;
|
|
782
|
+
};
|
|
783
|
+
readonly style: {
|
|
784
|
+
type: import('vue').PropType<{}>;
|
|
785
|
+
validator: undefined;
|
|
786
|
+
};
|
|
787
|
+
readonly onBlur: {
|
|
788
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
789
|
+
validator: undefined;
|
|
790
|
+
};
|
|
791
|
+
readonly onFocus: {
|
|
792
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
793
|
+
validator: undefined;
|
|
794
|
+
};
|
|
795
|
+
readonly onKeypress: {
|
|
796
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
797
|
+
validator: undefined;
|
|
798
|
+
};
|
|
799
|
+
readonly onClear: {
|
|
800
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
801
|
+
validator: undefined;
|
|
802
|
+
};
|
|
803
|
+
readonly onClickInput: {
|
|
804
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
805
|
+
validator: undefined;
|
|
806
|
+
};
|
|
807
|
+
readonly onEndValidate: {
|
|
808
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
809
|
+
validator: undefined;
|
|
810
|
+
};
|
|
811
|
+
readonly onStartValidate: {
|
|
812
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
813
|
+
validator: undefined;
|
|
814
|
+
};
|
|
815
|
+
readonly onClickLeftIcon: {
|
|
816
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
817
|
+
validator: undefined;
|
|
818
|
+
};
|
|
819
|
+
readonly onClickRightIcon: {
|
|
820
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
821
|
+
validator: undefined;
|
|
822
|
+
};
|
|
823
|
+
readonly "onUpdate:modelValue": {
|
|
824
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
825
|
+
validator: undefined;
|
|
826
|
+
};
|
|
827
|
+
readonly key: {
|
|
828
|
+
type: import('vue').PropType<NonNullable<PropertyKey | undefined>>;
|
|
829
|
+
validator: undefined;
|
|
830
|
+
};
|
|
831
|
+
readonly ref: {
|
|
832
|
+
type: import('vue').PropType<NonNullable<import('vue').VNodeRef | undefined>>;
|
|
833
|
+
validator: undefined;
|
|
834
|
+
};
|
|
835
|
+
readonly ref_for: {
|
|
836
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
837
|
+
validator: undefined;
|
|
838
|
+
};
|
|
839
|
+
readonly ref_key: {
|
|
840
|
+
type: import('vue').PropType<string>;
|
|
841
|
+
validator: undefined;
|
|
842
|
+
};
|
|
843
|
+
readonly onVnodeBeforeMount: {
|
|
844
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
845
|
+
validator: undefined;
|
|
846
|
+
};
|
|
847
|
+
readonly onVnodeMounted: {
|
|
848
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
849
|
+
validator: undefined;
|
|
850
|
+
};
|
|
851
|
+
readonly onVnodeBeforeUpdate: {
|
|
852
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
|
|
853
|
+
validator: undefined;
|
|
854
|
+
};
|
|
855
|
+
readonly onVnodeUpdated: {
|
|
856
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
|
|
857
|
+
validator: undefined;
|
|
858
|
+
};
|
|
859
|
+
readonly onVnodeBeforeUnmount: {
|
|
860
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
861
|
+
validator: undefined;
|
|
862
|
+
};
|
|
863
|
+
readonly onVnodeUnmounted: {
|
|
864
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
865
|
+
validator: undefined;
|
|
866
|
+
};
|
|
867
|
+
readonly onClick: {
|
|
868
|
+
type: import('vue').PropType<(...args: any[]) => void>;
|
|
869
|
+
validator: undefined;
|
|
870
|
+
};
|
|
871
|
+
}>> & Readonly<{}> & {}>;
|
|
872
|
+
plain: {
|
|
873
|
+
on: (type: "reset", fn: () => ((() => void) | void)) => () => void;
|
|
874
|
+
off: (type: "reset", fn?: (() => ((() => void) | void)) | undefined) => void;
|
|
875
|
+
clear: () => void;
|
|
876
|
+
coverProps: import('vue').Ref<{
|
|
877
|
+
initialValue: any;
|
|
878
|
+
defaultValue: any;
|
|
879
|
+
}, Record<"initialValue" | "defaultValue", any> | {
|
|
880
|
+
initialValue: any;
|
|
881
|
+
defaultValue: any;
|
|
882
|
+
}>;
|
|
883
|
+
wrapper: import('@xiaohaih/json-form-core').ProvideValue<Record<string, any>, Record<string, any>, any> | undefined;
|
|
884
|
+
option: {
|
|
885
|
+
readonly field: string | undefined;
|
|
886
|
+
reset(this: void, query?: Record<string, any>): void;
|
|
887
|
+
readonly validator: any;
|
|
888
|
+
onBackfillChange: (backfill: Record<string, any>, oldBackfill: Record<string, any>, isChange: boolean) => void;
|
|
889
|
+
onModelChange: (model: Record<string, any>, oldModel: Record<string, any> | undefined) => void;
|
|
890
|
+
trySetDefaultValue(_query: Record<string, any>): boolean;
|
|
891
|
+
};
|
|
892
|
+
loading: import('vue').Ref<boolean, boolean>;
|
|
893
|
+
getOptions: (trigger: "initial" | "depend" | "other", option?: {
|
|
894
|
+
filterValue?: string;
|
|
895
|
+
callback?: ((data: any[]) => void) | undefined;
|
|
896
|
+
} | undefined) => Promise<void>;
|
|
897
|
+
checked: import('vue').WritableComputedRef<any, any>;
|
|
898
|
+
remoteOption: import('vue').Ref<any[], any[]>;
|
|
899
|
+
finalOption: import('vue').ComputedRef<any>;
|
|
900
|
+
change: (value: any) => void;
|
|
901
|
+
search: () => Promise<string | void> | string | void;
|
|
902
|
+
reset: (this: void, query?: Record<string, any>) => void;
|
|
903
|
+
globalReadonly: import('vue').Ref<boolean | undefined, boolean | undefined>;
|
|
904
|
+
globalDisabled: import('vue').Ref<boolean | undefined, boolean | undefined>;
|
|
905
|
+
};
|
|
906
|
+
}>;
|
|
907
|
+
showText: import('vue').Ref<string, string>;
|
|
908
|
+
checkedArr: import('vue').Ref<string[], string[]>;
|
|
909
|
+
clickHandle: (ev: MouseEvent) => void;
|
|
910
|
+
changeHandle: (value: PickerOption) => void;
|
|
911
|
+
confirmHandle: (value: PickerOption) => void;
|
|
912
|
+
cancelHandle: (value: PickerOption) => void;
|
|
913
|
+
popupInfo: import('vue').Ref<{
|
|
914
|
+
visible: boolean;
|
|
915
|
+
open: () => void;
|
|
916
|
+
close: () => void;
|
|
917
|
+
}, {
|
|
918
|
+
visible: boolean;
|
|
919
|
+
open(): void;
|
|
920
|
+
close(): void;
|
|
921
|
+
} | {
|
|
922
|
+
visible: boolean;
|
|
923
|
+
open: () => void;
|
|
924
|
+
close: () => void;
|
|
925
|
+
}>;
|
|
926
|
+
on: (type: "reset", fn: () => ((() => void) | void)) => () => void;
|
|
927
|
+
off: (type: "reset", fn?: (() => ((() => void) | void)) | undefined) => void;
|
|
928
|
+
clear: () => void;
|
|
929
|
+
coverProps: import('vue').Ref<{
|
|
930
|
+
initialValue: any;
|
|
931
|
+
defaultValue: any;
|
|
932
|
+
}, Record<"initialValue" | "defaultValue", any> | {
|
|
933
|
+
initialValue: any;
|
|
934
|
+
defaultValue: any;
|
|
935
|
+
}>;
|
|
936
|
+
wrapper: import('@xiaohaih/json-form-core').ProvideValue<Record<string, any>, Record<string, any>, any> | undefined;
|
|
937
|
+
option: {
|
|
938
|
+
readonly field: string | undefined;
|
|
939
|
+
reset(this: void, query?: Record<string, any>): void;
|
|
940
|
+
readonly validator: any;
|
|
941
|
+
onBackfillChange: (backfill: Record<string, any>, oldBackfill: Record<string, any>, isChange: boolean) => void;
|
|
942
|
+
onModelChange: (model: Record<string, any>, oldModel: Record<string, any> | undefined) => void;
|
|
943
|
+
trySetDefaultValue(_query: Record<string, any>): boolean;
|
|
944
|
+
};
|
|
945
|
+
loading: import('vue').Ref<boolean, boolean>;
|
|
946
|
+
getOptions: (trigger: "initial" | "depend" | "other", option?: {
|
|
947
|
+
filterValue?: string;
|
|
948
|
+
callback?: ((data: any[]) => void) | undefined;
|
|
949
|
+
} | undefined) => Promise<void>;
|
|
950
|
+
checked: import('vue').WritableComputedRef<any, any>;
|
|
951
|
+
remoteOption: import('vue').Ref<any[], any[]>;
|
|
952
|
+
finalOption: import('vue').ComputedRef<any>;
|
|
953
|
+
change: (value: any) => void;
|
|
954
|
+
search: () => Promise<string | void> | string | void;
|
|
955
|
+
reset: (this: void, query?: Record<string, any>) => void;
|
|
956
|
+
globalReadonly: import('vue').Ref<boolean | undefined, boolean | undefined>;
|
|
957
|
+
globalDisabled: import('vue').Ref<boolean | undefined, boolean | undefined>;
|
|
958
|
+
hyphenate: <T extends string>(str: T) => import('@xiaohaih/json-form-core').Hyphenate<T>;
|
|
959
|
+
getNode: typeof getNode;
|
|
960
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
961
|
+
readonly timePickerProps: {
|
|
962
|
+
readonly type: import('vue').PropType<Partial<import('vue-component-type-helpers').ComponentProps<typeof VanTimePicker>>>;
|
|
963
|
+
};
|
|
964
|
+
readonly timePickerOn: {
|
|
965
|
+
readonly type: import('vue').PropType<Partial<ReturnType<typeof import('@xiaohaih/json-form-core').emits2obj>>>;
|
|
966
|
+
readonly default: () => {};
|
|
967
|
+
};
|
|
968
|
+
readonly timePickerSlots: {
|
|
969
|
+
readonly type: import('vue').PropType<{
|
|
970
|
+
toolbar?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
971
|
+
title?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
972
|
+
confirm?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
973
|
+
cancel?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
974
|
+
option?: import('..').ComponentType<{
|
|
975
|
+
option: PickerOption;
|
|
976
|
+
index: number;
|
|
977
|
+
} & import('..').CommonSlotsProps<any, any>> | undefined;
|
|
978
|
+
columnsTop?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
979
|
+
columnsBottom?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
|
|
980
|
+
}>;
|
|
981
|
+
};
|
|
982
|
+
readonly isLink: {
|
|
983
|
+
readonly type: BooleanConstructor;
|
|
984
|
+
readonly default: true;
|
|
985
|
+
};
|
|
986
|
+
readonly onRowClick: {
|
|
987
|
+
readonly type: import('vue').PropType<(option: {
|
|
988
|
+
open: () => void;
|
|
989
|
+
close: () => void;
|
|
990
|
+
}, ev: MouseEvent) => void>;
|
|
991
|
+
};
|
|
992
|
+
readonly separator: {
|
|
993
|
+
readonly type: StringConstructor;
|
|
994
|
+
readonly default: ":";
|
|
995
|
+
};
|
|
996
|
+
readonly format: {
|
|
997
|
+
readonly type: import('vue').PropType<(option: string[], separator: string) => any>;
|
|
998
|
+
readonly default: (option: string[], separator: string) => string;
|
|
999
|
+
};
|
|
1000
|
+
readonly valueFormat: {
|
|
1001
|
+
readonly type: import('vue').PropType<(option: string[], separator: string) => any>;
|
|
1002
|
+
readonly default: (option: string[], separator: string) => string;
|
|
1003
|
+
};
|
|
1004
|
+
readonly valueUnformat: {
|
|
1005
|
+
readonly type: import('vue').PropType<(option: any, separator: string) => string[]>;
|
|
1006
|
+
readonly default: (val: string, separator: string) => string[] | (string & any[]);
|
|
1007
|
+
};
|
|
1008
|
+
readonly valueTrigger: {
|
|
1009
|
+
readonly type: import('vue').PropType<"change" | "confirm" | "cancel">;
|
|
1010
|
+
readonly default: "confirm";
|
|
1011
|
+
};
|
|
1012
|
+
readonly popupProps: {
|
|
1013
|
+
readonly type: import('vue').PropType<Partial<import('vue-component-type-helpers').ComponentExposed<typeof VanPopup>>>;
|
|
1014
|
+
};
|
|
1015
|
+
readonly popupOn: {
|
|
1016
|
+
readonly type: import('vue').PropType<Partial<ReturnType<typeof import('@xiaohaih/json-form-core').emits2obj>>>;
|
|
1017
|
+
readonly default: () => {};
|
|
1018
|
+
};
|
|
1019
|
+
readonly field: Omit<{
|
|
1020
|
+
readonly type: import('vue').PropType<string>;
|
|
1021
|
+
readonly required: true;
|
|
1022
|
+
}, "required">;
|
|
1023
|
+
readonly fields: {
|
|
1024
|
+
readonly type: import('vue').PropType<string[]>;
|
|
1025
|
+
};
|
|
1026
|
+
readonly query: {
|
|
1027
|
+
readonly type: import('vue').PropType<Record<string, any>>;
|
|
1028
|
+
readonly required: true;
|
|
1029
|
+
};
|
|
1030
|
+
readonly parentQuery: {
|
|
1031
|
+
readonly type: import('vue').PropType<Record<string, any>>;
|
|
1032
|
+
};
|
|
1033
|
+
readonly depend: {
|
|
1034
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1035
|
+
readonly default: undefined;
|
|
1036
|
+
};
|
|
1037
|
+
readonly resetByDependValueChange: {
|
|
1038
|
+
readonly type: import('vue').PropType<boolean | ((query: Record<string, any>) => boolean)>;
|
|
1039
|
+
readonly default: true;
|
|
1040
|
+
};
|
|
1041
|
+
readonly dependFields: {
|
|
1042
|
+
readonly type: import('vue').PropType<string | string[]>;
|
|
1043
|
+
};
|
|
1044
|
+
readonly dependWatchOption: {
|
|
1045
|
+
readonly type: import('vue').PropType<import('vue').WatchOptions>;
|
|
1046
|
+
};
|
|
1047
|
+
readonly optionsDepend: {
|
|
1048
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1049
|
+
};
|
|
1050
|
+
readonly optionsDependFields: {
|
|
1051
|
+
readonly type: import('vue').PropType<string | string[]>;
|
|
1052
|
+
};
|
|
1053
|
+
readonly validator: {
|
|
1054
|
+
readonly type: import('vue').PropType<(query: Record<string, any>) => any | Promise<any>>;
|
|
1055
|
+
};
|
|
1056
|
+
readonly initialValue: {
|
|
1057
|
+
readonly type: import('vue').PropType<((option: {
|
|
1058
|
+
query: Query;
|
|
1059
|
+
}) => any) | any>;
|
|
1060
|
+
readonly default: undefined;
|
|
1061
|
+
};
|
|
1062
|
+
readonly defaultValue: {
|
|
1063
|
+
readonly type: import('vue').PropType<((option: {
|
|
1064
|
+
query: Query;
|
|
1065
|
+
}) => any) | any>;
|
|
1066
|
+
readonly default: undefined;
|
|
1067
|
+
};
|
|
1068
|
+
readonly defaultValueConflictCallback: {
|
|
1069
|
+
readonly type: import('vue').PropType<(value: any, checked: import('vue').Ref<any>) => void>;
|
|
1070
|
+
readonly default: typeof import('@xiaohaih/json-form-core').noop;
|
|
1071
|
+
};
|
|
1072
|
+
readonly options: {
|
|
1073
|
+
readonly type: import('vue').PropType<any>;
|
|
1074
|
+
readonly default: () => never[];
|
|
1075
|
+
};
|
|
1076
|
+
readonly getOptions: {
|
|
1077
|
+
readonly type: import('vue').PropType<import('@xiaohaih/json-form-core').GetOptions<Record<string, any>, Record<string, any>>>;
|
|
1078
|
+
};
|
|
1079
|
+
readonly uniqueValue: {
|
|
1080
|
+
readonly type: import('vue').PropType<string | number>;
|
|
1081
|
+
};
|
|
1082
|
+
readonly hooks: {
|
|
1083
|
+
readonly type: import('vue').PropType<import('@xiaohaih/json-form-core').HookOption<Record<string, any>, Record<string, any>>>;
|
|
1084
|
+
readonly default: undefined;
|
|
1085
|
+
};
|
|
1086
|
+
readonly disabled: {
|
|
1087
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1088
|
+
readonly default: undefined;
|
|
1089
|
+
};
|
|
1090
|
+
readonly readonly: {
|
|
1091
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1092
|
+
readonly default: undefined;
|
|
1093
|
+
};
|
|
1094
|
+
readonly hide: {
|
|
1095
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1096
|
+
readonly default: undefined;
|
|
1097
|
+
};
|
|
1098
|
+
readonly slots: {
|
|
1099
|
+
readonly type: import('vue').PropType<import('..').CommonSlots>;
|
|
1100
|
+
};
|
|
1101
|
+
readonly type: {
|
|
1102
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldType | undefined>>;
|
|
1103
|
+
validator: undefined;
|
|
1104
|
+
};
|
|
1105
|
+
readonly tag: {
|
|
1106
|
+
type: import('vue').PropType<NonNullable<keyof HTMLElementTagNameMap | undefined>>;
|
|
1107
|
+
validator: undefined;
|
|
1108
|
+
};
|
|
1109
|
+
readonly center: {
|
|
1110
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
1111
|
+
validator: undefined;
|
|
1112
|
+
};
|
|
1113
|
+
readonly autofocus: {
|
|
1114
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
1115
|
+
validator: undefined;
|
|
1116
|
+
};
|
|
1117
|
+
readonly border: {
|
|
1118
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
1119
|
+
validator: undefined;
|
|
1120
|
+
};
|
|
1121
|
+
readonly required: {
|
|
1122
|
+
type: import('vue').PropType<NonNullable<boolean | "auto" | undefined>>;
|
|
1123
|
+
validator: undefined;
|
|
1124
|
+
};
|
|
1125
|
+
readonly clickable: {
|
|
1126
|
+
type: import('vue').PropType<NonNullable<boolean | null | undefined>>;
|
|
1127
|
+
validator: undefined;
|
|
1128
|
+
};
|
|
1129
|
+
readonly clearable: {
|
|
1130
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
1131
|
+
validator: undefined;
|
|
1132
|
+
};
|
|
1133
|
+
readonly clearIcon: {
|
|
1134
|
+
type: import('vue').PropType<string>;
|
|
1135
|
+
validator: undefined;
|
|
1136
|
+
};
|
|
1137
|
+
readonly modelValue: {
|
|
1138
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
1139
|
+
validator: undefined;
|
|
1140
|
+
};
|
|
1141
|
+
readonly clearTrigger: {
|
|
1142
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldClearTrigger | undefined>>;
|
|
1143
|
+
validator: undefined;
|
|
1144
|
+
};
|
|
1145
|
+
readonly formatTrigger: {
|
|
1146
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldFormatTrigger | undefined>>;
|
|
1147
|
+
validator: undefined;
|
|
1148
|
+
};
|
|
1149
|
+
readonly spellcheck: {
|
|
1150
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
1151
|
+
validator: undefined;
|
|
1152
|
+
};
|
|
1153
|
+
readonly error: {
|
|
1154
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
1155
|
+
validator: undefined;
|
|
1156
|
+
};
|
|
1157
|
+
readonly showWordLimit: {
|
|
1158
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
1159
|
+
validator: undefined;
|
|
1160
|
+
};
|
|
1161
|
+
readonly colon: {
|
|
1162
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
1163
|
+
validator: undefined;
|
|
1164
|
+
};
|
|
1165
|
+
readonly size: {
|
|
1166
|
+
type: import('vue').PropType<NonNullable<import('vant').CellSize | undefined>>;
|
|
1167
|
+
validator: undefined;
|
|
1168
|
+
};
|
|
1169
|
+
readonly value: {
|
|
1170
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
1171
|
+
validator: undefined;
|
|
1172
|
+
};
|
|
1173
|
+
readonly name: {
|
|
1174
|
+
type: import('vue').PropType<string>;
|
|
1175
|
+
validator: undefined;
|
|
1176
|
+
};
|
|
1177
|
+
readonly class: {
|
|
1178
|
+
type: import('vue').PropType<{}>;
|
|
1179
|
+
validator: undefined;
|
|
1180
|
+
};
|
|
1181
|
+
readonly icon: {
|
|
1182
|
+
type: import('vue').PropType<string>;
|
|
1183
|
+
validator: undefined;
|
|
1184
|
+
};
|
|
1185
|
+
readonly title: {
|
|
1186
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
1187
|
+
validator: undefined;
|
|
1188
|
+
};
|
|
1189
|
+
readonly label: {
|
|
1190
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
1191
|
+
validator: undefined;
|
|
1192
|
+
};
|
|
1193
|
+
readonly iconPrefix: {
|
|
1194
|
+
type: import('vue').PropType<string>;
|
|
1195
|
+
validator: undefined;
|
|
1196
|
+
};
|
|
1197
|
+
readonly valueClass: {
|
|
1198
|
+
type: import('vue').PropType<{}>;
|
|
1199
|
+
validator: undefined;
|
|
1200
|
+
};
|
|
1201
|
+
readonly labelClass: {
|
|
1202
|
+
type: import('vue').PropType<{}>;
|
|
1203
|
+
validator: undefined;
|
|
1204
|
+
};
|
|
1205
|
+
readonly titleClass: {
|
|
1206
|
+
type: import('vue').PropType<{}>;
|
|
1207
|
+
validator: undefined;
|
|
1208
|
+
};
|
|
1209
|
+
readonly titleStyle: {
|
|
1210
|
+
type: import('vue').PropType<NonNullable<string | import('vue').CSSProperties | undefined>>;
|
|
1211
|
+
validator: undefined;
|
|
1212
|
+
};
|
|
1213
|
+
readonly arrowDirection: {
|
|
1214
|
+
type: import('vue').PropType<NonNullable<import('vant').CellArrowDirection | undefined>>;
|
|
1215
|
+
validator: undefined;
|
|
1216
|
+
};
|
|
1217
|
+
readonly id: {
|
|
1218
|
+
type: import('vue').PropType<string>;
|
|
1219
|
+
validator: undefined;
|
|
1220
|
+
};
|
|
1221
|
+
readonly leftIcon: {
|
|
1222
|
+
type: import('vue').PropType<string>;
|
|
1223
|
+
validator: undefined;
|
|
1224
|
+
};
|
|
1225
|
+
readonly rightIcon: {
|
|
1226
|
+
type: import('vue').PropType<string>;
|
|
1227
|
+
validator: undefined;
|
|
1228
|
+
};
|
|
1229
|
+
readonly maxlength: {
|
|
1230
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
1231
|
+
validator: undefined;
|
|
1232
|
+
};
|
|
1233
|
+
readonly max: {
|
|
1234
|
+
type: import('vue').PropType<number>;
|
|
1235
|
+
validator: undefined;
|
|
1236
|
+
};
|
|
1237
|
+
readonly min: {
|
|
1238
|
+
type: import('vue').PropType<number>;
|
|
1239
|
+
validator: undefined;
|
|
1240
|
+
};
|
|
1241
|
+
readonly formatter: {
|
|
1242
|
+
type: import('vue').PropType<(value: string) => string>;
|
|
1243
|
+
validator: undefined;
|
|
1244
|
+
};
|
|
1245
|
+
readonly inputAlign: {
|
|
1246
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
1247
|
+
validator: undefined;
|
|
1248
|
+
};
|
|
1249
|
+
readonly placeholder: {
|
|
1250
|
+
type: import('vue').PropType<string>;
|
|
1251
|
+
validator: undefined;
|
|
1252
|
+
};
|
|
1253
|
+
readonly autocomplete: {
|
|
1254
|
+
type: import('vue').PropType<string>;
|
|
1255
|
+
validator: undefined;
|
|
1256
|
+
};
|
|
1257
|
+
readonly autocapitalize: {
|
|
1258
|
+
type: import('vue').PropType<string>;
|
|
1259
|
+
validator: undefined;
|
|
1260
|
+
};
|
|
1261
|
+
readonly autocorrect: {
|
|
1262
|
+
type: import('vue').PropType<string>;
|
|
1263
|
+
validator: undefined;
|
|
1264
|
+
};
|
|
1265
|
+
readonly errorMessage: {
|
|
1266
|
+
type: import('vue').PropType<string>;
|
|
1267
|
+
validator: undefined;
|
|
1268
|
+
};
|
|
1269
|
+
readonly enterkeyhint: {
|
|
1270
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldEnterKeyHint | undefined>>;
|
|
1271
|
+
validator: undefined;
|
|
1272
|
+
};
|
|
1273
|
+
readonly inputmode: {
|
|
1274
|
+
type: import('vue').PropType<NonNullable<"search" | "tel" | "url" | "text" | "email" | "none" | "numeric" | "decimal" | undefined>>;
|
|
1275
|
+
validator: undefined;
|
|
1276
|
+
};
|
|
1277
|
+
readonly rows: {
|
|
1278
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
1279
|
+
validator: undefined;
|
|
1280
|
+
};
|
|
1281
|
+
readonly rules: {
|
|
1282
|
+
type: import('vue').PropType<import('vant').FieldRule[]>;
|
|
1283
|
+
validator: undefined;
|
|
1284
|
+
};
|
|
1285
|
+
readonly autosize: {
|
|
1286
|
+
type: import('vue').PropType<NonNullable<boolean | import('vant').FieldAutosizeConfig | undefined>>;
|
|
1287
|
+
validator: undefined;
|
|
1288
|
+
};
|
|
1289
|
+
readonly labelWidth: {
|
|
1290
|
+
type: import('vue').PropType<NonNullable<string | number | undefined>>;
|
|
1291
|
+
validator: undefined;
|
|
1292
|
+
};
|
|
1293
|
+
readonly labelAlign: {
|
|
1294
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
1295
|
+
validator: undefined;
|
|
1296
|
+
};
|
|
1297
|
+
readonly errorMessageAlign: {
|
|
1298
|
+
type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
1299
|
+
validator: undefined;
|
|
1300
|
+
};
|
|
1301
|
+
readonly style: {
|
|
1302
|
+
type: import('vue').PropType<{}>;
|
|
1303
|
+
validator: undefined;
|
|
1304
|
+
};
|
|
1305
|
+
readonly onBlur: {
|
|
1306
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
1307
|
+
validator: undefined;
|
|
1308
|
+
};
|
|
1309
|
+
readonly onFocus: {
|
|
1310
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
1311
|
+
validator: undefined;
|
|
1312
|
+
};
|
|
1313
|
+
readonly onKeypress: {
|
|
1314
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
1315
|
+
validator: undefined;
|
|
1316
|
+
};
|
|
1317
|
+
readonly onClear: {
|
|
1318
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
1319
|
+
validator: undefined;
|
|
1320
|
+
};
|
|
1321
|
+
readonly onClickInput: {
|
|
1322
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
1323
|
+
validator: undefined;
|
|
1324
|
+
};
|
|
1325
|
+
readonly onEndValidate: {
|
|
1326
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
1327
|
+
validator: undefined;
|
|
1328
|
+
};
|
|
1329
|
+
readonly onStartValidate: {
|
|
1330
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
1331
|
+
validator: undefined;
|
|
1332
|
+
};
|
|
1333
|
+
readonly onClickLeftIcon: {
|
|
1334
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
1335
|
+
validator: undefined;
|
|
1336
|
+
};
|
|
1337
|
+
readonly onClickRightIcon: {
|
|
1338
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
1339
|
+
validator: undefined;
|
|
1340
|
+
};
|
|
1341
|
+
readonly "onUpdate:modelValue": {
|
|
1342
|
+
type: import('vue').PropType<(...args: any[]) => any>;
|
|
1343
|
+
validator: undefined;
|
|
1344
|
+
};
|
|
1345
|
+
readonly key: {
|
|
1346
|
+
type: import('vue').PropType<NonNullable<PropertyKey | undefined>>;
|
|
1347
|
+
validator: undefined;
|
|
1348
|
+
};
|
|
1349
|
+
readonly ref: {
|
|
1350
|
+
type: import('vue').PropType<NonNullable<import('vue').VNodeRef | undefined>>;
|
|
1351
|
+
validator: undefined;
|
|
1352
|
+
};
|
|
1353
|
+
readonly ref_for: {
|
|
1354
|
+
type: import('vue').PropType<NonNullable<boolean | undefined>>;
|
|
1355
|
+
validator: undefined;
|
|
1356
|
+
};
|
|
1357
|
+
readonly ref_key: {
|
|
1358
|
+
type: import('vue').PropType<string>;
|
|
1359
|
+
validator: undefined;
|
|
1360
|
+
};
|
|
1361
|
+
readonly onVnodeBeforeMount: {
|
|
1362
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
1363
|
+
validator: undefined;
|
|
1364
|
+
};
|
|
1365
|
+
readonly onVnodeMounted: {
|
|
1366
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
1367
|
+
validator: undefined;
|
|
1368
|
+
};
|
|
1369
|
+
readonly onVnodeBeforeUpdate: {
|
|
1370
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
|
|
1371
|
+
validator: undefined;
|
|
1372
|
+
};
|
|
1373
|
+
readonly onVnodeUpdated: {
|
|
1374
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
|
|
1375
|
+
validator: undefined;
|
|
1376
|
+
};
|
|
1377
|
+
readonly onVnodeBeforeUnmount: {
|
|
1378
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
1379
|
+
validator: undefined;
|
|
1380
|
+
};
|
|
1381
|
+
readonly onVnodeUnmounted: {
|
|
1382
|
+
type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
1383
|
+
validator: undefined;
|
|
1384
|
+
};
|
|
1385
|
+
readonly onClick: {
|
|
1386
|
+
type: import('vue').PropType<(...args: any[]) => void>;
|
|
1387
|
+
validator: undefined;
|
|
1388
|
+
};
|
|
1389
|
+
}>> & Readonly<{}>, {
|
|
1390
|
+
readonly depend: boolean;
|
|
1391
|
+
readonly resetByDependValueChange: boolean | ((query: Record<string, any>) => boolean);
|
|
1392
|
+
readonly initialValue: any;
|
|
1393
|
+
readonly defaultValue: any;
|
|
1394
|
+
readonly defaultValueConflictCallback: (value: any, checked: import('vue').Ref<any>) => void;
|
|
1395
|
+
readonly options: any;
|
|
1396
|
+
readonly hooks: import('@xiaohaih/json-form-core').HookOption<Record<string, any>, Record<string, any>>;
|
|
1397
|
+
readonly readonly: boolean;
|
|
1398
|
+
readonly disabled: boolean;
|
|
1399
|
+
readonly isLink: boolean;
|
|
1400
|
+
readonly separator: string;
|
|
1401
|
+
readonly format: (option: string[], separator: string) => any;
|
|
1402
|
+
readonly valueTrigger: "change" | "cancel" | "confirm";
|
|
1403
|
+
readonly popupOn: Partial<{
|
|
1404
|
+
open: () => true;
|
|
1405
|
+
close: () => true;
|
|
1406
|
+
keydown: () => true;
|
|
1407
|
+
opened: () => true;
|
|
1408
|
+
closed: () => true;
|
|
1409
|
+
"update:show": () => true;
|
|
1410
|
+
clickOverlay: () => true;
|
|
1411
|
+
clickCloseIcon: () => true;
|
|
1412
|
+
}>;
|
|
1413
|
+
readonly hide: boolean;
|
|
1414
|
+
readonly valueFormat: (option: string[], separator: string) => any;
|
|
1415
|
+
readonly valueUnformat: (option: any, separator: string) => string[];
|
|
1416
|
+
readonly timePickerOn: Partial<{
|
|
1417
|
+
change: () => true;
|
|
1418
|
+
"update:modelValue": () => true;
|
|
1419
|
+
cancel: () => true;
|
|
1420
|
+
confirm: () => true;
|
|
1421
|
+
}>;
|
|
1422
|
+
}, SlotsType<TimePickerSlots>, {
|
|
1423
|
+
VanField: import('vant/lib/utils').WithInstall<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1424
|
+
tag: {
|
|
1425
|
+
type: import('vue').PropType<keyof HTMLElementTagNameMap>;
|
|
1426
|
+
default: keyof HTMLElementTagNameMap;
|
|
1427
|
+
};
|
|
1428
|
+
icon: StringConstructor;
|
|
1429
|
+
size: import('vue').PropType<import('vant').CellSize>;
|
|
1430
|
+
title: (NumberConstructor | StringConstructor)[];
|
|
1431
|
+
value: (NumberConstructor | StringConstructor)[];
|
|
1432
|
+
label: (NumberConstructor | StringConstructor)[];
|
|
1433
|
+
center: BooleanConstructor;
|
|
1434
|
+
isLink: BooleanConstructor;
|
|
1435
|
+
border: {
|
|
1436
|
+
type: BooleanConstructor;
|
|
1437
|
+
default: true;
|
|
1438
|
+
};
|
|
1439
|
+
iconPrefix: StringConstructor;
|
|
1440
|
+
valueClass: import('vue').PropType<unknown>;
|
|
1441
|
+
labelClass: import('vue').PropType<unknown>;
|
|
1442
|
+
titleClass: import('vue').PropType<unknown>;
|
|
1443
|
+
titleStyle: import('vue').PropType<string | import('vue').CSSProperties>;
|
|
1444
|
+
arrowDirection: import('vue').PropType<import('vant').CellArrowDirection>;
|
|
1445
|
+
required: {
|
|
1446
|
+
type: import('vue').PropType<boolean | "auto">;
|
|
1447
|
+
default: null;
|
|
1448
|
+
};
|
|
1449
|
+
clickable: {
|
|
1450
|
+
type: import('vue').PropType<boolean | null>;
|
|
1451
|
+
default: null;
|
|
1452
|
+
};
|
|
1453
|
+
} & {
|
|
1454
|
+
id: StringConstructor;
|
|
1455
|
+
name: StringConstructor;
|
|
1456
|
+
leftIcon: StringConstructor;
|
|
1457
|
+
rightIcon: StringConstructor;
|
|
1458
|
+
autofocus: BooleanConstructor;
|
|
1459
|
+
clearable: BooleanConstructor;
|
|
1460
|
+
maxlength: (NumberConstructor | StringConstructor)[];
|
|
1461
|
+
max: NumberConstructor;
|
|
1462
|
+
min: NumberConstructor;
|
|
1463
|
+
formatter: import('vue').PropType<(value: string) => string>;
|
|
1464
|
+
clearIcon: {
|
|
1465
|
+
type: import('vue').PropType<string>;
|
|
1466
|
+
default: string;
|
|
1467
|
+
};
|
|
1468
|
+
modelValue: {
|
|
1469
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1470
|
+
default: string;
|
|
1471
|
+
};
|
|
1472
|
+
inputAlign: import('vue').PropType<import('vant').FieldTextAlign>;
|
|
1473
|
+
placeholder: StringConstructor;
|
|
1474
|
+
autocomplete: StringConstructor;
|
|
1475
|
+
autocapitalize: StringConstructor;
|
|
1476
|
+
autocorrect: StringConstructor;
|
|
1477
|
+
errorMessage: StringConstructor;
|
|
1478
|
+
enterkeyhint: import('vue').PropType<import('vant').FieldEnterKeyHint>;
|
|
1479
|
+
clearTrigger: {
|
|
1480
|
+
type: import('vue').PropType<import('vant').FieldClearTrigger>;
|
|
1481
|
+
default: import('vant').FieldClearTrigger;
|
|
1482
|
+
};
|
|
1483
|
+
formatTrigger: {
|
|
1484
|
+
type: import('vue').PropType<import('vant').FieldFormatTrigger>;
|
|
1485
|
+
default: import('vant').FieldFormatTrigger;
|
|
1486
|
+
};
|
|
1487
|
+
spellcheck: {
|
|
1488
|
+
type: BooleanConstructor;
|
|
1489
|
+
default: null;
|
|
1490
|
+
};
|
|
1491
|
+
error: {
|
|
1492
|
+
type: BooleanConstructor;
|
|
1493
|
+
default: null;
|
|
1494
|
+
};
|
|
1495
|
+
disabled: {
|
|
1496
|
+
type: BooleanConstructor;
|
|
1497
|
+
default: null;
|
|
1498
|
+
};
|
|
1499
|
+
readonly: {
|
|
1500
|
+
type: BooleanConstructor;
|
|
1501
|
+
default: null;
|
|
1502
|
+
};
|
|
1503
|
+
inputmode: import('vue').PropType<import('vue').HTMLAttributes["inputmode"]>;
|
|
1504
|
+
} & {
|
|
1505
|
+
rows: (NumberConstructor | StringConstructor)[];
|
|
1506
|
+
type: {
|
|
1507
|
+
type: import('vue').PropType<import('vant').FieldType>;
|
|
1508
|
+
default: import('vant').FieldType;
|
|
1509
|
+
};
|
|
1510
|
+
rules: import('vue').PropType<import('vant').FieldRule[]>;
|
|
1511
|
+
autosize: import('vue').PropType<boolean | import('vant').FieldAutosizeConfig>;
|
|
1512
|
+
labelWidth: (NumberConstructor | StringConstructor)[];
|
|
1513
|
+
labelClass: import('vue').PropType<unknown>;
|
|
1514
|
+
labelAlign: import('vue').PropType<import('vant').FieldTextAlign>;
|
|
1515
|
+
showWordLimit: BooleanConstructor;
|
|
1516
|
+
errorMessageAlign: import('vue').PropType<import('vant').FieldTextAlign>;
|
|
1517
|
+
colon: {
|
|
1518
|
+
type: BooleanConstructor;
|
|
1519
|
+
default: null;
|
|
1520
|
+
};
|
|
1521
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[], "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1522
|
+
tag: {
|
|
1523
|
+
type: import('vue').PropType<keyof HTMLElementTagNameMap>;
|
|
1524
|
+
default: keyof HTMLElementTagNameMap;
|
|
1525
|
+
};
|
|
1526
|
+
icon: StringConstructor;
|
|
1527
|
+
size: import('vue').PropType<import('vant').CellSize>;
|
|
1528
|
+
title: (NumberConstructor | StringConstructor)[];
|
|
1529
|
+
value: (NumberConstructor | StringConstructor)[];
|
|
1530
|
+
label: (NumberConstructor | StringConstructor)[];
|
|
1531
|
+
center: BooleanConstructor;
|
|
1532
|
+
isLink: BooleanConstructor;
|
|
1533
|
+
border: {
|
|
1534
|
+
type: BooleanConstructor;
|
|
1535
|
+
default: true;
|
|
1536
|
+
};
|
|
1537
|
+
iconPrefix: StringConstructor;
|
|
1538
|
+
valueClass: import('vue').PropType<unknown>;
|
|
1539
|
+
labelClass: import('vue').PropType<unknown>;
|
|
1540
|
+
titleClass: import('vue').PropType<unknown>;
|
|
1541
|
+
titleStyle: import('vue').PropType<string | import('vue').CSSProperties>;
|
|
1542
|
+
arrowDirection: import('vue').PropType<import('vant').CellArrowDirection>;
|
|
1543
|
+
required: {
|
|
1544
|
+
type: import('vue').PropType<boolean | "auto">;
|
|
1545
|
+
default: null;
|
|
1546
|
+
};
|
|
1547
|
+
clickable: {
|
|
1548
|
+
type: import('vue').PropType<boolean | null>;
|
|
1549
|
+
default: null;
|
|
1550
|
+
};
|
|
1551
|
+
} & {
|
|
1552
|
+
id: StringConstructor;
|
|
1553
|
+
name: StringConstructor;
|
|
1554
|
+
leftIcon: StringConstructor;
|
|
1555
|
+
rightIcon: StringConstructor;
|
|
1556
|
+
autofocus: BooleanConstructor;
|
|
1557
|
+
clearable: BooleanConstructor;
|
|
1558
|
+
maxlength: (NumberConstructor | StringConstructor)[];
|
|
1559
|
+
max: NumberConstructor;
|
|
1560
|
+
min: NumberConstructor;
|
|
1561
|
+
formatter: import('vue').PropType<(value: string) => string>;
|
|
1562
|
+
clearIcon: {
|
|
1563
|
+
type: import('vue').PropType<string>;
|
|
1564
|
+
default: string;
|
|
1565
|
+
};
|
|
1566
|
+
modelValue: {
|
|
1567
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1568
|
+
default: string;
|
|
1569
|
+
};
|
|
1570
|
+
inputAlign: import('vue').PropType<import('vant').FieldTextAlign>;
|
|
1571
|
+
placeholder: StringConstructor;
|
|
1572
|
+
autocomplete: StringConstructor;
|
|
1573
|
+
autocapitalize: StringConstructor;
|
|
1574
|
+
autocorrect: StringConstructor;
|
|
1575
|
+
errorMessage: StringConstructor;
|
|
1576
|
+
enterkeyhint: import('vue').PropType<import('vant').FieldEnterKeyHint>;
|
|
1577
|
+
clearTrigger: {
|
|
1578
|
+
type: import('vue').PropType<import('vant').FieldClearTrigger>;
|
|
1579
|
+
default: import('vant').FieldClearTrigger;
|
|
1580
|
+
};
|
|
1581
|
+
formatTrigger: {
|
|
1582
|
+
type: import('vue').PropType<import('vant').FieldFormatTrigger>;
|
|
1583
|
+
default: import('vant').FieldFormatTrigger;
|
|
1584
|
+
};
|
|
1585
|
+
spellcheck: {
|
|
1586
|
+
type: BooleanConstructor;
|
|
1587
|
+
default: null;
|
|
1588
|
+
};
|
|
1589
|
+
error: {
|
|
1590
|
+
type: BooleanConstructor;
|
|
1591
|
+
default: null;
|
|
1592
|
+
};
|
|
1593
|
+
disabled: {
|
|
1594
|
+
type: BooleanConstructor;
|
|
1595
|
+
default: null;
|
|
1596
|
+
};
|
|
1597
|
+
readonly: {
|
|
1598
|
+
type: BooleanConstructor;
|
|
1599
|
+
default: null;
|
|
1600
|
+
};
|
|
1601
|
+
inputmode: import('vue').PropType<import('vue').HTMLAttributes["inputmode"]>;
|
|
1602
|
+
} & {
|
|
1603
|
+
rows: (NumberConstructor | StringConstructor)[];
|
|
1604
|
+
type: {
|
|
1605
|
+
type: import('vue').PropType<import('vant').FieldType>;
|
|
1606
|
+
default: import('vant').FieldType;
|
|
1607
|
+
};
|
|
1608
|
+
rules: import('vue').PropType<import('vant').FieldRule[]>;
|
|
1609
|
+
autosize: import('vue').PropType<boolean | import('vant').FieldAutosizeConfig>;
|
|
1610
|
+
labelWidth: (NumberConstructor | StringConstructor)[];
|
|
1611
|
+
labelClass: import('vue').PropType<unknown>;
|
|
1612
|
+
labelAlign: import('vue').PropType<import('vant').FieldTextAlign>;
|
|
1613
|
+
showWordLimit: BooleanConstructor;
|
|
1614
|
+
errorMessageAlign: import('vue').PropType<import('vant').FieldTextAlign>;
|
|
1615
|
+
colon: {
|
|
1616
|
+
type: BooleanConstructor;
|
|
1617
|
+
default: null;
|
|
1618
|
+
};
|
|
1619
|
+
}>> & Readonly<{
|
|
1620
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
1621
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1622
|
+
onKeypress?: ((...args: any[]) => any) | undefined;
|
|
1623
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
1624
|
+
onClickInput?: ((...args: any[]) => any) | undefined;
|
|
1625
|
+
onEndValidate?: ((...args: any[]) => any) | undefined;
|
|
1626
|
+
onStartValidate?: ((...args: any[]) => any) | undefined;
|
|
1627
|
+
onClickLeftIcon?: ((...args: any[]) => any) | undefined;
|
|
1628
|
+
onClickRightIcon?: ((...args: any[]) => any) | undefined;
|
|
1629
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1630
|
+
}>, {
|
|
1631
|
+
type: import('vant').FieldType;
|
|
1632
|
+
tag: keyof HTMLElementTagNameMap;
|
|
1633
|
+
center: boolean;
|
|
1634
|
+
autofocus: boolean;
|
|
1635
|
+
disabled: boolean;
|
|
1636
|
+
border: boolean;
|
|
1637
|
+
isLink: boolean;
|
|
1638
|
+
required: boolean | "auto";
|
|
1639
|
+
clickable: boolean | null;
|
|
1640
|
+
clearable: boolean;
|
|
1641
|
+
clearIcon: string;
|
|
1642
|
+
modelValue: string | number;
|
|
1643
|
+
clearTrigger: import('vant').FieldClearTrigger;
|
|
1644
|
+
formatTrigger: import('vant').FieldFormatTrigger;
|
|
1645
|
+
spellcheck: boolean;
|
|
1646
|
+
error: boolean;
|
|
1647
|
+
readonly: boolean;
|
|
1648
|
+
showWordLimit: boolean;
|
|
1649
|
+
colon: boolean;
|
|
1650
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>>;
|
|
1651
|
+
VanPopup: import('vant/lib/utils').WithInstall<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1652
|
+
show: BooleanConstructor;
|
|
1653
|
+
zIndex: (NumberConstructor | StringConstructor)[];
|
|
1654
|
+
overlay: {
|
|
1655
|
+
type: BooleanConstructor;
|
|
1656
|
+
default: true;
|
|
1657
|
+
};
|
|
1658
|
+
duration: (NumberConstructor | StringConstructor)[];
|
|
1659
|
+
teleport: import('vue').PropType<import('vue').TeleportProps["to"]>;
|
|
1660
|
+
lockScroll: {
|
|
1661
|
+
type: BooleanConstructor;
|
|
1662
|
+
default: true;
|
|
1663
|
+
};
|
|
1664
|
+
lazyRender: {
|
|
1665
|
+
type: BooleanConstructor;
|
|
1666
|
+
default: true;
|
|
1667
|
+
};
|
|
1668
|
+
beforeClose: import('vue').PropType<import('vant/lib/utils').Interceptor>;
|
|
1669
|
+
overlayProps: import('vue').PropType<Partial<import('vant').OverlayProps>>;
|
|
1670
|
+
overlayStyle: import('vue').PropType<import('vue').CSSProperties>;
|
|
1671
|
+
overlayClass: import('vue').PropType<unknown>;
|
|
1672
|
+
transitionAppear: BooleanConstructor;
|
|
1673
|
+
closeOnClickOverlay: {
|
|
1674
|
+
type: BooleanConstructor;
|
|
1675
|
+
default: true;
|
|
1676
|
+
};
|
|
1677
|
+
} & {
|
|
1678
|
+
round: BooleanConstructor;
|
|
1679
|
+
position: {
|
|
1680
|
+
type: import('vue').PropType<import('vant').PopupPosition>;
|
|
1681
|
+
default: import('vant').PopupPosition;
|
|
1682
|
+
};
|
|
1683
|
+
closeIcon: {
|
|
1684
|
+
type: import('vue').PropType<string>;
|
|
1685
|
+
default: string;
|
|
1686
|
+
};
|
|
1687
|
+
closeable: BooleanConstructor;
|
|
1688
|
+
transition: StringConstructor;
|
|
1689
|
+
iconPrefix: StringConstructor;
|
|
1690
|
+
closeOnPopstate: BooleanConstructor;
|
|
1691
|
+
closeIconPosition: {
|
|
1692
|
+
type: import('vue').PropType<import('vant').PopupCloseIconPosition>;
|
|
1693
|
+
default: import('vant').PopupCloseIconPosition;
|
|
1694
|
+
};
|
|
1695
|
+
destroyOnClose: BooleanConstructor;
|
|
1696
|
+
safeAreaInsetTop: BooleanConstructor;
|
|
1697
|
+
safeAreaInsetBottom: BooleanConstructor;
|
|
1698
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("open" | "close" | "keydown" | "opened" | "closed" | "update:show" | "clickOverlay" | "clickCloseIcon")[], "open" | "close" | "keydown" | "opened" | "closed" | "update:show" | "clickOverlay" | "clickCloseIcon", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1699
|
+
show: BooleanConstructor;
|
|
1700
|
+
zIndex: (NumberConstructor | StringConstructor)[];
|
|
1701
|
+
overlay: {
|
|
1702
|
+
type: BooleanConstructor;
|
|
1703
|
+
default: true;
|
|
1704
|
+
};
|
|
1705
|
+
duration: (NumberConstructor | StringConstructor)[];
|
|
1706
|
+
teleport: import('vue').PropType<import('vue').TeleportProps["to"]>;
|
|
1707
|
+
lockScroll: {
|
|
1708
|
+
type: BooleanConstructor;
|
|
1709
|
+
default: true;
|
|
1710
|
+
};
|
|
1711
|
+
lazyRender: {
|
|
1712
|
+
type: BooleanConstructor;
|
|
1713
|
+
default: true;
|
|
1714
|
+
};
|
|
1715
|
+
beforeClose: import('vue').PropType<import('vant/lib/utils').Interceptor>;
|
|
1716
|
+
overlayProps: import('vue').PropType<Partial<import('vant').OverlayProps>>;
|
|
1717
|
+
overlayStyle: import('vue').PropType<import('vue').CSSProperties>;
|
|
1718
|
+
overlayClass: import('vue').PropType<unknown>;
|
|
1719
|
+
transitionAppear: BooleanConstructor;
|
|
1720
|
+
closeOnClickOverlay: {
|
|
1721
|
+
type: BooleanConstructor;
|
|
1722
|
+
default: true;
|
|
1723
|
+
};
|
|
1724
|
+
} & {
|
|
1725
|
+
round: BooleanConstructor;
|
|
1726
|
+
position: {
|
|
1727
|
+
type: import('vue').PropType<import('vant').PopupPosition>;
|
|
1728
|
+
default: import('vant').PopupPosition;
|
|
1729
|
+
};
|
|
1730
|
+
closeIcon: {
|
|
1731
|
+
type: import('vue').PropType<string>;
|
|
1732
|
+
default: string;
|
|
1733
|
+
};
|
|
1734
|
+
closeable: BooleanConstructor;
|
|
1735
|
+
transition: StringConstructor;
|
|
1736
|
+
iconPrefix: StringConstructor;
|
|
1737
|
+
closeOnPopstate: BooleanConstructor;
|
|
1738
|
+
closeIconPosition: {
|
|
1739
|
+
type: import('vue').PropType<import('vant').PopupCloseIconPosition>;
|
|
1740
|
+
default: import('vant').PopupCloseIconPosition;
|
|
1741
|
+
};
|
|
1742
|
+
destroyOnClose: BooleanConstructor;
|
|
1743
|
+
safeAreaInsetTop: BooleanConstructor;
|
|
1744
|
+
safeAreaInsetBottom: BooleanConstructor;
|
|
1745
|
+
}>> & Readonly<{
|
|
1746
|
+
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
1747
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1748
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
1749
|
+
onOpened?: ((...args: any[]) => any) | undefined;
|
|
1750
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
1751
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1752
|
+
onClickOverlay?: ((...args: any[]) => any) | undefined;
|
|
1753
|
+
onClickCloseIcon?: ((...args: any[]) => any) | undefined;
|
|
1754
|
+
}>, {
|
|
1755
|
+
position: import('vant').PopupPosition;
|
|
1756
|
+
round: boolean;
|
|
1757
|
+
overlay: boolean;
|
|
1758
|
+
show: boolean;
|
|
1759
|
+
safeAreaInsetBottom: boolean;
|
|
1760
|
+
lockScroll: boolean;
|
|
1761
|
+
lazyRender: boolean;
|
|
1762
|
+
transitionAppear: boolean;
|
|
1763
|
+
closeOnClickOverlay: boolean;
|
|
1764
|
+
closeIcon: string;
|
|
1765
|
+
closeable: boolean;
|
|
1766
|
+
closeOnPopstate: boolean;
|
|
1767
|
+
closeIconPosition: import('vant').PopupCloseIconPosition;
|
|
1768
|
+
destroyOnClose: boolean;
|
|
1769
|
+
safeAreaInsetTop: boolean;
|
|
1770
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>>;
|
|
1771
|
+
VanTimePicker: import('vant/lib/utils').WithInstall<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1772
|
+
loading: BooleanConstructor;
|
|
1773
|
+
readonly: BooleanConstructor;
|
|
1774
|
+
allowHtml: BooleanConstructor;
|
|
1775
|
+
optionHeight: {
|
|
1776
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1777
|
+
default: number;
|
|
1778
|
+
};
|
|
1779
|
+
showToolbar: {
|
|
1780
|
+
type: BooleanConstructor;
|
|
1781
|
+
default: true;
|
|
1782
|
+
};
|
|
1783
|
+
swipeDuration: {
|
|
1784
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1785
|
+
default: number;
|
|
1786
|
+
};
|
|
1787
|
+
visibleOptionNum: {
|
|
1788
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1789
|
+
default: number;
|
|
1790
|
+
};
|
|
1791
|
+
} & {
|
|
1792
|
+
title: StringConstructor;
|
|
1793
|
+
cancelButtonText: StringConstructor;
|
|
1794
|
+
confirmButtonText: StringConstructor;
|
|
1795
|
+
} & {
|
|
1796
|
+
modelValue: {
|
|
1797
|
+
type: import('vue').PropType<string[]>;
|
|
1798
|
+
default: () => never[];
|
|
1799
|
+
};
|
|
1800
|
+
filter: import('vue').PropType<(columnType: string, options: import('vant').PickerOption[], values: string[]) => import('vant').PickerOption[]>;
|
|
1801
|
+
formatter: {
|
|
1802
|
+
type: import('vue').PropType<(type: string, option: import('vant').PickerOption) => import('vant').PickerOption>;
|
|
1803
|
+
default: (type: string, option: import('vant').PickerOption) => import('vant').PickerOption;
|
|
1804
|
+
};
|
|
1805
|
+
} & {
|
|
1806
|
+
minHour: {
|
|
1807
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1808
|
+
default: number;
|
|
1809
|
+
};
|
|
1810
|
+
maxHour: {
|
|
1811
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1812
|
+
default: number;
|
|
1813
|
+
};
|
|
1814
|
+
minMinute: {
|
|
1815
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1816
|
+
default: number;
|
|
1817
|
+
};
|
|
1818
|
+
maxMinute: {
|
|
1819
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1820
|
+
default: number;
|
|
1821
|
+
};
|
|
1822
|
+
minSecond: {
|
|
1823
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1824
|
+
default: number;
|
|
1825
|
+
};
|
|
1826
|
+
maxSecond: {
|
|
1827
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1828
|
+
default: number;
|
|
1829
|
+
};
|
|
1830
|
+
minTime: {
|
|
1831
|
+
type: StringConstructor;
|
|
1832
|
+
validator: (val: string) => boolean;
|
|
1833
|
+
};
|
|
1834
|
+
maxTime: {
|
|
1835
|
+
type: StringConstructor;
|
|
1836
|
+
validator: (val: string) => boolean;
|
|
1837
|
+
};
|
|
1838
|
+
columnsType: {
|
|
1839
|
+
type: import('vue').PropType<import('vant').TimePickerColumnType[]>;
|
|
1840
|
+
default: () => string[];
|
|
1841
|
+
};
|
|
1842
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("change" | "update:modelValue" | "cancel" | "confirm")[], "change" | "update:modelValue" | "cancel" | "confirm", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1843
|
+
loading: BooleanConstructor;
|
|
1844
|
+
readonly: BooleanConstructor;
|
|
1845
|
+
allowHtml: BooleanConstructor;
|
|
1846
|
+
optionHeight: {
|
|
1847
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1848
|
+
default: number;
|
|
1849
|
+
};
|
|
1850
|
+
showToolbar: {
|
|
1851
|
+
type: BooleanConstructor;
|
|
1852
|
+
default: true;
|
|
1853
|
+
};
|
|
1854
|
+
swipeDuration: {
|
|
1855
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1856
|
+
default: number;
|
|
1857
|
+
};
|
|
1858
|
+
visibleOptionNum: {
|
|
1859
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1860
|
+
default: number;
|
|
1861
|
+
};
|
|
1862
|
+
} & {
|
|
1863
|
+
title: StringConstructor;
|
|
1864
|
+
cancelButtonText: StringConstructor;
|
|
1865
|
+
confirmButtonText: StringConstructor;
|
|
1866
|
+
} & {
|
|
1867
|
+
modelValue: {
|
|
1868
|
+
type: import('vue').PropType<string[]>;
|
|
1869
|
+
default: () => never[];
|
|
1870
|
+
};
|
|
1871
|
+
filter: import('vue').PropType<(columnType: string, options: import('vant').PickerOption[], values: string[]) => import('vant').PickerOption[]>;
|
|
1872
|
+
formatter: {
|
|
1873
|
+
type: import('vue').PropType<(type: string, option: import('vant').PickerOption) => import('vant').PickerOption>;
|
|
1874
|
+
default: (type: string, option: import('vant').PickerOption) => import('vant').PickerOption;
|
|
1875
|
+
};
|
|
1876
|
+
} & {
|
|
1877
|
+
minHour: {
|
|
1878
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1879
|
+
default: number;
|
|
1880
|
+
};
|
|
1881
|
+
maxHour: {
|
|
1882
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1883
|
+
default: number;
|
|
1884
|
+
};
|
|
1885
|
+
minMinute: {
|
|
1886
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1887
|
+
default: number;
|
|
1888
|
+
};
|
|
1889
|
+
maxMinute: {
|
|
1890
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1891
|
+
default: number;
|
|
1892
|
+
};
|
|
1893
|
+
minSecond: {
|
|
1894
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1895
|
+
default: number;
|
|
1896
|
+
};
|
|
1897
|
+
maxSecond: {
|
|
1898
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1899
|
+
default: number;
|
|
1900
|
+
};
|
|
1901
|
+
minTime: {
|
|
1902
|
+
type: StringConstructor;
|
|
1903
|
+
validator: (val: string) => boolean;
|
|
1904
|
+
};
|
|
1905
|
+
maxTime: {
|
|
1906
|
+
type: StringConstructor;
|
|
1907
|
+
validator: (val: string) => boolean;
|
|
1908
|
+
};
|
|
1909
|
+
columnsType: {
|
|
1910
|
+
type: import('vue').PropType<import('vant').TimePickerColumnType[]>;
|
|
1911
|
+
default: () => string[];
|
|
1912
|
+
};
|
|
1913
|
+
}>> & Readonly<{
|
|
1914
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1915
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
1916
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1917
|
+
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
1918
|
+
}>, {
|
|
1919
|
+
formatter: (type: string, option: import('vant').PickerOption) => import('vant').PickerOption;
|
|
1920
|
+
modelValue: string[];
|
|
1921
|
+
readonly: boolean;
|
|
1922
|
+
loading: boolean;
|
|
1923
|
+
allowHtml: boolean;
|
|
1924
|
+
optionHeight: string | number;
|
|
1925
|
+
showToolbar: boolean;
|
|
1926
|
+
swipeDuration: string | number;
|
|
1927
|
+
visibleOptionNum: string | number;
|
|
1928
|
+
columnsType: import('vant').TimePickerColumnType[];
|
|
1929
|
+
minHour: string | number;
|
|
1930
|
+
maxHour: string | number;
|
|
1931
|
+
minMinute: string | number;
|
|
1932
|
+
maxMinute: string | number;
|
|
1933
|
+
minSecond: string | number;
|
|
1934
|
+
maxSecond: string | number;
|
|
1935
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>>;
|
|
1936
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|