@solfacil/girassol 0.19.0 → 0.19.2
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/style.css +1 -1
- package/dist/types/components/{informations/alert → alert}/Alert.vue.d.ts +2 -2
- package/dist/types/components/{informations/alert → alert}/index.d.ts +0 -0
- package/dist/types/components/{forms/button → buttons}/button/Button.vue.d.ts +2 -2
- package/dist/types/components/{forms/button → buttons}/button-destructive/ButtonDestructive.vue.d.ts +0 -0
- package/dist/types/components/{forms/button → buttons}/index.d.ts +0 -0
- package/dist/types/components/{filters/chip → chips}/removable-chip/RemovableChip.vue.d.ts +0 -0
- package/dist/types/components/{filters/chip → chips}/removable-chip/index.d.ts +0 -0
- package/dist/types/components/{filters/chip → chips}/removable-chip/types.d.ts +0 -0
- package/dist/types/components/{filters/chip → chips}/selectable-chip/SelectableChip.vue.d.ts +0 -0
- package/dist/types/components/{filters/chip → chips}/selectable-chip/index.d.ts +0 -0
- package/dist/types/components/{filters/chip → chips}/selectable-chip/types.d.ts +0 -0
- package/dist/types/components/{filters/chip → chips}/types.d.ts +0 -0
- package/dist/types/components/file-upload/FileUpload.vue.d.ts +2 -2
- package/dist/types/components/forms/inputs/input-text/InputText.vue.d.ts +1 -1
- package/dist/types/components/forms/inputs/input-textarea/InputTextarea.vue.d.ts +1 -1
- package/dist/types/components/forms/select/Select.vue.d.ts +2 -2
- package/dist/types/components/modals/modal/Modal.vue.d.ts +1 -1
- package/dist/types/components/modals/onboarding/Onboarding.vue.d.ts +1 -1
- package/dist/types/components/search/Search.vue.d.ts +2 -2
- package/dist/types/components/{informations/tag → tag}/Tag.vue.d.ts +2 -2
- package/dist/types/components/{informations/tag → tag}/index.d.ts +0 -0
- package/dist/types/components/{informations/text-value → text-value}/TextValue.vue.d.ts +0 -0
- package/dist/types/components/{informations/text-value → text-value}/index.d.ts +0 -0
- package/dist/types/components/{informations/text-value → text-value}/types.d.ts +0 -0
- package/dist/types/index.d.ts +386 -386
- package/package.json +1 -1
- package/vite.config.ts +3 -1
- package/windi.config.ts +18 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import type { App } from 'vue';
|
|
2
|
-
import { SolButton, SolButtonDestructive } from './components/
|
|
2
|
+
import { SolButton, SolButtonDestructive } from './components/buttons';
|
|
3
3
|
import { SolInputText, SolInputTextPassword, SolInputTextarea } from './components/forms/inputs';
|
|
4
4
|
import { SolSwitch } from './components/forms/switch';
|
|
5
5
|
import { SolRadio, SolRadioGroup } from './components/forms/radio';
|
|
6
6
|
import { SolCheckbox, SolCheckboxGroup } from './components/forms/checkbox';
|
|
7
7
|
import { SolSelect } from './components/forms/select';
|
|
8
|
-
import { SolSelectableChip } from './components/
|
|
9
|
-
import { SolRemovableChip } from './components/
|
|
10
|
-
import { SolTag } from './components/
|
|
11
|
-
import { SolAlert } from './components/
|
|
12
|
-
import { SolTextValue } from './components/
|
|
8
|
+
import { SolSelectableChip } from './components/chips/selectable-chip';
|
|
9
|
+
import { SolRemovableChip } from './components/chips/removable-chip';
|
|
10
|
+
import { SolTag } from './components/tag';
|
|
11
|
+
import { SolAlert } from './components/alert';
|
|
12
|
+
import { SolTextValue } from './components/text-value';
|
|
13
13
|
import { SolAccordion } from './components/accordion/';
|
|
14
14
|
import { SolTabs } from './components/tabs/';
|
|
15
15
|
import { SolSteps } from './components/steps/';
|
|
@@ -45,7 +45,7 @@ export declare const components: {
|
|
|
45
45
|
$data: {};
|
|
46
46
|
$props: Partial<{
|
|
47
47
|
onColor: boolean;
|
|
48
|
-
size: "small" | "
|
|
48
|
+
size: "small" | "large" | "medium";
|
|
49
49
|
variant: "primary" | "secondary" | "tertiary";
|
|
50
50
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
51
51
|
id: {
|
|
@@ -61,7 +61,7 @@ export declare const components: {
|
|
|
61
61
|
type: import("vue").PropType<boolean>;
|
|
62
62
|
};
|
|
63
63
|
size: {
|
|
64
|
-
type: import("vue").PropType<"small" | "
|
|
64
|
+
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
65
65
|
} & {
|
|
66
66
|
default: string;
|
|
67
67
|
};
|
|
@@ -101,7 +101,7 @@ export declare const components: {
|
|
|
101
101
|
type: import("vue").PropType<boolean>;
|
|
102
102
|
};
|
|
103
103
|
size: {
|
|
104
|
-
type: import("vue").PropType<"small" | "
|
|
104
|
+
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
105
105
|
} & {
|
|
106
106
|
default: string;
|
|
107
107
|
};
|
|
@@ -115,7 +115,7 @@ export declare const components: {
|
|
|
115
115
|
};
|
|
116
116
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
117
117
|
onColor: boolean;
|
|
118
|
-
size: "small" | "
|
|
118
|
+
size: "small" | "large" | "medium";
|
|
119
119
|
variant: "primary" | "secondary" | "tertiary";
|
|
120
120
|
}, {}, string> & {
|
|
121
121
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -151,7 +151,7 @@ export declare const components: {
|
|
|
151
151
|
type: import("vue").PropType<boolean>;
|
|
152
152
|
};
|
|
153
153
|
size: {
|
|
154
|
-
type: import("vue").PropType<"small" | "
|
|
154
|
+
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
155
155
|
} & {
|
|
156
156
|
default: string;
|
|
157
157
|
};
|
|
@@ -181,7 +181,7 @@ export declare const components: {
|
|
|
181
181
|
type: import("vue").PropType<boolean>;
|
|
182
182
|
};
|
|
183
183
|
size: {
|
|
184
|
-
type: import("vue").PropType<"small" | "
|
|
184
|
+
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
185
185
|
} & {
|
|
186
186
|
default: string;
|
|
187
187
|
};
|
|
@@ -195,7 +195,7 @@ export declare const components: {
|
|
|
195
195
|
};
|
|
196
196
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
197
197
|
onColor: boolean;
|
|
198
|
-
size: "small" | "
|
|
198
|
+
size: "small" | "large" | "medium";
|
|
199
199
|
variant: "primary" | "secondary" | "tertiary";
|
|
200
200
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
201
201
|
$slots: {
|
|
@@ -218,7 +218,7 @@ export declare const components: {
|
|
|
218
218
|
required: true;
|
|
219
219
|
};
|
|
220
220
|
size: {
|
|
221
|
-
type: import("vue").PropType<"small" | "
|
|
221
|
+
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
222
222
|
required: true;
|
|
223
223
|
};
|
|
224
224
|
loading: {
|
|
@@ -249,7 +249,7 @@ export declare const components: {
|
|
|
249
249
|
required: true;
|
|
250
250
|
};
|
|
251
251
|
size: {
|
|
252
|
-
type: import("vue").PropType<"small" | "
|
|
252
|
+
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
253
253
|
required: true;
|
|
254
254
|
};
|
|
255
255
|
loading: {
|
|
@@ -288,7 +288,7 @@ export declare const components: {
|
|
|
288
288
|
required: true;
|
|
289
289
|
};
|
|
290
290
|
size: {
|
|
291
|
-
type: import("vue").PropType<"small" | "
|
|
291
|
+
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
292
292
|
required: true;
|
|
293
293
|
};
|
|
294
294
|
loading: {
|
|
@@ -309,7 +309,7 @@ export declare const components: {
|
|
|
309
309
|
required: true;
|
|
310
310
|
};
|
|
311
311
|
size: {
|
|
312
|
-
type: import("vue").PropType<"small" | "
|
|
312
|
+
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
313
313
|
required: true;
|
|
314
314
|
};
|
|
315
315
|
loading: {
|
|
@@ -341,29 +341,29 @@ export declare const components: {
|
|
|
341
341
|
label: {
|
|
342
342
|
type: import("vue").PropType<string>;
|
|
343
343
|
};
|
|
344
|
-
|
|
345
|
-
type: import("vue").PropType<
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
modelValue: {
|
|
349
|
-
type: import("vue").PropType<string>;
|
|
344
|
+
size: {
|
|
345
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
346
|
+
} & {
|
|
347
|
+
default: string;
|
|
350
348
|
};
|
|
351
349
|
error: {
|
|
352
350
|
type: import("vue").PropType<string | null>;
|
|
353
351
|
} & {
|
|
354
352
|
default: null;
|
|
355
353
|
};
|
|
356
|
-
|
|
357
|
-
type: import("vue").PropType<"small" | "medium">;
|
|
358
|
-
} & {
|
|
359
|
-
default: string;
|
|
360
|
-
};
|
|
361
|
-
helperText: {
|
|
354
|
+
name: {
|
|
362
355
|
type: import("vue").PropType<string>;
|
|
356
|
+
required: true;
|
|
363
357
|
};
|
|
364
358
|
placeholder: {
|
|
365
359
|
type: import("vue").PropType<string>;
|
|
366
360
|
};
|
|
361
|
+
modelValue: {
|
|
362
|
+
type: import("vue").PropType<string>;
|
|
363
|
+
};
|
|
364
|
+
helperText: {
|
|
365
|
+
type: import("vue").PropType<string>;
|
|
366
|
+
};
|
|
367
367
|
useField: {
|
|
368
368
|
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
369
369
|
};
|
|
@@ -396,29 +396,29 @@ export declare const components: {
|
|
|
396
396
|
label: {
|
|
397
397
|
type: import("vue").PropType<string>;
|
|
398
398
|
};
|
|
399
|
-
|
|
400
|
-
type: import("vue").PropType<
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
modelValue: {
|
|
404
|
-
type: import("vue").PropType<string>;
|
|
399
|
+
size: {
|
|
400
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
401
|
+
} & {
|
|
402
|
+
default: string;
|
|
405
403
|
};
|
|
406
404
|
error: {
|
|
407
405
|
type: import("vue").PropType<string | null>;
|
|
408
406
|
} & {
|
|
409
407
|
default: null;
|
|
410
408
|
};
|
|
411
|
-
|
|
412
|
-
type: import("vue").PropType<"small" | "medium">;
|
|
413
|
-
} & {
|
|
414
|
-
default: string;
|
|
415
|
-
};
|
|
416
|
-
helperText: {
|
|
409
|
+
name: {
|
|
417
410
|
type: import("vue").PropType<string>;
|
|
411
|
+
required: true;
|
|
418
412
|
};
|
|
419
413
|
placeholder: {
|
|
420
414
|
type: import("vue").PropType<string>;
|
|
421
415
|
};
|
|
416
|
+
modelValue: {
|
|
417
|
+
type: import("vue").PropType<string>;
|
|
418
|
+
};
|
|
419
|
+
helperText: {
|
|
420
|
+
type: import("vue").PropType<string>;
|
|
421
|
+
};
|
|
422
422
|
useField: {
|
|
423
423
|
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
424
424
|
};
|
|
@@ -438,8 +438,8 @@ export declare const components: {
|
|
|
438
438
|
}>> & {
|
|
439
439
|
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
440
440
|
}, {
|
|
441
|
-
error: string | null;
|
|
442
441
|
size: "small" | "medium";
|
|
442
|
+
error: string | null;
|
|
443
443
|
resize: "none" | "vertical" | "both" | "horizontal";
|
|
444
444
|
}>;
|
|
445
445
|
SolInputText: {
|
|
@@ -447,8 +447,8 @@ export declare const components: {
|
|
|
447
447
|
$: import("vue").ComponentInternalInstance;
|
|
448
448
|
$data: {};
|
|
449
449
|
$props: Partial<{
|
|
450
|
-
error: string | null;
|
|
451
450
|
size: "small" | "medium";
|
|
451
|
+
error: string | null;
|
|
452
452
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
453
453
|
id: {
|
|
454
454
|
type: import("vue").PropType<string>;
|
|
@@ -469,22 +469,25 @@ export declare const components: {
|
|
|
469
469
|
mask: {
|
|
470
470
|
type: import("vue").PropType<import("./composables/use-mask").Mask>;
|
|
471
471
|
};
|
|
472
|
-
|
|
473
|
-
type: import("vue").PropType<
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
modelValue: {
|
|
477
|
-
type: import("vue").PropType<string>;
|
|
472
|
+
size: {
|
|
473
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
474
|
+
} & {
|
|
475
|
+
default: string;
|
|
478
476
|
};
|
|
479
477
|
error: {
|
|
480
478
|
type: import("vue").PropType<string | null>;
|
|
481
479
|
} & {
|
|
482
480
|
default: null;
|
|
483
481
|
};
|
|
484
|
-
|
|
485
|
-
type: import("vue").PropType<
|
|
486
|
-
|
|
487
|
-
|
|
482
|
+
name: {
|
|
483
|
+
type: import("vue").PropType<string>;
|
|
484
|
+
required: true;
|
|
485
|
+
};
|
|
486
|
+
placeholder: {
|
|
487
|
+
type: import("vue").PropType<string>;
|
|
488
|
+
};
|
|
489
|
+
modelValue: {
|
|
490
|
+
type: import("vue").PropType<string>;
|
|
488
491
|
};
|
|
489
492
|
helperText: {
|
|
490
493
|
type: import("vue").PropType<string>;
|
|
@@ -501,9 +504,6 @@ export declare const components: {
|
|
|
501
504
|
isLoading: {
|
|
502
505
|
type: import("vue").PropType<boolean>;
|
|
503
506
|
};
|
|
504
|
-
placeholder: {
|
|
505
|
-
type: import("vue").PropType<string>;
|
|
506
|
-
};
|
|
507
507
|
useField: {
|
|
508
508
|
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
509
509
|
};
|
|
@@ -517,7 +517,7 @@ export declare const components: {
|
|
|
517
517
|
};
|
|
518
518
|
}>> & {
|
|
519
519
|
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
520
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
520
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "error">;
|
|
521
521
|
$attrs: {
|
|
522
522
|
[x: string]: unknown;
|
|
523
523
|
};
|
|
@@ -551,22 +551,25 @@ export declare const components: {
|
|
|
551
551
|
mask: {
|
|
552
552
|
type: import("vue").PropType<import("./composables/use-mask").Mask>;
|
|
553
553
|
};
|
|
554
|
-
|
|
555
|
-
type: import("vue").PropType<
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
modelValue: {
|
|
559
|
-
type: import("vue").PropType<string>;
|
|
554
|
+
size: {
|
|
555
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
556
|
+
} & {
|
|
557
|
+
default: string;
|
|
560
558
|
};
|
|
561
559
|
error: {
|
|
562
560
|
type: import("vue").PropType<string | null>;
|
|
563
561
|
} & {
|
|
564
562
|
default: null;
|
|
565
563
|
};
|
|
566
|
-
|
|
567
|
-
type: import("vue").PropType<
|
|
568
|
-
|
|
569
|
-
|
|
564
|
+
name: {
|
|
565
|
+
type: import("vue").PropType<string>;
|
|
566
|
+
required: true;
|
|
567
|
+
};
|
|
568
|
+
placeholder: {
|
|
569
|
+
type: import("vue").PropType<string>;
|
|
570
|
+
};
|
|
571
|
+
modelValue: {
|
|
572
|
+
type: import("vue").PropType<string>;
|
|
570
573
|
};
|
|
571
574
|
helperText: {
|
|
572
575
|
type: import("vue").PropType<string>;
|
|
@@ -583,9 +586,6 @@ export declare const components: {
|
|
|
583
586
|
isLoading: {
|
|
584
587
|
type: import("vue").PropType<boolean>;
|
|
585
588
|
};
|
|
586
|
-
placeholder: {
|
|
587
|
-
type: import("vue").PropType<string>;
|
|
588
|
-
};
|
|
589
589
|
useField: {
|
|
590
590
|
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
591
591
|
};
|
|
@@ -602,8 +602,8 @@ export declare const components: {
|
|
|
602
602
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
603
603
|
"update:modelValue": (event: string) => void;
|
|
604
604
|
}, string, {
|
|
605
|
-
error: string | null;
|
|
606
605
|
size: "small" | "medium";
|
|
606
|
+
error: string | null;
|
|
607
607
|
}, {}, string> & {
|
|
608
608
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
609
609
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -644,22 +644,25 @@ export declare const components: {
|
|
|
644
644
|
mask: {
|
|
645
645
|
type: import("vue").PropType<import("./composables/use-mask").Mask>;
|
|
646
646
|
};
|
|
647
|
-
|
|
648
|
-
type: import("vue").PropType<
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
modelValue: {
|
|
652
|
-
type: import("vue").PropType<string>;
|
|
647
|
+
size: {
|
|
648
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
649
|
+
} & {
|
|
650
|
+
default: string;
|
|
653
651
|
};
|
|
654
652
|
error: {
|
|
655
653
|
type: import("vue").PropType<string | null>;
|
|
656
654
|
} & {
|
|
657
655
|
default: null;
|
|
658
656
|
};
|
|
659
|
-
|
|
660
|
-
type: import("vue").PropType<
|
|
661
|
-
|
|
662
|
-
|
|
657
|
+
name: {
|
|
658
|
+
type: import("vue").PropType<string>;
|
|
659
|
+
required: true;
|
|
660
|
+
};
|
|
661
|
+
placeholder: {
|
|
662
|
+
type: import("vue").PropType<string>;
|
|
663
|
+
};
|
|
664
|
+
modelValue: {
|
|
665
|
+
type: import("vue").PropType<string>;
|
|
663
666
|
};
|
|
664
667
|
helperText: {
|
|
665
668
|
type: import("vue").PropType<string>;
|
|
@@ -676,9 +679,6 @@ export declare const components: {
|
|
|
676
679
|
isLoading: {
|
|
677
680
|
type: import("vue").PropType<boolean>;
|
|
678
681
|
};
|
|
679
|
-
placeholder: {
|
|
680
|
-
type: import("vue").PropType<string>;
|
|
681
|
-
};
|
|
682
682
|
useField: {
|
|
683
683
|
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
684
684
|
};
|
|
@@ -716,22 +716,25 @@ export declare const components: {
|
|
|
716
716
|
mask: {
|
|
717
717
|
type: import("vue").PropType<import("./composables/use-mask").Mask>;
|
|
718
718
|
};
|
|
719
|
-
|
|
720
|
-
type: import("vue").PropType<
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
modelValue: {
|
|
724
|
-
type: import("vue").PropType<string>;
|
|
719
|
+
size: {
|
|
720
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
721
|
+
} & {
|
|
722
|
+
default: string;
|
|
725
723
|
};
|
|
726
724
|
error: {
|
|
727
725
|
type: import("vue").PropType<string | null>;
|
|
728
726
|
} & {
|
|
729
727
|
default: null;
|
|
730
728
|
};
|
|
731
|
-
|
|
732
|
-
type: import("vue").PropType<
|
|
733
|
-
|
|
734
|
-
|
|
729
|
+
name: {
|
|
730
|
+
type: import("vue").PropType<string>;
|
|
731
|
+
required: true;
|
|
732
|
+
};
|
|
733
|
+
placeholder: {
|
|
734
|
+
type: import("vue").PropType<string>;
|
|
735
|
+
};
|
|
736
|
+
modelValue: {
|
|
737
|
+
type: import("vue").PropType<string>;
|
|
735
738
|
};
|
|
736
739
|
helperText: {
|
|
737
740
|
type: import("vue").PropType<string>;
|
|
@@ -748,9 +751,6 @@ export declare const components: {
|
|
|
748
751
|
isLoading: {
|
|
749
752
|
type: import("vue").PropType<boolean>;
|
|
750
753
|
};
|
|
751
|
-
placeholder: {
|
|
752
|
-
type: import("vue").PropType<string>;
|
|
753
|
-
};
|
|
754
754
|
useField: {
|
|
755
755
|
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
756
756
|
};
|
|
@@ -767,8 +767,8 @@ export declare const components: {
|
|
|
767
767
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
768
768
|
"update:modelValue": (event: string) => void;
|
|
769
769
|
}, string, {
|
|
770
|
-
error: string | null;
|
|
771
770
|
size: "small" | "medium";
|
|
771
|
+
error: string | null;
|
|
772
772
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
773
773
|
$slots: {
|
|
774
774
|
icon: (_: {}) => any;
|
|
@@ -790,28 +790,28 @@ export declare const components: {
|
|
|
790
790
|
label: {
|
|
791
791
|
type: import("vue").PropType<string>;
|
|
792
792
|
};
|
|
793
|
+
size: {
|
|
794
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
795
|
+
};
|
|
796
|
+
error: {
|
|
797
|
+
type: import("vue").PropType<string | null>;
|
|
798
|
+
};
|
|
793
799
|
name: {
|
|
794
800
|
type: import("vue").PropType<string>;
|
|
795
801
|
required: true;
|
|
796
802
|
} & {
|
|
797
803
|
default: string;
|
|
798
804
|
};
|
|
799
|
-
|
|
805
|
+
placeholder: {
|
|
800
806
|
type: import("vue").PropType<string>;
|
|
807
|
+
} & {
|
|
808
|
+
default: string;
|
|
801
809
|
};
|
|
802
|
-
|
|
803
|
-
type: import("vue").PropType<string | null>;
|
|
804
|
-
};
|
|
805
|
-
size: {
|
|
806
|
-
type: import("vue").PropType<"small" | "medium">;
|
|
807
|
-
};
|
|
808
|
-
helperText: {
|
|
810
|
+
modelValue: {
|
|
809
811
|
type: import("vue").PropType<string>;
|
|
810
812
|
};
|
|
811
|
-
|
|
813
|
+
helperText: {
|
|
812
814
|
type: import("vue").PropType<string>;
|
|
813
|
-
} & {
|
|
814
|
-
default: string;
|
|
815
815
|
};
|
|
816
816
|
useField: {
|
|
817
817
|
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
@@ -842,28 +842,28 @@ export declare const components: {
|
|
|
842
842
|
label: {
|
|
843
843
|
type: import("vue").PropType<string>;
|
|
844
844
|
};
|
|
845
|
+
size: {
|
|
846
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
847
|
+
};
|
|
848
|
+
error: {
|
|
849
|
+
type: import("vue").PropType<string | null>;
|
|
850
|
+
};
|
|
845
851
|
name: {
|
|
846
852
|
type: import("vue").PropType<string>;
|
|
847
853
|
required: true;
|
|
848
854
|
} & {
|
|
849
855
|
default: string;
|
|
850
856
|
};
|
|
851
|
-
|
|
857
|
+
placeholder: {
|
|
852
858
|
type: import("vue").PropType<string>;
|
|
859
|
+
} & {
|
|
860
|
+
default: string;
|
|
853
861
|
};
|
|
854
|
-
|
|
855
|
-
type: import("vue").PropType<string | null>;
|
|
856
|
-
};
|
|
857
|
-
size: {
|
|
858
|
-
type: import("vue").PropType<"small" | "medium">;
|
|
859
|
-
};
|
|
860
|
-
helperText: {
|
|
862
|
+
modelValue: {
|
|
861
863
|
type: import("vue").PropType<string>;
|
|
862
864
|
};
|
|
863
|
-
|
|
865
|
+
helperText: {
|
|
864
866
|
type: import("vue").PropType<string>;
|
|
865
|
-
} & {
|
|
866
|
-
default: string;
|
|
867
867
|
};
|
|
868
868
|
useField: {
|
|
869
869
|
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
@@ -957,6 +957,11 @@ export declare const components: {
|
|
|
957
957
|
type: import("vue").PropType<string>;
|
|
958
958
|
required: true;
|
|
959
959
|
};
|
|
960
|
+
error: {
|
|
961
|
+
type: import("vue").PropType<string | null>;
|
|
962
|
+
} & {
|
|
963
|
+
default: null;
|
|
964
|
+
};
|
|
960
965
|
name: {
|
|
961
966
|
type: import("vue").PropType<string>;
|
|
962
967
|
required: true;
|
|
@@ -964,11 +969,6 @@ export declare const components: {
|
|
|
964
969
|
modelValue: {
|
|
965
970
|
type: import("vue").PropType<import("./components/forms/radio/types").RadioValue>;
|
|
966
971
|
};
|
|
967
|
-
error: {
|
|
968
|
-
type: import("vue").PropType<string | null>;
|
|
969
|
-
} & {
|
|
970
|
-
default: null;
|
|
971
|
-
};
|
|
972
972
|
helperText: {
|
|
973
973
|
type: import("vue").PropType<string>;
|
|
974
974
|
};
|
|
@@ -1012,7 +1012,7 @@ export declare const components: {
|
|
|
1012
1012
|
}>;
|
|
1013
1013
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
1014
1014
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
1015
|
-
$emit: ((event: "
|
|
1015
|
+
$emit: ((event: "change", value: import("./components/forms/radio/types").RadioValue) => void) & ((event: "update:modelValue", value: import("./components/forms/radio/types").RadioValue) => void);
|
|
1016
1016
|
$el: any;
|
|
1017
1017
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1018
1018
|
id: {
|
|
@@ -1023,6 +1023,11 @@ export declare const components: {
|
|
|
1023
1023
|
type: import("vue").PropType<string>;
|
|
1024
1024
|
required: true;
|
|
1025
1025
|
};
|
|
1026
|
+
error: {
|
|
1027
|
+
type: import("vue").PropType<string | null>;
|
|
1028
|
+
} & {
|
|
1029
|
+
default: null;
|
|
1030
|
+
};
|
|
1026
1031
|
name: {
|
|
1027
1032
|
type: import("vue").PropType<string>;
|
|
1028
1033
|
required: true;
|
|
@@ -1030,11 +1035,6 @@ export declare const components: {
|
|
|
1030
1035
|
modelValue: {
|
|
1031
1036
|
type: import("vue").PropType<import("./components/forms/radio/types").RadioValue>;
|
|
1032
1037
|
};
|
|
1033
|
-
error: {
|
|
1034
|
-
type: import("vue").PropType<string | null>;
|
|
1035
|
-
} & {
|
|
1036
|
-
default: null;
|
|
1037
|
-
};
|
|
1038
1038
|
helperText: {
|
|
1039
1039
|
type: import("vue").PropType<string>;
|
|
1040
1040
|
};
|
|
@@ -1103,6 +1103,11 @@ export declare const components: {
|
|
|
1103
1103
|
type: import("vue").PropType<string>;
|
|
1104
1104
|
required: true;
|
|
1105
1105
|
};
|
|
1106
|
+
error: {
|
|
1107
|
+
type: import("vue").PropType<string | null>;
|
|
1108
|
+
} & {
|
|
1109
|
+
default: null;
|
|
1110
|
+
};
|
|
1106
1111
|
name: {
|
|
1107
1112
|
type: import("vue").PropType<string>;
|
|
1108
1113
|
required: true;
|
|
@@ -1110,11 +1115,6 @@ export declare const components: {
|
|
|
1110
1115
|
modelValue: {
|
|
1111
1116
|
type: import("vue").PropType<import("./components/forms/radio/types").RadioValue>;
|
|
1112
1117
|
};
|
|
1113
|
-
error: {
|
|
1114
|
-
type: import("vue").PropType<string | null>;
|
|
1115
|
-
} & {
|
|
1116
|
-
default: null;
|
|
1117
|
-
};
|
|
1118
1118
|
helperText: {
|
|
1119
1119
|
type: import("vue").PropType<string>;
|
|
1120
1120
|
};
|
|
@@ -1159,6 +1159,11 @@ export declare const components: {
|
|
|
1159
1159
|
type: import("vue").PropType<string>;
|
|
1160
1160
|
required: true;
|
|
1161
1161
|
};
|
|
1162
|
+
error: {
|
|
1163
|
+
type: import("vue").PropType<string | null>;
|
|
1164
|
+
} & {
|
|
1165
|
+
default: null;
|
|
1166
|
+
};
|
|
1162
1167
|
name: {
|
|
1163
1168
|
type: import("vue").PropType<string>;
|
|
1164
1169
|
required: true;
|
|
@@ -1166,11 +1171,6 @@ export declare const components: {
|
|
|
1166
1171
|
modelValue: {
|
|
1167
1172
|
type: import("vue").PropType<import("./components/forms/radio/types").RadioValue>;
|
|
1168
1173
|
};
|
|
1169
|
-
error: {
|
|
1170
|
-
type: import("vue").PropType<string | null>;
|
|
1171
|
-
} & {
|
|
1172
|
-
default: null;
|
|
1173
|
-
};
|
|
1174
1174
|
helperText: {
|
|
1175
1175
|
type: import("vue").PropType<string>;
|
|
1176
1176
|
};
|
|
@@ -1301,6 +1301,11 @@ export declare const components: {
|
|
|
1301
1301
|
type: import("vue").PropType<string>;
|
|
1302
1302
|
required: true;
|
|
1303
1303
|
};
|
|
1304
|
+
error: {
|
|
1305
|
+
type: import("vue").PropType<string | null>;
|
|
1306
|
+
} & {
|
|
1307
|
+
default: null;
|
|
1308
|
+
};
|
|
1304
1309
|
name: {
|
|
1305
1310
|
type: import("vue").PropType<string>;
|
|
1306
1311
|
required: true;
|
|
@@ -1308,11 +1313,6 @@ export declare const components: {
|
|
|
1308
1313
|
modelValue: {
|
|
1309
1314
|
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue[]>;
|
|
1310
1315
|
};
|
|
1311
|
-
error: {
|
|
1312
|
-
type: import("vue").PropType<string | null>;
|
|
1313
|
-
} & {
|
|
1314
|
-
default: null;
|
|
1315
|
-
};
|
|
1316
1316
|
helperText: {
|
|
1317
1317
|
type: import("vue").PropType<string>;
|
|
1318
1318
|
};
|
|
@@ -1356,7 +1356,7 @@ export declare const components: {
|
|
|
1356
1356
|
}>;
|
|
1357
1357
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
1358
1358
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
1359
|
-
$emit: ((event: "
|
|
1359
|
+
$emit: ((event: "change", value: import("./components/forms/checkbox/type").CheckboxValue) => void) & ((event: "update:modelValue", v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => void);
|
|
1360
1360
|
$el: any;
|
|
1361
1361
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1362
1362
|
id: {
|
|
@@ -1367,6 +1367,11 @@ export declare const components: {
|
|
|
1367
1367
|
type: import("vue").PropType<string>;
|
|
1368
1368
|
required: true;
|
|
1369
1369
|
};
|
|
1370
|
+
error: {
|
|
1371
|
+
type: import("vue").PropType<string | null>;
|
|
1372
|
+
} & {
|
|
1373
|
+
default: null;
|
|
1374
|
+
};
|
|
1370
1375
|
name: {
|
|
1371
1376
|
type: import("vue").PropType<string>;
|
|
1372
1377
|
required: true;
|
|
@@ -1374,11 +1379,6 @@ export declare const components: {
|
|
|
1374
1379
|
modelValue: {
|
|
1375
1380
|
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue[]>;
|
|
1376
1381
|
};
|
|
1377
|
-
error: {
|
|
1378
|
-
type: import("vue").PropType<string | null>;
|
|
1379
|
-
} & {
|
|
1380
|
-
default: null;
|
|
1381
|
-
};
|
|
1382
1382
|
helperText: {
|
|
1383
1383
|
type: import("vue").PropType<string>;
|
|
1384
1384
|
};
|
|
@@ -1447,6 +1447,11 @@ export declare const components: {
|
|
|
1447
1447
|
type: import("vue").PropType<string>;
|
|
1448
1448
|
required: true;
|
|
1449
1449
|
};
|
|
1450
|
+
error: {
|
|
1451
|
+
type: import("vue").PropType<string | null>;
|
|
1452
|
+
} & {
|
|
1453
|
+
default: null;
|
|
1454
|
+
};
|
|
1450
1455
|
name: {
|
|
1451
1456
|
type: import("vue").PropType<string>;
|
|
1452
1457
|
required: true;
|
|
@@ -1454,11 +1459,6 @@ export declare const components: {
|
|
|
1454
1459
|
modelValue: {
|
|
1455
1460
|
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue[]>;
|
|
1456
1461
|
};
|
|
1457
|
-
error: {
|
|
1458
|
-
type: import("vue").PropType<string | null>;
|
|
1459
|
-
} & {
|
|
1460
|
-
default: null;
|
|
1461
|
-
};
|
|
1462
1462
|
helperText: {
|
|
1463
1463
|
type: import("vue").PropType<string>;
|
|
1464
1464
|
};
|
|
@@ -1503,6 +1503,11 @@ export declare const components: {
|
|
|
1503
1503
|
type: import("vue").PropType<string>;
|
|
1504
1504
|
required: true;
|
|
1505
1505
|
};
|
|
1506
|
+
error: {
|
|
1507
|
+
type: import("vue").PropType<string | null>;
|
|
1508
|
+
} & {
|
|
1509
|
+
default: null;
|
|
1510
|
+
};
|
|
1506
1511
|
name: {
|
|
1507
1512
|
type: import("vue").PropType<string>;
|
|
1508
1513
|
required: true;
|
|
@@ -1510,11 +1515,6 @@ export declare const components: {
|
|
|
1510
1515
|
modelValue: {
|
|
1511
1516
|
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue[]>;
|
|
1512
1517
|
};
|
|
1513
|
-
error: {
|
|
1514
|
-
type: import("vue").PropType<string | null>;
|
|
1515
|
-
} & {
|
|
1516
|
-
default: null;
|
|
1517
|
-
};
|
|
1518
1518
|
helperText: {
|
|
1519
1519
|
type: import("vue").PropType<string>;
|
|
1520
1520
|
};
|
|
@@ -1651,11 +1651,11 @@ export declare const components: {
|
|
|
1651
1651
|
$: import("vue").ComponentInternalInstance;
|
|
1652
1652
|
$data: {};
|
|
1653
1653
|
$props: Partial<{
|
|
1654
|
-
error: string | null;
|
|
1655
1654
|
size: import("./components/forms/select/types").Size;
|
|
1656
|
-
placeholder: string;
|
|
1657
1655
|
loading: boolean;
|
|
1656
|
+
error: string | null;
|
|
1658
1657
|
multiple: boolean;
|
|
1658
|
+
placeholder: string;
|
|
1659
1659
|
options: import("./components/forms/select/types").Option[];
|
|
1660
1660
|
dropdownPosition: "bottom" | "top" | "dynamic";
|
|
1661
1661
|
searchable: boolean;
|
|
@@ -1676,28 +1676,41 @@ export declare const components: {
|
|
|
1676
1676
|
label: {
|
|
1677
1677
|
type: import("vue").PropType<string>;
|
|
1678
1678
|
};
|
|
1679
|
-
|
|
1680
|
-
type: import("vue").PropType<
|
|
1681
|
-
|
|
1679
|
+
size: {
|
|
1680
|
+
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
1681
|
+
} & {
|
|
1682
|
+
default: string;
|
|
1683
|
+
};
|
|
1684
|
+
loading: {
|
|
1685
|
+
type: import("vue").PropType<boolean>;
|
|
1686
|
+
} & {
|
|
1687
|
+
default: boolean;
|
|
1682
1688
|
};
|
|
1683
1689
|
error: {
|
|
1684
1690
|
type: import("vue").PropType<string | null>;
|
|
1685
1691
|
} & {
|
|
1686
1692
|
default: null;
|
|
1687
1693
|
};
|
|
1688
|
-
|
|
1689
|
-
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
1690
|
-
} & {
|
|
1691
|
-
default: string;
|
|
1692
|
-
};
|
|
1693
|
-
helperText: {
|
|
1694
|
+
name: {
|
|
1694
1695
|
type: import("vue").PropType<string>;
|
|
1696
|
+
required: true;
|
|
1697
|
+
};
|
|
1698
|
+
multiple: {
|
|
1699
|
+
type: import("vue").PropType<boolean>;
|
|
1700
|
+
} & {
|
|
1701
|
+
default: boolean;
|
|
1695
1702
|
};
|
|
1696
1703
|
placeholder: {
|
|
1697
1704
|
type: import("vue").PropType<string>;
|
|
1698
1705
|
} & {
|
|
1699
1706
|
default: string;
|
|
1700
1707
|
};
|
|
1708
|
+
selected: {
|
|
1709
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[]>;
|
|
1710
|
+
};
|
|
1711
|
+
helperText: {
|
|
1712
|
+
type: import("vue").PropType<string>;
|
|
1713
|
+
};
|
|
1701
1714
|
useField: {
|
|
1702
1715
|
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1703
1716
|
};
|
|
@@ -1709,19 +1722,6 @@ export declare const components: {
|
|
|
1709
1722
|
opts: {
|
|
1710
1723
|
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/select/types").Option>>>;
|
|
1711
1724
|
};
|
|
1712
|
-
loading: {
|
|
1713
|
-
type: import("vue").PropType<boolean>;
|
|
1714
|
-
} & {
|
|
1715
|
-
default: boolean;
|
|
1716
|
-
};
|
|
1717
|
-
selected: {
|
|
1718
|
-
type: import("vue").PropType<import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[]>;
|
|
1719
|
-
};
|
|
1720
|
-
multiple: {
|
|
1721
|
-
type: import("vue").PropType<boolean>;
|
|
1722
|
-
} & {
|
|
1723
|
-
default: boolean;
|
|
1724
|
-
};
|
|
1725
1725
|
options: {
|
|
1726
1726
|
type: import("vue").PropType<import("./components/forms/select/types").Option[]>;
|
|
1727
1727
|
required: true;
|
|
@@ -1760,7 +1760,7 @@ export declare const components: {
|
|
|
1760
1760
|
"onUpdate:selected"?: ((value: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined) => any) | undefined;
|
|
1761
1761
|
onSearch?: ((value: string) => any) | undefined;
|
|
1762
1762
|
onCloseDropdown?: (() => any) | undefined;
|
|
1763
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
1763
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "loading" | "error" | "multiple" | "placeholder" | "options" | "dropdownPosition" | "searchable" | "closeOnSelect" | "fetchOnSearch" | "searchPlaceholder">;
|
|
1764
1764
|
$attrs: {
|
|
1765
1765
|
[x: string]: unknown;
|
|
1766
1766
|
};
|
|
@@ -1788,28 +1788,41 @@ export declare const components: {
|
|
|
1788
1788
|
label: {
|
|
1789
1789
|
type: import("vue").PropType<string>;
|
|
1790
1790
|
};
|
|
1791
|
-
|
|
1792
|
-
type: import("vue").PropType<
|
|
1793
|
-
|
|
1791
|
+
size: {
|
|
1792
|
+
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
1793
|
+
} & {
|
|
1794
|
+
default: string;
|
|
1795
|
+
};
|
|
1796
|
+
loading: {
|
|
1797
|
+
type: import("vue").PropType<boolean>;
|
|
1798
|
+
} & {
|
|
1799
|
+
default: boolean;
|
|
1794
1800
|
};
|
|
1795
1801
|
error: {
|
|
1796
1802
|
type: import("vue").PropType<string | null>;
|
|
1797
1803
|
} & {
|
|
1798
1804
|
default: null;
|
|
1799
1805
|
};
|
|
1800
|
-
|
|
1801
|
-
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
1802
|
-
} & {
|
|
1803
|
-
default: string;
|
|
1804
|
-
};
|
|
1805
|
-
helperText: {
|
|
1806
|
+
name: {
|
|
1806
1807
|
type: import("vue").PropType<string>;
|
|
1808
|
+
required: true;
|
|
1809
|
+
};
|
|
1810
|
+
multiple: {
|
|
1811
|
+
type: import("vue").PropType<boolean>;
|
|
1812
|
+
} & {
|
|
1813
|
+
default: boolean;
|
|
1807
1814
|
};
|
|
1808
1815
|
placeholder: {
|
|
1809
1816
|
type: import("vue").PropType<string>;
|
|
1810
1817
|
} & {
|
|
1811
1818
|
default: string;
|
|
1812
1819
|
};
|
|
1820
|
+
selected: {
|
|
1821
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[]>;
|
|
1822
|
+
};
|
|
1823
|
+
helperText: {
|
|
1824
|
+
type: import("vue").PropType<string>;
|
|
1825
|
+
};
|
|
1813
1826
|
useField: {
|
|
1814
1827
|
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1815
1828
|
};
|
|
@@ -1821,19 +1834,6 @@ export declare const components: {
|
|
|
1821
1834
|
opts: {
|
|
1822
1835
|
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/select/types").Option>>>;
|
|
1823
1836
|
};
|
|
1824
|
-
loading: {
|
|
1825
|
-
type: import("vue").PropType<boolean>;
|
|
1826
|
-
} & {
|
|
1827
|
-
default: boolean;
|
|
1828
|
-
};
|
|
1829
|
-
selected: {
|
|
1830
|
-
type: import("vue").PropType<import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[]>;
|
|
1831
|
-
};
|
|
1832
|
-
multiple: {
|
|
1833
|
-
type: import("vue").PropType<boolean>;
|
|
1834
|
-
} & {
|
|
1835
|
-
default: boolean;
|
|
1836
|
-
};
|
|
1837
1837
|
options: {
|
|
1838
1838
|
type: import("vue").PropType<import("./components/forms/select/types").Option[]>;
|
|
1839
1839
|
required: true;
|
|
@@ -1879,11 +1879,11 @@ export declare const components: {
|
|
|
1879
1879
|
} & {
|
|
1880
1880
|
"update:selected": (value: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined) => void;
|
|
1881
1881
|
}, string, {
|
|
1882
|
-
error: string | null;
|
|
1883
1882
|
size: import("./components/forms/select/types").Size;
|
|
1884
|
-
placeholder: string;
|
|
1885
1883
|
loading: boolean;
|
|
1884
|
+
error: string | null;
|
|
1886
1885
|
multiple: boolean;
|
|
1886
|
+
placeholder: string;
|
|
1887
1887
|
options: import("./components/forms/select/types").Option[];
|
|
1888
1888
|
dropdownPosition: "bottom" | "top" | "dynamic";
|
|
1889
1889
|
searchable: boolean;
|
|
@@ -1924,28 +1924,41 @@ export declare const components: {
|
|
|
1924
1924
|
label: {
|
|
1925
1925
|
type: import("vue").PropType<string>;
|
|
1926
1926
|
};
|
|
1927
|
-
|
|
1928
|
-
type: import("vue").PropType<
|
|
1929
|
-
|
|
1927
|
+
size: {
|
|
1928
|
+
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
1929
|
+
} & {
|
|
1930
|
+
default: string;
|
|
1931
|
+
};
|
|
1932
|
+
loading: {
|
|
1933
|
+
type: import("vue").PropType<boolean>;
|
|
1934
|
+
} & {
|
|
1935
|
+
default: boolean;
|
|
1930
1936
|
};
|
|
1931
1937
|
error: {
|
|
1932
1938
|
type: import("vue").PropType<string | null>;
|
|
1933
1939
|
} & {
|
|
1934
1940
|
default: null;
|
|
1935
1941
|
};
|
|
1936
|
-
|
|
1937
|
-
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
1938
|
-
} & {
|
|
1939
|
-
default: string;
|
|
1940
|
-
};
|
|
1941
|
-
helperText: {
|
|
1942
|
+
name: {
|
|
1942
1943
|
type: import("vue").PropType<string>;
|
|
1944
|
+
required: true;
|
|
1945
|
+
};
|
|
1946
|
+
multiple: {
|
|
1947
|
+
type: import("vue").PropType<boolean>;
|
|
1948
|
+
} & {
|
|
1949
|
+
default: boolean;
|
|
1943
1950
|
};
|
|
1944
1951
|
placeholder: {
|
|
1945
1952
|
type: import("vue").PropType<string>;
|
|
1946
1953
|
} & {
|
|
1947
1954
|
default: string;
|
|
1948
1955
|
};
|
|
1956
|
+
selected: {
|
|
1957
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[]>;
|
|
1958
|
+
};
|
|
1959
|
+
helperText: {
|
|
1960
|
+
type: import("vue").PropType<string>;
|
|
1961
|
+
};
|
|
1949
1962
|
useField: {
|
|
1950
1963
|
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1951
1964
|
};
|
|
@@ -1957,19 +1970,6 @@ export declare const components: {
|
|
|
1957
1970
|
opts: {
|
|
1958
1971
|
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/select/types").Option>>>;
|
|
1959
1972
|
};
|
|
1960
|
-
loading: {
|
|
1961
|
-
type: import("vue").PropType<boolean>;
|
|
1962
|
-
} & {
|
|
1963
|
-
default: boolean;
|
|
1964
|
-
};
|
|
1965
|
-
selected: {
|
|
1966
|
-
type: import("vue").PropType<import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[]>;
|
|
1967
|
-
};
|
|
1968
|
-
multiple: {
|
|
1969
|
-
type: import("vue").PropType<boolean>;
|
|
1970
|
-
} & {
|
|
1971
|
-
default: boolean;
|
|
1972
|
-
};
|
|
1973
1973
|
options: {
|
|
1974
1974
|
type: import("vue").PropType<import("./components/forms/select/types").Option[]>;
|
|
1975
1975
|
required: true;
|
|
@@ -2026,28 +2026,41 @@ export declare const components: {
|
|
|
2026
2026
|
label: {
|
|
2027
2027
|
type: import("vue").PropType<string>;
|
|
2028
2028
|
};
|
|
2029
|
-
|
|
2030
|
-
type: import("vue").PropType<
|
|
2031
|
-
|
|
2029
|
+
size: {
|
|
2030
|
+
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
2031
|
+
} & {
|
|
2032
|
+
default: string;
|
|
2033
|
+
};
|
|
2034
|
+
loading: {
|
|
2035
|
+
type: import("vue").PropType<boolean>;
|
|
2036
|
+
} & {
|
|
2037
|
+
default: boolean;
|
|
2032
2038
|
};
|
|
2033
2039
|
error: {
|
|
2034
2040
|
type: import("vue").PropType<string | null>;
|
|
2035
2041
|
} & {
|
|
2036
2042
|
default: null;
|
|
2037
2043
|
};
|
|
2038
|
-
|
|
2039
|
-
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
2040
|
-
} & {
|
|
2041
|
-
default: string;
|
|
2042
|
-
};
|
|
2043
|
-
helperText: {
|
|
2044
|
+
name: {
|
|
2044
2045
|
type: import("vue").PropType<string>;
|
|
2046
|
+
required: true;
|
|
2047
|
+
};
|
|
2048
|
+
multiple: {
|
|
2049
|
+
type: import("vue").PropType<boolean>;
|
|
2050
|
+
} & {
|
|
2051
|
+
default: boolean;
|
|
2045
2052
|
};
|
|
2046
2053
|
placeholder: {
|
|
2047
2054
|
type: import("vue").PropType<string>;
|
|
2048
2055
|
} & {
|
|
2049
2056
|
default: string;
|
|
2050
2057
|
};
|
|
2058
|
+
selected: {
|
|
2059
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[]>;
|
|
2060
|
+
};
|
|
2061
|
+
helperText: {
|
|
2062
|
+
type: import("vue").PropType<string>;
|
|
2063
|
+
};
|
|
2051
2064
|
useField: {
|
|
2052
2065
|
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
2053
2066
|
};
|
|
@@ -2059,19 +2072,6 @@ export declare const components: {
|
|
|
2059
2072
|
opts: {
|
|
2060
2073
|
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/select/types").Option>>>;
|
|
2061
2074
|
};
|
|
2062
|
-
loading: {
|
|
2063
|
-
type: import("vue").PropType<boolean>;
|
|
2064
|
-
} & {
|
|
2065
|
-
default: boolean;
|
|
2066
|
-
};
|
|
2067
|
-
selected: {
|
|
2068
|
-
type: import("vue").PropType<import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[]>;
|
|
2069
|
-
};
|
|
2070
|
-
multiple: {
|
|
2071
|
-
type: import("vue").PropType<boolean>;
|
|
2072
|
-
} & {
|
|
2073
|
-
default: boolean;
|
|
2074
|
-
};
|
|
2075
2075
|
options: {
|
|
2076
2076
|
type: import("vue").PropType<import("./components/forms/select/types").Option[]>;
|
|
2077
2077
|
required: true;
|
|
@@ -2117,11 +2117,11 @@ export declare const components: {
|
|
|
2117
2117
|
} & {
|
|
2118
2118
|
"update:selected": (value: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined) => void;
|
|
2119
2119
|
}, string, {
|
|
2120
|
-
error: string | null;
|
|
2121
2120
|
size: import("./components/forms/select/types").Size;
|
|
2122
|
-
placeholder: string;
|
|
2123
2121
|
loading: boolean;
|
|
2122
|
+
error: string | null;
|
|
2124
2123
|
multiple: boolean;
|
|
2124
|
+
placeholder: string;
|
|
2125
2125
|
options: import("./components/forms/select/types").Option[];
|
|
2126
2126
|
dropdownPosition: "bottom" | "top" | "dynamic";
|
|
2127
2127
|
searchable: boolean;
|
|
@@ -2344,7 +2344,7 @@ export declare const components: {
|
|
|
2344
2344
|
}>;
|
|
2345
2345
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
2346
2346
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
2347
|
-
$emit: ((event: "
|
|
2347
|
+
$emit: ((event: "update:selected", v: boolean) => void) & ((event: "change", v: unknown) => void);
|
|
2348
2348
|
$el: any;
|
|
2349
2349
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2350
2350
|
id: {
|
|
@@ -2470,7 +2470,7 @@ export declare const components: {
|
|
|
2470
2470
|
$: import("vue").ComponentInternalInstance;
|
|
2471
2471
|
$data: {};
|
|
2472
2472
|
$props: Partial<{
|
|
2473
|
-
type: "
|
|
2473
|
+
type: "warning" | "informative" | "neutral" | "positive" | "negative";
|
|
2474
2474
|
text: string;
|
|
2475
2475
|
size: "small" | "medium";
|
|
2476
2476
|
variant: "fill" | "outline";
|
|
@@ -2480,7 +2480,7 @@ export declare const components: {
|
|
|
2480
2480
|
required: true;
|
|
2481
2481
|
};
|
|
2482
2482
|
type: {
|
|
2483
|
-
type: import("vue").PropType<"
|
|
2483
|
+
type: import("vue").PropType<"warning" | "informative" | "neutral" | "positive" | "negative">;
|
|
2484
2484
|
} & {
|
|
2485
2485
|
default: string;
|
|
2486
2486
|
};
|
|
@@ -2519,7 +2519,7 @@ export declare const components: {
|
|
|
2519
2519
|
required: true;
|
|
2520
2520
|
};
|
|
2521
2521
|
type: {
|
|
2522
|
-
type: import("vue").PropType<"
|
|
2522
|
+
type: import("vue").PropType<"warning" | "informative" | "neutral" | "positive" | "negative">;
|
|
2523
2523
|
} & {
|
|
2524
2524
|
default: string;
|
|
2525
2525
|
};
|
|
@@ -2539,7 +2539,7 @@ export declare const components: {
|
|
|
2539
2539
|
default: string;
|
|
2540
2540
|
};
|
|
2541
2541
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
2542
|
-
type: "
|
|
2542
|
+
type: "warning" | "informative" | "neutral" | "positive" | "negative";
|
|
2543
2543
|
text: string;
|
|
2544
2544
|
size: "small" | "medium";
|
|
2545
2545
|
variant: "fill" | "outline";
|
|
@@ -2569,7 +2569,7 @@ export declare const components: {
|
|
|
2569
2569
|
required: true;
|
|
2570
2570
|
};
|
|
2571
2571
|
type: {
|
|
2572
|
-
type: import("vue").PropType<"
|
|
2572
|
+
type: import("vue").PropType<"warning" | "informative" | "neutral" | "positive" | "negative">;
|
|
2573
2573
|
} & {
|
|
2574
2574
|
default: string;
|
|
2575
2575
|
};
|
|
@@ -2598,7 +2598,7 @@ export declare const components: {
|
|
|
2598
2598
|
required: true;
|
|
2599
2599
|
};
|
|
2600
2600
|
type: {
|
|
2601
|
-
type: import("vue").PropType<"
|
|
2601
|
+
type: import("vue").PropType<"warning" | "informative" | "neutral" | "positive" | "negative">;
|
|
2602
2602
|
} & {
|
|
2603
2603
|
default: string;
|
|
2604
2604
|
};
|
|
@@ -2618,7 +2618,7 @@ export declare const components: {
|
|
|
2618
2618
|
default: string;
|
|
2619
2619
|
};
|
|
2620
2620
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
2621
|
-
type: "
|
|
2621
|
+
type: "warning" | "informative" | "neutral" | "positive" | "negative";
|
|
2622
2622
|
text: string;
|
|
2623
2623
|
size: "small" | "medium";
|
|
2624
2624
|
variant: "fill" | "outline";
|
|
@@ -2634,7 +2634,7 @@ export declare const components: {
|
|
|
2634
2634
|
$props: Partial<{
|
|
2635
2635
|
title: string;
|
|
2636
2636
|
text: string;
|
|
2637
|
-
feedback: "
|
|
2637
|
+
feedback: "success" | "warning" | "error" | "informative";
|
|
2638
2638
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2639
2639
|
id: {
|
|
2640
2640
|
type: import("vue").PropType<string>;
|
|
@@ -2650,14 +2650,14 @@ export declare const components: {
|
|
|
2650
2650
|
} & {
|
|
2651
2651
|
default: string;
|
|
2652
2652
|
};
|
|
2653
|
-
action: {
|
|
2654
|
-
type: import("vue").PropType<string>;
|
|
2655
|
-
};
|
|
2656
2653
|
feedback: {
|
|
2657
|
-
type: import("vue").PropType<"
|
|
2654
|
+
type: import("vue").PropType<"success" | "warning" | "error" | "informative">;
|
|
2658
2655
|
} & {
|
|
2659
2656
|
default: string;
|
|
2660
2657
|
};
|
|
2658
|
+
action: {
|
|
2659
|
+
type: import("vue").PropType<string>;
|
|
2660
|
+
};
|
|
2661
2661
|
}>> & {
|
|
2662
2662
|
onClick?: (() => any) | undefined;
|
|
2663
2663
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "text" | "feedback">;
|
|
@@ -2689,14 +2689,14 @@ export declare const components: {
|
|
|
2689
2689
|
} & {
|
|
2690
2690
|
default: string;
|
|
2691
2691
|
};
|
|
2692
|
-
action: {
|
|
2693
|
-
type: import("vue").PropType<string>;
|
|
2694
|
-
};
|
|
2695
2692
|
feedback: {
|
|
2696
|
-
type: import("vue").PropType<"
|
|
2693
|
+
type: import("vue").PropType<"success" | "warning" | "error" | "informative">;
|
|
2697
2694
|
} & {
|
|
2698
2695
|
default: string;
|
|
2699
2696
|
};
|
|
2697
|
+
action: {
|
|
2698
|
+
type: import("vue").PropType<string>;
|
|
2699
|
+
};
|
|
2700
2700
|
}>> & {
|
|
2701
2701
|
onClick?: (() => any) | undefined;
|
|
2702
2702
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -2704,7 +2704,7 @@ export declare const components: {
|
|
|
2704
2704
|
}, string, {
|
|
2705
2705
|
title: string;
|
|
2706
2706
|
text: string;
|
|
2707
|
-
feedback: "
|
|
2707
|
+
feedback: "success" | "warning" | "error" | "informative";
|
|
2708
2708
|
}, {}, string> & {
|
|
2709
2709
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
2710
2710
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -2740,14 +2740,14 @@ export declare const components: {
|
|
|
2740
2740
|
} & {
|
|
2741
2741
|
default: string;
|
|
2742
2742
|
};
|
|
2743
|
-
action: {
|
|
2744
|
-
type: import("vue").PropType<string>;
|
|
2745
|
-
};
|
|
2746
2743
|
feedback: {
|
|
2747
|
-
type: import("vue").PropType<"
|
|
2744
|
+
type: import("vue").PropType<"success" | "warning" | "error" | "informative">;
|
|
2748
2745
|
} & {
|
|
2749
2746
|
default: string;
|
|
2750
2747
|
};
|
|
2748
|
+
action: {
|
|
2749
|
+
type: import("vue").PropType<string>;
|
|
2750
|
+
};
|
|
2751
2751
|
}>> & {
|
|
2752
2752
|
onClick?: (() => any) | undefined;
|
|
2753
2753
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
@@ -2769,14 +2769,14 @@ export declare const components: {
|
|
|
2769
2769
|
} & {
|
|
2770
2770
|
default: string;
|
|
2771
2771
|
};
|
|
2772
|
-
action: {
|
|
2773
|
-
type: import("vue").PropType<string>;
|
|
2774
|
-
};
|
|
2775
2772
|
feedback: {
|
|
2776
|
-
type: import("vue").PropType<"
|
|
2773
|
+
type: import("vue").PropType<"success" | "warning" | "error" | "informative">;
|
|
2777
2774
|
} & {
|
|
2778
2775
|
default: string;
|
|
2779
2776
|
};
|
|
2777
|
+
action: {
|
|
2778
|
+
type: import("vue").PropType<string>;
|
|
2779
|
+
};
|
|
2780
2780
|
}>> & {
|
|
2781
2781
|
onClick?: (() => any) | undefined;
|
|
2782
2782
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -2784,7 +2784,7 @@ export declare const components: {
|
|
|
2784
2784
|
}, string, {
|
|
2785
2785
|
title: string;
|
|
2786
2786
|
text: string;
|
|
2787
|
-
feedback: "
|
|
2787
|
+
feedback: "success" | "warning" | "error" | "informative";
|
|
2788
2788
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2789
2789
|
$slots: {
|
|
2790
2790
|
default: (_: {}) => any;
|
|
@@ -3763,9 +3763,6 @@ export declare const components: {
|
|
|
3763
3763
|
class: {
|
|
3764
3764
|
type: import("vue").PropType<string | Record<string, any>>;
|
|
3765
3765
|
};
|
|
3766
|
-
isOpen: {
|
|
3767
|
-
type: import("vue").PropType<boolean>;
|
|
3768
|
-
};
|
|
3769
3766
|
size: {
|
|
3770
3767
|
type: import("vue").PropType<import("./components/modals/modal/types").Size>;
|
|
3771
3768
|
} & {
|
|
@@ -3779,6 +3776,9 @@ export declare const components: {
|
|
|
3779
3776
|
} & {
|
|
3780
3777
|
default: string;
|
|
3781
3778
|
};
|
|
3779
|
+
isOpen: {
|
|
3780
|
+
type: import("vue").PropType<boolean>;
|
|
3781
|
+
};
|
|
3782
3782
|
actionPrimaryText: {
|
|
3783
3783
|
type: import("vue").PropType<string>;
|
|
3784
3784
|
};
|
|
@@ -3789,8 +3789,8 @@ export declare const components: {
|
|
|
3789
3789
|
type: import("vue").PropType<string>;
|
|
3790
3790
|
};
|
|
3791
3791
|
}>> & {
|
|
3792
|
-
onOpen?: (() => any) | undefined;
|
|
3793
3792
|
onClose?: (() => any) | undefined;
|
|
3793
|
+
onOpen?: (() => any) | undefined;
|
|
3794
3794
|
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
3795
3795
|
"onAction:primary"?: (() => any) | undefined;
|
|
3796
3796
|
"onAction:secondary"?: (() => any) | undefined;
|
|
@@ -3807,7 +3807,7 @@ export declare const components: {
|
|
|
3807
3807
|
}>;
|
|
3808
3808
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
3809
3809
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
3810
|
-
$emit: ((event: "
|
|
3810
|
+
$emit: ((event: "close") => void) & ((event: "open") => void) & ((event: "update:isOpen", value: boolean) => void) & ((event: "action:primary") => void) & ((event: "action:secondary") => void) & ((event: "action:tertiary") => void);
|
|
3811
3811
|
$el: any;
|
|
3812
3812
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
3813
3813
|
id: {
|
|
@@ -3822,9 +3822,6 @@ export declare const components: {
|
|
|
3822
3822
|
class: {
|
|
3823
3823
|
type: import("vue").PropType<string | Record<string, any>>;
|
|
3824
3824
|
};
|
|
3825
|
-
isOpen: {
|
|
3826
|
-
type: import("vue").PropType<boolean>;
|
|
3827
|
-
};
|
|
3828
3825
|
size: {
|
|
3829
3826
|
type: import("vue").PropType<import("./components/modals/modal/types").Size>;
|
|
3830
3827
|
} & {
|
|
@@ -3838,6 +3835,9 @@ export declare const components: {
|
|
|
3838
3835
|
} & {
|
|
3839
3836
|
default: string;
|
|
3840
3837
|
};
|
|
3838
|
+
isOpen: {
|
|
3839
|
+
type: import("vue").PropType<boolean>;
|
|
3840
|
+
};
|
|
3841
3841
|
actionPrimaryText: {
|
|
3842
3842
|
type: import("vue").PropType<string>;
|
|
3843
3843
|
};
|
|
@@ -3848,8 +3848,8 @@ export declare const components: {
|
|
|
3848
3848
|
type: import("vue").PropType<string>;
|
|
3849
3849
|
};
|
|
3850
3850
|
}>> & {
|
|
3851
|
-
onOpen?: (() => any) | undefined;
|
|
3852
3851
|
onClose?: (() => any) | undefined;
|
|
3852
|
+
onOpen?: (() => any) | undefined;
|
|
3853
3853
|
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
3854
3854
|
"onAction:primary"?: (() => any) | undefined;
|
|
3855
3855
|
"onAction:secondary"?: (() => any) | undefined;
|
|
@@ -3906,9 +3906,6 @@ export declare const components: {
|
|
|
3906
3906
|
class: {
|
|
3907
3907
|
type: import("vue").PropType<string | Record<string, any>>;
|
|
3908
3908
|
};
|
|
3909
|
-
isOpen: {
|
|
3910
|
-
type: import("vue").PropType<boolean>;
|
|
3911
|
-
};
|
|
3912
3909
|
size: {
|
|
3913
3910
|
type: import("vue").PropType<import("./components/modals/modal/types").Size>;
|
|
3914
3911
|
} & {
|
|
@@ -3922,6 +3919,9 @@ export declare const components: {
|
|
|
3922
3919
|
} & {
|
|
3923
3920
|
default: string;
|
|
3924
3921
|
};
|
|
3922
|
+
isOpen: {
|
|
3923
|
+
type: import("vue").PropType<boolean>;
|
|
3924
|
+
};
|
|
3925
3925
|
actionPrimaryText: {
|
|
3926
3926
|
type: import("vue").PropType<string>;
|
|
3927
3927
|
};
|
|
@@ -3932,8 +3932,8 @@ export declare const components: {
|
|
|
3932
3932
|
type: import("vue").PropType<string>;
|
|
3933
3933
|
};
|
|
3934
3934
|
}>> & {
|
|
3935
|
-
onOpen?: (() => any) | undefined;
|
|
3936
3935
|
onClose?: (() => any) | undefined;
|
|
3936
|
+
onOpen?: (() => any) | undefined;
|
|
3937
3937
|
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
3938
3938
|
"onAction:primary"?: (() => any) | undefined;
|
|
3939
3939
|
"onAction:secondary"?: (() => any) | undefined;
|
|
@@ -3958,9 +3958,6 @@ export declare const components: {
|
|
|
3958
3958
|
class: {
|
|
3959
3959
|
type: import("vue").PropType<string | Record<string, any>>;
|
|
3960
3960
|
};
|
|
3961
|
-
isOpen: {
|
|
3962
|
-
type: import("vue").PropType<boolean>;
|
|
3963
|
-
};
|
|
3964
3961
|
size: {
|
|
3965
3962
|
type: import("vue").PropType<import("./components/modals/modal/types").Size>;
|
|
3966
3963
|
} & {
|
|
@@ -3974,6 +3971,9 @@ export declare const components: {
|
|
|
3974
3971
|
} & {
|
|
3975
3972
|
default: string;
|
|
3976
3973
|
};
|
|
3974
|
+
isOpen: {
|
|
3975
|
+
type: import("vue").PropType<boolean>;
|
|
3976
|
+
};
|
|
3977
3977
|
actionPrimaryText: {
|
|
3978
3978
|
type: import("vue").PropType<string>;
|
|
3979
3979
|
};
|
|
@@ -3984,8 +3984,8 @@ export declare const components: {
|
|
|
3984
3984
|
type: import("vue").PropType<string>;
|
|
3985
3985
|
};
|
|
3986
3986
|
}>> & {
|
|
3987
|
-
onOpen?: (() => any) | undefined;
|
|
3988
3987
|
onClose?: (() => any) | undefined;
|
|
3988
|
+
onOpen?: (() => any) | undefined;
|
|
3989
3989
|
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
3990
3990
|
"onAction:primary"?: (() => any) | undefined;
|
|
3991
3991
|
"onAction:secondary"?: (() => any) | undefined;
|
|
@@ -4031,14 +4031,14 @@ export declare const components: {
|
|
|
4031
4031
|
class: {
|
|
4032
4032
|
type: import("vue").PropType<string | Record<string, any>>;
|
|
4033
4033
|
};
|
|
4034
|
-
isOpen: {
|
|
4035
|
-
type: import("vue").PropType<boolean>;
|
|
4036
|
-
};
|
|
4037
4034
|
target: {
|
|
4038
4035
|
type: import("vue").PropType<string>;
|
|
4039
4036
|
} & {
|
|
4040
4037
|
default: string;
|
|
4041
4038
|
};
|
|
4039
|
+
isOpen: {
|
|
4040
|
+
type: import("vue").PropType<boolean>;
|
|
4041
|
+
};
|
|
4042
4042
|
sliders: {
|
|
4043
4043
|
type: import("vue").PropType<import("./components/modals/onboarding/types").Slider[]>;
|
|
4044
4044
|
required: true;
|
|
@@ -4077,14 +4077,14 @@ export declare const components: {
|
|
|
4077
4077
|
class: {
|
|
4078
4078
|
type: import("vue").PropType<string | Record<string, any>>;
|
|
4079
4079
|
};
|
|
4080
|
-
isOpen: {
|
|
4081
|
-
type: import("vue").PropType<boolean>;
|
|
4082
|
-
};
|
|
4083
4080
|
target: {
|
|
4084
4081
|
type: import("vue").PropType<string>;
|
|
4085
4082
|
} & {
|
|
4086
4083
|
default: string;
|
|
4087
4084
|
};
|
|
4085
|
+
isOpen: {
|
|
4086
|
+
type: import("vue").PropType<boolean>;
|
|
4087
|
+
};
|
|
4088
4088
|
sliders: {
|
|
4089
4089
|
type: import("vue").PropType<import("./components/modals/onboarding/types").Slider[]>;
|
|
4090
4090
|
required: true;
|
|
@@ -4097,8 +4097,8 @@ export declare const components: {
|
|
|
4097
4097
|
default: string;
|
|
4098
4098
|
};
|
|
4099
4099
|
}>> & {
|
|
4100
|
-
onOpen?: (() => any) | undefined;
|
|
4101
4100
|
onClose?: (() => any) | undefined;
|
|
4101
|
+
onOpen?: (() => any) | undefined;
|
|
4102
4102
|
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
4103
4103
|
"onAction:skip"?: (() => any) | undefined;
|
|
4104
4104
|
"onAction:start"?: (() => any) | undefined;
|
|
@@ -4339,21 +4339,11 @@ export declare const components: {
|
|
|
4339
4339
|
type: import("vue").PropType<string>;
|
|
4340
4340
|
required: true;
|
|
4341
4341
|
};
|
|
4342
|
-
modelValue: {
|
|
4343
|
-
type: import("vue").PropType<string>;
|
|
4344
|
-
} & {
|
|
4345
|
-
default: string;
|
|
4346
|
-
};
|
|
4347
4342
|
size: {
|
|
4348
4343
|
type: import("vue").PropType<"small" | "medium">;
|
|
4349
4344
|
} & {
|
|
4350
4345
|
default: string;
|
|
4351
4346
|
};
|
|
4352
|
-
placeholder: {
|
|
4353
|
-
type: import("vue").PropType<string>;
|
|
4354
|
-
} & {
|
|
4355
|
-
default: string;
|
|
4356
|
-
};
|
|
4357
4347
|
loading: {
|
|
4358
4348
|
type: import("vue").PropType<boolean>;
|
|
4359
4349
|
} & {
|
|
@@ -4364,6 +4354,16 @@ export declare const components: {
|
|
|
4364
4354
|
} & {
|
|
4365
4355
|
default: string;
|
|
4366
4356
|
};
|
|
4357
|
+
placeholder: {
|
|
4358
|
+
type: import("vue").PropType<string>;
|
|
4359
|
+
} & {
|
|
4360
|
+
default: string;
|
|
4361
|
+
};
|
|
4362
|
+
modelValue: {
|
|
4363
|
+
type: import("vue").PropType<string>;
|
|
4364
|
+
} & {
|
|
4365
|
+
default: string;
|
|
4366
|
+
};
|
|
4367
4367
|
ariaLabel: {
|
|
4368
4368
|
type: import("vue").PropType<string>;
|
|
4369
4369
|
required: true;
|
|
@@ -4389,21 +4389,11 @@ export declare const components: {
|
|
|
4389
4389
|
type: import("vue").PropType<string>;
|
|
4390
4390
|
required: true;
|
|
4391
4391
|
};
|
|
4392
|
-
modelValue: {
|
|
4393
|
-
type: import("vue").PropType<string>;
|
|
4394
|
-
} & {
|
|
4395
|
-
default: string;
|
|
4396
|
-
};
|
|
4397
4392
|
size: {
|
|
4398
4393
|
type: import("vue").PropType<"small" | "medium">;
|
|
4399
4394
|
} & {
|
|
4400
4395
|
default: string;
|
|
4401
4396
|
};
|
|
4402
|
-
placeholder: {
|
|
4403
|
-
type: import("vue").PropType<string>;
|
|
4404
|
-
} & {
|
|
4405
|
-
default: string;
|
|
4406
|
-
};
|
|
4407
4397
|
loading: {
|
|
4408
4398
|
type: import("vue").PropType<boolean>;
|
|
4409
4399
|
} & {
|
|
@@ -4414,6 +4404,16 @@ export declare const components: {
|
|
|
4414
4404
|
} & {
|
|
4415
4405
|
default: string;
|
|
4416
4406
|
};
|
|
4407
|
+
placeholder: {
|
|
4408
|
+
type: import("vue").PropType<string>;
|
|
4409
|
+
} & {
|
|
4410
|
+
default: string;
|
|
4411
|
+
};
|
|
4412
|
+
modelValue: {
|
|
4413
|
+
type: import("vue").PropType<string>;
|
|
4414
|
+
} & {
|
|
4415
|
+
default: string;
|
|
4416
|
+
};
|
|
4417
4417
|
ariaLabel: {
|
|
4418
4418
|
type: import("vue").PropType<string>;
|
|
4419
4419
|
required: true;
|
|
@@ -4434,11 +4434,11 @@ export declare const components: {
|
|
|
4434
4434
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
4435
4435
|
onSearch?: ((value: string) => any) | undefined;
|
|
4436
4436
|
}, {
|
|
4437
|
-
modelValue: string;
|
|
4438
4437
|
size: "small" | "medium";
|
|
4439
|
-
placeholder: string;
|
|
4440
4438
|
loading: boolean;
|
|
4441
4439
|
variant: import("./components/search/types").Variants;
|
|
4440
|
+
placeholder: string;
|
|
4441
|
+
modelValue: string;
|
|
4442
4442
|
ariaLabel: string;
|
|
4443
4443
|
buttonDisabled: boolean;
|
|
4444
4444
|
inputDisabled: boolean;
|
|
@@ -4453,21 +4453,21 @@ export declare const components: {
|
|
|
4453
4453
|
} & {
|
|
4454
4454
|
default: string;
|
|
4455
4455
|
};
|
|
4456
|
-
modelValue: {
|
|
4457
|
-
type: import("vue").PropType<import("./components/date-picker/types").ModelValue>;
|
|
4458
|
-
};
|
|
4459
|
-
error: {
|
|
4460
|
-
type: import("vue").PropType<string>;
|
|
4461
|
-
};
|
|
4462
4456
|
size: {
|
|
4463
4457
|
type: import("vue").PropType<"small" | "medium">;
|
|
4464
4458
|
};
|
|
4465
|
-
|
|
4459
|
+
error: {
|
|
4466
4460
|
type: import("vue").PropType<string>;
|
|
4467
4461
|
};
|
|
4468
4462
|
placeholder: {
|
|
4469
4463
|
type: import("vue").PropType<string>;
|
|
4470
4464
|
};
|
|
4465
|
+
modelValue: {
|
|
4466
|
+
type: import("vue").PropType<import("./components/date-picker/types").ModelValue>;
|
|
4467
|
+
};
|
|
4468
|
+
helperText: {
|
|
4469
|
+
type: import("vue").PropType<string>;
|
|
4470
|
+
};
|
|
4471
4471
|
range: {
|
|
4472
4472
|
type: import("vue").PropType<boolean>;
|
|
4473
4473
|
};
|
|
@@ -4485,21 +4485,21 @@ export declare const components: {
|
|
|
4485
4485
|
} & {
|
|
4486
4486
|
default: string;
|
|
4487
4487
|
};
|
|
4488
|
-
modelValue: {
|
|
4489
|
-
type: import("vue").PropType<import("./components/date-picker/types").ModelValue>;
|
|
4490
|
-
};
|
|
4491
|
-
error: {
|
|
4492
|
-
type: import("vue").PropType<string>;
|
|
4493
|
-
};
|
|
4494
4488
|
size: {
|
|
4495
4489
|
type: import("vue").PropType<"small" | "medium">;
|
|
4496
4490
|
};
|
|
4497
|
-
|
|
4491
|
+
error: {
|
|
4498
4492
|
type: import("vue").PropType<string>;
|
|
4499
4493
|
};
|
|
4500
4494
|
placeholder: {
|
|
4501
4495
|
type: import("vue").PropType<string>;
|
|
4502
4496
|
};
|
|
4497
|
+
modelValue: {
|
|
4498
|
+
type: import("vue").PropType<import("./components/date-picker/types").ModelValue>;
|
|
4499
|
+
};
|
|
4500
|
+
helperText: {
|
|
4501
|
+
type: import("vue").PropType<string>;
|
|
4502
|
+
};
|
|
4503
4503
|
range: {
|
|
4504
4504
|
type: import("vue").PropType<boolean>;
|
|
4505
4505
|
};
|
|
@@ -4813,26 +4813,39 @@ export declare const components: {
|
|
|
4813
4813
|
} & {
|
|
4814
4814
|
default: string;
|
|
4815
4815
|
};
|
|
4816
|
-
|
|
4817
|
-
type: import("vue").PropType<
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
modelValue: {
|
|
4821
|
-
type: import("vue").PropType<import("./components/file-upload/types").FileUploadModel>;
|
|
4816
|
+
loading: {
|
|
4817
|
+
type: import("vue").PropType<boolean>;
|
|
4818
|
+
} & {
|
|
4819
|
+
default: boolean;
|
|
4822
4820
|
};
|
|
4823
4821
|
error: {
|
|
4824
4822
|
type: import("vue").PropType<string | null>;
|
|
4825
4823
|
} & {
|
|
4826
4824
|
default: null;
|
|
4827
4825
|
};
|
|
4828
|
-
|
|
4826
|
+
name: {
|
|
4827
|
+
type: import("vue").PropType<string | undefined>;
|
|
4828
|
+
required: true;
|
|
4829
|
+
};
|
|
4830
|
+
accept: {
|
|
4829
4831
|
type: import("vue").PropType<string>;
|
|
4830
4832
|
};
|
|
4833
|
+
multiple: {
|
|
4834
|
+
type: import("vue").PropType<boolean>;
|
|
4835
|
+
} & {
|
|
4836
|
+
default: boolean;
|
|
4837
|
+
};
|
|
4831
4838
|
placeholder: {
|
|
4832
4839
|
type: import("vue").PropType<string>;
|
|
4833
4840
|
} & {
|
|
4834
4841
|
default: string;
|
|
4835
4842
|
};
|
|
4843
|
+
modelValue: {
|
|
4844
|
+
type: import("vue").PropType<import("./components/file-upload/types").FileUploadModel>;
|
|
4845
|
+
};
|
|
4846
|
+
helperText: {
|
|
4847
|
+
type: import("vue").PropType<string>;
|
|
4848
|
+
};
|
|
4836
4849
|
useField: {
|
|
4837
4850
|
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
4838
4851
|
};
|
|
@@ -4844,19 +4857,6 @@ export declare const components: {
|
|
|
4844
4857
|
opts: {
|
|
4845
4858
|
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/file-upload/types").FileUploadModel>>>;
|
|
4846
4859
|
};
|
|
4847
|
-
loading: {
|
|
4848
|
-
type: import("vue").PropType<boolean>;
|
|
4849
|
-
} & {
|
|
4850
|
-
default: boolean;
|
|
4851
|
-
};
|
|
4852
|
-
accept: {
|
|
4853
|
-
type: import("vue").PropType<string>;
|
|
4854
|
-
};
|
|
4855
|
-
multiple: {
|
|
4856
|
-
type: import("vue").PropType<boolean>;
|
|
4857
|
-
} & {
|
|
4858
|
-
default: boolean;
|
|
4859
|
-
};
|
|
4860
4860
|
downloadSrc: {
|
|
4861
4861
|
type: import("vue").PropType<string>;
|
|
4862
4862
|
};
|
|
@@ -4883,26 +4883,39 @@ export declare const components: {
|
|
|
4883
4883
|
} & {
|
|
4884
4884
|
default: string;
|
|
4885
4885
|
};
|
|
4886
|
-
|
|
4887
|
-
type: import("vue").PropType<
|
|
4888
|
-
|
|
4889
|
-
|
|
4890
|
-
modelValue: {
|
|
4891
|
-
type: import("vue").PropType<import("./components/file-upload/types").FileUploadModel>;
|
|
4886
|
+
loading: {
|
|
4887
|
+
type: import("vue").PropType<boolean>;
|
|
4888
|
+
} & {
|
|
4889
|
+
default: boolean;
|
|
4892
4890
|
};
|
|
4893
4891
|
error: {
|
|
4894
4892
|
type: import("vue").PropType<string | null>;
|
|
4895
4893
|
} & {
|
|
4896
4894
|
default: null;
|
|
4897
4895
|
};
|
|
4898
|
-
|
|
4896
|
+
name: {
|
|
4897
|
+
type: import("vue").PropType<string | undefined>;
|
|
4898
|
+
required: true;
|
|
4899
|
+
};
|
|
4900
|
+
accept: {
|
|
4899
4901
|
type: import("vue").PropType<string>;
|
|
4900
4902
|
};
|
|
4903
|
+
multiple: {
|
|
4904
|
+
type: import("vue").PropType<boolean>;
|
|
4905
|
+
} & {
|
|
4906
|
+
default: boolean;
|
|
4907
|
+
};
|
|
4901
4908
|
placeholder: {
|
|
4902
4909
|
type: import("vue").PropType<string>;
|
|
4903
4910
|
} & {
|
|
4904
4911
|
default: string;
|
|
4905
4912
|
};
|
|
4913
|
+
modelValue: {
|
|
4914
|
+
type: import("vue").PropType<import("./components/file-upload/types").FileUploadModel>;
|
|
4915
|
+
};
|
|
4916
|
+
helperText: {
|
|
4917
|
+
type: import("vue").PropType<string>;
|
|
4918
|
+
};
|
|
4906
4919
|
useField: {
|
|
4907
4920
|
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
4908
4921
|
};
|
|
@@ -4914,19 +4927,6 @@ export declare const components: {
|
|
|
4914
4927
|
opts: {
|
|
4915
4928
|
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/file-upload/types").FileUploadModel>>>;
|
|
4916
4929
|
};
|
|
4917
|
-
loading: {
|
|
4918
|
-
type: import("vue").PropType<boolean>;
|
|
4919
|
-
} & {
|
|
4920
|
-
default: boolean;
|
|
4921
|
-
};
|
|
4922
|
-
accept: {
|
|
4923
|
-
type: import("vue").PropType<string>;
|
|
4924
|
-
};
|
|
4925
|
-
multiple: {
|
|
4926
|
-
type: import("vue").PropType<boolean>;
|
|
4927
|
-
} & {
|
|
4928
|
-
default: boolean;
|
|
4929
|
-
};
|
|
4930
4930
|
downloadSrc: {
|
|
4931
4931
|
type: import("vue").PropType<string>;
|
|
4932
4932
|
};
|
|
@@ -4942,10 +4942,10 @@ export declare const components: {
|
|
|
4942
4942
|
"onMenu:delete"?: ((url: string) => any) | undefined;
|
|
4943
4943
|
}, {
|
|
4944
4944
|
label: string;
|
|
4945
|
-
error: string | null;
|
|
4946
|
-
placeholder: string;
|
|
4947
4945
|
loading: boolean;
|
|
4946
|
+
error: string | null;
|
|
4948
4947
|
multiple: boolean;
|
|
4948
|
+
placeholder: string;
|
|
4949
4949
|
downloadMenu: import("./components/file-upload/types").DownloadMenu[];
|
|
4950
4950
|
}>;
|
|
4951
4951
|
SolMenuItemSeparator: any;
|