@central-design-system/components 3.10.7 → 3.11.0
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/UPGRADE.md +146 -0
- package/dist/cds.d.ts +4 -0
- package/dist/cds.es.js +7838 -7476
- package/dist/cds.es.js.map +1 -1
- package/dist/cds.umd.js +5 -5
- package/dist/cds.umd.js.map +1 -1
- package/dist/components/CdsAutocomplete/CdsAutocomplete.d.ts +21 -3
- package/dist/components/CdsBadge/CdsBadge.d.ts +1 -1
- package/dist/components/CdsBreadcrumbs/CdsBreadcrumbsItem.d.ts +15 -0
- package/dist/components/CdsCard/CdsCard.d.ts +20 -1
- package/dist/components/CdsCheckbox/CdsCheckbox.d.ts +43 -2
- package/dist/components/CdsCheckbox/CdsCheckboxGroup.d.ts +48 -0
- package/dist/components/CdsCombobox/CdsCombobox.d.ts +366 -23
- package/dist/components/CdsDropdown/CdsDropdown.d.ts +381 -26
- package/dist/components/CdsInput/CdsDescription.d.ts +31 -0
- package/dist/components/CdsInput/CdsInput.d.ts +18 -0
- package/dist/components/CdsInput/CdsLabel.d.ts +48 -0
- package/dist/components/CdsInput/index.d.ts +2 -0
- package/dist/components/CdsList/CdsListGroup.d.ts +1 -1
- package/dist/components/CdsList/CdsListItem.d.ts +19 -0
- package/dist/components/CdsNotification/CdsNotification.d.ts +1 -1
- package/dist/components/CdsNotification/CdsNotificationAlert.d.ts +1 -1
- package/dist/components/CdsNotification/composable/notification.d.ts +4 -2
- package/dist/components/CdsProgress/CdsProgressBar.d.ts +158 -0
- package/dist/components/CdsProgress/index.d.ts +1 -0
- package/dist/components/CdsRadioButton/CdsRadio.d.ts +84 -0
- package/dist/components/CdsRadioButton/CdsRadioButton.d.ts +48 -0
- package/dist/components/CdsRadioButton/CdsRadioGroup.d.ts +681 -0
- package/dist/components/CdsRadioButton/index.d.ts +1 -0
- package/dist/components/CdsSelect/CdsSelect.d.ts +90 -6
- package/dist/components/CdsSlideGroup/CdsSlideGroup.d.ts +59 -29
- package/dist/components/CdsStatus/CdsStatus.d.ts +23 -1
- package/dist/components/CdsTable/CdsTable.d.ts +3 -1
- package/dist/components/CdsTable/components/Table/InternalTable.d.ts +3 -1
- package/dist/components/CdsTable/components/TableProvider.d.ts +3 -1
- package/dist/components/CdsTabsV2/CdsTabsV2.d.ts +30 -0
- package/dist/components/CdsTag/CdsTag.d.ts +26 -0
- package/dist/components/CdsTextArea/CdsTextArea.d.ts +93 -6
- package/dist/components/CdsTextInput/CdsTextInput.d.ts +93 -6
- package/dist/components/CdsToggle/CdsToggle.d.ts +18 -0
- package/dist/components/CdsTooltip/CdsTooltip.d.ts +21 -0
- package/dist/components/CdsUploader/CdsUploader.d.ts +18 -0
- package/dist/components/index.d.ts +4 -0
- package/dist/composable/field.d.ts +5 -3
- package/dist/composable/input.d.ts +20 -0
- package/dist/composable/status.d.ts +14 -2
- package/dist/utils/compat.d.ts +33 -0
- package/dist/utils/dom/warn.d.ts +42 -0
- package/dist/utils/index.d.ts +1 -0
- package/package.json +4 -2
|
@@ -125,6 +125,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
125
125
|
type: import('vue').PropType<boolean>;
|
|
126
126
|
default: boolean;
|
|
127
127
|
};
|
|
128
|
+
hint: {
|
|
129
|
+
type: import('vue').PropType<string>;
|
|
130
|
+
default: undefined;
|
|
131
|
+
};
|
|
132
|
+
persistentHint: {
|
|
133
|
+
type: import('vue').PropType<boolean>;
|
|
134
|
+
default: boolean;
|
|
135
|
+
};
|
|
128
136
|
active: {
|
|
129
137
|
type: import('vue').PropType<boolean>;
|
|
130
138
|
default: boolean;
|
|
@@ -165,7 +173,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
165
173
|
default: undefined;
|
|
166
174
|
};
|
|
167
175
|
counter: {
|
|
168
|
-
type: import('vue').PropType<boolean>;
|
|
176
|
+
type: import('vue').PropType<boolean | number | string>;
|
|
169
177
|
default: boolean;
|
|
170
178
|
};
|
|
171
179
|
limit: {
|
|
@@ -302,6 +310,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
302
310
|
type: import('vue').PropType<boolean>;
|
|
303
311
|
default: boolean;
|
|
304
312
|
};
|
|
313
|
+
hint: {
|
|
314
|
+
type: import('vue').PropType<string>;
|
|
315
|
+
default: undefined;
|
|
316
|
+
};
|
|
317
|
+
persistentHint: {
|
|
318
|
+
type: import('vue').PropType<boolean>;
|
|
319
|
+
default: boolean;
|
|
320
|
+
};
|
|
305
321
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
306
322
|
'update:modelValue': (value: any) => true;
|
|
307
323
|
'click:control': (event: MouseEvent) => true;
|
|
@@ -404,6 +420,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
404
420
|
type: import('vue').PropType<boolean>;
|
|
405
421
|
default: boolean;
|
|
406
422
|
};
|
|
423
|
+
hint: {
|
|
424
|
+
type: import('vue').PropType<string>;
|
|
425
|
+
default: undefined;
|
|
426
|
+
};
|
|
427
|
+
persistentHint: {
|
|
428
|
+
type: import('vue').PropType<boolean>;
|
|
429
|
+
default: boolean;
|
|
430
|
+
};
|
|
407
431
|
}>> & Readonly<{
|
|
408
432
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
409
433
|
"onClick:control"?: ((event: MouseEvent) => any) | undefined;
|
|
@@ -423,6 +447,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
423
447
|
label: string;
|
|
424
448
|
messages: string | string[];
|
|
425
449
|
persistentMessages: boolean;
|
|
450
|
+
hint: string;
|
|
451
|
+
persistentHint: boolean;
|
|
426
452
|
errorMessages: string | string[];
|
|
427
453
|
maxErrors: string | number;
|
|
428
454
|
rules: import('../../composable').TValidationRule[];
|
|
@@ -529,6 +555,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
529
555
|
type: import('vue').PropType<boolean>;
|
|
530
556
|
default: boolean;
|
|
531
557
|
};
|
|
558
|
+
hint: {
|
|
559
|
+
type: import('vue').PropType<string>;
|
|
560
|
+
default: undefined;
|
|
561
|
+
};
|
|
562
|
+
persistentHint: {
|
|
563
|
+
type: import('vue').PropType<boolean>;
|
|
564
|
+
default: boolean;
|
|
565
|
+
};
|
|
532
566
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
533
567
|
'update:modelValue': (value: any) => true;
|
|
534
568
|
'click:control': (event: MouseEvent) => true;
|
|
@@ -631,6 +665,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
631
665
|
type: import('vue').PropType<boolean>;
|
|
632
666
|
default: boolean;
|
|
633
667
|
};
|
|
668
|
+
hint: {
|
|
669
|
+
type: import('vue').PropType<string>;
|
|
670
|
+
default: undefined;
|
|
671
|
+
};
|
|
672
|
+
persistentHint: {
|
|
673
|
+
type: import('vue').PropType<boolean>;
|
|
674
|
+
default: boolean;
|
|
675
|
+
};
|
|
634
676
|
}>> & Readonly<{
|
|
635
677
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
636
678
|
"onClick:control"?: ((event: MouseEvent) => any) | undefined;
|
|
@@ -650,6 +692,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
650
692
|
label: string;
|
|
651
693
|
messages: string | string[];
|
|
652
694
|
persistentMessages: boolean;
|
|
695
|
+
hint: string;
|
|
696
|
+
persistentHint: boolean;
|
|
653
697
|
errorMessages: string | string[];
|
|
654
698
|
maxErrors: string | number;
|
|
655
699
|
rules: import('../../composable').TValidationRule[];
|
|
@@ -678,6 +722,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
678
722
|
readonly focused?: boolean | undefined;
|
|
679
723
|
readonly messages?: string | string[] | undefined;
|
|
680
724
|
readonly persistentMessages?: boolean | undefined;
|
|
725
|
+
readonly persistentHint?: boolean | undefined;
|
|
681
726
|
readonly errorMessages?: string | string[] | undefined;
|
|
682
727
|
readonly maxErrors?: string | number | undefined;
|
|
683
728
|
readonly rules?: (import('../../composable').TValidationResult | ((value: any) => import('../../composable').TValidationResult) | ((value: any) => PromiseLike<import('../../composable').TValidationResult>) | {
|
|
@@ -688,7 +733,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
688
733
|
readonly hideMessages?: boolean | undefined;
|
|
689
734
|
readonly autofocus?: boolean | undefined;
|
|
690
735
|
readonly type?: "number" | "text" | "password" | "email" | "tel" | "url" | undefined;
|
|
691
|
-
readonly counter?: boolean | undefined;
|
|
736
|
+
readonly counter?: string | number | boolean | undefined;
|
|
692
737
|
readonly clearable?: boolean | undefined;
|
|
693
738
|
readonly clearLabel?: string | undefined;
|
|
694
739
|
readonly persistentClearable?: boolean | undefined;
|
|
@@ -700,6 +745,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
700
745
|
readonly description?: string | undefined;
|
|
701
746
|
readonly id?: string | undefined;
|
|
702
747
|
readonly label?: string | undefined;
|
|
748
|
+
readonly hint?: string | undefined;
|
|
703
749
|
readonly validationValue?: any;
|
|
704
750
|
readonly prefix?: string | undefined;
|
|
705
751
|
readonly suffix?: string | undefined;
|
|
@@ -840,6 +886,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
840
886
|
type: import('vue').PropType<boolean>;
|
|
841
887
|
default: boolean;
|
|
842
888
|
};
|
|
889
|
+
hint: {
|
|
890
|
+
type: import('vue').PropType<string>;
|
|
891
|
+
default: undefined;
|
|
892
|
+
};
|
|
893
|
+
persistentHint: {
|
|
894
|
+
type: import('vue').PropType<boolean>;
|
|
895
|
+
default: boolean;
|
|
896
|
+
};
|
|
843
897
|
active: {
|
|
844
898
|
type: import('vue').PropType<boolean>;
|
|
845
899
|
default: boolean;
|
|
@@ -880,7 +934,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
880
934
|
default: undefined;
|
|
881
935
|
};
|
|
882
936
|
counter: {
|
|
883
|
-
type: import('vue').PropType<boolean>;
|
|
937
|
+
type: import('vue').PropType<boolean | number | string>;
|
|
884
938
|
default: boolean;
|
|
885
939
|
};
|
|
886
940
|
limit: {
|
|
@@ -931,6 +985,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
931
985
|
readonly focused?: boolean | undefined;
|
|
932
986
|
readonly messages?: string | string[] | undefined;
|
|
933
987
|
readonly persistentMessages?: boolean | undefined;
|
|
988
|
+
readonly persistentHint?: boolean | undefined;
|
|
934
989
|
readonly errorMessages?: string | string[] | undefined;
|
|
935
990
|
readonly maxErrors?: string | number | undefined;
|
|
936
991
|
readonly rules?: (import('../../composable').TValidationResult | ((value: any) => import('../../composable').TValidationResult) | ((value: any) => PromiseLike<import('../../composable').TValidationResult>) | {
|
|
@@ -941,7 +996,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
941
996
|
readonly hideMessages?: boolean | undefined;
|
|
942
997
|
readonly autofocus?: boolean | undefined;
|
|
943
998
|
readonly type?: "number" | "text" | "password" | "email" | "tel" | "url" | undefined;
|
|
944
|
-
readonly counter?: boolean | undefined;
|
|
999
|
+
readonly counter?: string | number | boolean | undefined;
|
|
945
1000
|
readonly clearable?: boolean | undefined;
|
|
946
1001
|
readonly clearLabel?: string | undefined;
|
|
947
1002
|
readonly persistentClearable?: boolean | undefined;
|
|
@@ -953,6 +1008,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
953
1008
|
readonly description?: string | undefined;
|
|
954
1009
|
readonly id?: string | undefined;
|
|
955
1010
|
readonly label?: string | undefined;
|
|
1011
|
+
readonly hint?: string | undefined;
|
|
956
1012
|
readonly validationValue?: any;
|
|
957
1013
|
readonly prefix?: string | undefined;
|
|
958
1014
|
readonly suffix?: string | undefined;
|
|
@@ -1151,6 +1207,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1151
1207
|
type: import('vue').PropType<boolean>;
|
|
1152
1208
|
default: boolean;
|
|
1153
1209
|
};
|
|
1210
|
+
hint: {
|
|
1211
|
+
type: import('vue').PropType<string>;
|
|
1212
|
+
default: undefined;
|
|
1213
|
+
};
|
|
1214
|
+
persistentHint: {
|
|
1215
|
+
type: import('vue').PropType<boolean>;
|
|
1216
|
+
default: boolean;
|
|
1217
|
+
};
|
|
1154
1218
|
active: {
|
|
1155
1219
|
type: import('vue').PropType<boolean>;
|
|
1156
1220
|
default: boolean;
|
|
@@ -1191,7 +1255,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1191
1255
|
default: undefined;
|
|
1192
1256
|
};
|
|
1193
1257
|
counter: {
|
|
1194
|
-
type: import('vue').PropType<boolean>;
|
|
1258
|
+
type: import('vue').PropType<boolean | number | string>;
|
|
1195
1259
|
default: boolean;
|
|
1196
1260
|
};
|
|
1197
1261
|
limit: {
|
|
@@ -1250,6 +1314,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1250
1314
|
label: string;
|
|
1251
1315
|
messages: string | string[];
|
|
1252
1316
|
persistentMessages: boolean;
|
|
1317
|
+
hint: string;
|
|
1318
|
+
persistentHint: boolean;
|
|
1253
1319
|
errorMessages: string | string[];
|
|
1254
1320
|
maxErrors: string | number;
|
|
1255
1321
|
rules: import('../../composable').TValidationRule[];
|
|
@@ -1265,7 +1331,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1265
1331
|
type: "number" | "text" | "password" | "email" | "tel" | "url";
|
|
1266
1332
|
role: string;
|
|
1267
1333
|
placeholder: string;
|
|
1268
|
-
counter: boolean;
|
|
1334
|
+
counter: string | number | boolean;
|
|
1269
1335
|
limit: number;
|
|
1270
1336
|
clearable: boolean;
|
|
1271
1337
|
clearLabel: string;
|
|
@@ -1372,6 +1438,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1372
1438
|
type: import('vue').PropType<boolean>;
|
|
1373
1439
|
default: boolean;
|
|
1374
1440
|
};
|
|
1441
|
+
hint: {
|
|
1442
|
+
type: import('vue').PropType<string>;
|
|
1443
|
+
default: undefined;
|
|
1444
|
+
};
|
|
1445
|
+
persistentHint: {
|
|
1446
|
+
type: import('vue').PropType<boolean>;
|
|
1447
|
+
default: boolean;
|
|
1448
|
+
};
|
|
1375
1449
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1376
1450
|
'update:modelValue': (value: any) => true;
|
|
1377
1451
|
'click:control': (event: MouseEvent) => true;
|
|
@@ -1474,6 +1548,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1474
1548
|
type: import('vue').PropType<boolean>;
|
|
1475
1549
|
default: boolean;
|
|
1476
1550
|
};
|
|
1551
|
+
hint: {
|
|
1552
|
+
type: import('vue').PropType<string>;
|
|
1553
|
+
default: undefined;
|
|
1554
|
+
};
|
|
1555
|
+
persistentHint: {
|
|
1556
|
+
type: import('vue').PropType<boolean>;
|
|
1557
|
+
default: boolean;
|
|
1558
|
+
};
|
|
1477
1559
|
}>> & Readonly<{
|
|
1478
1560
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
1479
1561
|
"onClick:control"?: ((event: MouseEvent) => any) | undefined;
|
|
@@ -1493,6 +1575,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1493
1575
|
label: string;
|
|
1494
1576
|
messages: string | string[];
|
|
1495
1577
|
persistentMessages: boolean;
|
|
1578
|
+
hint: string;
|
|
1579
|
+
persistentHint: boolean;
|
|
1496
1580
|
errorMessages: string | string[];
|
|
1497
1581
|
maxErrors: string | number;
|
|
1498
1582
|
rules: import('../../composable').TValidationRule[];
|
|
@@ -1,27 +1,41 @@
|
|
|
1
1
|
import { IGroupProvide } from '../../composable';
|
|
2
2
|
import { TCdsIconsName } from '@central-design-system/icons';
|
|
3
|
-
import { InjectionKey } from 'vue';
|
|
3
|
+
import { InjectionKey, PropType } from 'vue';
|
|
4
4
|
export declare const CdsSlideGroupSymbol: InjectionKey<IGroupProvide>;
|
|
5
5
|
export declare const componentName = "CdsSlideGroup";
|
|
6
6
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
7
|
+
/**
|
|
8
|
+
* Иконка кнопки прокрутки назад. Доступно с 3.11.0 — замена `prependIcon`.
|
|
9
|
+
*/
|
|
10
|
+
prevIcon: {
|
|
11
|
+
type: PropType<TCdsIconsName>;
|
|
12
|
+
default: undefined;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* Иконка кнопки прокрутки вперёд. Доступно с 3.11.0 — замена `appendIcon`.
|
|
16
|
+
*/
|
|
17
|
+
nextIcon: {
|
|
18
|
+
type: PropType<TCdsIconsName>;
|
|
19
|
+
default: undefined;
|
|
20
|
+
};
|
|
7
21
|
symbol: {
|
|
8
22
|
type: null;
|
|
9
23
|
default: InjectionKey<IGroupProvide>;
|
|
10
24
|
};
|
|
11
25
|
prependIcon: Omit<{
|
|
12
|
-
type:
|
|
26
|
+
type: PropType<TCdsIconsName>;
|
|
13
27
|
default: undefined;
|
|
14
28
|
validator: (value: TCdsIconsName) => boolean;
|
|
15
29
|
}, "default" | "type"> & {
|
|
16
|
-
type:
|
|
30
|
+
type: PropType<NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "ai" | "alert-fill" | "alert" | "analog" | "archive-fill" | "archive" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "bookmark-fill" | "bookmark" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock-fill" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "directory-open" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "education" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "fill" | "filters" | "flag" | "format" | "formula" | "funnel" | "globe" | "highlight" | "infinity" | "info-fill" | "info" | "insert" | "italic" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "moon" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "scale-left" | "scale-right" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "sun" | "tab-backward" | "tab-forward" | "telegram" | "thumb-down-fill" | "thumb-down" | "thumb-up-fill" | "thumb-up" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">>;
|
|
17
31
|
default: NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "ai" | "alert-fill" | "alert" | "analog" | "archive-fill" | "archive" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "bookmark-fill" | "bookmark" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock-fill" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "directory-open" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "education" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "fill" | "filters" | "flag" | "format" | "formula" | "funnel" | "globe" | "highlight" | "infinity" | "info-fill" | "info" | "insert" | "italic" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "moon" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "scale-left" | "scale-right" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "sun" | "tab-backward" | "tab-forward" | "telegram" | "thumb-down-fill" | "thumb-down" | "thumb-up-fill" | "thumb-up" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">;
|
|
18
32
|
};
|
|
19
33
|
appendIcon: Omit<{
|
|
20
|
-
type:
|
|
34
|
+
type: PropType<TCdsIconsName>;
|
|
21
35
|
default: undefined;
|
|
22
36
|
validator: (value: TCdsIconsName) => boolean;
|
|
23
37
|
}, "default" | "type"> & {
|
|
24
|
-
type:
|
|
38
|
+
type: PropType<NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "ai" | "alert-fill" | "alert" | "analog" | "archive-fill" | "archive" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "bookmark-fill" | "bookmark" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock-fill" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "directory-open" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "education" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "fill" | "filters" | "flag" | "format" | "formula" | "funnel" | "globe" | "highlight" | "infinity" | "info-fill" | "info" | "insert" | "italic" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "moon" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "scale-left" | "scale-right" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "sun" | "tab-backward" | "tab-forward" | "telegram" | "thumb-down-fill" | "thumb-down" | "thumb-up-fill" | "thumb-up" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">>;
|
|
25
39
|
default: NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "ai" | "alert-fill" | "alert" | "analog" | "archive-fill" | "archive" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "bookmark-fill" | "bookmark" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock-fill" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "directory-open" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "education" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "fill" | "filters" | "flag" | "format" | "formula" | "funnel" | "globe" | "highlight" | "infinity" | "info-fill" | "info" | "insert" | "italic" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "moon" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "scale-left" | "scale-right" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "sun" | "tab-backward" | "tab-forward" | "telegram" | "thumb-down-fill" | "thumb-down" | "thumb-up-fill" | "thumb-up" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">;
|
|
26
40
|
};
|
|
27
41
|
modelValue: {
|
|
@@ -29,44 +43,44 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
29
43
|
default: undefined;
|
|
30
44
|
};
|
|
31
45
|
multiple: {
|
|
32
|
-
type:
|
|
46
|
+
type: PropType<boolean>;
|
|
33
47
|
default: boolean;
|
|
34
48
|
};
|
|
35
49
|
required: {
|
|
36
|
-
type:
|
|
50
|
+
type: PropType<boolean | "force">;
|
|
37
51
|
default: undefined;
|
|
38
52
|
};
|
|
39
53
|
max: {
|
|
40
|
-
type:
|
|
54
|
+
type: PropType<number>;
|
|
41
55
|
default: undefined;
|
|
42
56
|
};
|
|
43
57
|
selectedClass: Omit<{
|
|
44
|
-
type:
|
|
58
|
+
type: PropType<string>;
|
|
45
59
|
default: undefined;
|
|
46
60
|
}, "default" | "type"> & {
|
|
47
|
-
type:
|
|
61
|
+
type: PropType<string>;
|
|
48
62
|
default: string;
|
|
49
63
|
};
|
|
50
64
|
centerActive: {
|
|
51
|
-
type:
|
|
65
|
+
type: PropType<boolean>;
|
|
52
66
|
default: boolean;
|
|
53
67
|
};
|
|
54
68
|
showArrows: {
|
|
55
|
-
type:
|
|
69
|
+
type: PropType<boolean | string>;
|
|
56
70
|
validator: (value: any) => boolean;
|
|
57
71
|
};
|
|
58
72
|
disabled: {
|
|
59
|
-
type:
|
|
73
|
+
type: PropType<boolean>;
|
|
60
74
|
default: boolean;
|
|
61
75
|
};
|
|
62
76
|
direction: {
|
|
63
|
-
type:
|
|
77
|
+
type: PropType<import('../../composable').TDirection>;
|
|
64
78
|
default: string;
|
|
65
79
|
available: readonly ["horizontal", "vertical"];
|
|
66
80
|
validator: (value: import('../../composable').TDirection) => boolean;
|
|
67
81
|
};
|
|
68
82
|
tag: {
|
|
69
|
-
type:
|
|
83
|
+
type: PropType<string>;
|
|
70
84
|
default: string;
|
|
71
85
|
description: string;
|
|
72
86
|
};
|
|
@@ -78,24 +92,38 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
78
92
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
79
93
|
'update:modelValue': (value: any) => true;
|
|
80
94
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
95
|
+
/**
|
|
96
|
+
* Иконка кнопки прокрутки назад. Доступно с 3.11.0 — замена `prependIcon`.
|
|
97
|
+
*/
|
|
98
|
+
prevIcon: {
|
|
99
|
+
type: PropType<TCdsIconsName>;
|
|
100
|
+
default: undefined;
|
|
101
|
+
};
|
|
102
|
+
/**
|
|
103
|
+
* Иконка кнопки прокрутки вперёд. Доступно с 3.11.0 — замена `appendIcon`.
|
|
104
|
+
*/
|
|
105
|
+
nextIcon: {
|
|
106
|
+
type: PropType<TCdsIconsName>;
|
|
107
|
+
default: undefined;
|
|
108
|
+
};
|
|
81
109
|
symbol: {
|
|
82
110
|
type: null;
|
|
83
111
|
default: InjectionKey<IGroupProvide>;
|
|
84
112
|
};
|
|
85
113
|
prependIcon: Omit<{
|
|
86
|
-
type:
|
|
114
|
+
type: PropType<TCdsIconsName>;
|
|
87
115
|
default: undefined;
|
|
88
116
|
validator: (value: TCdsIconsName) => boolean;
|
|
89
117
|
}, "default" | "type"> & {
|
|
90
|
-
type:
|
|
118
|
+
type: PropType<NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "ai" | "alert-fill" | "alert" | "analog" | "archive-fill" | "archive" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "bookmark-fill" | "bookmark" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock-fill" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "directory-open" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "education" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "fill" | "filters" | "flag" | "format" | "formula" | "funnel" | "globe" | "highlight" | "infinity" | "info-fill" | "info" | "insert" | "italic" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "moon" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "scale-left" | "scale-right" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "sun" | "tab-backward" | "tab-forward" | "telegram" | "thumb-down-fill" | "thumb-down" | "thumb-up-fill" | "thumb-up" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">>;
|
|
91
119
|
default: NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "ai" | "alert-fill" | "alert" | "analog" | "archive-fill" | "archive" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "bookmark-fill" | "bookmark" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock-fill" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "directory-open" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "education" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "fill" | "filters" | "flag" | "format" | "formula" | "funnel" | "globe" | "highlight" | "infinity" | "info-fill" | "info" | "insert" | "italic" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "moon" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "scale-left" | "scale-right" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "sun" | "tab-backward" | "tab-forward" | "telegram" | "thumb-down-fill" | "thumb-down" | "thumb-up-fill" | "thumb-up" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">;
|
|
92
120
|
};
|
|
93
121
|
appendIcon: Omit<{
|
|
94
|
-
type:
|
|
122
|
+
type: PropType<TCdsIconsName>;
|
|
95
123
|
default: undefined;
|
|
96
124
|
validator: (value: TCdsIconsName) => boolean;
|
|
97
125
|
}, "default" | "type"> & {
|
|
98
|
-
type:
|
|
126
|
+
type: PropType<NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "ai" | "alert-fill" | "alert" | "analog" | "archive-fill" | "archive" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "bookmark-fill" | "bookmark" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock-fill" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "directory-open" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "education" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "fill" | "filters" | "flag" | "format" | "formula" | "funnel" | "globe" | "highlight" | "infinity" | "info-fill" | "info" | "insert" | "italic" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "moon" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "scale-left" | "scale-right" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "sun" | "tab-backward" | "tab-forward" | "telegram" | "thumb-down-fill" | "thumb-down" | "thumb-up-fill" | "thumb-up" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">>;
|
|
99
127
|
default: NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "ai" | "alert-fill" | "alert" | "analog" | "archive-fill" | "archive" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "bookmark-fill" | "bookmark" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock-fill" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "directory-open" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "education" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "fill" | "filters" | "flag" | "format" | "formula" | "funnel" | "globe" | "highlight" | "infinity" | "info-fill" | "info" | "insert" | "italic" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "moon" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "scale-left" | "scale-right" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "sun" | "tab-backward" | "tab-forward" | "telegram" | "thumb-down-fill" | "thumb-down" | "thumb-up-fill" | "thumb-up" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">;
|
|
100
128
|
};
|
|
101
129
|
modelValue: {
|
|
@@ -103,44 +131,44 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
103
131
|
default: undefined;
|
|
104
132
|
};
|
|
105
133
|
multiple: {
|
|
106
|
-
type:
|
|
134
|
+
type: PropType<boolean>;
|
|
107
135
|
default: boolean;
|
|
108
136
|
};
|
|
109
137
|
required: {
|
|
110
|
-
type:
|
|
138
|
+
type: PropType<boolean | "force">;
|
|
111
139
|
default: undefined;
|
|
112
140
|
};
|
|
113
141
|
max: {
|
|
114
|
-
type:
|
|
142
|
+
type: PropType<number>;
|
|
115
143
|
default: undefined;
|
|
116
144
|
};
|
|
117
145
|
selectedClass: Omit<{
|
|
118
|
-
type:
|
|
146
|
+
type: PropType<string>;
|
|
119
147
|
default: undefined;
|
|
120
148
|
}, "default" | "type"> & {
|
|
121
|
-
type:
|
|
149
|
+
type: PropType<string>;
|
|
122
150
|
default: string;
|
|
123
151
|
};
|
|
124
152
|
centerActive: {
|
|
125
|
-
type:
|
|
153
|
+
type: PropType<boolean>;
|
|
126
154
|
default: boolean;
|
|
127
155
|
};
|
|
128
156
|
showArrows: {
|
|
129
|
-
type:
|
|
157
|
+
type: PropType<boolean | string>;
|
|
130
158
|
validator: (value: any) => boolean;
|
|
131
159
|
};
|
|
132
160
|
disabled: {
|
|
133
|
-
type:
|
|
161
|
+
type: PropType<boolean>;
|
|
134
162
|
default: boolean;
|
|
135
163
|
};
|
|
136
164
|
direction: {
|
|
137
|
-
type:
|
|
165
|
+
type: PropType<import('../../composable').TDirection>;
|
|
138
166
|
default: string;
|
|
139
167
|
available: readonly ["horizontal", "vertical"];
|
|
140
168
|
validator: (value: import('../../composable').TDirection) => boolean;
|
|
141
169
|
};
|
|
142
170
|
tag: {
|
|
143
|
-
type:
|
|
171
|
+
type: PropType<string>;
|
|
144
172
|
default: string;
|
|
145
173
|
description: string;
|
|
146
174
|
};
|
|
@@ -159,5 +187,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
159
187
|
max: number;
|
|
160
188
|
selectedClass: string;
|
|
161
189
|
centerActive: boolean;
|
|
190
|
+
prevIcon: "link" | "search" | "bold" | "delete" | "add" | "administrator" | "ai" | "alert-fill" | "alert" | "analog" | "archive-fill" | "archive" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "bookmark-fill" | "bookmark" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock-fill" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "directory-open" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "education" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "fill" | "filters" | "flag" | "format" | "formula" | "funnel" | "globe" | "highlight" | "infinity" | "info-fill" | "info" | "insert" | "italic" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "moon" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "scale-left" | "scale-right" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "sun" | "tab-backward" | "tab-forward" | "telegram" | "thumb-down-fill" | "thumb-down" | "thumb-up-fill" | "thumb-up" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube";
|
|
191
|
+
nextIcon: "link" | "search" | "bold" | "delete" | "add" | "administrator" | "ai" | "alert-fill" | "alert" | "analog" | "archive-fill" | "archive" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "bookmark-fill" | "bookmark" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock-fill" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "directory-open" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "education" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "fill" | "filters" | "flag" | "format" | "formula" | "funnel" | "globe" | "highlight" | "infinity" | "info-fill" | "info" | "insert" | "italic" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "moon" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "scale-left" | "scale-right" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "sun" | "tab-backward" | "tab-forward" | "telegram" | "thumb-down-fill" | "thumb-down" | "thumb-up-fill" | "thumb-up" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube";
|
|
162
192
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
163
193
|
export default _default;
|
|
@@ -21,12 +21,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
21
21
|
icon: {
|
|
22
22
|
/**
|
|
23
23
|
* Статус иконкой
|
|
24
|
+
* @deprecated Используйте `variant="text"`
|
|
24
25
|
*/
|
|
25
26
|
type: PropType<boolean>;
|
|
26
27
|
default: boolean;
|
|
27
28
|
};
|
|
29
|
+
/**
|
|
30
|
+
* Режим отображения: заливка-бейдж или иконка с нейтральным текстом.
|
|
31
|
+
* Доступно с 3.11.0 — замена булеву `icon`.
|
|
32
|
+
*/
|
|
33
|
+
variant: {
|
|
34
|
+
type: PropType<"fill" | "text">;
|
|
35
|
+
default: undefined;
|
|
36
|
+
validator: (value: string) => boolean;
|
|
37
|
+
};
|
|
28
38
|
}>, {
|
|
29
39
|
iconName: import('vue').ComputedRef<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "ai" | "alert-fill" | "alert" | "analog" | "archive-fill" | "archive" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "bookmark-fill" | "bookmark" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock-fill" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "directory-open" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "education" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "fill" | "filters" | "flag" | "format" | "formula" | "funnel" | "globe" | "highlight" | "infinity" | "info-fill" | "info" | "insert" | "italic" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "moon" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "scale-left" | "scale-right" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "sun" | "tab-backward" | "tab-forward" | "telegram" | "thumb-down-fill" | "thumb-down" | "thumb-up-fill" | "thumb-up" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube" | undefined>;
|
|
40
|
+
isTextVariant: import('vue').ComputedRef<boolean>;
|
|
30
41
|
classes: import('vue').ComputedRef<{
|
|
31
42
|
'cds-status--icon': boolean;
|
|
32
43
|
}>;
|
|
@@ -53,15 +64,26 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
53
64
|
icon: {
|
|
54
65
|
/**
|
|
55
66
|
* Статус иконкой
|
|
67
|
+
* @deprecated Используйте `variant="text"`
|
|
56
68
|
*/
|
|
57
69
|
type: PropType<boolean>;
|
|
58
70
|
default: boolean;
|
|
59
71
|
};
|
|
72
|
+
/**
|
|
73
|
+
* Режим отображения: заливка-бейдж или иконка с нейтральным текстом.
|
|
74
|
+
* Доступно с 3.11.0 — замена булеву `icon`.
|
|
75
|
+
*/
|
|
76
|
+
variant: {
|
|
77
|
+
type: PropType<"fill" | "text">;
|
|
78
|
+
default: undefined;
|
|
79
|
+
validator: (value: string) => boolean;
|
|
80
|
+
};
|
|
60
81
|
}>> & Readonly<{}>, {
|
|
61
82
|
text: string | number;
|
|
62
83
|
icon: boolean;
|
|
63
|
-
status:
|
|
84
|
+
status: import('../../composable').TStatus;
|
|
64
85
|
theme: string;
|
|
86
|
+
variant: "text" | "fill";
|
|
65
87
|
}, {}, {
|
|
66
88
|
CdsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
67
89
|
theme: {
|
|
@@ -507,6 +507,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
507
507
|
})>;
|
|
508
508
|
scrollStrategy: NonNullable<"close" | "none" | "block" | "reposition" | ((data: import('../CdsOverlay/composable').IScrollStrategyData, props: import('../CdsOverlay/composable').IScrollStrategyProps, scope: import('vue').EffectScope) => void)>;
|
|
509
509
|
hideArrow: boolean;
|
|
510
|
+
interactive: boolean;
|
|
510
511
|
}> & Omit<{
|
|
511
512
|
readonly location: NonNullable<import('../../utils').TAnchor>;
|
|
512
513
|
readonly disabled: boolean;
|
|
@@ -544,6 +545,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
544
545
|
})>;
|
|
545
546
|
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | "reposition" | ((data: import('../CdsOverlay/composable').IScrollStrategyData, props: import('../CdsOverlay/composable').IScrollStrategyProps, scope: import('vue').EffectScope) => void)>;
|
|
546
547
|
readonly hideArrow: boolean;
|
|
548
|
+
readonly interactive: boolean;
|
|
547
549
|
readonly text?: string | number | undefined;
|
|
548
550
|
readonly id?: string | undefined;
|
|
549
551
|
readonly opacity?: string | number | undefined;
|
|
@@ -551,7 +553,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
551
553
|
readonly target?: Element | "parent" | (string & {}) | import('vue').ComponentPublicInstance | "cursor" | [x: number, y: number] | undefined;
|
|
552
554
|
readonly openOnFocus?: boolean | undefined;
|
|
553
555
|
readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
554
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "text" | "location" | "disabled" | "id" | "modelValue" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "opacity" | "eager" | "closeDelay" | "openDelay" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "activatorProps" | "activator" | "theme" | "origin" | "target" | "offset" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "hideArrow">, keyof import('vue').VNodeProps | keyof import('vue').AllowedComponentProps>;
|
|
556
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "text" | "location" | "disabled" | "id" | "modelValue" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "opacity" | "eager" | "closeDelay" | "openDelay" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "activatorProps" | "activator" | "theme" | "origin" | "target" | "offset" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "hideArrow" | "interactive">, keyof import('vue').VNodeProps | keyof import('vue').AllowedComponentProps>;
|
|
555
557
|
expandFixed: NTable.TFixed;
|
|
556
558
|
expandColumnWidth: number;
|
|
557
559
|
expandedRowKeys: NTable.TKey[];
|