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