@central-design-system/components 3.0.0-beta.8 → 3.0.0-beta.9
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.d.ts +1 -0
- package/dist/cds.es.js +9365 -8404
- package/dist/cds.umd.js +7 -3
- package/dist/components/CdsAutocomplete/CdsAutocomplete.vue.d.ts +100 -29
- package/dist/components/CdsBadge/CdsBadge.vue.d.ts +20 -9
- package/dist/components/CdsBreadcrumbs/CdsBreadcrumbs.vue.d.ts +11 -0
- package/dist/components/CdsBreadcrumbs/CdsBreadcrumbsItem.vue.d.ts +11 -0
- package/dist/components/CdsButton/CdsButton.vue.d.ts +11 -0
- package/dist/components/CdsCheckbox/CdsCheckbox.vue.d.ts +11 -0
- package/dist/components/CdsCheckbox/CdsCheckboxGroup.vue.d.ts +13 -0
- package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +101 -46
- package/dist/components/CdsContainer/CdsContainer.vue.d.ts +17 -2
- package/dist/components/CdsContentSwitcher/CdsContentSwitcher.vue.d.ts +11 -0
- package/dist/components/CdsDatePicker/CdsDatePicker.vue.d.ts +11 -0
- package/dist/components/CdsDrawer/CdsDrawer.vue.d.ts +12 -0
- package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +134 -39
- package/dist/components/CdsExpandablePanel/CdsExpandablePanels.vue.d.ts +11 -0
- package/dist/components/CdsFooter/CdsFooter.vue.d.ts +11 -0
- package/dist/components/CdsForm/CdsForm.vue.d.ts +11 -0
- package/dist/components/CdsHeader/CdsHeader.vue.d.ts +11 -0
- package/dist/components/CdsIcon/CdsIcon.vue.d.ts +13 -0
- package/dist/components/CdsInput/CdsInput.vue.d.ts +13 -8
- package/dist/components/CdsLayout/CdsLayout.vue.d.ts +11 -0
- package/dist/components/CdsLink/CdsLink.vue.d.ts +12 -0
- package/dist/components/CdsList/CdsList.vue.d.ts +13 -16
- package/dist/components/CdsLoader/CdsLoader.vue.d.ts +12 -0
- package/dist/components/CdsMenu/CdsMenu.vue.d.ts +11 -0
- package/dist/components/CdsModal/CdsModal.vue.d.ts +11 -0
- package/dist/components/CdsNotification/CdsNotification.vue.d.ts +22 -11
- package/dist/components/CdsNotification/CdsNotificationAlert.vue.d.ts +14 -3
- package/dist/components/CdsPagination/CdsPagination.vue.d.ts +11 -0
- package/dist/components/CdsProgress/CdsProgress.vue.d.ts +11 -0
- package/dist/components/CdsRadioButton/CdsRadio.vue.d.ts +11 -0
- package/dist/components/CdsRadioButton/CdsRadioButton.vue.d.ts +13 -0
- package/dist/components/CdsSelect/CdsSelect.vue.d.ts +40 -24
- package/dist/components/CdsSidebar/CdsSidebar.vue.d.ts +14 -6
- package/dist/components/CdsSkeletonLoader/CdsSkeletonLoader.vue.d.ts +11 -0
- package/dist/components/CdsStages/CdsStages.vue.d.ts +12 -0
- package/dist/components/CdsStatus/CdsStatus.vue.d.ts +12 -0
- package/dist/components/CdsSteps/CdsSteps.vue.d.ts +13 -6
- package/dist/components/CdsTable/CdsTable.vue.d.ts +50 -18
- package/dist/components/CdsTable/components/Table/InternalTable.d.ts +21 -3
- package/dist/components/CdsTable/components/TableProvider.d.ts +32 -3
- package/dist/components/CdsTable/composable/table.d.ts +7 -1
- package/dist/components/CdsTabs/CdsTabs.vue.d.ts +11 -0
- package/dist/components/CdsTag/CdsTag.vue.d.ts +12 -0
- package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +46 -50
- package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +44 -16
- package/dist/components/CdsTimePicker/CdsTimePicker.vue.d.ts +11 -0
- package/dist/components/CdsToggle/CdsToggle.vue.d.ts +13 -8
- package/dist/components/CdsToolbar/CdsToolbar.vue.d.ts +11 -0
- package/dist/components/CdsTooltip/CdsTooltip.vue.d.ts +19 -0
- package/dist/components/CdsUploader/CdsUploader.vue.d.ts +35 -12
- package/dist/components/CdsUploader/components/UploadList/ListItem.d.ts +21 -3
- package/dist/components/CdsUploader/components/UploadList/UploadList.d.ts +21 -3
- package/dist/components/CdsUploader/composable/upload.d.ts +17 -7
- package/dist/composable/index.d.ts +1 -0
- package/dist/composable/select.d.ts +8 -4
- package/dist/composable/theme.d.ts +82 -0
- package/dist/composable/variant.d.ts +1 -1
- package/dist/create.d.ts +2 -1
- package/dist/themes/b2b.d.ts +26 -0
- package/dist/themes/cds.d.ts +26 -0
- package/dist/themes/dark.d.ts +26 -0
- package/dist/themes/index.d.ts +5 -0
- package/dist/themes/promo.d.ts +26 -0
- package/dist/themes/themes.d.ts +10 -0
- package/dist/utils/colors.d.ts +368 -0
- package/dist/utils/colorsUtils/APCA.d.ts +7 -0
- package/dist/utils/colorsUtils/index.d.ts +1 -0
- package/dist/utils/colorsUtils/transformCIELAB.d.ts +3 -0
- package/dist/utils/colorsUtils/transformSRGB.d.ts +3 -0
- package/dist/utils/colorsUtils/utils.d.ts +41 -0
- package/dist/utils/helpers.d.ts +7 -0
- package/dist/utils/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/scss/themes/index.ts +1 -1
- package/dist/components/CdsTable/composable/scroll.d.ts +0 -4607
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
export declare const componentName = "CdsSelect";
|
|
2
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
theme: {
|
|
4
|
+
type: import("vue").PropType<string>;
|
|
5
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
6
|
+
default: undefined;
|
|
7
|
+
};
|
|
3
8
|
size: {
|
|
4
9
|
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
5
10
|
default: string;
|
|
@@ -7,10 +12,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
7
12
|
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
8
13
|
};
|
|
9
14
|
items: {
|
|
10
|
-
type: import("vue").PropType<any[]>;
|
|
11
|
-
* Событие при фокусе
|
|
12
|
-
* @type { boolean }
|
|
13
|
-
*/
|
|
15
|
+
type: import("vue").PropType<any[]>;
|
|
14
16
|
default: () => never[];
|
|
15
17
|
};
|
|
16
18
|
itemTitle: {
|
|
@@ -54,9 +56,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
54
56
|
default: undefined;
|
|
55
57
|
};
|
|
56
58
|
'onClick:append': {
|
|
57
|
-
type: import("vue").PropType<(...args: any[]) => any>;
|
|
58
|
-
* Событие клика по иконке после значения поля
|
|
59
|
-
*/
|
|
59
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
60
60
|
default: undefined;
|
|
61
61
|
};
|
|
62
62
|
prependIcon: {
|
|
@@ -128,14 +128,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
128
128
|
default: () => never[];
|
|
129
129
|
};
|
|
130
130
|
persistentMessages: {
|
|
131
|
-
type: import("vue").PropType<boolean>;
|
|
131
|
+
type: import("vue").PropType<boolean>; /**
|
|
132
|
+
* Событие клика по иконке после значения поля
|
|
133
|
+
*/
|
|
132
134
|
default: boolean;
|
|
133
135
|
};
|
|
134
136
|
active: {
|
|
135
137
|
type: import("vue").PropType<boolean>;
|
|
136
|
-
/**
|
|
137
|
-
* Событие очистки поля ввода
|
|
138
|
-
*/
|
|
139
138
|
default: boolean;
|
|
140
139
|
};
|
|
141
140
|
autofocus: {
|
|
@@ -211,6 +210,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
211
210
|
validationRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
212
211
|
'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
|
|
213
212
|
'onClick:append': import("vue").PropType<(...args: any[]) => any>;
|
|
213
|
+
theme: {
|
|
214
|
+
type: import("vue").PropType<string>;
|
|
215
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
216
|
+
default: undefined;
|
|
217
|
+
};
|
|
214
218
|
size: {
|
|
215
219
|
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
216
220
|
default: string;
|
|
@@ -298,7 +302,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
298
302
|
default: () => never[];
|
|
299
303
|
};
|
|
300
304
|
persistentMessages: {
|
|
301
|
-
type: import("vue").PropType<boolean>;
|
|
305
|
+
type: import("vue").PropType<boolean>; /**
|
|
306
|
+
* Событие клика по иконке после значения поля
|
|
307
|
+
*/
|
|
302
308
|
default: boolean;
|
|
303
309
|
};
|
|
304
310
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -306,6 +312,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
306
312
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
307
313
|
'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
|
|
308
314
|
'onClick:append': import("vue").PropType<(...args: any[]) => any>;
|
|
315
|
+
theme: {
|
|
316
|
+
type: import("vue").PropType<string>;
|
|
317
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
318
|
+
default: undefined;
|
|
319
|
+
};
|
|
309
320
|
size: {
|
|
310
321
|
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
311
322
|
default: string;
|
|
@@ -393,7 +404,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
393
404
|
default: () => never[];
|
|
394
405
|
};
|
|
395
406
|
persistentMessages: {
|
|
396
|
-
type: import("vue").PropType<boolean>;
|
|
407
|
+
type: import("vue").PropType<boolean>; /**
|
|
408
|
+
* Событие клика по иконке после значения поля
|
|
409
|
+
*/
|
|
397
410
|
default: boolean;
|
|
398
411
|
};
|
|
399
412
|
}>> & {
|
|
@@ -403,6 +416,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
403
416
|
description: string;
|
|
404
417
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
405
418
|
disabled: boolean;
|
|
419
|
+
theme: string;
|
|
406
420
|
name: string | undefined;
|
|
407
421
|
id: string;
|
|
408
422
|
error: boolean;
|
|
@@ -455,6 +469,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
455
469
|
readonly focused?: boolean | undefined;
|
|
456
470
|
readonly readonly?: boolean | undefined;
|
|
457
471
|
readonly description?: string | undefined;
|
|
472
|
+
readonly theme?: string | undefined;
|
|
458
473
|
readonly name?: string | undefined;
|
|
459
474
|
readonly id?: string | undefined;
|
|
460
475
|
readonly prefix?: string | undefined;
|
|
@@ -492,6 +507,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
492
507
|
}>;
|
|
493
508
|
iconClasses: import("vue").ComputedRef<Record<string, boolean>>;
|
|
494
509
|
loadingClasses: import("vue").ComputedRef<string | undefined>;
|
|
510
|
+
themeClasses: Readonly<import("vue").ComputedRef<string | undefined>>;
|
|
495
511
|
onInput: (event: Event) => void;
|
|
496
512
|
onBlur: () => void;
|
|
497
513
|
onFocus: () => void;
|
|
@@ -530,6 +546,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
530
546
|
*/
|
|
531
547
|
'click:appendInner': (event: MouseEvent) => true;
|
|
532
548
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
549
|
+
theme: {
|
|
550
|
+
type: import("vue").PropType<string>;
|
|
551
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
552
|
+
default: undefined;
|
|
553
|
+
};
|
|
533
554
|
size: {
|
|
534
555
|
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
535
556
|
default: string;
|
|
@@ -537,10 +558,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
537
558
|
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
538
559
|
};
|
|
539
560
|
items: {
|
|
540
|
-
type: import("vue").PropType<any[]>;
|
|
541
|
-
* Событие при фокусе
|
|
542
|
-
* @type { boolean }
|
|
543
|
-
*/
|
|
561
|
+
type: import("vue").PropType<any[]>;
|
|
544
562
|
default: () => never[];
|
|
545
563
|
};
|
|
546
564
|
itemTitle: {
|
|
@@ -584,9 +602,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
584
602
|
default: undefined;
|
|
585
603
|
};
|
|
586
604
|
'onClick:append': {
|
|
587
|
-
type: import("vue").PropType<(...args: any[]) => any>;
|
|
588
|
-
* Событие клика по иконке после значения поля
|
|
589
|
-
*/
|
|
605
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
590
606
|
default: undefined;
|
|
591
607
|
};
|
|
592
608
|
prependIcon: {
|
|
@@ -658,14 +674,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
658
674
|
default: () => never[];
|
|
659
675
|
};
|
|
660
676
|
persistentMessages: {
|
|
661
|
-
type: import("vue").PropType<boolean>;
|
|
677
|
+
type: import("vue").PropType<boolean>; /**
|
|
678
|
+
* Событие клика по иконке после значения поля
|
|
679
|
+
*/
|
|
662
680
|
default: boolean;
|
|
663
681
|
};
|
|
664
682
|
active: {
|
|
665
683
|
type: import("vue").PropType<boolean>;
|
|
666
|
-
/**
|
|
667
|
-
* Событие очистки поля ввода
|
|
668
|
-
*/
|
|
669
684
|
default: boolean;
|
|
670
685
|
};
|
|
671
686
|
autofocus: {
|
|
@@ -746,6 +761,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
746
761
|
description: string;
|
|
747
762
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
748
763
|
disabled: boolean;
|
|
764
|
+
theme: string;
|
|
749
765
|
type: "number" | "password" | "text" | "email" | "tel" | "url";
|
|
750
766
|
name: string | undefined;
|
|
751
767
|
id: string;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
export declare const componentName = "CdsSidebar";
|
|
3
3
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
|
+
theme: {
|
|
5
|
+
type: PropType<string>;
|
|
6
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
7
|
+
default: undefined;
|
|
8
|
+
};
|
|
4
9
|
title: {
|
|
5
10
|
type: PropType<string>;
|
|
6
11
|
default: string;
|
|
@@ -8,9 +13,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
8
13
|
size: {
|
|
9
14
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
10
15
|
default: string;
|
|
11
|
-
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
12
|
-
* Скрывать overlay в открытом состоянии
|
|
13
|
-
*/
|
|
16
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
14
17
|
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
15
18
|
};
|
|
16
19
|
/**
|
|
@@ -32,6 +35,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
32
35
|
[x: string]: unknown;
|
|
33
36
|
};
|
|
34
37
|
sizeClasses: import("vue").ComputedRef<string>;
|
|
38
|
+
themeClasses: Readonly<import("vue").ComputedRef<string | undefined>>;
|
|
35
39
|
showOverlay: import("vue").ComputedRef<boolean>;
|
|
36
40
|
hasToolbarSlot: import("vue").ComputedRef<boolean>;
|
|
37
41
|
hasAppendSlot: import("vue").ComputedRef<boolean>;
|
|
@@ -48,6 +52,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
48
52
|
*/
|
|
49
53
|
'click:outside': (event: MouseEvent) => true;
|
|
50
54
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
55
|
+
theme: {
|
|
56
|
+
type: PropType<string>;
|
|
57
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
58
|
+
default: undefined;
|
|
59
|
+
};
|
|
51
60
|
title: {
|
|
52
61
|
type: PropType<string>;
|
|
53
62
|
default: string;
|
|
@@ -55,9 +64,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
55
64
|
size: {
|
|
56
65
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
57
66
|
default: string;
|
|
58
|
-
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
59
|
-
* Скрывать overlay в открытом состоянии
|
|
60
|
-
*/
|
|
67
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
61
68
|
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
62
69
|
};
|
|
63
70
|
/**
|
|
@@ -80,6 +87,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
80
87
|
}, {
|
|
81
88
|
title: string;
|
|
82
89
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
90
|
+
theme: string;
|
|
83
91
|
modelValue: boolean;
|
|
84
92
|
disabledOverlay: boolean;
|
|
85
93
|
}>;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
export declare const componentName = "CdsSkeletonLoader";
|
|
3
3
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
|
+
theme: {
|
|
5
|
+
type: PropType<string>;
|
|
6
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
7
|
+
default: undefined;
|
|
8
|
+
};
|
|
4
9
|
height: {
|
|
5
10
|
type: PropType<string | number>;
|
|
6
11
|
default: string;
|
|
@@ -54,6 +59,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
54
59
|
default: boolean;
|
|
55
60
|
};
|
|
56
61
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
62
|
+
theme: {
|
|
63
|
+
type: PropType<string>;
|
|
64
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
65
|
+
default: undefined;
|
|
66
|
+
};
|
|
57
67
|
height: {
|
|
58
68
|
type: PropType<string | number>;
|
|
59
69
|
default: string;
|
|
@@ -107,6 +117,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
107
117
|
default: boolean;
|
|
108
118
|
};
|
|
109
119
|
}>>, {
|
|
120
|
+
theme: string;
|
|
110
121
|
type: "text" | "button" | "block" | "chip" | "actions" | "avatar" | "divider" | "heading" | "sentences" | "paragraph" | "article" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "subtitle" | "table" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-row" | "table-tfoot" | (string & {}) | readonly ("text" | "button" | "block" | "chip" | "actions" | "avatar" | "divider" | "heading" | "sentences" | "paragraph" | "article" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "subtitle" | "table" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-row" | "table-tfoot" | (string & {}))[];
|
|
111
122
|
loading: boolean;
|
|
112
123
|
height: string | number;
|
|
@@ -2,6 +2,11 @@ import type { PropType } from 'vue';
|
|
|
2
2
|
import type { IInternalItem } from '../../composable';
|
|
3
3
|
export declare const componentName = "CdsStages";
|
|
4
4
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
5
|
+
theme: {
|
|
6
|
+
type: PropType<string>;
|
|
7
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
8
|
+
default: undefined;
|
|
9
|
+
};
|
|
5
10
|
items: {
|
|
6
11
|
type: PropType<any[]>;
|
|
7
12
|
default: () => never[];
|
|
@@ -50,7 +55,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
50
55
|
isFinished: import("vue").ComputedRef<boolean>;
|
|
51
56
|
hasError: (item: IInternalItem) => any;
|
|
52
57
|
innerStyle: import("vue").ComputedRef<string>;
|
|
58
|
+
themeClasses: Readonly<import("vue").ComputedRef<string | undefined>>;
|
|
53
59
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
60
|
+
theme: {
|
|
61
|
+
type: PropType<string>;
|
|
62
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
63
|
+
default: undefined;
|
|
64
|
+
};
|
|
54
65
|
items: {
|
|
55
66
|
type: PropType<any[]>;
|
|
56
67
|
default: () => never[];
|
|
@@ -96,6 +107,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
96
107
|
itemChildren: import("../../composable").TItemKey;
|
|
97
108
|
itemProps: import("../../composable").TItemKey;
|
|
98
109
|
returnObject: boolean;
|
|
110
|
+
theme: string;
|
|
99
111
|
current: string | number | null;
|
|
100
112
|
finished: boolean;
|
|
101
113
|
}>;
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
export declare const componentName = "CdsStatus";
|
|
2
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
theme: {
|
|
4
|
+
type: import("vue").PropType<string>;
|
|
5
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
6
|
+
default: undefined;
|
|
7
|
+
};
|
|
3
8
|
status: {
|
|
4
9
|
type: import("vue").PropType<"error" | "info" | "success" | "warning" | "progress">;
|
|
5
10
|
default: string;
|
|
@@ -18,9 +23,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
18
23
|
default: undefined;
|
|
19
24
|
};
|
|
20
25
|
}, {
|
|
26
|
+
themeClasses: Readonly<import("vue").ComputedRef<string | undefined>>;
|
|
21
27
|
appearanceClasses: import("vue").ComputedRef<string>;
|
|
22
28
|
statusClasses: import("vue").ComputedRef<string>;
|
|
23
29
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
30
|
+
theme: {
|
|
31
|
+
type: import("vue").PropType<string>;
|
|
32
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
33
|
+
default: undefined;
|
|
34
|
+
};
|
|
24
35
|
status: {
|
|
25
36
|
type: import("vue").PropType<"error" | "info" | "success" | "warning" | "progress">;
|
|
26
37
|
default: string;
|
|
@@ -39,6 +50,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
39
50
|
default: undefined;
|
|
40
51
|
};
|
|
41
52
|
}>>, {
|
|
53
|
+
theme: string;
|
|
42
54
|
text: string;
|
|
43
55
|
appearance: "primary" | "secondary" | "transparent";
|
|
44
56
|
status: "error" | "info" | "success" | "warning" | "progress";
|
|
@@ -4,9 +4,7 @@ export declare const CDS_MOBILE_STEPS_WIDTH: number;
|
|
|
4
4
|
export declare const componentName = "CdsSteps";
|
|
5
5
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
6
6
|
prependIcon: Omit<{
|
|
7
|
-
type: PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
8
|
-
* Вертикальное отображение
|
|
9
|
-
*/
|
|
7
|
+
type: PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
10
8
|
default: undefined;
|
|
11
9
|
validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
|
|
12
10
|
}, "default" | "type"> & {
|
|
@@ -21,6 +19,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
21
19
|
type: PropType<NonNullable<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">>;
|
|
22
20
|
default: NonNullable<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
23
21
|
};
|
|
22
|
+
theme: {
|
|
23
|
+
type: PropType<string>;
|
|
24
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
25
|
+
default: undefined;
|
|
26
|
+
};
|
|
24
27
|
modelValue: {
|
|
25
28
|
type: null;
|
|
26
29
|
default: undefined;
|
|
@@ -78,9 +81,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
78
81
|
'update:modelValue': (value: unknown) => boolean;
|
|
79
82
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
80
83
|
prependIcon: Omit<{
|
|
81
|
-
type: PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
82
|
-
* Вертикальное отображение
|
|
83
|
-
*/
|
|
84
|
+
type: PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
84
85
|
default: undefined;
|
|
85
86
|
validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
|
|
86
87
|
}, "default" | "type"> & {
|
|
@@ -95,6 +96,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
95
96
|
type: PropType<NonNullable<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">>;
|
|
96
97
|
default: NonNullable<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
97
98
|
};
|
|
99
|
+
theme: {
|
|
100
|
+
type: PropType<string>;
|
|
101
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
102
|
+
default: undefined;
|
|
103
|
+
};
|
|
98
104
|
modelValue: {
|
|
99
105
|
type: null;
|
|
100
106
|
default: undefined;
|
|
@@ -150,6 +156,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
150
156
|
multiple: boolean;
|
|
151
157
|
disabled: boolean;
|
|
152
158
|
required: boolean | "force";
|
|
159
|
+
theme: string;
|
|
153
160
|
modelValue: any;
|
|
154
161
|
prependIcon: NonNullable<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
155
162
|
appendIcon: NonNullable<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|