@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,6 +1,15 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
export declare const componentName = "CdsAutocomplete";
|
|
3
3
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
|
+
theme: {
|
|
5
|
+
type: PropType<string>;
|
|
6
|
+
/**
|
|
7
|
+
* Событие при вводе значения в поле
|
|
8
|
+
* @type { string }
|
|
9
|
+
*/
|
|
10
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
11
|
+
default: undefined;
|
|
12
|
+
};
|
|
4
13
|
transition: {
|
|
5
14
|
type: PropType<string | boolean | (import("vue").TransitionProps & {
|
|
6
15
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -13,11 +22,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
13
22
|
default: () => never[];
|
|
14
23
|
};
|
|
15
24
|
itemTitle: {
|
|
16
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
25
|
+
type: PropType<import("../../composable").TItemKey>; /**
|
|
26
|
+
* Текстовое значение поиска для фильтрации данные
|
|
27
|
+
*/
|
|
17
28
|
default: string;
|
|
18
29
|
};
|
|
19
30
|
itemValue: {
|
|
20
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
31
|
+
type: PropType<import("../../composable").TItemKey>; /**
|
|
32
|
+
* При поиске будет сразу выбирать первый найденный вариант
|
|
33
|
+
*/
|
|
21
34
|
default: string;
|
|
22
35
|
};
|
|
23
36
|
itemChildren: Omit<{
|
|
@@ -199,7 +212,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
199
212
|
default: string;
|
|
200
213
|
};
|
|
201
214
|
placeholder: {
|
|
202
|
-
type: PropType<string>;
|
|
215
|
+
type: PropType<string>; /**
|
|
216
|
+
* Событие выбора всех элементов
|
|
217
|
+
* @type { boolean }
|
|
218
|
+
*/
|
|
203
219
|
default: undefined;
|
|
204
220
|
};
|
|
205
221
|
counter: {
|
|
@@ -249,9 +265,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
249
265
|
};
|
|
250
266
|
noFilter: {
|
|
251
267
|
type: PropType<boolean>;
|
|
252
|
-
default: boolean;
|
|
253
|
-
* Текстовое значение поиска для фильтрации данные
|
|
254
|
-
*/
|
|
268
|
+
default: boolean;
|
|
255
269
|
};
|
|
256
270
|
multiple: {
|
|
257
271
|
type: PropType<boolean>;
|
|
@@ -270,6 +284,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
270
284
|
default: boolean;
|
|
271
285
|
};
|
|
272
286
|
isSelectAll: {
|
|
287
|
+
/**
|
|
288
|
+
* При поиске будет сразу выбирать первый найденный вариант
|
|
289
|
+
*/
|
|
273
290
|
type: PropType<boolean>;
|
|
274
291
|
default: boolean;
|
|
275
292
|
};
|
|
@@ -292,8 +309,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
292
309
|
required: boolean;
|
|
293
310
|
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
294
311
|
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
312
|
+
theme: string;
|
|
295
313
|
lines: false | "one" | "two" | "three";
|
|
296
314
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
315
|
+
theme: {
|
|
316
|
+
type: PropType<string>;
|
|
317
|
+
/**
|
|
318
|
+
* Событие при вводе значения в поле
|
|
319
|
+
* @type { string }
|
|
320
|
+
*/
|
|
321
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
322
|
+
default: undefined;
|
|
323
|
+
};
|
|
297
324
|
selectStrategy: {
|
|
298
325
|
type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
299
326
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -332,11 +359,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
332
359
|
default: () => never[];
|
|
333
360
|
};
|
|
334
361
|
itemTitle: {
|
|
335
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
362
|
+
type: PropType<import("../../composable").TItemKey>; /**
|
|
363
|
+
* Текстовое значение поиска для фильтрации данные
|
|
364
|
+
*/
|
|
336
365
|
default: string;
|
|
337
366
|
};
|
|
338
367
|
itemValue: {
|
|
339
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
368
|
+
type: PropType<import("../../composable").TItemKey>; /**
|
|
369
|
+
* При поиске будет сразу выбирать первый найденный вариант
|
|
370
|
+
*/
|
|
340
371
|
default: string;
|
|
341
372
|
};
|
|
342
373
|
itemChildren: {
|
|
@@ -370,9 +401,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
370
401
|
path: unknown[];
|
|
371
402
|
event: Event;
|
|
372
403
|
}) => any) | undefined;
|
|
373
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "items" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "returnObject" | "tag" | "size" | "disabled" | "dark" | "required" | "selectStrategy" | "openStrategy" | "lines">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
404
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "items" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "returnObject" | "tag" | "size" | "disabled" | "dark" | "required" | "selectStrategy" | "openStrategy" | "theme" | "lines">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
374
405
|
default: undefined;
|
|
375
406
|
};
|
|
407
|
+
menuIcon: {
|
|
408
|
+
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">;
|
|
409
|
+
default: string;
|
|
410
|
+
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;
|
|
411
|
+
};
|
|
376
412
|
/**
|
|
377
413
|
* Текстовое значение поиска для фильтрации данные
|
|
378
414
|
*/
|
|
@@ -414,6 +450,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
414
450
|
*/
|
|
415
451
|
'update:selectedAll': (value: boolean) => true;
|
|
416
452
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
453
|
+
theme: {
|
|
454
|
+
type: PropType<string>;
|
|
455
|
+
/**
|
|
456
|
+
* Событие при вводе значения в поле
|
|
457
|
+
* @type { string }
|
|
458
|
+
*/
|
|
459
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
460
|
+
default: undefined;
|
|
461
|
+
};
|
|
417
462
|
transition: {
|
|
418
463
|
type: PropType<string | boolean | (import("vue").TransitionProps & {
|
|
419
464
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -426,11 +471,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
426
471
|
default: () => never[];
|
|
427
472
|
};
|
|
428
473
|
itemTitle: {
|
|
429
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
474
|
+
type: PropType<import("../../composable").TItemKey>; /**
|
|
475
|
+
* Текстовое значение поиска для фильтрации данные
|
|
476
|
+
*/
|
|
430
477
|
default: string;
|
|
431
478
|
};
|
|
432
479
|
itemValue: {
|
|
433
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
480
|
+
type: PropType<import("../../composable").TItemKey>; /**
|
|
481
|
+
* При поиске будет сразу выбирать первый найденный вариант
|
|
482
|
+
*/
|
|
434
483
|
default: string;
|
|
435
484
|
};
|
|
436
485
|
itemChildren: Omit<{
|
|
@@ -612,7 +661,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
612
661
|
default: string;
|
|
613
662
|
};
|
|
614
663
|
placeholder: {
|
|
615
|
-
type: PropType<string>;
|
|
664
|
+
type: PropType<string>; /**
|
|
665
|
+
* Событие выбора всех элементов
|
|
666
|
+
* @type { boolean }
|
|
667
|
+
*/
|
|
616
668
|
default: undefined;
|
|
617
669
|
};
|
|
618
670
|
counter: {
|
|
@@ -662,9 +714,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
662
714
|
};
|
|
663
715
|
noFilter: {
|
|
664
716
|
type: PropType<boolean>;
|
|
665
|
-
default: boolean;
|
|
666
|
-
* Текстовое значение поиска для фильтрации данные
|
|
667
|
-
*/
|
|
717
|
+
default: boolean;
|
|
668
718
|
};
|
|
669
719
|
multiple: {
|
|
670
720
|
type: PropType<boolean>;
|
|
@@ -683,6 +733,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
683
733
|
default: boolean;
|
|
684
734
|
};
|
|
685
735
|
isSelectAll: {
|
|
736
|
+
/**
|
|
737
|
+
* При поиске будет сразу выбирать первый найденный вариант
|
|
738
|
+
*/
|
|
686
739
|
type: PropType<boolean>;
|
|
687
740
|
default: boolean;
|
|
688
741
|
};
|
|
@@ -705,8 +758,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
705
758
|
required: boolean;
|
|
706
759
|
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
707
760
|
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
761
|
+
theme: string;
|
|
708
762
|
lines: false | "one" | "two" | "three";
|
|
709
763
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
764
|
+
theme: {
|
|
765
|
+
type: PropType<string>;
|
|
766
|
+
/**
|
|
767
|
+
* Событие при вводе значения в поле
|
|
768
|
+
* @type { string }
|
|
769
|
+
*/
|
|
770
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
771
|
+
default: undefined;
|
|
772
|
+
};
|
|
710
773
|
selectStrategy: {
|
|
711
774
|
type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
712
775
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -745,11 +808,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
745
808
|
default: () => never[];
|
|
746
809
|
};
|
|
747
810
|
itemTitle: {
|
|
748
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
811
|
+
type: PropType<import("../../composable").TItemKey>; /**
|
|
812
|
+
* Текстовое значение поиска для фильтрации данные
|
|
813
|
+
*/
|
|
749
814
|
default: string;
|
|
750
815
|
};
|
|
751
816
|
itemValue: {
|
|
752
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
817
|
+
type: PropType<import("../../composable").TItemKey>; /**
|
|
818
|
+
* При поиске будет сразу выбирать первый найденный вариант
|
|
819
|
+
*/
|
|
753
820
|
default: string;
|
|
754
821
|
};
|
|
755
822
|
itemChildren: {
|
|
@@ -783,9 +850,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
783
850
|
path: unknown[];
|
|
784
851
|
event: Event;
|
|
785
852
|
}) => any) | undefined;
|
|
786
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "items" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "returnObject" | "tag" | "size" | "disabled" | "dark" | "required" | "selectStrategy" | "openStrategy" | "lines">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
853
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "items" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "returnObject" | "tag" | "size" | "disabled" | "dark" | "required" | "selectStrategy" | "openStrategy" | "theme" | "lines">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
787
854
|
default: undefined;
|
|
788
855
|
};
|
|
856
|
+
menuIcon: {
|
|
857
|
+
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">;
|
|
858
|
+
default: string;
|
|
859
|
+
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;
|
|
860
|
+
};
|
|
789
861
|
/**
|
|
790
862
|
* Текстовое значение поиска для фильтрации данные
|
|
791
863
|
*/
|
|
@@ -827,8 +899,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
827
899
|
required: boolean;
|
|
828
900
|
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
829
901
|
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
902
|
+
theme: string;
|
|
830
903
|
lines: false | "one" | "two" | "three";
|
|
831
904
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
905
|
+
theme: {
|
|
906
|
+
type: PropType<string>;
|
|
907
|
+
/**
|
|
908
|
+
* Событие при вводе значения в поле
|
|
909
|
+
* @type { string }
|
|
910
|
+
*/
|
|
911
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
912
|
+
default: undefined;
|
|
913
|
+
};
|
|
832
914
|
selectStrategy: {
|
|
833
915
|
type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
834
916
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -867,11 +949,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
867
949
|
default: () => never[];
|
|
868
950
|
};
|
|
869
951
|
itemTitle: {
|
|
870
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
952
|
+
type: PropType<import("../../composable").TItemKey>; /**
|
|
953
|
+
* Текстовое значение поиска для фильтрации данные
|
|
954
|
+
*/
|
|
871
955
|
default: string;
|
|
872
956
|
};
|
|
873
957
|
itemValue: {
|
|
874
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
958
|
+
type: PropType<import("../../composable").TItemKey>; /**
|
|
959
|
+
* При поиске будет сразу выбирать первый найденный вариант
|
|
960
|
+
*/
|
|
875
961
|
default: string;
|
|
876
962
|
};
|
|
877
963
|
itemChildren: {
|
|
@@ -905,7 +991,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
905
991
|
path: unknown[];
|
|
906
992
|
event: Event;
|
|
907
993
|
}) => any) | undefined;
|
|
908
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "items" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "returnObject" | "tag" | "size" | "disabled" | "dark" | "required" | "selectStrategy" | "openStrategy" | "lines">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>;
|
|
994
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "items" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "returnObject" | "tag" | "size" | "disabled" | "dark" | "required" | "selectStrategy" | "openStrategy" | "theme" | "lines">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>;
|
|
909
995
|
items: any[];
|
|
910
996
|
itemTitle: import("../../composable").TItemKey;
|
|
911
997
|
search: string;
|
|
@@ -917,9 +1003,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
917
1003
|
description: string;
|
|
918
1004
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
919
1005
|
disabled: boolean;
|
|
1006
|
+
theme: string;
|
|
920
1007
|
type: "number" | "password" | "text" | "email" | "tel" | "url";
|
|
921
1008
|
name: string | undefined;
|
|
922
1009
|
id: string;
|
|
1010
|
+
menuIcon: "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";
|
|
1011
|
+
error: boolean;
|
|
1012
|
+
menu: boolean | undefined;
|
|
923
1013
|
customFilter: (value: string, query: string, item?: any) => import("../../composable").TFilterMath;
|
|
924
1014
|
customKeyFilter: {
|
|
925
1015
|
[x: string]: (value: string, query: string, item?: any) => import("../../composable").TFilterMath;
|
|
@@ -932,8 +1022,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
932
1022
|
prefix: string;
|
|
933
1023
|
suffix: string;
|
|
934
1024
|
prependInnerIcon: "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";
|
|
935
|
-
error: boolean;
|
|
936
|
-
menu: boolean | undefined;
|
|
937
1025
|
appendInnerIcon: "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";
|
|
938
1026
|
role: string;
|
|
939
1027
|
placeholder: string;
|
|
@@ -1,44 +1,53 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
export declare const componentName = "CdsBadge";
|
|
3
3
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
|
-
|
|
5
|
-
type: PropType<
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
theme: {
|
|
5
|
+
type: PropType<string>;
|
|
6
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
7
|
+
default: undefined;
|
|
8
8
|
};
|
|
9
9
|
dark: {
|
|
10
10
|
type: PropType<boolean>;
|
|
11
11
|
default: boolean;
|
|
12
12
|
};
|
|
13
|
+
variant: {
|
|
14
|
+
type: PropType<"default" | "important">;
|
|
15
|
+
default: string;
|
|
16
|
+
validator: (value: "default" | "important") => boolean;
|
|
17
|
+
};
|
|
13
18
|
/**
|
|
14
19
|
* Число для счетчика
|
|
15
20
|
*/
|
|
16
21
|
count: {
|
|
17
|
-
type: PropType<string | number>;
|
|
18
|
-
|
|
19
|
-
default: number;
|
|
22
|
+
type: PropType<string | number | undefined>;
|
|
23
|
+
default: undefined;
|
|
20
24
|
};
|
|
21
25
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
-
|
|
23
|
-
type: PropType<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
+
theme: {
|
|
27
|
+
type: PropType<string>;
|
|
28
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
29
|
+
default: undefined;
|
|
26
30
|
};
|
|
27
31
|
dark: {
|
|
28
32
|
type: PropType<boolean>;
|
|
29
33
|
default: boolean;
|
|
30
34
|
};
|
|
35
|
+
variant: {
|
|
36
|
+
type: PropType<"default" | "important">;
|
|
37
|
+
default: string;
|
|
38
|
+
validator: (value: "default" | "important") => boolean;
|
|
39
|
+
};
|
|
31
40
|
/**
|
|
32
41
|
* Число для счетчика
|
|
33
42
|
*/
|
|
34
43
|
count: {
|
|
35
|
-
type: PropType<string | number>;
|
|
36
|
-
|
|
37
|
-
default: number;
|
|
44
|
+
type: PropType<string | number | undefined>;
|
|
45
|
+
default: undefined;
|
|
38
46
|
};
|
|
39
47
|
}>>, {
|
|
40
48
|
dark: boolean;
|
|
41
|
-
|
|
42
|
-
|
|
49
|
+
theme: string;
|
|
50
|
+
variant: "default" | "important";
|
|
51
|
+
count: string | number | undefined;
|
|
43
52
|
}>;
|
|
44
53
|
export default _sfc_main;
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
export declare const componentName = "CdsBreadcrumbs";
|
|
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
|
items: {
|
|
4
9
|
type: import("vue").PropType<any[]>;
|
|
5
10
|
default: () => never[];
|
|
@@ -25,6 +30,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
25
30
|
default: boolean;
|
|
26
31
|
};
|
|
27
32
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
|
+
theme: {
|
|
34
|
+
type: import("vue").PropType<string>;
|
|
35
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
36
|
+
default: undefined;
|
|
37
|
+
};
|
|
28
38
|
items: {
|
|
29
39
|
type: import("vue").PropType<any[]>;
|
|
30
40
|
default: () => never[];
|
|
@@ -56,5 +66,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
56
66
|
itemChildren: import("../../composable").TItemKey;
|
|
57
67
|
itemProps: import("../../composable").TItemKey;
|
|
58
68
|
returnObject: boolean;
|
|
69
|
+
theme: string;
|
|
59
70
|
}>;
|
|
60
71
|
export default _sfc_main;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
export declare const componentName = "CdsBreadcrumbsItem";
|
|
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
|
href: {
|
|
5
10
|
type: PropType<string>;
|
|
6
11
|
default: undefined;
|
|
@@ -21,6 +26,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
21
26
|
default: boolean;
|
|
22
27
|
};
|
|
23
28
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
29
|
+
theme: {
|
|
30
|
+
type: PropType<string>;
|
|
31
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
32
|
+
default: undefined;
|
|
33
|
+
};
|
|
24
34
|
href: {
|
|
25
35
|
type: PropType<string>;
|
|
26
36
|
default: undefined;
|
|
@@ -41,6 +51,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
41
51
|
default: boolean;
|
|
42
52
|
};
|
|
43
53
|
}>>, {
|
|
54
|
+
theme: string;
|
|
44
55
|
text: string;
|
|
45
56
|
href: string;
|
|
46
57
|
to: import("vue-router").RouteLocationRaw;
|
|
@@ -56,6 +56,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
56
56
|
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
57
57
|
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
58
58
|
};
|
|
59
|
+
theme: {
|
|
60
|
+
type: PropType<string>;
|
|
61
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
62
|
+
default: undefined;
|
|
63
|
+
};
|
|
59
64
|
appearance: {
|
|
60
65
|
type: PropType<"primary" | "secondary" | "transparent">;
|
|
61
66
|
default: string;
|
|
@@ -151,6 +156,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
151
156
|
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
152
157
|
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
153
158
|
};
|
|
159
|
+
theme: {
|
|
160
|
+
type: PropType<string>;
|
|
161
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
162
|
+
default: undefined;
|
|
163
|
+
};
|
|
154
164
|
appearance: {
|
|
155
165
|
type: PropType<"primary" | "secondary" | "transparent">;
|
|
156
166
|
default: string;
|
|
@@ -186,6 +196,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
186
196
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
187
197
|
disabled: boolean;
|
|
188
198
|
dark: boolean;
|
|
199
|
+
theme: string;
|
|
189
200
|
active: boolean;
|
|
190
201
|
text: string;
|
|
191
202
|
prependIcon: "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";
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
export declare const componentName = "CdsCheckbox";
|
|
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
|
readonly: {
|
|
5
10
|
type: PropType<boolean>;
|
|
6
11
|
default: boolean;
|
|
@@ -145,6 +150,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
145
150
|
*/
|
|
146
151
|
'update:indeterminate': (value: boolean) => true;
|
|
147
152
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
153
|
+
theme: {
|
|
154
|
+
type: PropType<string>;
|
|
155
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
156
|
+
default: undefined;
|
|
157
|
+
};
|
|
148
158
|
readonly: {
|
|
149
159
|
type: PropType<boolean>;
|
|
150
160
|
default: boolean;
|
|
@@ -234,6 +244,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
234
244
|
value: any;
|
|
235
245
|
description: string;
|
|
236
246
|
disabled: boolean;
|
|
247
|
+
theme: string;
|
|
237
248
|
name: string | undefined;
|
|
238
249
|
id: string;
|
|
239
250
|
indeterminate: boolean;
|
|
@@ -16,6 +16,11 @@ export declare const checkboxGroupProvideDefaultValue: ICheckboxGroupProvide;
|
|
|
16
16
|
export declare const CheckboxGroupKey: unique symbol;
|
|
17
17
|
export declare const componentName = "CdsCheckboxGroup";
|
|
18
18
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
19
|
+
theme: {
|
|
20
|
+
type: import("vue").PropType<string>;
|
|
21
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
22
|
+
default: undefined;
|
|
23
|
+
};
|
|
19
24
|
readonly: {
|
|
20
25
|
type: import("vue").PropType<boolean>;
|
|
21
26
|
default: boolean;
|
|
@@ -113,6 +118,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
113
118
|
readonly readonly?: boolean | undefined;
|
|
114
119
|
readonly direction?: NonNullable<"horizontal" | "vertical"> | undefined;
|
|
115
120
|
readonly description?: string | undefined;
|
|
121
|
+
readonly theme?: string | undefined;
|
|
116
122
|
readonly name?: string | undefined;
|
|
117
123
|
readonly id?: string | undefined;
|
|
118
124
|
readonly label?: string | undefined;
|
|
@@ -122,7 +128,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
122
128
|
hasLabel: import("vue").ComputedRef<boolean>;
|
|
123
129
|
hasDescription: import("vue").ComputedRef<boolean>;
|
|
124
130
|
directionClasses: import("vue").ComputedRef<string>;
|
|
131
|
+
themeClasses: Readonly<import("vue").ComputedRef<string | undefined>>;
|
|
125
132
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
133
|
+
theme: {
|
|
134
|
+
type: import("vue").PropType<string>;
|
|
135
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
136
|
+
default: undefined;
|
|
137
|
+
};
|
|
126
138
|
readonly: {
|
|
127
139
|
type: import("vue").PropType<boolean>;
|
|
128
140
|
default: boolean;
|
|
@@ -208,6 +220,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
208
220
|
value: any;
|
|
209
221
|
description: string;
|
|
210
222
|
disabled: boolean;
|
|
223
|
+
theme: string;
|
|
211
224
|
name: string | undefined;
|
|
212
225
|
id: string;
|
|
213
226
|
error: boolean;
|