@central-design-system/components 3.4.0 → 3.6.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/dist/cds.css +1 -1
- package/dist/cds.d.ts +7 -2
- package/dist/cds.es.js +7413 -6971
- 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 +5 -5
- package/dist/components/CdsButton/CdsButton.d.ts +5 -5
- package/dist/components/CdsButton/CdsFunctionalButton.d.ts +2 -2
- package/dist/components/CdsCard/CdsCard.d.ts +17 -2
- package/dist/components/CdsCard/CdsCardItem.d.ts +2 -2
- package/dist/components/CdsCheckbox/CdsCheckbox.d.ts +2 -2
- package/dist/components/CdsCheckbox/CdsCheckboxGroup.d.ts +2 -2
- package/dist/components/CdsCombobox/CdsCombobox.d.ts +77 -77
- package/dist/components/CdsContainer/CdsContainer.d.ts +10 -10
- package/dist/components/CdsContentSwitcher/CdsContentSwitcherItem.d.ts +6 -6
- package/dist/components/CdsDropdown/CdsDropdown.d.ts +95 -87
- package/dist/components/CdsExpandablePanel/CdsExpandablePanel.d.ts +2 -2
- package/dist/components/CdsExpandablePanel/CdsExpandablePanelTitle.d.ts +2 -2
- package/dist/components/CdsIcon/CdsIcon.d.ts +1 -1
- package/dist/components/CdsInput/CdsInput.d.ts +2 -2
- package/dist/components/CdsList/CdsListGroup.d.ts +3 -3
- package/dist/components/CdsList/CdsListItem.d.ts +3 -3
- package/dist/components/CdsNotification/CdsNotification.d.ts +3 -3
- package/dist/components/CdsNotification/CdsNotificationAlert.d.ts +3 -3
- package/dist/components/CdsRadioButton/CdsRadio.d.ts +6 -6
- package/dist/components/CdsRadioButton/CdsRadioButton.d.ts +2 -2
- package/dist/components/CdsSelect/CdsSelect.d.ts +21 -21
- package/dist/components/CdsSidebar/CdsSidebar.d.ts +2 -2
- package/dist/components/CdsSlideGroup/CdsSlideGroup.d.ts +10 -10
- package/dist/components/CdsSlideView/CdsSlideView.d.ts +165 -0
- package/dist/components/CdsSlideView/CdsSlideViewItem.d.ts +68 -0
- package/dist/components/CdsSlideView/context.d.ts +13 -0
- package/dist/components/CdsSlideView/index.d.ts +2 -0
- package/dist/components/CdsSlideView/props.d.ts +136 -0
- package/dist/components/CdsStatus/CdsStatus.d.ts +2 -2
- package/dist/components/CdsTabs/CdsTab.d.ts +2 -2
- package/dist/components/CdsTabs/CdsTabs.d.ts +10 -10
- package/dist/components/CdsTabsV2/CdsTabV2.d.ts +109 -0
- package/dist/components/CdsTabsV2/CdsTabsV2.d.ts +191 -0
- package/dist/components/CdsTabsV2/CdsTabsV2.figma.d.ts +1 -0
- package/dist/components/CdsTabsV2/CdsTabsView.d.ts +99 -0
- package/dist/components/CdsTabsV2/CdsTabsViewItem.d.ts +60 -0
- package/dist/components/CdsTabsV2/index.d.ts +4 -0
- package/dist/components/CdsTabsV2/shared.d.ts +3 -0
- package/dist/components/CdsTabsV2/utils/helpers.d.ts +2 -0
- package/dist/components/CdsTabsV2/utils/index.d.ts +1 -0
- package/dist/components/CdsTag/CdsTag.d.ts +3 -3
- package/dist/components/CdsTextArea/CdsTextArea.d.ts +21 -21
- package/dist/components/CdsTextArea/CdsTextArea.figma.d.ts +1 -0
- package/dist/components/CdsTextInput/CdsTextInput.d.ts +21 -21
- package/dist/components/CdsTextInput/CdsTextInput.figma.d.ts +1 -0
- package/dist/components/CdsUploader/CdsUploader.d.ts +10 -10
- package/dist/components/CdsUploader/components/AjaxUploader.d.ts +8 -8
- package/dist/components/CdsUploader/components/UploadList/ListItem.d.ts +3 -3
- package/dist/components/CdsUploader/components/UploadList/UploadList.d.ts +3 -3
- package/dist/components/index.d.ts +9 -1
- package/dist/locale/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
export declare const componentName = "CdsTabV2";
|
|
2
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
3
|
+
loading: {
|
|
4
|
+
type: import('vue').PropType<boolean>;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
readonly: {
|
|
8
|
+
type: import('vue').PropType<boolean>;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
disabled: {
|
|
12
|
+
type: import('vue').PropType<boolean>;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
size: {
|
|
16
|
+
type: import('vue').PropType<import('../../composable').TSize>;
|
|
17
|
+
default: string;
|
|
18
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
19
|
+
validator: (value: import('../../composable').TSize) => boolean;
|
|
20
|
+
};
|
|
21
|
+
prependIcon: {
|
|
22
|
+
type: import('vue').PropType<import('@central-design-system/icons').TCdsIconsName>;
|
|
23
|
+
default: undefined;
|
|
24
|
+
validator: (value: import('@central-design-system/icons').TCdsIconsName) => boolean;
|
|
25
|
+
};
|
|
26
|
+
appendIcon: {
|
|
27
|
+
type: import('vue').PropType<import('@central-design-system/icons').TCdsIconsName>;
|
|
28
|
+
default: undefined;
|
|
29
|
+
validator: (value: import('@central-design-system/icons').TCdsIconsName) => boolean;
|
|
30
|
+
};
|
|
31
|
+
text: {
|
|
32
|
+
type: import('vue').PropType<string | number>;
|
|
33
|
+
default: undefined;
|
|
34
|
+
};
|
|
35
|
+
value: {
|
|
36
|
+
type: null;
|
|
37
|
+
default: undefined;
|
|
38
|
+
};
|
|
39
|
+
selectedClass: Omit<{
|
|
40
|
+
type: import('vue').PropType<string>;
|
|
41
|
+
default: undefined;
|
|
42
|
+
}, "default" | "type"> & {
|
|
43
|
+
type: import('vue').PropType<string>;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
47
|
+
'group:selected': (value: {
|
|
48
|
+
value: boolean;
|
|
49
|
+
}) => true;
|
|
50
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
51
|
+
loading: {
|
|
52
|
+
type: import('vue').PropType<boolean>;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
readonly: {
|
|
56
|
+
type: import('vue').PropType<boolean>;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
59
|
+
disabled: {
|
|
60
|
+
type: import('vue').PropType<boolean>;
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
63
|
+
size: {
|
|
64
|
+
type: import('vue').PropType<import('../../composable').TSize>;
|
|
65
|
+
default: string;
|
|
66
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
67
|
+
validator: (value: import('../../composable').TSize) => boolean;
|
|
68
|
+
};
|
|
69
|
+
prependIcon: {
|
|
70
|
+
type: import('vue').PropType<import('@central-design-system/icons').TCdsIconsName>;
|
|
71
|
+
default: undefined;
|
|
72
|
+
validator: (value: import('@central-design-system/icons').TCdsIconsName) => boolean;
|
|
73
|
+
};
|
|
74
|
+
appendIcon: {
|
|
75
|
+
type: import('vue').PropType<import('@central-design-system/icons').TCdsIconsName>;
|
|
76
|
+
default: undefined;
|
|
77
|
+
validator: (value: import('@central-design-system/icons').TCdsIconsName) => boolean;
|
|
78
|
+
};
|
|
79
|
+
text: {
|
|
80
|
+
type: import('vue').PropType<string | number>;
|
|
81
|
+
default: undefined;
|
|
82
|
+
};
|
|
83
|
+
value: {
|
|
84
|
+
type: null;
|
|
85
|
+
default: undefined;
|
|
86
|
+
};
|
|
87
|
+
selectedClass: Omit<{
|
|
88
|
+
type: import('vue').PropType<string>;
|
|
89
|
+
default: undefined;
|
|
90
|
+
}, "default" | "type"> & {
|
|
91
|
+
type: import('vue').PropType<string>;
|
|
92
|
+
default: string;
|
|
93
|
+
};
|
|
94
|
+
}>> & Readonly<{
|
|
95
|
+
"onGroup:selected"?: ((value: {
|
|
96
|
+
value: boolean;
|
|
97
|
+
}) => any) | undefined;
|
|
98
|
+
}>, {
|
|
99
|
+
text: string | number;
|
|
100
|
+
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
101
|
+
prependIcon: "link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube";
|
|
102
|
+
appendIcon: "link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube";
|
|
103
|
+
loading: boolean;
|
|
104
|
+
disabled: boolean;
|
|
105
|
+
readonly: boolean;
|
|
106
|
+
value: any;
|
|
107
|
+
selectedClass: string;
|
|
108
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
109
|
+
export default _default;
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
import { TCdsTabItem } from './utils';
|
|
2
|
+
import { TCdsIconsName } from '@central-design-system/icons';
|
|
3
|
+
import { PropType } from 'vue';
|
|
4
|
+
export declare const componentName = "CdsTabsV2";
|
|
5
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
6
|
+
prependIcon: Omit<{
|
|
7
|
+
type: PropType<TCdsIconsName>;
|
|
8
|
+
default: undefined;
|
|
9
|
+
validator: (value: TCdsIconsName) => boolean;
|
|
10
|
+
}, "default" | "type"> & {
|
|
11
|
+
type: PropType<NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">>;
|
|
12
|
+
default: NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">;
|
|
13
|
+
};
|
|
14
|
+
appendIcon: Omit<{
|
|
15
|
+
type: PropType<TCdsIconsName>;
|
|
16
|
+
default: undefined;
|
|
17
|
+
validator: (value: TCdsIconsName) => boolean;
|
|
18
|
+
}, "default" | "type"> & {
|
|
19
|
+
type: PropType<NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">>;
|
|
20
|
+
default: NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">;
|
|
21
|
+
};
|
|
22
|
+
modelValue: {
|
|
23
|
+
type: null;
|
|
24
|
+
default: undefined;
|
|
25
|
+
};
|
|
26
|
+
multiple: {
|
|
27
|
+
type: PropType<boolean>;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
required: Omit<{
|
|
31
|
+
type: PropType<boolean | "force">;
|
|
32
|
+
default: undefined;
|
|
33
|
+
}, "default" | "type"> & {
|
|
34
|
+
type: PropType<NonNullable<boolean | "force">>;
|
|
35
|
+
default: NonNullable<boolean | "force">;
|
|
36
|
+
};
|
|
37
|
+
max: {
|
|
38
|
+
type: PropType<number>;
|
|
39
|
+
default: undefined;
|
|
40
|
+
};
|
|
41
|
+
selectedClass: {
|
|
42
|
+
type: PropType<string>;
|
|
43
|
+
default: undefined;
|
|
44
|
+
};
|
|
45
|
+
theme: {
|
|
46
|
+
type: PropType<import('../../composable').TTheme | string>;
|
|
47
|
+
available: readonly ["cdsLight", "cdsDark", "b2bLight", "b2bDark", "promoLight", "promoDark"];
|
|
48
|
+
default: undefined;
|
|
49
|
+
};
|
|
50
|
+
centerActive: {
|
|
51
|
+
type: PropType<boolean>;
|
|
52
|
+
default: boolean;
|
|
53
|
+
};
|
|
54
|
+
showArrows: {
|
|
55
|
+
type: PropType<boolean | string>;
|
|
56
|
+
validator: (value: any) => boolean;
|
|
57
|
+
};
|
|
58
|
+
align: {
|
|
59
|
+
type: PropType<import('../../composable').TAlign>;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
tag: {
|
|
63
|
+
type: PropType<string>;
|
|
64
|
+
default: string;
|
|
65
|
+
description: string;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Список элементов
|
|
69
|
+
*/
|
|
70
|
+
items: {
|
|
71
|
+
type: PropType<readonly TCdsTabItem[]>;
|
|
72
|
+
default: () => never[];
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* Занимать все доступное пространство
|
|
76
|
+
*/
|
|
77
|
+
grow: {
|
|
78
|
+
type: PropType<boolean>;
|
|
79
|
+
default: undefined;
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* Задавать высоту всех элементов по самому высокому элементу
|
|
83
|
+
*/
|
|
84
|
+
stacked: {
|
|
85
|
+
type: PropType<boolean>;
|
|
86
|
+
default: undefined;
|
|
87
|
+
};
|
|
88
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
89
|
+
'update:modelValue': (value: unknown) => true;
|
|
90
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
91
|
+
prependIcon: Omit<{
|
|
92
|
+
type: PropType<TCdsIconsName>;
|
|
93
|
+
default: undefined;
|
|
94
|
+
validator: (value: TCdsIconsName) => boolean;
|
|
95
|
+
}, "default" | "type"> & {
|
|
96
|
+
type: PropType<NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">>;
|
|
97
|
+
default: NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">;
|
|
98
|
+
};
|
|
99
|
+
appendIcon: Omit<{
|
|
100
|
+
type: PropType<TCdsIconsName>;
|
|
101
|
+
default: undefined;
|
|
102
|
+
validator: (value: TCdsIconsName) => boolean;
|
|
103
|
+
}, "default" | "type"> & {
|
|
104
|
+
type: PropType<NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">>;
|
|
105
|
+
default: NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">;
|
|
106
|
+
};
|
|
107
|
+
modelValue: {
|
|
108
|
+
type: null;
|
|
109
|
+
default: undefined;
|
|
110
|
+
};
|
|
111
|
+
multiple: {
|
|
112
|
+
type: PropType<boolean>;
|
|
113
|
+
default: boolean;
|
|
114
|
+
};
|
|
115
|
+
required: Omit<{
|
|
116
|
+
type: PropType<boolean | "force">;
|
|
117
|
+
default: undefined;
|
|
118
|
+
}, "default" | "type"> & {
|
|
119
|
+
type: PropType<NonNullable<boolean | "force">>;
|
|
120
|
+
default: NonNullable<boolean | "force">;
|
|
121
|
+
};
|
|
122
|
+
max: {
|
|
123
|
+
type: PropType<number>;
|
|
124
|
+
default: undefined;
|
|
125
|
+
};
|
|
126
|
+
selectedClass: {
|
|
127
|
+
type: PropType<string>;
|
|
128
|
+
default: undefined;
|
|
129
|
+
};
|
|
130
|
+
theme: {
|
|
131
|
+
type: PropType<import('../../composable').TTheme | string>;
|
|
132
|
+
available: readonly ["cdsLight", "cdsDark", "b2bLight", "b2bDark", "promoLight", "promoDark"];
|
|
133
|
+
default: undefined;
|
|
134
|
+
};
|
|
135
|
+
centerActive: {
|
|
136
|
+
type: PropType<boolean>;
|
|
137
|
+
default: boolean;
|
|
138
|
+
};
|
|
139
|
+
showArrows: {
|
|
140
|
+
type: PropType<boolean | string>;
|
|
141
|
+
validator: (value: any) => boolean;
|
|
142
|
+
};
|
|
143
|
+
align: {
|
|
144
|
+
type: PropType<import('../../composable').TAlign>;
|
|
145
|
+
default: string;
|
|
146
|
+
};
|
|
147
|
+
tag: {
|
|
148
|
+
type: PropType<string>;
|
|
149
|
+
default: string;
|
|
150
|
+
description: string;
|
|
151
|
+
};
|
|
152
|
+
/**
|
|
153
|
+
* Список элементов
|
|
154
|
+
*/
|
|
155
|
+
items: {
|
|
156
|
+
type: PropType<readonly TCdsTabItem[]>;
|
|
157
|
+
default: () => never[];
|
|
158
|
+
};
|
|
159
|
+
/**
|
|
160
|
+
* Занимать все доступное пространство
|
|
161
|
+
*/
|
|
162
|
+
grow: {
|
|
163
|
+
type: PropType<boolean>;
|
|
164
|
+
default: undefined;
|
|
165
|
+
};
|
|
166
|
+
/**
|
|
167
|
+
* Задавать высоту всех элементов по самому высокому элементу
|
|
168
|
+
*/
|
|
169
|
+
stacked: {
|
|
170
|
+
type: PropType<boolean>;
|
|
171
|
+
default: undefined;
|
|
172
|
+
};
|
|
173
|
+
}>> & Readonly<{
|
|
174
|
+
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
175
|
+
}>, {
|
|
176
|
+
align: string;
|
|
177
|
+
tag: string;
|
|
178
|
+
prependIcon: NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">;
|
|
179
|
+
appendIcon: NonNullable<"link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube">;
|
|
180
|
+
items: readonly TCdsTabItem[];
|
|
181
|
+
multiple: boolean;
|
|
182
|
+
required: NonNullable<boolean | "force">;
|
|
183
|
+
modelValue: any;
|
|
184
|
+
theme: string;
|
|
185
|
+
max: number;
|
|
186
|
+
selectedClass: string;
|
|
187
|
+
centerActive: boolean;
|
|
188
|
+
grow: boolean;
|
|
189
|
+
stacked: boolean;
|
|
190
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
191
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
export declare const componentName = "CdsTabsView";
|
|
2
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
3
|
+
tag: {
|
|
4
|
+
type: import('vue').PropType<string>;
|
|
5
|
+
default: string;
|
|
6
|
+
description: string;
|
|
7
|
+
};
|
|
8
|
+
disabled: {
|
|
9
|
+
type: import('vue').PropType<boolean>;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
multiple: {
|
|
13
|
+
type: import('vue').PropType<boolean>;
|
|
14
|
+
default: boolean;
|
|
15
|
+
};
|
|
16
|
+
modelValue: {
|
|
17
|
+
type: null;
|
|
18
|
+
default: undefined;
|
|
19
|
+
};
|
|
20
|
+
direction: {
|
|
21
|
+
type: import('vue').PropType<import('../../composable').TDirection>;
|
|
22
|
+
default: string;
|
|
23
|
+
available: readonly ["horizontal", "vertical"];
|
|
24
|
+
validator: (value: import('../../composable').TDirection) => boolean;
|
|
25
|
+
};
|
|
26
|
+
theme: {
|
|
27
|
+
type: import('vue').PropType<import('../../composable').TTheme | string>;
|
|
28
|
+
available: readonly ["cdsLight", "cdsDark", "b2bLight", "b2bDark", "promoLight", "promoDark"];
|
|
29
|
+
default: undefined;
|
|
30
|
+
};
|
|
31
|
+
max: {
|
|
32
|
+
type: import('vue').PropType<number>;
|
|
33
|
+
default: undefined;
|
|
34
|
+
};
|
|
35
|
+
selectedClass: {
|
|
36
|
+
type: import('vue').PropType<string>;
|
|
37
|
+
default: undefined;
|
|
38
|
+
};
|
|
39
|
+
locale: {
|
|
40
|
+
type: import('vue').PropType<import('../../locale').TAvailableLocale | import('../../locale').ILocale>;
|
|
41
|
+
default: undefined;
|
|
42
|
+
};
|
|
43
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
44
|
+
'update:modelValue': (v: unknown) => true;
|
|
45
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
46
|
+
tag: {
|
|
47
|
+
type: import('vue').PropType<string>;
|
|
48
|
+
default: string;
|
|
49
|
+
description: string;
|
|
50
|
+
};
|
|
51
|
+
disabled: {
|
|
52
|
+
type: import('vue').PropType<boolean>;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
multiple: {
|
|
56
|
+
type: import('vue').PropType<boolean>;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
59
|
+
modelValue: {
|
|
60
|
+
type: null;
|
|
61
|
+
default: undefined;
|
|
62
|
+
};
|
|
63
|
+
direction: {
|
|
64
|
+
type: import('vue').PropType<import('../../composable').TDirection>;
|
|
65
|
+
default: string;
|
|
66
|
+
available: readonly ["horizontal", "vertical"];
|
|
67
|
+
validator: (value: import('../../composable').TDirection) => boolean;
|
|
68
|
+
};
|
|
69
|
+
theme: {
|
|
70
|
+
type: import('vue').PropType<import('../../composable').TTheme | string>;
|
|
71
|
+
available: readonly ["cdsLight", "cdsDark", "b2bLight", "b2bDark", "promoLight", "promoDark"];
|
|
72
|
+
default: undefined;
|
|
73
|
+
};
|
|
74
|
+
max: {
|
|
75
|
+
type: import('vue').PropType<number>;
|
|
76
|
+
default: undefined;
|
|
77
|
+
};
|
|
78
|
+
selectedClass: {
|
|
79
|
+
type: import('vue').PropType<string>;
|
|
80
|
+
default: undefined;
|
|
81
|
+
};
|
|
82
|
+
locale: {
|
|
83
|
+
type: import('vue').PropType<import('../../locale').TAvailableLocale | import('../../locale').ILocale>;
|
|
84
|
+
default: undefined;
|
|
85
|
+
};
|
|
86
|
+
}>> & Readonly<{
|
|
87
|
+
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
88
|
+
}>, {
|
|
89
|
+
tag: string;
|
|
90
|
+
disabled: boolean;
|
|
91
|
+
multiple: boolean;
|
|
92
|
+
modelValue: any;
|
|
93
|
+
direction: "horizontal" | "vertical";
|
|
94
|
+
theme: string;
|
|
95
|
+
max: number;
|
|
96
|
+
selectedClass: string;
|
|
97
|
+
locale: import('../../locale').ILocale | "ru" | "en";
|
|
98
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
99
|
+
export default _default;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
export declare const componentName = "CdsTabsViewItem";
|
|
2
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
3
|
+
disabled: {
|
|
4
|
+
type: import('vue').PropType<boolean>;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
eager: {
|
|
8
|
+
type: import('vue').PropType<boolean>;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
value: {
|
|
12
|
+
type: null;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
selectedClass: {
|
|
16
|
+
type: import('vue').PropType<string>;
|
|
17
|
+
default: undefined;
|
|
18
|
+
};
|
|
19
|
+
reverseTransition: {
|
|
20
|
+
type: import('vue').PropType<boolean | string>;
|
|
21
|
+
default: undefined;
|
|
22
|
+
};
|
|
23
|
+
transition: {
|
|
24
|
+
type: import('vue').PropType<boolean | string>;
|
|
25
|
+
default: undefined;
|
|
26
|
+
};
|
|
27
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
28
|
+
disabled: {
|
|
29
|
+
type: import('vue').PropType<boolean>;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
eager: {
|
|
33
|
+
type: import('vue').PropType<boolean>;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
value: {
|
|
37
|
+
type: null;
|
|
38
|
+
default: undefined;
|
|
39
|
+
};
|
|
40
|
+
selectedClass: {
|
|
41
|
+
type: import('vue').PropType<string>;
|
|
42
|
+
default: undefined;
|
|
43
|
+
};
|
|
44
|
+
reverseTransition: {
|
|
45
|
+
type: import('vue').PropType<boolean | string>;
|
|
46
|
+
default: undefined;
|
|
47
|
+
};
|
|
48
|
+
transition: {
|
|
49
|
+
type: import('vue').PropType<boolean | string>;
|
|
50
|
+
default: undefined;
|
|
51
|
+
};
|
|
52
|
+
}>> & Readonly<{}>, {
|
|
53
|
+
disabled: boolean;
|
|
54
|
+
value: any;
|
|
55
|
+
transition: string | boolean;
|
|
56
|
+
eager: boolean;
|
|
57
|
+
selectedClass: string;
|
|
58
|
+
reverseTransition: string | boolean;
|
|
59
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
60
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './helpers';
|
|
@@ -108,8 +108,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
108
108
|
text: string | number;
|
|
109
109
|
to: import('vue-router').RouteLocationRaw;
|
|
110
110
|
href: string;
|
|
111
|
-
prependIcon: "link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube";
|
|
112
|
-
appendIcon: "link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube";
|
|
111
|
+
prependIcon: "link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube";
|
|
112
|
+
appendIcon: "link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube";
|
|
113
113
|
color: "default" | "chocolate" | "lemon" | "lime" | "cyan" | "teal" | "indigo" | "purple" | "pink";
|
|
114
114
|
theme: string;
|
|
115
115
|
removable: boolean;
|
|
@@ -167,7 +167,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
167
167
|
validator: (value: import('@central-design-system/icons').TCdsIconsName) => boolean;
|
|
168
168
|
};
|
|
169
169
|
}>> & Readonly<{}>, {
|
|
170
|
-
name: "link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube";
|
|
170
|
+
name: "link" | "search" | "bold" | "delete" | "add" | "administrator" | "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" | "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" | "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" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "tab-backward" | "tab-forward" | "telegram" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube";
|
|
171
171
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
172
172
|
invertColor: boolean;
|
|
173
173
|
theme: string;
|