@central-design-system/components 3.0.0-alpha.6 → 3.0.0-alpha.7
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/cds.css +1 -1
- package/dist/cds.es.js +935 -915
- package/dist/cds.umd.js +1 -1
- package/dist/components/CdsButton/CdsButton.vue.d.ts +5 -5
- package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +80 -62
- package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +116 -36
- package/dist/components/CdsInput/CdsInput.vue.d.ts +14 -0
- package/dist/components/CdsSelect/CdsSelect.vue.d.ts +40 -22
- package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +15 -3
- package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +64 -10
- package/package.json +1 -1
- package/src/scss/themes/index.ts +1 -1
- package/src/scss/utility/lists.scss +1 -0
|
@@ -21,10 +21,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
21
21
|
default: string;
|
|
22
22
|
};
|
|
23
23
|
itemChildren: {
|
|
24
|
-
/**
|
|
25
|
-
* Событие при фокусе
|
|
26
|
-
* @type { boolean }
|
|
27
|
-
*/
|
|
28
24
|
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
29
25
|
default: string;
|
|
30
26
|
};
|
|
@@ -36,6 +32,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
36
32
|
type: import("vue").PropType<boolean>;
|
|
37
33
|
default: boolean;
|
|
38
34
|
};
|
|
35
|
+
size: {
|
|
36
|
+
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
37
|
+
default: string;
|
|
38
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
39
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
40
|
+
};
|
|
39
41
|
loading: {
|
|
40
42
|
type: import("vue").PropType<boolean>;
|
|
41
43
|
default: boolean;
|
|
@@ -69,7 +71,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
69
71
|
default: boolean;
|
|
70
72
|
};
|
|
71
73
|
'onClick:prepend': {
|
|
72
|
-
type: import("vue").PropType<(...args: any[]) => any>;
|
|
74
|
+
type: import("vue").PropType<(...args: any[]) => any>; /**
|
|
75
|
+
* Событие при фокусе
|
|
76
|
+
* @type { boolean }
|
|
77
|
+
*/
|
|
73
78
|
default: undefined;
|
|
74
79
|
};
|
|
75
80
|
'onClick:append': {
|
|
@@ -141,6 +146,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
141
146
|
default: null;
|
|
142
147
|
};
|
|
143
148
|
messages: {
|
|
149
|
+
/**
|
|
150
|
+
* Событие при фокусе
|
|
151
|
+
* @type { boolean }
|
|
152
|
+
*/
|
|
144
153
|
type: import("vue").PropType<string | string[]>;
|
|
145
154
|
default: () => never[];
|
|
146
155
|
};
|
|
@@ -225,10 +234,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
225
234
|
};
|
|
226
235
|
isSelectAll: {
|
|
227
236
|
type: import("vue").PropType<boolean>;
|
|
228
|
-
default: boolean;
|
|
229
|
-
* Событие при изменении значения (v-model)
|
|
230
|
-
* @type { any }
|
|
231
|
-
*/
|
|
237
|
+
default: boolean;
|
|
232
238
|
};
|
|
233
239
|
selectAllText: {
|
|
234
240
|
type: import("vue").PropType<string>;
|
|
@@ -250,6 +256,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
250
256
|
isFocused: import("vue").Ref<boolean>;
|
|
251
257
|
externalValidationValue: import("vue").ComputedRef<any>;
|
|
252
258
|
inputRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
259
|
+
size: {
|
|
260
|
+
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
261
|
+
default: string;
|
|
262
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
263
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
264
|
+
};
|
|
253
265
|
loading: {
|
|
254
266
|
type: import("vue").PropType<boolean>;
|
|
255
267
|
default: boolean;
|
|
@@ -267,7 +279,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
267
279
|
default: boolean;
|
|
268
280
|
};
|
|
269
281
|
'onClick:prepend': {
|
|
270
|
-
type: import("vue").PropType<(...args: any[]) => any>;
|
|
282
|
+
type: import("vue").PropType<(...args: any[]) => any>; /**
|
|
283
|
+
* Событие при фокусе
|
|
284
|
+
* @type { boolean }
|
|
285
|
+
*/
|
|
271
286
|
default: undefined;
|
|
272
287
|
};
|
|
273
288
|
'onClick:append': {
|
|
@@ -339,6 +354,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
339
354
|
default: null;
|
|
340
355
|
};
|
|
341
356
|
messages: {
|
|
357
|
+
/**
|
|
358
|
+
* Событие при фокусе
|
|
359
|
+
* @type { boolean }
|
|
360
|
+
*/
|
|
342
361
|
type: import("vue").PropType<string | string[]>;
|
|
343
362
|
default: () => never[];
|
|
344
363
|
};
|
|
@@ -411,6 +430,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
411
430
|
validationRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
412
431
|
'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
|
|
413
432
|
'onClick:append': import("vue").PropType<(...args: any[]) => any>;
|
|
433
|
+
size: {
|
|
434
|
+
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
435
|
+
default: string;
|
|
436
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
437
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
438
|
+
};
|
|
414
439
|
readonly: {
|
|
415
440
|
type: import("vue").PropType<boolean>;
|
|
416
441
|
default: boolean;
|
|
@@ -488,6 +513,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
488
513
|
default: null;
|
|
489
514
|
};
|
|
490
515
|
messages: {
|
|
516
|
+
/**
|
|
517
|
+
* Событие при фокусе
|
|
518
|
+
* @type { boolean }
|
|
519
|
+
*/
|
|
491
520
|
type: import("vue").PropType<string | string[]>;
|
|
492
521
|
default: () => never[];
|
|
493
522
|
};
|
|
@@ -507,6 +536,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
507
536
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
508
537
|
validationClasses: import("vue").ComputedRef<Record<string, boolean>>;
|
|
509
538
|
focusClasses: import("vue").ComputedRef<Record<string, boolean>>;
|
|
539
|
+
sizeClasses: import("vue").ComputedRef<string>;
|
|
510
540
|
reset: () => void;
|
|
511
541
|
resetValidation: () => void;
|
|
512
542
|
validate: () => Promise<string[]>;
|
|
@@ -517,6 +547,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
517
547
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
518
548
|
'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
|
|
519
549
|
'onClick:append': import("vue").PropType<(...args: any[]) => any>;
|
|
550
|
+
size: {
|
|
551
|
+
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
552
|
+
default: string;
|
|
553
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
554
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
555
|
+
};
|
|
520
556
|
readonly: {
|
|
521
557
|
type: import("vue").PropType<boolean>;
|
|
522
558
|
default: boolean;
|
|
@@ -594,6 +630,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
594
630
|
default: null;
|
|
595
631
|
};
|
|
596
632
|
messages: {
|
|
633
|
+
/**
|
|
634
|
+
* Событие при фокусе
|
|
635
|
+
* @type { boolean }
|
|
636
|
+
*/
|
|
597
637
|
type: import("vue").PropType<string | string[]>;
|
|
598
638
|
default: () => never[];
|
|
599
639
|
};
|
|
@@ -608,6 +648,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
608
648
|
description: string;
|
|
609
649
|
disabled: boolean;
|
|
610
650
|
value: any;
|
|
651
|
+
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
611
652
|
error: boolean;
|
|
612
653
|
prependIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
613
654
|
appendIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
@@ -632,6 +673,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
632
673
|
readonly type?: "number" | "text" | "password" | "email" | "tel" | "url" | undefined;
|
|
633
674
|
readonly disabled?: boolean | undefined;
|
|
634
675
|
readonly value?: any;
|
|
676
|
+
readonly size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
635
677
|
readonly error?: boolean | undefined;
|
|
636
678
|
readonly readonly?: boolean | undefined;
|
|
637
679
|
readonly loading?: boolean | undefined;
|
|
@@ -708,6 +750,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
708
750
|
'click:control': (event: MouseEvent) => true;
|
|
709
751
|
'mousedown:control': (event: MouseEvent) => true;
|
|
710
752
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
753
|
+
size: {
|
|
754
|
+
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
755
|
+
default: string;
|
|
756
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
757
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
758
|
+
};
|
|
711
759
|
loading: {
|
|
712
760
|
type: import("vue").PropType<boolean>;
|
|
713
761
|
default: boolean;
|
|
@@ -725,7 +773,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
725
773
|
default: boolean;
|
|
726
774
|
};
|
|
727
775
|
'onClick:prepend': {
|
|
728
|
-
type: import("vue").PropType<(...args: any[]) => any>;
|
|
776
|
+
type: import("vue").PropType<(...args: any[]) => any>; /**
|
|
777
|
+
* Событие при фокусе
|
|
778
|
+
* @type { boolean }
|
|
779
|
+
*/
|
|
729
780
|
default: undefined;
|
|
730
781
|
};
|
|
731
782
|
'onClick:append': {
|
|
@@ -797,6 +848,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
797
848
|
default: null;
|
|
798
849
|
};
|
|
799
850
|
messages: {
|
|
851
|
+
/**
|
|
852
|
+
* Событие при фокусе
|
|
853
|
+
* @type { boolean }
|
|
854
|
+
*/
|
|
800
855
|
type: import("vue").PropType<string | string[]>;
|
|
801
856
|
default: () => never[];
|
|
802
857
|
};
|
|
@@ -875,6 +930,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
875
930
|
description: string;
|
|
876
931
|
disabled: boolean;
|
|
877
932
|
value: any;
|
|
933
|
+
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
878
934
|
error: boolean;
|
|
879
935
|
prependIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
880
936
|
appendIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
@@ -956,7 +1012,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
956
1012
|
updateLocation: (event: Event) => void;
|
|
957
1013
|
} | undefined)>;
|
|
958
1014
|
default: string;
|
|
959
|
-
validator: (value: any) => boolean;
|
|
1015
|
+
validator: (value: any) => boolean; /**
|
|
1016
|
+
* Событие выбора всех элементов
|
|
1017
|
+
* @type { boolean }
|
|
1018
|
+
*/
|
|
960
1019
|
}, "default" | "type"> & {
|
|
961
1020
|
type: import("vue").PropType<NonNullable<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
962
1021
|
updateLocation: (event: Event) => void;
|
|
@@ -1042,7 +1101,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1042
1101
|
default: NonNullable<string | boolean>;
|
|
1043
1102
|
};
|
|
1044
1103
|
modelValue: {
|
|
1045
|
-
type: import("vue").PropType<boolean>;
|
|
1104
|
+
type: import("vue").PropType<boolean>; /**
|
|
1105
|
+
* Событие выбора всех элементов
|
|
1106
|
+
* @type { boolean }
|
|
1107
|
+
*/
|
|
1046
1108
|
default: boolean;
|
|
1047
1109
|
};
|
|
1048
1110
|
closeOnBack: {
|
|
@@ -1088,7 +1150,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1088
1150
|
updateLocation: (event: Event) => void;
|
|
1089
1151
|
} | undefined)>;
|
|
1090
1152
|
default: string;
|
|
1091
|
-
validator: (value: any) => boolean;
|
|
1153
|
+
validator: (value: any) => boolean; /**
|
|
1154
|
+
* Событие выбора всех элементов
|
|
1155
|
+
* @type { boolean }
|
|
1156
|
+
*/
|
|
1092
1157
|
};
|
|
1093
1158
|
location: {
|
|
1094
1159
|
type: import("vue").PropType<import('../../utils').TAnchor>;
|
|
@@ -1179,7 +1244,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1179
1244
|
default: boolean;
|
|
1180
1245
|
};
|
|
1181
1246
|
modelValue: {
|
|
1182
|
-
type: import("vue").PropType<boolean>;
|
|
1247
|
+
type: import("vue").PropType<boolean>; /**
|
|
1248
|
+
* Событие выбора всех элементов
|
|
1249
|
+
* @type { boolean }
|
|
1250
|
+
*/
|
|
1183
1251
|
default: boolean;
|
|
1184
1252
|
};
|
|
1185
1253
|
closeOnBack: {
|
|
@@ -1234,7 +1302,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1234
1302
|
updateLocation: (event: Event) => void;
|
|
1235
1303
|
} | undefined)>;
|
|
1236
1304
|
default: string;
|
|
1237
|
-
validator: (value: any) => boolean;
|
|
1305
|
+
validator: (value: any) => boolean; /**
|
|
1306
|
+
* Событие выбора всех элементов
|
|
1307
|
+
* @type { boolean }
|
|
1308
|
+
*/
|
|
1238
1309
|
};
|
|
1239
1310
|
location: {
|
|
1240
1311
|
type: import("vue").PropType<import('../../utils').TAnchor>;
|
|
@@ -1325,7 +1396,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1325
1396
|
default: boolean;
|
|
1326
1397
|
};
|
|
1327
1398
|
modelValue: {
|
|
1328
|
-
type: import("vue").PropType<boolean>;
|
|
1399
|
+
type: import("vue").PropType<boolean>; /**
|
|
1400
|
+
* Событие выбора всех элементов
|
|
1401
|
+
* @type { boolean }
|
|
1402
|
+
*/
|
|
1329
1403
|
default: boolean;
|
|
1330
1404
|
};
|
|
1331
1405
|
closeOnBack: {
|
|
@@ -1442,7 +1516,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1442
1516
|
updateLocation: (event: Event) => void;
|
|
1443
1517
|
} | undefined)>;
|
|
1444
1518
|
default: string;
|
|
1445
|
-
validator: (value: any) => boolean;
|
|
1519
|
+
validator: (value: any) => boolean; /**
|
|
1520
|
+
* Событие выбора всех элементов
|
|
1521
|
+
* @type { boolean }
|
|
1522
|
+
*/
|
|
1446
1523
|
}, "default" | "type"> & {
|
|
1447
1524
|
type: import("vue").PropType<NonNullable<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
1448
1525
|
updateLocation: (event: Event) => void;
|
|
@@ -1528,7 +1605,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1528
1605
|
default: NonNullable<string | boolean>;
|
|
1529
1606
|
};
|
|
1530
1607
|
modelValue: {
|
|
1531
|
-
type: import("vue").PropType<boolean>;
|
|
1608
|
+
type: import("vue").PropType<boolean>; /**
|
|
1609
|
+
* Событие выбора всех элементов
|
|
1610
|
+
* @type { boolean }
|
|
1611
|
+
*/
|
|
1532
1612
|
default: boolean;
|
|
1533
1613
|
};
|
|
1534
1614
|
closeOnBack: {
|
|
@@ -1638,10 +1718,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1638
1718
|
default: string;
|
|
1639
1719
|
};
|
|
1640
1720
|
itemChildren: {
|
|
1641
|
-
/**
|
|
1642
|
-
* Событие при фокусе
|
|
1643
|
-
* @type { boolean }
|
|
1644
|
-
*/
|
|
1645
1721
|
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
1646
1722
|
default: string;
|
|
1647
1723
|
};
|
|
@@ -1723,10 +1799,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1723
1799
|
default: string;
|
|
1724
1800
|
};
|
|
1725
1801
|
itemChildren: {
|
|
1726
|
-
/**
|
|
1727
|
-
* Событие при фокусе
|
|
1728
|
-
* @type { boolean }
|
|
1729
|
-
*/
|
|
1730
1802
|
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
1731
1803
|
default: string;
|
|
1732
1804
|
};
|
|
@@ -1783,6 +1855,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1783
1855
|
readonly itemChildren?: import("../../composable").TItemKey | undefined;
|
|
1784
1856
|
readonly itemProps?: import("../../composable").TItemKey | undefined;
|
|
1785
1857
|
readonly returnObject?: boolean | undefined;
|
|
1858
|
+
readonly size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1786
1859
|
readonly error?: boolean | undefined;
|
|
1787
1860
|
readonly readonly?: boolean | undefined;
|
|
1788
1861
|
readonly loading?: boolean | undefined;
|
|
@@ -2054,10 +2127,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2054
2127
|
default: string;
|
|
2055
2128
|
};
|
|
2056
2129
|
itemChildren: {
|
|
2057
|
-
/**
|
|
2058
|
-
* Событие при фокусе
|
|
2059
|
-
* @type { boolean }
|
|
2060
|
-
*/
|
|
2061
2130
|
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
2062
2131
|
default: string;
|
|
2063
2132
|
};
|
|
@@ -2069,6 +2138,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2069
2138
|
type: import("vue").PropType<boolean>;
|
|
2070
2139
|
default: boolean;
|
|
2071
2140
|
};
|
|
2141
|
+
size: {
|
|
2142
|
+
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
2143
|
+
default: string;
|
|
2144
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
2145
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
2146
|
+
};
|
|
2072
2147
|
loading: {
|
|
2073
2148
|
type: import("vue").PropType<boolean>;
|
|
2074
2149
|
default: boolean;
|
|
@@ -2102,7 +2177,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2102
2177
|
default: boolean;
|
|
2103
2178
|
};
|
|
2104
2179
|
'onClick:prepend': {
|
|
2105
|
-
type: import("vue").PropType<(...args: any[]) => any>;
|
|
2180
|
+
type: import("vue").PropType<(...args: any[]) => any>; /**
|
|
2181
|
+
* Событие при фокусе
|
|
2182
|
+
* @type { boolean }
|
|
2183
|
+
*/
|
|
2106
2184
|
default: undefined;
|
|
2107
2185
|
};
|
|
2108
2186
|
'onClick:append': {
|
|
@@ -2174,6 +2252,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2174
2252
|
default: null;
|
|
2175
2253
|
};
|
|
2176
2254
|
messages: {
|
|
2255
|
+
/**
|
|
2256
|
+
* Событие при фокусе
|
|
2257
|
+
* @type { boolean }
|
|
2258
|
+
*/
|
|
2177
2259
|
type: import("vue").PropType<string | string[]>;
|
|
2178
2260
|
default: () => never[];
|
|
2179
2261
|
};
|
|
@@ -2258,10 +2340,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2258
2340
|
};
|
|
2259
2341
|
isSelectAll: {
|
|
2260
2342
|
type: import("vue").PropType<boolean>;
|
|
2261
|
-
default: boolean;
|
|
2262
|
-
* Событие при изменении значения (v-model)
|
|
2263
|
-
* @type { any }
|
|
2264
|
-
*/
|
|
2343
|
+
default: boolean;
|
|
2265
2344
|
};
|
|
2266
2345
|
selectAllText: {
|
|
2267
2346
|
type: import("vue").PropType<string>;
|
|
@@ -2284,6 +2363,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2284
2363
|
itemChildren: import("../../composable").TItemKey;
|
|
2285
2364
|
itemProps: import("../../composable").TItemKey;
|
|
2286
2365
|
returnObject: boolean;
|
|
2366
|
+
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
2287
2367
|
error: boolean;
|
|
2288
2368
|
menu: boolean | undefined;
|
|
2289
2369
|
prependIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
@@ -4,6 +4,12 @@ export declare const componentName = "CdsInput";
|
|
|
4
4
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
5
5
|
'onClick:prepend': PropType<(...args: any[]) => any>;
|
|
6
6
|
'onClick:append': PropType<(...args: any[]) => any>;
|
|
7
|
+
size: {
|
|
8
|
+
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
9
|
+
default: string;
|
|
10
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
11
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
12
|
+
};
|
|
7
13
|
readonly: {
|
|
8
14
|
type: PropType<boolean>;
|
|
9
15
|
default: boolean;
|
|
@@ -100,6 +106,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
100
106
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
101
107
|
validationClasses: import("vue").ComputedRef<Record<string, boolean>>;
|
|
102
108
|
focusClasses: import("vue").ComputedRef<Record<string, boolean>>;
|
|
109
|
+
sizeClasses: import("vue").ComputedRef<string>;
|
|
103
110
|
reset: () => void;
|
|
104
111
|
resetValidation: () => void;
|
|
105
112
|
validate: () => Promise<string[]>;
|
|
@@ -114,6 +121,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
114
121
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
115
122
|
'onClick:prepend': PropType<(...args: any[]) => any>;
|
|
116
123
|
'onClick:append': PropType<(...args: any[]) => any>;
|
|
124
|
+
size: {
|
|
125
|
+
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
126
|
+
default: string;
|
|
127
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
128
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
129
|
+
};
|
|
117
130
|
readonly: {
|
|
118
131
|
type: PropType<boolean>;
|
|
119
132
|
default: boolean;
|
|
@@ -205,6 +218,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
205
218
|
description: string;
|
|
206
219
|
disabled: boolean;
|
|
207
220
|
value: any;
|
|
221
|
+
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
208
222
|
error: boolean;
|
|
209
223
|
prependIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
210
224
|
appendIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
export declare const componentName = "CdsSelect";
|
|
2
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
size: {
|
|
4
|
+
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
5
|
+
default: string;
|
|
6
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
7
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
8
|
+
};
|
|
3
9
|
items: {
|
|
4
10
|
type: import("vue").PropType<any[]>;
|
|
5
11
|
default: () => never[];
|
|
@@ -42,9 +48,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
42
48
|
};
|
|
43
49
|
'onClick:prepend': {
|
|
44
50
|
type: import("vue").PropType<(...args: any[]) => any>;
|
|
45
|
-
/**
|
|
46
|
-
* Событие клика по иконке перед значением поля
|
|
47
|
-
*/
|
|
48
51
|
default: undefined;
|
|
49
52
|
};
|
|
50
53
|
'onClick:append': {
|
|
@@ -63,6 +66,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
63
66
|
};
|
|
64
67
|
error: {
|
|
65
68
|
type: import("vue").PropType<boolean>;
|
|
69
|
+
/**
|
|
70
|
+
* Событие клика по иконке внутри элемента перед значением поля
|
|
71
|
+
*/
|
|
66
72
|
default: boolean;
|
|
67
73
|
};
|
|
68
74
|
errorMessages: {
|
|
@@ -105,10 +111,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
105
111
|
};
|
|
106
112
|
label: {
|
|
107
113
|
type: import("vue").PropType<string>;
|
|
108
|
-
/**
|
|
109
|
-
* Событие при фокусе
|
|
110
|
-
* @type { boolean }
|
|
111
|
-
*/
|
|
112
114
|
default: undefined;
|
|
113
115
|
};
|
|
114
116
|
description: {
|
|
@@ -196,6 +198,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
196
198
|
validationRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
197
199
|
'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
|
|
198
200
|
'onClick:append': import("vue").PropType<(...args: any[]) => any>;
|
|
201
|
+
size: {
|
|
202
|
+
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
203
|
+
default: string;
|
|
204
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
205
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
206
|
+
};
|
|
199
207
|
readonly: {
|
|
200
208
|
type: import("vue").PropType<boolean>;
|
|
201
209
|
default: boolean;
|
|
@@ -210,6 +218,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
210
218
|
};
|
|
211
219
|
error: {
|
|
212
220
|
type: import("vue").PropType<boolean>;
|
|
221
|
+
/**
|
|
222
|
+
* Событие клика по иконке внутри элемента перед значением поля
|
|
223
|
+
*/
|
|
213
224
|
default: boolean;
|
|
214
225
|
};
|
|
215
226
|
errorMessages: {
|
|
@@ -262,10 +273,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
262
273
|
};
|
|
263
274
|
label: {
|
|
264
275
|
type: import("vue").PropType<string>;
|
|
265
|
-
/**
|
|
266
|
-
* Событие при фокусе
|
|
267
|
-
* @type { boolean }
|
|
268
|
-
*/
|
|
269
276
|
default: undefined;
|
|
270
277
|
};
|
|
271
278
|
description: {
|
|
@@ -296,6 +303,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
296
303
|
isValid: import("vue").ComputedRef<boolean | null>;
|
|
297
304
|
validationClasses: import("vue").ComputedRef<Record<string, boolean>>;
|
|
298
305
|
focusClasses: import("vue").ComputedRef<Record<string, boolean>>;
|
|
306
|
+
sizeClasses: import("vue").ComputedRef<string>;
|
|
299
307
|
reset: () => void;
|
|
300
308
|
resetValidation: () => void;
|
|
301
309
|
validate: () => Promise<string[]>;
|
|
@@ -306,6 +314,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
306
314
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
307
315
|
'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
|
|
308
316
|
'onClick:append': import("vue").PropType<(...args: any[]) => any>;
|
|
317
|
+
size: {
|
|
318
|
+
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
319
|
+
default: string;
|
|
320
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
321
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
322
|
+
};
|
|
309
323
|
readonly: {
|
|
310
324
|
type: import("vue").PropType<boolean>;
|
|
311
325
|
default: boolean;
|
|
@@ -320,6 +334,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
320
334
|
};
|
|
321
335
|
error: {
|
|
322
336
|
type: import("vue").PropType<boolean>;
|
|
337
|
+
/**
|
|
338
|
+
* Событие клика по иконке внутри элемента перед значением поля
|
|
339
|
+
*/
|
|
323
340
|
default: boolean;
|
|
324
341
|
};
|
|
325
342
|
errorMessages: {
|
|
@@ -372,10 +389,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
372
389
|
};
|
|
373
390
|
label: {
|
|
374
391
|
type: import("vue").PropType<string>;
|
|
375
|
-
/**
|
|
376
|
-
* Событие при фокусе
|
|
377
|
-
* @type { boolean }
|
|
378
|
-
*/
|
|
379
392
|
default: undefined;
|
|
380
393
|
};
|
|
381
394
|
description: {
|
|
@@ -401,6 +414,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
401
414
|
description: string;
|
|
402
415
|
disabled: boolean;
|
|
403
416
|
value: any;
|
|
417
|
+
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
404
418
|
error: boolean;
|
|
405
419
|
prependIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
406
420
|
appendIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
@@ -431,6 +445,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
431
445
|
readonly itemChildren?: import("../../composable").TItemKey | undefined;
|
|
432
446
|
readonly itemProps?: import("../../composable").TItemKey | undefined;
|
|
433
447
|
readonly returnObject?: boolean | undefined;
|
|
448
|
+
readonly size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
434
449
|
readonly error?: boolean | undefined;
|
|
435
450
|
readonly readonly?: boolean | undefined;
|
|
436
451
|
readonly loading?: boolean | undefined;
|
|
@@ -524,6 +539,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
524
539
|
*/
|
|
525
540
|
'click:appendInner': (event: MouseEvent) => true;
|
|
526
541
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
542
|
+
size: {
|
|
543
|
+
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
544
|
+
default: string;
|
|
545
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
546
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
547
|
+
};
|
|
527
548
|
items: {
|
|
528
549
|
type: import("vue").PropType<any[]>;
|
|
529
550
|
default: () => never[];
|
|
@@ -566,9 +587,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
566
587
|
};
|
|
567
588
|
'onClick:prepend': {
|
|
568
589
|
type: import("vue").PropType<(...args: any[]) => any>;
|
|
569
|
-
/**
|
|
570
|
-
* Событие клика по иконке перед значением поля
|
|
571
|
-
*/
|
|
572
590
|
default: undefined;
|
|
573
591
|
};
|
|
574
592
|
'onClick:append': {
|
|
@@ -587,6 +605,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
587
605
|
};
|
|
588
606
|
error: {
|
|
589
607
|
type: import("vue").PropType<boolean>;
|
|
608
|
+
/**
|
|
609
|
+
* Событие клика по иконке внутри элемента перед значением поля
|
|
610
|
+
*/
|
|
590
611
|
default: boolean;
|
|
591
612
|
};
|
|
592
613
|
errorMessages: {
|
|
@@ -629,10 +650,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
629
650
|
};
|
|
630
651
|
label: {
|
|
631
652
|
type: import("vue").PropType<string>;
|
|
632
|
-
/**
|
|
633
|
-
* Событие при фокусе
|
|
634
|
-
* @type { boolean }
|
|
635
|
-
*/
|
|
636
653
|
default: undefined;
|
|
637
654
|
};
|
|
638
655
|
description: {
|
|
@@ -726,6 +743,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
726
743
|
itemChildren: import("../../composable").TItemKey;
|
|
727
744
|
itemProps: import("../../composable").TItemKey;
|
|
728
745
|
returnObject: boolean;
|
|
746
|
+
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
729
747
|
error: boolean;
|
|
730
748
|
prependIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
731
749
|
appendIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|