@central-design-system/components 3.0.0-beta.7 → 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 +9439 -8438
- package/dist/cds.umd.js +7 -3
- package/dist/components/CdsAutocomplete/CdsAutocomplete.vue.d.ts +111 -23
- package/dist/components/CdsBadge/CdsBadge.vue.d.ts +25 -16
- 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 +115 -37
- 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 +152 -45
- 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 +12 -1
- 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 +42 -26
- package/dist/components/CdsSidebar/CdsSidebar.vue.d.ts +30 -8
- 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 +48 -52
- package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +46 -18
- 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 +24 -6
- package/dist/components/CdsUploader/components/UploadList/UploadList.d.ts +24 -6
- package/dist/components/CdsUploader/composable/upload.d.ts +18 -8
- package/dist/composable/index.d.ts +1 -0
- package/dist/composable/select.d.ts +21 -8
- 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/src/scss/utility/variables/flex.scss +42 -1
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
export declare const componentName = "CdsHeader";
|
|
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
|
dark: {
|
|
4
9
|
type: import("vue").PropType<boolean>;
|
|
5
10
|
default: boolean;
|
|
@@ -32,6 +37,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
32
37
|
reveal: (value: boolean) => true;
|
|
33
38
|
focusin: (event: FocusEvent) => true;
|
|
34
39
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
40
|
+
theme: {
|
|
41
|
+
type: import("vue").PropType<string>;
|
|
42
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
43
|
+
default: undefined;
|
|
44
|
+
};
|
|
35
45
|
dark: {
|
|
36
46
|
type: import("vue").PropType<boolean>;
|
|
37
47
|
default: boolean;
|
|
@@ -65,6 +75,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
65
75
|
onReveal?: ((value: boolean) => any) | undefined;
|
|
66
76
|
}, {
|
|
67
77
|
dark: boolean;
|
|
78
|
+
theme: string;
|
|
68
79
|
modelValue: boolean;
|
|
69
80
|
height: string | number;
|
|
70
81
|
reveal: boolean;
|
|
@@ -2,6 +2,11 @@ import { PropType } from 'vue';
|
|
|
2
2
|
import type { TCdsIconsName } from '@central-design-system/icons';
|
|
3
3
|
export declare const componentName = "CdsIcon";
|
|
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
|
size: {
|
|
6
11
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
7
12
|
default: string;
|
|
@@ -19,10 +24,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
19
24
|
}, {
|
|
20
25
|
iconComponent: import("vue").ComputedRef<string>;
|
|
21
26
|
sizeClasses: import("vue").ComputedRef<string>;
|
|
27
|
+
themeClasses: Readonly<import("vue").ComputedRef<string | undefined>>;
|
|
22
28
|
} | {
|
|
23
29
|
sizeClasses: import("vue").ComputedRef<string>;
|
|
30
|
+
themeClasses: Readonly<import("vue").ComputedRef<string | undefined>>;
|
|
24
31
|
iconComponent?: undefined;
|
|
25
32
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, never[], never, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
|
+
theme: {
|
|
34
|
+
type: PropType<string>;
|
|
35
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
36
|
+
default: undefined;
|
|
37
|
+
};
|
|
26
38
|
size: {
|
|
27
39
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
28
40
|
default: string;
|
|
@@ -39,6 +51,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
39
51
|
};
|
|
40
52
|
}>> & {}, {
|
|
41
53
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
54
|
+
theme: string;
|
|
42
55
|
name: "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";
|
|
43
56
|
}>;
|
|
44
57
|
export default _sfc_main;
|
|
@@ -3,6 +3,11 @@ export declare const componentName = "CdsInput";
|
|
|
3
3
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
4
|
'onClick:prepend': PropType<(...args: any[]) => any>;
|
|
5
5
|
'onClick:append': PropType<(...args: any[]) => any>;
|
|
6
|
+
theme: {
|
|
7
|
+
type: PropType<string>;
|
|
8
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
9
|
+
default: undefined;
|
|
10
|
+
};
|
|
6
11
|
size: {
|
|
7
12
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
8
13
|
default: string;
|
|
@@ -62,10 +67,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
62
67
|
prependIcon: {
|
|
63
68
|
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">;
|
|
64
69
|
default: undefined;
|
|
65
|
-
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;
|
|
66
|
-
* Событие изменения v-model
|
|
67
|
-
* @type { any }
|
|
68
|
-
*/
|
|
70
|
+
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;
|
|
69
71
|
};
|
|
70
72
|
appendIcon: {
|
|
71
73
|
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">;
|
|
@@ -105,6 +107,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
105
107
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
106
108
|
'onClick:prepend': PropType<(...args: any[]) => any>;
|
|
107
109
|
'onClick:append': PropType<(...args: any[]) => any>;
|
|
110
|
+
theme: {
|
|
111
|
+
type: PropType<string>;
|
|
112
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
113
|
+
default: undefined;
|
|
114
|
+
};
|
|
108
115
|
size: {
|
|
109
116
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
110
117
|
default: string;
|
|
@@ -164,10 +171,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
164
171
|
prependIcon: {
|
|
165
172
|
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">;
|
|
166
173
|
default: undefined;
|
|
167
|
-
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;
|
|
168
|
-
* Событие изменения v-model
|
|
169
|
-
* @type { any }
|
|
170
|
-
*/
|
|
174
|
+
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;
|
|
171
175
|
};
|
|
172
176
|
appendIcon: {
|
|
173
177
|
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">;
|
|
@@ -205,6 +209,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
205
209
|
description: string;
|
|
206
210
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
207
211
|
disabled: boolean;
|
|
212
|
+
theme: string;
|
|
208
213
|
name: string | undefined;
|
|
209
214
|
id: string;
|
|
210
215
|
error: boolean;
|
|
@@ -2,6 +2,11 @@ import type { PropType } from 'vue';
|
|
|
2
2
|
import type { TScrollObserver } from './components';
|
|
3
3
|
export declare const componentName = "CdsLayout";
|
|
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
|
container: {
|
|
6
11
|
type: PropType<boolean>;
|
|
7
12
|
default: boolean;
|
|
@@ -16,6 +21,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
16
21
|
scroll: (info: TScrollObserver) => true;
|
|
17
22
|
scrollHeight: (height: number) => true;
|
|
18
23
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24
|
+
theme: {
|
|
25
|
+
type: PropType<string>;
|
|
26
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
27
|
+
default: undefined;
|
|
28
|
+
};
|
|
19
29
|
container: {
|
|
20
30
|
type: PropType<boolean>;
|
|
21
31
|
default: boolean;
|
|
@@ -30,6 +40,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
30
40
|
onScroll?: ((info: TScrollObserver) => any) | undefined;
|
|
31
41
|
onScrollHeight?: ((height: number) => any) | undefined;
|
|
32
42
|
}, {
|
|
43
|
+
theme: string;
|
|
33
44
|
view: string;
|
|
34
45
|
container: boolean;
|
|
35
46
|
}>;
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
export declare const componentName = "CdsLink";
|
|
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
|
disabled: {
|
|
4
9
|
type: import("vue").PropType<boolean>;
|
|
5
10
|
default: boolean;
|
|
@@ -21,6 +26,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
21
26
|
to: import("vue").ComputedRef<import("vue-router").RouteLocationRaw | undefined>;
|
|
22
27
|
href: import("vue").ComputedRef<string | undefined>;
|
|
23
28
|
disabledClasses: import("vue").ComputedRef<string | undefined>;
|
|
29
|
+
themeClasses: Readonly<import("vue").ComputedRef<string | undefined>>;
|
|
24
30
|
handleClick: (event: MouseEvent) => void;
|
|
25
31
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
32
|
/**
|
|
@@ -30,6 +36,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
30
36
|
*/
|
|
31
37
|
click: (event: MouseEvent) => true;
|
|
32
38
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
39
|
+
theme: {
|
|
40
|
+
type: import("vue").PropType<string>;
|
|
41
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
42
|
+
default: undefined;
|
|
43
|
+
};
|
|
33
44
|
disabled: {
|
|
34
45
|
type: import("vue").PropType<boolean>;
|
|
35
46
|
default: boolean;
|
|
@@ -50,6 +61,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
50
61
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
51
62
|
}, {
|
|
52
63
|
disabled: boolean;
|
|
64
|
+
theme: string;
|
|
53
65
|
text: string;
|
|
54
66
|
href: string;
|
|
55
67
|
to: import("vue-router").RouteLocationRaw;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
export declare const componentName = "CdsList";
|
|
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
|
selectStrategy: {
|
|
5
10
|
type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
6
11
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -36,18 +41,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
36
41
|
};
|
|
37
42
|
items: {
|
|
38
43
|
type: PropType<any[]>;
|
|
39
|
-
/**
|
|
40
|
-
* Событие открытия элемента списка, возвращает массив id открытых элементов списка
|
|
41
|
-
* @type { unknown[] }
|
|
42
|
-
*/
|
|
43
44
|
default: () => never[];
|
|
44
45
|
};
|
|
45
46
|
itemTitle: {
|
|
46
47
|
type: PropType<import("../../composable").TItemKey>;
|
|
47
|
-
default: string;
|
|
48
|
-
* Событие открытия элемента списка по клику, возвращает id элемента и его состояние
|
|
49
|
-
* @type {{ id: unknown; value: boolean; path: unknown[], event: Event }}
|
|
50
|
-
*/
|
|
48
|
+
default: string;
|
|
51
49
|
};
|
|
52
50
|
itemValue: {
|
|
53
51
|
type: PropType<import("../../composable").TItemKey>;
|
|
@@ -104,6 +102,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
104
102
|
event: Event;
|
|
105
103
|
}) => boolean;
|
|
106
104
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
105
|
+
theme: {
|
|
106
|
+
type: PropType<string>;
|
|
107
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
108
|
+
default: undefined;
|
|
109
|
+
};
|
|
107
110
|
selectStrategy: {
|
|
108
111
|
type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
109
112
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -139,18 +142,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
139
142
|
};
|
|
140
143
|
items: {
|
|
141
144
|
type: PropType<any[]>;
|
|
142
|
-
/**
|
|
143
|
-
* Событие открытия элемента списка, возвращает массив id открытых элементов списка
|
|
144
|
-
* @type { unknown[] }
|
|
145
|
-
*/
|
|
146
145
|
default: () => never[];
|
|
147
146
|
};
|
|
148
147
|
itemTitle: {
|
|
149
148
|
type: PropType<import("../../composable").TItemKey>;
|
|
150
|
-
default: string;
|
|
151
|
-
* Событие открытия элемента списка по клику, возвращает id элемента и его состояние
|
|
152
|
-
* @type {{ id: unknown; value: boolean; path: unknown[], event: Event }}
|
|
153
|
-
*/
|
|
149
|
+
default: string;
|
|
154
150
|
};
|
|
155
151
|
itemValue: {
|
|
156
152
|
type: PropType<import("../../composable").TItemKey>;
|
|
@@ -204,6 +200,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
204
200
|
required: boolean;
|
|
205
201
|
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
206
202
|
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
203
|
+
theme: string;
|
|
207
204
|
lines: false | "one" | "two" | "three";
|
|
208
205
|
}>;
|
|
209
206
|
export default _sfc_main;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
export declare const componentName = "CdsLoader";
|
|
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
|
size: {
|
|
5
10
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
6
11
|
default: string;
|
|
@@ -31,7 +36,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
31
36
|
'cds-loader__fixed': boolean;
|
|
32
37
|
}>;
|
|
33
38
|
sizeClasses: import("vue").ComputedRef<string>;
|
|
39
|
+
themeClasses: Readonly<import("vue").ComputedRef<string | undefined>>;
|
|
34
40
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
41
|
+
theme: {
|
|
42
|
+
type: PropType<string>;
|
|
43
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
44
|
+
default: undefined;
|
|
45
|
+
};
|
|
35
46
|
size: {
|
|
36
47
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
37
48
|
default: string;
|
|
@@ -57,6 +68,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
57
68
|
fixed: boolean;
|
|
58
69
|
description: string;
|
|
59
70
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
71
|
+
theme: string;
|
|
60
72
|
overlay: boolean;
|
|
61
73
|
}>;
|
|
62
74
|
export default _sfc_main;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
export declare const componentName = "CdsMenu";
|
|
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
|
transition: {
|
|
5
10
|
type: PropType<string | boolean | (import("vue").TransitionProps & {
|
|
6
11
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -172,6 +177,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
172
177
|
*/
|
|
173
178
|
'update:modelValue': (value: boolean) => true;
|
|
174
179
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
180
|
+
theme: {
|
|
181
|
+
type: PropType<string>;
|
|
182
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
183
|
+
default: undefined;
|
|
184
|
+
};
|
|
175
185
|
transition: {
|
|
176
186
|
type: PropType<string | boolean | (import("vue").TransitionProps & {
|
|
177
187
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -340,6 +350,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
340
350
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
341
351
|
}, {
|
|
342
352
|
disabled: boolean;
|
|
353
|
+
theme: string;
|
|
343
354
|
id: string;
|
|
344
355
|
location: import('../../utils').TAnchor;
|
|
345
356
|
modelValue: boolean;
|
|
@@ -96,6 +96,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
96
96
|
type: PropType<boolean>;
|
|
97
97
|
default: boolean;
|
|
98
98
|
};
|
|
99
|
+
theme: {
|
|
100
|
+
type: PropType<string>;
|
|
101
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
102
|
+
default: undefined;
|
|
103
|
+
};
|
|
99
104
|
size: {
|
|
100
105
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
101
106
|
default: string;
|
|
@@ -297,6 +302,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
297
302
|
type: PropType<boolean>;
|
|
298
303
|
default: boolean;
|
|
299
304
|
};
|
|
305
|
+
theme: {
|
|
306
|
+
type: PropType<string>;
|
|
307
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
308
|
+
default: undefined;
|
|
309
|
+
};
|
|
300
310
|
size: {
|
|
301
311
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
302
312
|
default: string;
|
|
@@ -401,6 +411,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
401
411
|
}, {
|
|
402
412
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
403
413
|
disabled: boolean;
|
|
414
|
+
theme: string;
|
|
404
415
|
location: import('../../utils').TAnchor;
|
|
405
416
|
modelValue: boolean;
|
|
406
417
|
eager: boolean;
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
export declare const componentName = "CdsNotification";
|
|
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
|
locale: {
|
|
5
|
-
type: PropType<"ru" | "en" | import("../../locale").ILocale>;
|
|
6
|
-
* Состояние уведомления
|
|
7
|
-
*/
|
|
10
|
+
type: PropType<"ru" | "en" | import("../../locale").ILocale>;
|
|
8
11
|
default: undefined;
|
|
9
12
|
};
|
|
10
13
|
tag: {
|
|
@@ -20,9 +23,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
20
23
|
validator: (value: "error" | "info" | "success" | "warning" | "progress") => boolean;
|
|
21
24
|
};
|
|
22
25
|
variant: {
|
|
23
|
-
type: PropType<
|
|
26
|
+
type: PropType<"default" | "important">;
|
|
24
27
|
default: string;
|
|
25
|
-
validator: (value: "default" | "important") => boolean;
|
|
28
|
+
validator: (value: "default" | "important") => boolean; /**
|
|
29
|
+
* Состояние уведомления
|
|
30
|
+
*/
|
|
26
31
|
};
|
|
27
32
|
icon: {
|
|
28
33
|
type: PropType<false | "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">;
|
|
@@ -75,10 +80,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
75
80
|
*/
|
|
76
81
|
'update:modelValue': (value: boolean) => true;
|
|
77
82
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
83
|
+
theme: {
|
|
84
|
+
type: PropType<string>;
|
|
85
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
86
|
+
default: undefined;
|
|
87
|
+
};
|
|
78
88
|
locale: {
|
|
79
|
-
type: PropType<"ru" | "en" | import("../../locale").ILocale>;
|
|
80
|
-
* Состояние уведомления
|
|
81
|
-
*/
|
|
89
|
+
type: PropType<"ru" | "en" | import("../../locale").ILocale>;
|
|
82
90
|
default: undefined;
|
|
83
91
|
};
|
|
84
92
|
tag: {
|
|
@@ -94,9 +102,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
94
102
|
validator: (value: "error" | "info" | "success" | "warning" | "progress") => boolean;
|
|
95
103
|
};
|
|
96
104
|
variant: {
|
|
97
|
-
type: PropType<
|
|
105
|
+
type: PropType<"default" | "important">;
|
|
98
106
|
default: string;
|
|
99
|
-
validator: (value: "default" | "important") => boolean;
|
|
107
|
+
validator: (value: "default" | "important") => boolean; /**
|
|
108
|
+
* Состояние уведомления
|
|
109
|
+
*/
|
|
100
110
|
};
|
|
101
111
|
icon: {
|
|
102
112
|
type: PropType<false | "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">;
|
|
@@ -141,11 +151,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
141
151
|
}, {
|
|
142
152
|
title: string;
|
|
143
153
|
tag: string;
|
|
154
|
+
theme: string;
|
|
144
155
|
text: string;
|
|
145
156
|
modelValue: boolean;
|
|
146
157
|
locale: "ru" | "en" | import("../../locale").ILocale;
|
|
147
158
|
icon: false | "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";
|
|
148
|
-
variant:
|
|
159
|
+
variant: "default" | "important";
|
|
149
160
|
customIcon: "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" | undefined;
|
|
150
161
|
closable: boolean;
|
|
151
162
|
closeLabel: string;
|
|
@@ -37,6 +37,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
37
37
|
type: PropType<string | number | number[]>;
|
|
38
38
|
default: null;
|
|
39
39
|
};
|
|
40
|
+
theme: {
|
|
41
|
+
type: PropType<string>;
|
|
42
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
43
|
+
default: undefined;
|
|
44
|
+
};
|
|
40
45
|
height: {
|
|
41
46
|
type: PropType<string | number>;
|
|
42
47
|
default: string;
|
|
@@ -158,7 +163,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
158
163
|
validator: (value: "error" | "info" | "success" | "warning" | "progress") => boolean;
|
|
159
164
|
};
|
|
160
165
|
variant: {
|
|
161
|
-
type: PropType<
|
|
166
|
+
type: PropType<"default" | "important">;
|
|
162
167
|
default: string;
|
|
163
168
|
validator: (value: "default" | "important") => boolean;
|
|
164
169
|
};
|
|
@@ -238,6 +243,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
238
243
|
type: PropType<string | number | number[]>;
|
|
239
244
|
default: null;
|
|
240
245
|
};
|
|
246
|
+
theme: {
|
|
247
|
+
type: PropType<string>;
|
|
248
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
249
|
+
default: undefined;
|
|
250
|
+
};
|
|
241
251
|
height: {
|
|
242
252
|
type: PropType<string | number>;
|
|
243
253
|
default: string;
|
|
@@ -359,7 +369,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
359
369
|
validator: (value: "error" | "info" | "success" | "warning" | "progress") => boolean;
|
|
360
370
|
};
|
|
361
371
|
variant: {
|
|
362
|
-
type: PropType<
|
|
372
|
+
type: PropType<"default" | "important">;
|
|
363
373
|
default: string;
|
|
364
374
|
validator: (value: "default" | "important") => boolean;
|
|
365
375
|
};
|
|
@@ -406,6 +416,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
406
416
|
title: string;
|
|
407
417
|
tag: string;
|
|
408
418
|
disabled: boolean;
|
|
419
|
+
theme: string;
|
|
409
420
|
location: NonNullable<import('../../utils').TAnchor>;
|
|
410
421
|
text: string;
|
|
411
422
|
modelValue: boolean;
|
|
@@ -415,7 +426,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
415
426
|
transition: NonNullable<string | boolean | (import("vue").TransitionProps & {
|
|
416
427
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
417
428
|
})>;
|
|
418
|
-
variant:
|
|
429
|
+
variant: "default" | "important";
|
|
419
430
|
attach: string | boolean | Element;
|
|
420
431
|
contained: boolean;
|
|
421
432
|
persistent: boolean;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
export declare const componentName = "CdsPagination";
|
|
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
|
disabled: {
|
|
5
10
|
type: PropType<boolean>;
|
|
6
11
|
default: boolean;
|
|
@@ -71,6 +76,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
71
76
|
*/
|
|
72
77
|
prev: (value: number) => true;
|
|
73
78
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
79
|
+
theme: {
|
|
80
|
+
type: PropType<string>;
|
|
81
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
82
|
+
default: undefined;
|
|
83
|
+
};
|
|
74
84
|
disabled: {
|
|
75
85
|
type: PropType<boolean>;
|
|
76
86
|
default: boolean;
|
|
@@ -130,6 +140,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
130
140
|
tag: string;
|
|
131
141
|
disabled: boolean;
|
|
132
142
|
length: string | number;
|
|
143
|
+
theme: string;
|
|
133
144
|
modelValue: number;
|
|
134
145
|
start: string | number;
|
|
135
146
|
totalVisible: string | number;
|
|
@@ -8,6 +8,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
8
8
|
type: PropType<NonNullable<import('../../utils').TAnchor>>;
|
|
9
9
|
default: NonNullable<import('../../utils').TAnchor>;
|
|
10
10
|
};
|
|
11
|
+
theme: {
|
|
12
|
+
type: PropType<string>;
|
|
13
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
14
|
+
default: undefined;
|
|
15
|
+
};
|
|
11
16
|
tag: {
|
|
12
17
|
type: PropType<string>;
|
|
13
18
|
default: string;
|
|
@@ -71,6 +76,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
71
76
|
type: PropType<NonNullable<import('../../utils').TAnchor>>;
|
|
72
77
|
default: NonNullable<import('../../utils').TAnchor>;
|
|
73
78
|
};
|
|
79
|
+
theme: {
|
|
80
|
+
type: PropType<string>;
|
|
81
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
82
|
+
default: undefined;
|
|
83
|
+
};
|
|
74
84
|
tag: {
|
|
75
85
|
type: PropType<string>;
|
|
76
86
|
default: string;
|
|
@@ -129,9 +139,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
129
139
|
}, {
|
|
130
140
|
tag: string;
|
|
131
141
|
reverse: boolean;
|
|
142
|
+
theme: string;
|
|
132
143
|
indeterminate: boolean;
|
|
133
|
-
active: boolean;
|
|
134
144
|
location: NonNullable<import('../../utils').TAnchor>;
|
|
145
|
+
active: boolean;
|
|
135
146
|
modelValue: string | number;
|
|
136
147
|
max: string | number;
|
|
137
148
|
height: string | number;
|