@central-design-system/components 3.0.0-beta.25 → 3.0.0-beta.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cds.css +1 -1
- package/dist/cds.es.js +4305 -4292
- package/dist/cds.umd.js +4 -4
- package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +1 -0
- package/dist/components/CdsDrawer/CdsDrawer.vue.d.ts +54 -0
- package/dist/components/CdsTree/CdsTree.vue.d.ts +1 -1
- package/dist/components/CdsTree/CdsTreeDirectory.vue.d.ts +1 -1
- package/dist/components/CdsTree/components/TreeProvider.d.ts +1 -1
- package/package.json +1 -1
- package/src/scss/themes/b2b/tokens.json +104 -104
- package/src/scss/themes/cds/tokens.json +104 -104
- package/src/scss/themes/index.ts +1 -1
|
@@ -2081,6 +2081,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2081
2081
|
}>;
|
|
2082
2082
|
externalValidationValue: import("vue").ComputedRef<any>;
|
|
2083
2083
|
hasList: import("vue").ComputedRef<boolean>;
|
|
2084
|
+
showIcon: import("vue").ComputedRef<0 | "search" | "link" | "list" | "filters" | "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" | "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-open" | "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">;
|
|
2084
2085
|
hasLabel: import("vue").ComputedRef<boolean>;
|
|
2085
2086
|
hasDescription: import("vue").ComputedRef<boolean>;
|
|
2086
2087
|
hasPrepend: import("vue").ComputedRef<boolean>;
|
|
@@ -22,6 +22,30 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
22
22
|
type: PropType<boolean>;
|
|
23
23
|
default: boolean;
|
|
24
24
|
};
|
|
25
|
+
height: {
|
|
26
|
+
type: PropType<string | number>;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
width: {
|
|
30
|
+
type: PropType<string | number>;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
maxHeight: {
|
|
34
|
+
type: PropType<string | number>;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
maxWidth: {
|
|
38
|
+
type: PropType<string | number>;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
minHeight: {
|
|
42
|
+
type: PropType<string | number>;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
minWidth: {
|
|
46
|
+
type: PropType<string | number>;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
25
49
|
/**
|
|
26
50
|
* Показать/Скрыть
|
|
27
51
|
*/
|
|
@@ -136,6 +160,30 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
136
160
|
type: PropType<boolean>;
|
|
137
161
|
default: boolean;
|
|
138
162
|
};
|
|
163
|
+
height: {
|
|
164
|
+
type: PropType<string | number>;
|
|
165
|
+
default: string;
|
|
166
|
+
};
|
|
167
|
+
width: {
|
|
168
|
+
type: PropType<string | number>;
|
|
169
|
+
default: string;
|
|
170
|
+
};
|
|
171
|
+
maxHeight: {
|
|
172
|
+
type: PropType<string | number>;
|
|
173
|
+
default: string;
|
|
174
|
+
};
|
|
175
|
+
maxWidth: {
|
|
176
|
+
type: PropType<string | number>;
|
|
177
|
+
default: string;
|
|
178
|
+
};
|
|
179
|
+
minHeight: {
|
|
180
|
+
type: PropType<string | number>;
|
|
181
|
+
default: string;
|
|
182
|
+
};
|
|
183
|
+
minWidth: {
|
|
184
|
+
type: PropType<string | number>;
|
|
185
|
+
default: string;
|
|
186
|
+
};
|
|
139
187
|
/**
|
|
140
188
|
* Показать/Скрыть
|
|
141
189
|
*/
|
|
@@ -203,6 +251,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
203
251
|
theme: string;
|
|
204
252
|
modelValue: boolean | null;
|
|
205
253
|
right: boolean;
|
|
254
|
+
height: string | number;
|
|
255
|
+
width: string | number;
|
|
256
|
+
maxHeight: string | number;
|
|
257
|
+
maxWidth: string | number;
|
|
258
|
+
minHeight: string | number;
|
|
259
|
+
minWidth: string | number;
|
|
206
260
|
permanent: boolean;
|
|
207
261
|
temporary: boolean;
|
|
208
262
|
minified: boolean;
|
|
@@ -624,6 +624,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
624
624
|
onBlur: (event: FocusEvent) => void;
|
|
625
625
|
onFocus: (event: FocusEvent) => void;
|
|
626
626
|
height: number;
|
|
627
|
+
showIcon: boolean;
|
|
627
628
|
onKeydown: NTree.TEventHandler;
|
|
628
629
|
onMouseenter: (info: NTree.TNodeMouseEventParams) => void;
|
|
629
630
|
onMouseleave: (info: NTree.TNodeMouseEventParams) => void;
|
|
@@ -655,7 +656,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
655
656
|
showLine: boolean | {
|
|
656
657
|
showLeafIcon: boolean | "search" | "link" | "list" | "filters" | "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" | "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-open" | "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";
|
|
657
658
|
};
|
|
658
|
-
showIcon: boolean;
|
|
659
659
|
filterTreeNode: (treeNode: NTree.IEventDataNode) => boolean;
|
|
660
660
|
loadData: (treeNode: NTree.IEventDataNode) => Promise<any>;
|
|
661
661
|
loadedKeys: NTree.TKey[];
|
|
@@ -413,6 +413,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
413
413
|
draggable: boolean | NTree.TDraggableConfig;
|
|
414
414
|
icon: (nodeProps: NTree.ITreeNodeAttribute) => any;
|
|
415
415
|
height: number;
|
|
416
|
+
showIcon: boolean;
|
|
416
417
|
treeData: NTree.IDataNode[];
|
|
417
418
|
selectable: boolean;
|
|
418
419
|
checkable: boolean;
|
|
@@ -435,7 +436,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
435
436
|
showLine: boolean | {
|
|
436
437
|
showLeafIcon: boolean | "search" | "link" | "list" | "filters" | "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" | "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-open" | "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";
|
|
437
438
|
};
|
|
438
|
-
showIcon: boolean;
|
|
439
439
|
filterTreeNode: (treeNode: NTree.IEventDataNode) => boolean;
|
|
440
440
|
loadData: (treeNode: NTree.IEventDataNode) => Promise<any>;
|
|
441
441
|
loadedKeys: NTree.TKey[];
|
|
@@ -535,6 +535,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
535
535
|
onFocus: (event: FocusEvent) => void;
|
|
536
536
|
height: number;
|
|
537
537
|
tabindex: number;
|
|
538
|
+
showIcon: boolean;
|
|
538
539
|
onKeydown: NTree.TEventHandler;
|
|
539
540
|
onMouseenter: (info: NTree.TNodeMouseEventParams) => void;
|
|
540
541
|
onMouseleave: (info: NTree.TNodeMouseEventParams) => void;
|
|
@@ -566,7 +567,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
566
567
|
showLine: boolean | {
|
|
567
568
|
showLeafIcon: boolean | "search" | "link" | "list" | "filters" | "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" | "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-open" | "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";
|
|
568
569
|
};
|
|
569
|
-
showIcon: boolean;
|
|
570
570
|
filterTreeNode: (treeNode: NTree.IEventDataNode) => boolean;
|
|
571
571
|
loadData: (treeNode: NTree.IEventDataNode) => Promise<any>;
|
|
572
572
|
loadedKeys: NTree.TKey[];
|