@snabcentr/vue-ui-lib 3.4.13 → 3.5.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/dist/manifest.json +1 -1
- package/dist/sc-vue-ui-lib.js +8458 -8191
- package/dist/sc-vue-ui-lib.js.map +1 -1
- package/dist/sc-vue-ui-lib.umd.cjs +171 -171
- package/dist/sc-vue-ui-lib.umd.cjs.map +1 -1
- package/dist/src/components/catalog/dialogs/add-product-to-cart-dialog.vue.d.ts +292 -1
- package/dist/src/components/configurators/kozyrek/kozyrek-configurator-params-form.vue.d.ts +588 -2
- package/dist/src/components/configurators/kozyrek/kozyrek-configurator.vue.d.ts +930 -1
- package/dist/src/components/configurators/metal-for-doors/metal-for-doors-configurator-form.vue.d.ts +615 -12
- package/dist/src/components/configurators/metal-for-doors/metal-for-doors-configurator.vue.d.ts +3687 -1
- package/dist/src/components/configurators/mosquito/mosquito-configurator-form.vue.d.ts +4133 -2
- package/dist/src/components/configurators/mosquito/mosquito-configurator.vue.d.ts +4460 -1
- package/dist/src/components/configurators/strip/strip-configurator-form.vue.d.ts +4574 -2
- package/dist/src/components/configurators/strip/strip-configurator-line-item.vue.d.ts +817 -18
- package/dist/src/components/configurators/strip/strip-configurator.vue.d.ts +4897 -1
- package/dist/src/components/inputs/debounced-input-number.vue.d.ts +27 -5
- package/dist/src/helpers/index.d.ts +1 -0
- package/dist/src/helpers/input-helper.d.ts +31 -0
- package/dist/src/helpers/validators.d.ts +41 -0
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { FormRules } from 'naive-ui';
|
|
1
2
|
import { ICartItemBase } from '@snabcentr/common-lib';
|
|
2
3
|
import { IValue } from '../../../properties';
|
|
3
4
|
import { IConfiguratorParamsKozyrek } from './interfaces/i-configurator-params-kozyrek';
|
|
@@ -34,7 +35,303 @@ declare const _default: import('vue').DefineComponent<IValue<ICartItemBase<IConf
|
|
|
34
35
|
* Индекс выбранного шаблона.
|
|
35
36
|
*/
|
|
36
37
|
selectTemplateIndex: number;
|
|
37
|
-
}, {
|
|
38
|
+
}, {
|
|
39
|
+
/**
|
|
40
|
+
* Валидирует форму.
|
|
41
|
+
*/
|
|
42
|
+
validate: import('naive-ui/es/form/src/interface').FormValidate | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* Ссылка на форму.
|
|
45
|
+
*/
|
|
46
|
+
formReference: Readonly<import('vue').ShallowRef<import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
47
|
+
readonly inline: BooleanConstructor;
|
|
48
|
+
readonly labelWidth: import('vue').PropType<number | string>;
|
|
49
|
+
readonly labelAlign: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelAlign>;
|
|
50
|
+
readonly labelPlacement: {
|
|
51
|
+
readonly type: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelPlacement>;
|
|
52
|
+
readonly default: "top";
|
|
53
|
+
};
|
|
54
|
+
readonly model: {
|
|
55
|
+
readonly type: import('vue').PropType<Record<string, any>>;
|
|
56
|
+
readonly default: () => void;
|
|
57
|
+
};
|
|
58
|
+
readonly rules: import('vue').PropType<FormRules>;
|
|
59
|
+
readonly disabled: BooleanConstructor;
|
|
60
|
+
readonly size: import('vue').PropType<import('naive-ui/es/form/src/interface').Size>;
|
|
61
|
+
readonly showRequireMark: {
|
|
62
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
63
|
+
readonly default: undefined;
|
|
64
|
+
};
|
|
65
|
+
readonly requireMarkPlacement: import('vue').PropType<"left" | "right" | "right-hanging">;
|
|
66
|
+
readonly showFeedback: {
|
|
67
|
+
readonly type: BooleanConstructor;
|
|
68
|
+
readonly default: true;
|
|
69
|
+
};
|
|
70
|
+
readonly onSubmit: {
|
|
71
|
+
readonly type: import('vue').PropType<(e: Event) => void>;
|
|
72
|
+
readonly default: (e: Event) => void;
|
|
73
|
+
};
|
|
74
|
+
readonly showLabel: {
|
|
75
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
76
|
+
readonly default: undefined;
|
|
77
|
+
};
|
|
78
|
+
readonly validateMessages: import('vue').PropType<Partial<import('naive-ui/es/form/src/interface').FormValidateMessages>>;
|
|
79
|
+
readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
80
|
+
blankHeightSmall: string;
|
|
81
|
+
blankHeightMedium: string;
|
|
82
|
+
blankHeightLarge: string;
|
|
83
|
+
lineHeight: string;
|
|
84
|
+
labelTextColor: string;
|
|
85
|
+
asteriskColor: string;
|
|
86
|
+
feedbackTextColorError: string;
|
|
87
|
+
feedbackTextColorWarning: string;
|
|
88
|
+
feedbackTextColor: string;
|
|
89
|
+
feedbackPadding: string;
|
|
90
|
+
feedbackHeightSmall: string;
|
|
91
|
+
feedbackHeightMedium: string;
|
|
92
|
+
feedbackHeightLarge: string;
|
|
93
|
+
feedbackFontSizeSmall: string;
|
|
94
|
+
feedbackFontSizeMedium: string;
|
|
95
|
+
feedbackFontSizeLarge: string;
|
|
96
|
+
labelFontSizeLeftSmall: string;
|
|
97
|
+
labelFontSizeLeftMedium: string;
|
|
98
|
+
labelFontSizeLeftLarge: string;
|
|
99
|
+
labelFontSizeTopSmall: string;
|
|
100
|
+
labelFontSizeTopMedium: string;
|
|
101
|
+
labelFontSizeTopLarge: string;
|
|
102
|
+
labelHeightSmall: string;
|
|
103
|
+
labelHeightMedium: string;
|
|
104
|
+
labelHeightLarge: string;
|
|
105
|
+
labelPaddingVertical: string;
|
|
106
|
+
labelPaddingHorizontal: string;
|
|
107
|
+
labelTextAlignVertical: string;
|
|
108
|
+
labelTextAlignHorizontal: string;
|
|
109
|
+
labelFontWeight: string;
|
|
110
|
+
}, any>>;
|
|
111
|
+
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
112
|
+
blankHeightSmall: string;
|
|
113
|
+
blankHeightMedium: string;
|
|
114
|
+
blankHeightLarge: string;
|
|
115
|
+
lineHeight: string;
|
|
116
|
+
labelTextColor: string;
|
|
117
|
+
asteriskColor: string;
|
|
118
|
+
feedbackTextColorError: string;
|
|
119
|
+
feedbackTextColorWarning: string;
|
|
120
|
+
feedbackTextColor: string;
|
|
121
|
+
feedbackPadding: string;
|
|
122
|
+
feedbackHeightSmall: string;
|
|
123
|
+
feedbackHeightMedium: string;
|
|
124
|
+
feedbackHeightLarge: string;
|
|
125
|
+
feedbackFontSizeSmall: string;
|
|
126
|
+
feedbackFontSizeMedium: string;
|
|
127
|
+
feedbackFontSizeLarge: string;
|
|
128
|
+
labelFontSizeLeftSmall: string;
|
|
129
|
+
labelFontSizeLeftMedium: string;
|
|
130
|
+
labelFontSizeLeftLarge: string;
|
|
131
|
+
labelFontSizeTopSmall: string;
|
|
132
|
+
labelFontSizeTopMedium: string;
|
|
133
|
+
labelFontSizeTopLarge: string;
|
|
134
|
+
labelHeightSmall: string;
|
|
135
|
+
labelHeightMedium: string;
|
|
136
|
+
labelHeightLarge: string;
|
|
137
|
+
labelPaddingVertical: string;
|
|
138
|
+
labelPaddingHorizontal: string;
|
|
139
|
+
labelTextAlignVertical: string;
|
|
140
|
+
labelTextAlignHorizontal: string;
|
|
141
|
+
labelFontWeight: string;
|
|
142
|
+
}, any>>>;
|
|
143
|
+
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
144
|
+
blankHeightSmall: string;
|
|
145
|
+
blankHeightMedium: string;
|
|
146
|
+
blankHeightLarge: string;
|
|
147
|
+
lineHeight: string;
|
|
148
|
+
labelTextColor: string;
|
|
149
|
+
asteriskColor: string;
|
|
150
|
+
feedbackTextColorError: string;
|
|
151
|
+
feedbackTextColorWarning: string;
|
|
152
|
+
feedbackTextColor: string;
|
|
153
|
+
feedbackPadding: string;
|
|
154
|
+
feedbackHeightSmall: string;
|
|
155
|
+
feedbackHeightMedium: string;
|
|
156
|
+
feedbackHeightLarge: string;
|
|
157
|
+
feedbackFontSizeSmall: string;
|
|
158
|
+
feedbackFontSizeMedium: string;
|
|
159
|
+
feedbackFontSizeLarge: string;
|
|
160
|
+
labelFontSizeLeftSmall: string;
|
|
161
|
+
labelFontSizeLeftMedium: string;
|
|
162
|
+
labelFontSizeLeftLarge: string;
|
|
163
|
+
labelFontSizeTopSmall: string;
|
|
164
|
+
labelFontSizeTopMedium: string;
|
|
165
|
+
labelFontSizeTopLarge: string;
|
|
166
|
+
labelHeightSmall: string;
|
|
167
|
+
labelHeightMedium: string;
|
|
168
|
+
labelHeightLarge: string;
|
|
169
|
+
labelPaddingVertical: string;
|
|
170
|
+
labelPaddingHorizontal: string;
|
|
171
|
+
labelTextAlignVertical: string;
|
|
172
|
+
labelTextAlignHorizontal: string;
|
|
173
|
+
labelFontWeight: string;
|
|
174
|
+
}, any>>>;
|
|
175
|
+
}>> & Readonly<{}>, import('naive-ui').FormInst & {
|
|
176
|
+
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
177
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
178
|
+
readonly inline: boolean;
|
|
179
|
+
readonly disabled: boolean;
|
|
180
|
+
readonly onSubmit: (e: Event) => void;
|
|
181
|
+
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
182
|
+
readonly model: Record<string, any>;
|
|
183
|
+
readonly showRequireMark: boolean | undefined;
|
|
184
|
+
readonly showFeedback: boolean;
|
|
185
|
+
readonly showLabel: boolean | undefined;
|
|
186
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
187
|
+
P: {};
|
|
188
|
+
B: {};
|
|
189
|
+
D: {};
|
|
190
|
+
C: {};
|
|
191
|
+
M: {};
|
|
192
|
+
Defaults: {};
|
|
193
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
194
|
+
readonly inline: BooleanConstructor;
|
|
195
|
+
readonly labelWidth: import('vue').PropType<number | string>;
|
|
196
|
+
readonly labelAlign: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelAlign>;
|
|
197
|
+
readonly labelPlacement: {
|
|
198
|
+
readonly type: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelPlacement>;
|
|
199
|
+
readonly default: "top";
|
|
200
|
+
};
|
|
201
|
+
readonly model: {
|
|
202
|
+
readonly type: import('vue').PropType<Record<string, any>>;
|
|
203
|
+
readonly default: () => void;
|
|
204
|
+
};
|
|
205
|
+
readonly rules: import('vue').PropType<FormRules>;
|
|
206
|
+
readonly disabled: BooleanConstructor;
|
|
207
|
+
readonly size: import('vue').PropType<import('naive-ui/es/form/src/interface').Size>;
|
|
208
|
+
readonly showRequireMark: {
|
|
209
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
210
|
+
readonly default: undefined;
|
|
211
|
+
};
|
|
212
|
+
readonly requireMarkPlacement: import('vue').PropType<"left" | "right" | "right-hanging">;
|
|
213
|
+
readonly showFeedback: {
|
|
214
|
+
readonly type: BooleanConstructor;
|
|
215
|
+
readonly default: true;
|
|
216
|
+
};
|
|
217
|
+
readonly onSubmit: {
|
|
218
|
+
readonly type: import('vue').PropType<(e: Event) => void>;
|
|
219
|
+
readonly default: (e: Event) => void;
|
|
220
|
+
};
|
|
221
|
+
readonly showLabel: {
|
|
222
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
223
|
+
readonly default: undefined;
|
|
224
|
+
};
|
|
225
|
+
readonly validateMessages: import('vue').PropType<Partial<import('naive-ui/es/form/src/interface').FormValidateMessages>>;
|
|
226
|
+
readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
227
|
+
blankHeightSmall: string;
|
|
228
|
+
blankHeightMedium: string;
|
|
229
|
+
blankHeightLarge: string;
|
|
230
|
+
lineHeight: string;
|
|
231
|
+
labelTextColor: string;
|
|
232
|
+
asteriskColor: string;
|
|
233
|
+
feedbackTextColorError: string;
|
|
234
|
+
feedbackTextColorWarning: string;
|
|
235
|
+
feedbackTextColor: string;
|
|
236
|
+
feedbackPadding: string;
|
|
237
|
+
feedbackHeightSmall: string;
|
|
238
|
+
feedbackHeightMedium: string;
|
|
239
|
+
feedbackHeightLarge: string;
|
|
240
|
+
feedbackFontSizeSmall: string;
|
|
241
|
+
feedbackFontSizeMedium: string;
|
|
242
|
+
feedbackFontSizeLarge: string;
|
|
243
|
+
labelFontSizeLeftSmall: string;
|
|
244
|
+
labelFontSizeLeftMedium: string;
|
|
245
|
+
labelFontSizeLeftLarge: string;
|
|
246
|
+
labelFontSizeTopSmall: string;
|
|
247
|
+
labelFontSizeTopMedium: string;
|
|
248
|
+
labelFontSizeTopLarge: string;
|
|
249
|
+
labelHeightSmall: string;
|
|
250
|
+
labelHeightMedium: string;
|
|
251
|
+
labelHeightLarge: string;
|
|
252
|
+
labelPaddingVertical: string;
|
|
253
|
+
labelPaddingHorizontal: string;
|
|
254
|
+
labelTextAlignVertical: string;
|
|
255
|
+
labelTextAlignHorizontal: string;
|
|
256
|
+
labelFontWeight: string;
|
|
257
|
+
}, any>>;
|
|
258
|
+
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
259
|
+
blankHeightSmall: string;
|
|
260
|
+
blankHeightMedium: string;
|
|
261
|
+
blankHeightLarge: string;
|
|
262
|
+
lineHeight: string;
|
|
263
|
+
labelTextColor: string;
|
|
264
|
+
asteriskColor: string;
|
|
265
|
+
feedbackTextColorError: string;
|
|
266
|
+
feedbackTextColorWarning: string;
|
|
267
|
+
feedbackTextColor: string;
|
|
268
|
+
feedbackPadding: string;
|
|
269
|
+
feedbackHeightSmall: string;
|
|
270
|
+
feedbackHeightMedium: string;
|
|
271
|
+
feedbackHeightLarge: string;
|
|
272
|
+
feedbackFontSizeSmall: string;
|
|
273
|
+
feedbackFontSizeMedium: string;
|
|
274
|
+
feedbackFontSizeLarge: string;
|
|
275
|
+
labelFontSizeLeftSmall: string;
|
|
276
|
+
labelFontSizeLeftMedium: string;
|
|
277
|
+
labelFontSizeLeftLarge: string;
|
|
278
|
+
labelFontSizeTopSmall: string;
|
|
279
|
+
labelFontSizeTopMedium: string;
|
|
280
|
+
labelFontSizeTopLarge: string;
|
|
281
|
+
labelHeightSmall: string;
|
|
282
|
+
labelHeightMedium: string;
|
|
283
|
+
labelHeightLarge: string;
|
|
284
|
+
labelPaddingVertical: string;
|
|
285
|
+
labelPaddingHorizontal: string;
|
|
286
|
+
labelTextAlignVertical: string;
|
|
287
|
+
labelTextAlignHorizontal: string;
|
|
288
|
+
labelFontWeight: string;
|
|
289
|
+
}, any>>>;
|
|
290
|
+
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
291
|
+
blankHeightSmall: string;
|
|
292
|
+
blankHeightMedium: string;
|
|
293
|
+
blankHeightLarge: string;
|
|
294
|
+
lineHeight: string;
|
|
295
|
+
labelTextColor: string;
|
|
296
|
+
asteriskColor: string;
|
|
297
|
+
feedbackTextColorError: string;
|
|
298
|
+
feedbackTextColorWarning: string;
|
|
299
|
+
feedbackTextColor: string;
|
|
300
|
+
feedbackPadding: string;
|
|
301
|
+
feedbackHeightSmall: string;
|
|
302
|
+
feedbackHeightMedium: string;
|
|
303
|
+
feedbackHeightLarge: string;
|
|
304
|
+
feedbackFontSizeSmall: string;
|
|
305
|
+
feedbackFontSizeMedium: string;
|
|
306
|
+
feedbackFontSizeLarge: string;
|
|
307
|
+
labelFontSizeLeftSmall: string;
|
|
308
|
+
labelFontSizeLeftMedium: string;
|
|
309
|
+
labelFontSizeLeftLarge: string;
|
|
310
|
+
labelFontSizeTopSmall: string;
|
|
311
|
+
labelFontSizeTopMedium: string;
|
|
312
|
+
labelFontSizeTopLarge: string;
|
|
313
|
+
labelHeightSmall: string;
|
|
314
|
+
labelHeightMedium: string;
|
|
315
|
+
labelHeightLarge: string;
|
|
316
|
+
labelPaddingVertical: string;
|
|
317
|
+
labelPaddingHorizontal: string;
|
|
318
|
+
labelTextAlignVertical: string;
|
|
319
|
+
labelTextAlignHorizontal: string;
|
|
320
|
+
labelFontWeight: string;
|
|
321
|
+
}, any>>>;
|
|
322
|
+
}>> & Readonly<{}>, import('naive-ui').FormInst & {
|
|
323
|
+
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
324
|
+
}, {}, {}, {}, {
|
|
325
|
+
readonly inline: boolean;
|
|
326
|
+
readonly disabled: boolean;
|
|
327
|
+
readonly onSubmit: (e: Event) => void;
|
|
328
|
+
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
329
|
+
readonly model: Record<string, any>;
|
|
330
|
+
readonly showRequireMark: boolean | undefined;
|
|
331
|
+
readonly showFeedback: boolean;
|
|
332
|
+
readonly showLabel: boolean | undefined;
|
|
333
|
+
}> | null>>;
|
|
334
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
38
335
|
submit: (data: ICartItemBase<IConfiguratorParamsKozyrek>, validation?: import('@snabcentr/common-lib').IFormValidationResult | undefined, callback?: ((...additionalParams: any[]) => void) | undefined) => any;
|
|
39
336
|
"update:params": (params: IConfiguratorParamsKozyrek, ...additionalParams: any[]) => any;
|
|
40
337
|
"update:value": (value: ICartItemBase<IConfiguratorParamsKozyrek>, ...additionalParams: any[]) => any;
|
|
@@ -80,5 +377,294 @@ declare const _default: import('vue').DefineComponent<IValue<ICartItemBase<IConf
|
|
|
80
377
|
isProductSearching: boolean;
|
|
81
378
|
isSubmitProcessing: boolean;
|
|
82
379
|
validation: IKozyrekValidation;
|
|
83
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
380
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
381
|
+
'form-reference': import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
382
|
+
readonly inline: BooleanConstructor;
|
|
383
|
+
readonly labelWidth: import('vue').PropType<number | string>;
|
|
384
|
+
readonly labelAlign: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelAlign>;
|
|
385
|
+
readonly labelPlacement: {
|
|
386
|
+
readonly type: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelPlacement>;
|
|
387
|
+
readonly default: "top";
|
|
388
|
+
};
|
|
389
|
+
readonly model: {
|
|
390
|
+
readonly type: import('vue').PropType<Record<string, any>>;
|
|
391
|
+
readonly default: () => void;
|
|
392
|
+
};
|
|
393
|
+
readonly rules: import('vue').PropType<FormRules>;
|
|
394
|
+
readonly disabled: BooleanConstructor;
|
|
395
|
+
readonly size: import('vue').PropType<import('naive-ui/es/form/src/interface').Size>;
|
|
396
|
+
readonly showRequireMark: {
|
|
397
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
398
|
+
readonly default: undefined;
|
|
399
|
+
};
|
|
400
|
+
readonly requireMarkPlacement: import('vue').PropType<"left" | "right" | "right-hanging">;
|
|
401
|
+
readonly showFeedback: {
|
|
402
|
+
readonly type: BooleanConstructor;
|
|
403
|
+
readonly default: true;
|
|
404
|
+
};
|
|
405
|
+
readonly onSubmit: {
|
|
406
|
+
readonly type: import('vue').PropType<(e: Event) => void>;
|
|
407
|
+
readonly default: (e: Event) => void;
|
|
408
|
+
};
|
|
409
|
+
readonly showLabel: {
|
|
410
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
411
|
+
readonly default: undefined;
|
|
412
|
+
};
|
|
413
|
+
readonly validateMessages: import('vue').PropType<Partial<import('naive-ui/es/form/src/interface').FormValidateMessages>>;
|
|
414
|
+
readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
415
|
+
blankHeightSmall: string;
|
|
416
|
+
blankHeightMedium: string;
|
|
417
|
+
blankHeightLarge: string;
|
|
418
|
+
lineHeight: string;
|
|
419
|
+
labelTextColor: string;
|
|
420
|
+
asteriskColor: string;
|
|
421
|
+
feedbackTextColorError: string;
|
|
422
|
+
feedbackTextColorWarning: string;
|
|
423
|
+
feedbackTextColor: string;
|
|
424
|
+
feedbackPadding: string;
|
|
425
|
+
feedbackHeightSmall: string;
|
|
426
|
+
feedbackHeightMedium: string;
|
|
427
|
+
feedbackHeightLarge: string;
|
|
428
|
+
feedbackFontSizeSmall: string;
|
|
429
|
+
feedbackFontSizeMedium: string;
|
|
430
|
+
feedbackFontSizeLarge: string;
|
|
431
|
+
labelFontSizeLeftSmall: string;
|
|
432
|
+
labelFontSizeLeftMedium: string;
|
|
433
|
+
labelFontSizeLeftLarge: string;
|
|
434
|
+
labelFontSizeTopSmall: string;
|
|
435
|
+
labelFontSizeTopMedium: string;
|
|
436
|
+
labelFontSizeTopLarge: string;
|
|
437
|
+
labelHeightSmall: string;
|
|
438
|
+
labelHeightMedium: string;
|
|
439
|
+
labelHeightLarge: string;
|
|
440
|
+
labelPaddingVertical: string;
|
|
441
|
+
labelPaddingHorizontal: string;
|
|
442
|
+
labelTextAlignVertical: string;
|
|
443
|
+
labelTextAlignHorizontal: string;
|
|
444
|
+
labelFontWeight: string;
|
|
445
|
+
}, any>>;
|
|
446
|
+
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
447
|
+
blankHeightSmall: string;
|
|
448
|
+
blankHeightMedium: string;
|
|
449
|
+
blankHeightLarge: string;
|
|
450
|
+
lineHeight: string;
|
|
451
|
+
labelTextColor: string;
|
|
452
|
+
asteriskColor: string;
|
|
453
|
+
feedbackTextColorError: string;
|
|
454
|
+
feedbackTextColorWarning: string;
|
|
455
|
+
feedbackTextColor: string;
|
|
456
|
+
feedbackPadding: string;
|
|
457
|
+
feedbackHeightSmall: string;
|
|
458
|
+
feedbackHeightMedium: string;
|
|
459
|
+
feedbackHeightLarge: string;
|
|
460
|
+
feedbackFontSizeSmall: string;
|
|
461
|
+
feedbackFontSizeMedium: string;
|
|
462
|
+
feedbackFontSizeLarge: string;
|
|
463
|
+
labelFontSizeLeftSmall: string;
|
|
464
|
+
labelFontSizeLeftMedium: string;
|
|
465
|
+
labelFontSizeLeftLarge: string;
|
|
466
|
+
labelFontSizeTopSmall: string;
|
|
467
|
+
labelFontSizeTopMedium: string;
|
|
468
|
+
labelFontSizeTopLarge: string;
|
|
469
|
+
labelHeightSmall: string;
|
|
470
|
+
labelHeightMedium: string;
|
|
471
|
+
labelHeightLarge: string;
|
|
472
|
+
labelPaddingVertical: string;
|
|
473
|
+
labelPaddingHorizontal: string;
|
|
474
|
+
labelTextAlignVertical: string;
|
|
475
|
+
labelTextAlignHorizontal: string;
|
|
476
|
+
labelFontWeight: string;
|
|
477
|
+
}, any>>>;
|
|
478
|
+
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
479
|
+
blankHeightSmall: string;
|
|
480
|
+
blankHeightMedium: string;
|
|
481
|
+
blankHeightLarge: string;
|
|
482
|
+
lineHeight: string;
|
|
483
|
+
labelTextColor: string;
|
|
484
|
+
asteriskColor: string;
|
|
485
|
+
feedbackTextColorError: string;
|
|
486
|
+
feedbackTextColorWarning: string;
|
|
487
|
+
feedbackTextColor: string;
|
|
488
|
+
feedbackPadding: string;
|
|
489
|
+
feedbackHeightSmall: string;
|
|
490
|
+
feedbackHeightMedium: string;
|
|
491
|
+
feedbackHeightLarge: string;
|
|
492
|
+
feedbackFontSizeSmall: string;
|
|
493
|
+
feedbackFontSizeMedium: string;
|
|
494
|
+
feedbackFontSizeLarge: string;
|
|
495
|
+
labelFontSizeLeftSmall: string;
|
|
496
|
+
labelFontSizeLeftMedium: string;
|
|
497
|
+
labelFontSizeLeftLarge: string;
|
|
498
|
+
labelFontSizeTopSmall: string;
|
|
499
|
+
labelFontSizeTopMedium: string;
|
|
500
|
+
labelFontSizeTopLarge: string;
|
|
501
|
+
labelHeightSmall: string;
|
|
502
|
+
labelHeightMedium: string;
|
|
503
|
+
labelHeightLarge: string;
|
|
504
|
+
labelPaddingVertical: string;
|
|
505
|
+
labelPaddingHorizontal: string;
|
|
506
|
+
labelTextAlignVertical: string;
|
|
507
|
+
labelTextAlignHorizontal: string;
|
|
508
|
+
labelFontWeight: string;
|
|
509
|
+
}, any>>>;
|
|
510
|
+
}>> & Readonly<{}>, import('naive-ui').FormInst & {
|
|
511
|
+
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
512
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
513
|
+
readonly inline: boolean;
|
|
514
|
+
readonly disabled: boolean;
|
|
515
|
+
readonly onSubmit: (e: Event) => void;
|
|
516
|
+
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
517
|
+
readonly model: Record<string, any>;
|
|
518
|
+
readonly showRequireMark: boolean | undefined;
|
|
519
|
+
readonly showFeedback: boolean;
|
|
520
|
+
readonly showLabel: boolean | undefined;
|
|
521
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
522
|
+
P: {};
|
|
523
|
+
B: {};
|
|
524
|
+
D: {};
|
|
525
|
+
C: {};
|
|
526
|
+
M: {};
|
|
527
|
+
Defaults: {};
|
|
528
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
529
|
+
readonly inline: BooleanConstructor;
|
|
530
|
+
readonly labelWidth: import('vue').PropType<number | string>;
|
|
531
|
+
readonly labelAlign: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelAlign>;
|
|
532
|
+
readonly labelPlacement: {
|
|
533
|
+
readonly type: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelPlacement>;
|
|
534
|
+
readonly default: "top";
|
|
535
|
+
};
|
|
536
|
+
readonly model: {
|
|
537
|
+
readonly type: import('vue').PropType<Record<string, any>>;
|
|
538
|
+
readonly default: () => void;
|
|
539
|
+
};
|
|
540
|
+
readonly rules: import('vue').PropType<FormRules>;
|
|
541
|
+
readonly disabled: BooleanConstructor;
|
|
542
|
+
readonly size: import('vue').PropType<import('naive-ui/es/form/src/interface').Size>;
|
|
543
|
+
readonly showRequireMark: {
|
|
544
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
545
|
+
readonly default: undefined;
|
|
546
|
+
};
|
|
547
|
+
readonly requireMarkPlacement: import('vue').PropType<"left" | "right" | "right-hanging">;
|
|
548
|
+
readonly showFeedback: {
|
|
549
|
+
readonly type: BooleanConstructor;
|
|
550
|
+
readonly default: true;
|
|
551
|
+
};
|
|
552
|
+
readonly onSubmit: {
|
|
553
|
+
readonly type: import('vue').PropType<(e: Event) => void>;
|
|
554
|
+
readonly default: (e: Event) => void;
|
|
555
|
+
};
|
|
556
|
+
readonly showLabel: {
|
|
557
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
558
|
+
readonly default: undefined;
|
|
559
|
+
};
|
|
560
|
+
readonly validateMessages: import('vue').PropType<Partial<import('naive-ui/es/form/src/interface').FormValidateMessages>>;
|
|
561
|
+
readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
562
|
+
blankHeightSmall: string;
|
|
563
|
+
blankHeightMedium: string;
|
|
564
|
+
blankHeightLarge: string;
|
|
565
|
+
lineHeight: string;
|
|
566
|
+
labelTextColor: string;
|
|
567
|
+
asteriskColor: string;
|
|
568
|
+
feedbackTextColorError: string;
|
|
569
|
+
feedbackTextColorWarning: string;
|
|
570
|
+
feedbackTextColor: string;
|
|
571
|
+
feedbackPadding: string;
|
|
572
|
+
feedbackHeightSmall: string;
|
|
573
|
+
feedbackHeightMedium: string;
|
|
574
|
+
feedbackHeightLarge: string;
|
|
575
|
+
feedbackFontSizeSmall: string;
|
|
576
|
+
feedbackFontSizeMedium: string;
|
|
577
|
+
feedbackFontSizeLarge: string;
|
|
578
|
+
labelFontSizeLeftSmall: string;
|
|
579
|
+
labelFontSizeLeftMedium: string;
|
|
580
|
+
labelFontSizeLeftLarge: string;
|
|
581
|
+
labelFontSizeTopSmall: string;
|
|
582
|
+
labelFontSizeTopMedium: string;
|
|
583
|
+
labelFontSizeTopLarge: string;
|
|
584
|
+
labelHeightSmall: string;
|
|
585
|
+
labelHeightMedium: string;
|
|
586
|
+
labelHeightLarge: string;
|
|
587
|
+
labelPaddingVertical: string;
|
|
588
|
+
labelPaddingHorizontal: string;
|
|
589
|
+
labelTextAlignVertical: string;
|
|
590
|
+
labelTextAlignHorizontal: string;
|
|
591
|
+
labelFontWeight: string;
|
|
592
|
+
}, any>>;
|
|
593
|
+
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
594
|
+
blankHeightSmall: string;
|
|
595
|
+
blankHeightMedium: string;
|
|
596
|
+
blankHeightLarge: string;
|
|
597
|
+
lineHeight: string;
|
|
598
|
+
labelTextColor: string;
|
|
599
|
+
asteriskColor: string;
|
|
600
|
+
feedbackTextColorError: string;
|
|
601
|
+
feedbackTextColorWarning: string;
|
|
602
|
+
feedbackTextColor: string;
|
|
603
|
+
feedbackPadding: string;
|
|
604
|
+
feedbackHeightSmall: string;
|
|
605
|
+
feedbackHeightMedium: string;
|
|
606
|
+
feedbackHeightLarge: string;
|
|
607
|
+
feedbackFontSizeSmall: string;
|
|
608
|
+
feedbackFontSizeMedium: string;
|
|
609
|
+
feedbackFontSizeLarge: string;
|
|
610
|
+
labelFontSizeLeftSmall: string;
|
|
611
|
+
labelFontSizeLeftMedium: string;
|
|
612
|
+
labelFontSizeLeftLarge: string;
|
|
613
|
+
labelFontSizeTopSmall: string;
|
|
614
|
+
labelFontSizeTopMedium: string;
|
|
615
|
+
labelFontSizeTopLarge: string;
|
|
616
|
+
labelHeightSmall: string;
|
|
617
|
+
labelHeightMedium: string;
|
|
618
|
+
labelHeightLarge: string;
|
|
619
|
+
labelPaddingVertical: string;
|
|
620
|
+
labelPaddingHorizontal: string;
|
|
621
|
+
labelTextAlignVertical: string;
|
|
622
|
+
labelTextAlignHorizontal: string;
|
|
623
|
+
labelFontWeight: string;
|
|
624
|
+
}, any>>>;
|
|
625
|
+
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
626
|
+
blankHeightSmall: string;
|
|
627
|
+
blankHeightMedium: string;
|
|
628
|
+
blankHeightLarge: string;
|
|
629
|
+
lineHeight: string;
|
|
630
|
+
labelTextColor: string;
|
|
631
|
+
asteriskColor: string;
|
|
632
|
+
feedbackTextColorError: string;
|
|
633
|
+
feedbackTextColorWarning: string;
|
|
634
|
+
feedbackTextColor: string;
|
|
635
|
+
feedbackPadding: string;
|
|
636
|
+
feedbackHeightSmall: string;
|
|
637
|
+
feedbackHeightMedium: string;
|
|
638
|
+
feedbackHeightLarge: string;
|
|
639
|
+
feedbackFontSizeSmall: string;
|
|
640
|
+
feedbackFontSizeMedium: string;
|
|
641
|
+
feedbackFontSizeLarge: string;
|
|
642
|
+
labelFontSizeLeftSmall: string;
|
|
643
|
+
labelFontSizeLeftMedium: string;
|
|
644
|
+
labelFontSizeLeftLarge: string;
|
|
645
|
+
labelFontSizeTopSmall: string;
|
|
646
|
+
labelFontSizeTopMedium: string;
|
|
647
|
+
labelFontSizeTopLarge: string;
|
|
648
|
+
labelHeightSmall: string;
|
|
649
|
+
labelHeightMedium: string;
|
|
650
|
+
labelHeightLarge: string;
|
|
651
|
+
labelPaddingVertical: string;
|
|
652
|
+
labelPaddingHorizontal: string;
|
|
653
|
+
labelTextAlignVertical: string;
|
|
654
|
+
labelTextAlignHorizontal: string;
|
|
655
|
+
labelFontWeight: string;
|
|
656
|
+
}, any>>>;
|
|
657
|
+
}>> & Readonly<{}>, import('naive-ui').FormInst & {
|
|
658
|
+
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
659
|
+
}, {}, {}, {}, {
|
|
660
|
+
readonly inline: boolean;
|
|
661
|
+
readonly disabled: boolean;
|
|
662
|
+
readonly onSubmit: (e: Event) => void;
|
|
663
|
+
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
664
|
+
readonly model: Record<string, any>;
|
|
665
|
+
readonly showRequireMark: boolean | undefined;
|
|
666
|
+
readonly showFeedback: boolean;
|
|
667
|
+
readonly showLabel: boolean | undefined;
|
|
668
|
+
}> | null;
|
|
669
|
+
}, any>;
|
|
84
670
|
export default _default;
|