@central-design-system/components 3.0.0-beta.8 → 3.0.0-beta.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cds.css +1 -1
- package/dist/cds.d.ts +1 -0
- package/dist/cds.es.js +9365 -8404
- package/dist/cds.umd.js +7 -3
- package/dist/components/CdsAutocomplete/CdsAutocomplete.vue.d.ts +100 -29
- package/dist/components/CdsBadge/CdsBadge.vue.d.ts +20 -9
- package/dist/components/CdsBreadcrumbs/CdsBreadcrumbs.vue.d.ts +11 -0
- package/dist/components/CdsBreadcrumbs/CdsBreadcrumbsItem.vue.d.ts +11 -0
- package/dist/components/CdsButton/CdsButton.vue.d.ts +11 -0
- package/dist/components/CdsCheckbox/CdsCheckbox.vue.d.ts +11 -0
- package/dist/components/CdsCheckbox/CdsCheckboxGroup.vue.d.ts +13 -0
- package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +101 -46
- package/dist/components/CdsContainer/CdsContainer.vue.d.ts +17 -2
- package/dist/components/CdsContentSwitcher/CdsContentSwitcher.vue.d.ts +11 -0
- package/dist/components/CdsDatePicker/CdsDatePicker.vue.d.ts +11 -0
- package/dist/components/CdsDrawer/CdsDrawer.vue.d.ts +12 -0
- package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +134 -39
- package/dist/components/CdsExpandablePanel/CdsExpandablePanels.vue.d.ts +11 -0
- package/dist/components/CdsFooter/CdsFooter.vue.d.ts +11 -0
- package/dist/components/CdsForm/CdsForm.vue.d.ts +11 -0
- package/dist/components/CdsHeader/CdsHeader.vue.d.ts +11 -0
- package/dist/components/CdsIcon/CdsIcon.vue.d.ts +13 -0
- package/dist/components/CdsInput/CdsInput.vue.d.ts +13 -8
- package/dist/components/CdsLayout/CdsLayout.vue.d.ts +11 -0
- package/dist/components/CdsLink/CdsLink.vue.d.ts +12 -0
- package/dist/components/CdsList/CdsList.vue.d.ts +13 -16
- package/dist/components/CdsLoader/CdsLoader.vue.d.ts +12 -0
- package/dist/components/CdsMenu/CdsMenu.vue.d.ts +11 -0
- package/dist/components/CdsModal/CdsModal.vue.d.ts +11 -0
- package/dist/components/CdsNotification/CdsNotification.vue.d.ts +22 -11
- package/dist/components/CdsNotification/CdsNotificationAlert.vue.d.ts +14 -3
- package/dist/components/CdsPagination/CdsPagination.vue.d.ts +11 -0
- package/dist/components/CdsProgress/CdsProgress.vue.d.ts +11 -0
- package/dist/components/CdsRadioButton/CdsRadio.vue.d.ts +11 -0
- package/dist/components/CdsRadioButton/CdsRadioButton.vue.d.ts +13 -0
- package/dist/components/CdsSelect/CdsSelect.vue.d.ts +40 -24
- package/dist/components/CdsSidebar/CdsSidebar.vue.d.ts +14 -6
- package/dist/components/CdsSkeletonLoader/CdsSkeletonLoader.vue.d.ts +11 -0
- package/dist/components/CdsStages/CdsStages.vue.d.ts +12 -0
- package/dist/components/CdsStatus/CdsStatus.vue.d.ts +12 -0
- package/dist/components/CdsSteps/CdsSteps.vue.d.ts +13 -6
- package/dist/components/CdsTable/CdsTable.vue.d.ts +50 -18
- package/dist/components/CdsTable/components/Table/InternalTable.d.ts +21 -3
- package/dist/components/CdsTable/components/TableProvider.d.ts +32 -3
- package/dist/components/CdsTable/composable/table.d.ts +7 -1
- package/dist/components/CdsTabs/CdsTabs.vue.d.ts +11 -0
- package/dist/components/CdsTag/CdsTag.vue.d.ts +12 -0
- package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +46 -50
- package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +44 -16
- package/dist/components/CdsTimePicker/CdsTimePicker.vue.d.ts +11 -0
- package/dist/components/CdsToggle/CdsToggle.vue.d.ts +13 -8
- package/dist/components/CdsToolbar/CdsToolbar.vue.d.ts +11 -0
- package/dist/components/CdsTooltip/CdsTooltip.vue.d.ts +19 -0
- package/dist/components/CdsUploader/CdsUploader.vue.d.ts +35 -12
- package/dist/components/CdsUploader/components/UploadList/ListItem.d.ts +21 -3
- package/dist/components/CdsUploader/components/UploadList/UploadList.d.ts +21 -3
- package/dist/components/CdsUploader/composable/upload.d.ts +17 -7
- package/dist/composable/index.d.ts +1 -0
- package/dist/composable/select.d.ts +8 -4
- package/dist/composable/theme.d.ts +82 -0
- package/dist/composable/variant.d.ts +1 -1
- package/dist/create.d.ts +2 -1
- package/dist/themes/b2b.d.ts +26 -0
- package/dist/themes/cds.d.ts +26 -0
- package/dist/themes/dark.d.ts +26 -0
- package/dist/themes/index.d.ts +5 -0
- package/dist/themes/promo.d.ts +26 -0
- package/dist/themes/themes.d.ts +10 -0
- package/dist/utils/colors.d.ts +368 -0
- package/dist/utils/colorsUtils/APCA.d.ts +7 -0
- package/dist/utils/colorsUtils/index.d.ts +1 -0
- package/dist/utils/colorsUtils/transformCIELAB.d.ts +3 -0
- package/dist/utils/colorsUtils/transformSRGB.d.ts +3 -0
- package/dist/utils/colorsUtils/utils.d.ts +41 -0
- package/dist/utils/helpers.d.ts +7 -0
- package/dist/utils/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/scss/themes/index.ts +1 -1
- package/dist/components/CdsTable/composable/scroll.d.ts +0 -4607
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import type { NTable } from './interface';
|
|
2
2
|
export declare const componentName = "CdsTable";
|
|
3
3
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
|
+
theme: {
|
|
5
|
+
type: import("vue").PropType<string>;
|
|
6
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
7
|
+
default: undefined;
|
|
8
|
+
};
|
|
4
9
|
readonly: {
|
|
5
10
|
type: import("vue").PropType<boolean>;
|
|
6
11
|
default: boolean;
|
|
@@ -104,6 +109,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
104
109
|
showSorterTooltip: {
|
|
105
110
|
type: import("vue").PropType<boolean | Omit<Partial<{
|
|
106
111
|
disabled: boolean;
|
|
112
|
+
theme: string;
|
|
107
113
|
id: string;
|
|
108
114
|
location: NonNullable<import("../../utils").TAnchor>;
|
|
109
115
|
text: string;
|
|
@@ -149,7 +155,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
149
155
|
};
|
|
150
156
|
openDelay: {
|
|
151
157
|
type: import("vue").PropType<string | number>;
|
|
152
|
-
default: null;
|
|
158
|
+
default: null; /**
|
|
159
|
+
* События изменения пагинации, фильтров или сортировки
|
|
160
|
+
*/
|
|
153
161
|
};
|
|
154
162
|
transition: Omit<{
|
|
155
163
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
|
@@ -186,9 +194,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
186
194
|
default: string;
|
|
187
195
|
};
|
|
188
196
|
minWidth: Omit<{
|
|
189
|
-
/**
|
|
190
|
-
* Событие при изменении размера колонки
|
|
191
|
-
*/
|
|
192
197
|
type: import("vue").PropType<string | number>;
|
|
193
198
|
default: string;
|
|
194
199
|
}, "default" | "type"> & {
|
|
@@ -204,7 +209,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
204
209
|
};
|
|
205
210
|
scrollStrategy: Omit<{
|
|
206
211
|
type: import("vue").PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
|
|
207
|
-
default: string;
|
|
212
|
+
default: string; /**
|
|
213
|
+
* Событие изменения раскрытых строк
|
|
214
|
+
*/
|
|
208
215
|
validator: (value: any) => boolean;
|
|
209
216
|
}, "default" | "type"> & {
|
|
210
217
|
type: import("vue").PropType<NonNullable<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>>;
|
|
@@ -325,6 +332,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
325
332
|
type: import("vue").PropType<boolean>;
|
|
326
333
|
default: boolean;
|
|
327
334
|
};
|
|
335
|
+
theme: {
|
|
336
|
+
type: import("vue").PropType<string>;
|
|
337
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
338
|
+
default: undefined;
|
|
339
|
+
};
|
|
328
340
|
text: {
|
|
329
341
|
type: import("vue").PropType<string>;
|
|
330
342
|
default: undefined;
|
|
@@ -339,7 +351,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
339
351
|
};
|
|
340
352
|
}>> & {
|
|
341
353
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
342
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
354
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "theme" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
343
355
|
default: boolean;
|
|
344
356
|
};
|
|
345
357
|
expandFixed: {
|
|
@@ -446,6 +458,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
446
458
|
*/
|
|
447
459
|
'update:expandedRowKeys': (expandedKeys: NTable.TKey[]) => boolean;
|
|
448
460
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
461
|
+
theme: {
|
|
462
|
+
type: import("vue").PropType<string>;
|
|
463
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
464
|
+
default: undefined;
|
|
465
|
+
};
|
|
449
466
|
readonly: {
|
|
450
467
|
type: import("vue").PropType<boolean>;
|
|
451
468
|
default: boolean;
|
|
@@ -549,6 +566,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
549
566
|
showSorterTooltip: {
|
|
550
567
|
type: import("vue").PropType<boolean | Omit<Partial<{
|
|
551
568
|
disabled: boolean;
|
|
569
|
+
theme: string;
|
|
552
570
|
id: string;
|
|
553
571
|
location: NonNullable<import("../../utils").TAnchor>;
|
|
554
572
|
text: string;
|
|
@@ -594,7 +612,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
594
612
|
};
|
|
595
613
|
openDelay: {
|
|
596
614
|
type: import("vue").PropType<string | number>;
|
|
597
|
-
default: null;
|
|
615
|
+
default: null; /**
|
|
616
|
+
* События изменения пагинации, фильтров или сортировки
|
|
617
|
+
*/
|
|
598
618
|
};
|
|
599
619
|
transition: Omit<{
|
|
600
620
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
|
@@ -631,9 +651,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
631
651
|
default: string;
|
|
632
652
|
};
|
|
633
653
|
minWidth: Omit<{
|
|
634
|
-
/**
|
|
635
|
-
* Событие при изменении размера колонки
|
|
636
|
-
*/
|
|
637
654
|
type: import("vue").PropType<string | number>;
|
|
638
655
|
default: string;
|
|
639
656
|
}, "default" | "type"> & {
|
|
@@ -649,7 +666,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
649
666
|
};
|
|
650
667
|
scrollStrategy: Omit<{
|
|
651
668
|
type: import("vue").PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
|
|
652
|
-
default: string;
|
|
669
|
+
default: string; /**
|
|
670
|
+
* Событие изменения раскрытых строк
|
|
671
|
+
*/
|
|
653
672
|
validator: (value: any) => boolean;
|
|
654
673
|
}, "default" | "type"> & {
|
|
655
674
|
type: import("vue").PropType<NonNullable<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>>;
|
|
@@ -770,6 +789,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
770
789
|
type: import("vue").PropType<boolean>;
|
|
771
790
|
default: boolean;
|
|
772
791
|
};
|
|
792
|
+
theme: {
|
|
793
|
+
type: import("vue").PropType<string>;
|
|
794
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
795
|
+
default: undefined;
|
|
796
|
+
};
|
|
773
797
|
text: {
|
|
774
798
|
type: import("vue").PropType<string>;
|
|
775
799
|
default: undefined;
|
|
@@ -784,7 +808,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
784
808
|
};
|
|
785
809
|
}>> & {
|
|
786
810
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
787
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
811
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "theme" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
788
812
|
default: boolean;
|
|
789
813
|
};
|
|
790
814
|
expandFixed: {
|
|
@@ -876,6 +900,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
876
900
|
}, {
|
|
877
901
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
878
902
|
disabled: boolean;
|
|
903
|
+
theme: string;
|
|
879
904
|
id: string;
|
|
880
905
|
components: NTable.NCustomize.TableComponents<any>;
|
|
881
906
|
data: any[];
|
|
@@ -904,6 +929,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
904
929
|
sortDirection: string[];
|
|
905
930
|
showSorterTooltip: boolean | Omit<Partial<{
|
|
906
931
|
disabled: boolean;
|
|
932
|
+
theme: string;
|
|
907
933
|
id: string;
|
|
908
934
|
location: NonNullable<import("../../utils").TAnchor>;
|
|
909
935
|
text: string;
|
|
@@ -949,7 +975,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
949
975
|
};
|
|
950
976
|
openDelay: {
|
|
951
977
|
type: import("vue").PropType<string | number>;
|
|
952
|
-
default: null;
|
|
978
|
+
default: null; /**
|
|
979
|
+
* События изменения пагинации, фильтров или сортировки
|
|
980
|
+
*/
|
|
953
981
|
};
|
|
954
982
|
transition: Omit<{
|
|
955
983
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
|
@@ -986,9 +1014,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
986
1014
|
default: string;
|
|
987
1015
|
};
|
|
988
1016
|
minWidth: Omit<{
|
|
989
|
-
/**
|
|
990
|
-
* Событие при изменении размера колонки
|
|
991
|
-
*/
|
|
992
1017
|
type: import("vue").PropType<string | number>;
|
|
993
1018
|
default: string;
|
|
994
1019
|
}, "default" | "type"> & {
|
|
@@ -1004,7 +1029,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1004
1029
|
};
|
|
1005
1030
|
scrollStrategy: Omit<{
|
|
1006
1031
|
type: import("vue").PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
|
|
1007
|
-
default: string;
|
|
1032
|
+
default: string; /**
|
|
1033
|
+
* Событие изменения раскрытых строк
|
|
1034
|
+
*/
|
|
1008
1035
|
validator: (value: any) => boolean;
|
|
1009
1036
|
}, "default" | "type"> & {
|
|
1010
1037
|
type: import("vue").PropType<NonNullable<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>>;
|
|
@@ -1125,6 +1152,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1125
1152
|
type: import("vue").PropType<boolean>;
|
|
1126
1153
|
default: boolean;
|
|
1127
1154
|
};
|
|
1155
|
+
theme: {
|
|
1156
|
+
type: import("vue").PropType<string>;
|
|
1157
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
1158
|
+
default: undefined;
|
|
1159
|
+
};
|
|
1128
1160
|
text: {
|
|
1129
1161
|
type: import("vue").PropType<string>;
|
|
1130
1162
|
default: undefined;
|
|
@@ -1139,7 +1171,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1139
1171
|
};
|
|
1140
1172
|
}>> & {
|
|
1141
1173
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1142
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>;
|
|
1174
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "theme" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>;
|
|
1143
1175
|
expandFixed: NTable.TFixed;
|
|
1144
1176
|
expandColumnWidth: number;
|
|
1145
1177
|
expandedRowKeys: NTable.TKey[];
|
|
@@ -116,6 +116,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
116
116
|
showSorterTooltip: {
|
|
117
117
|
type: PropType<boolean | Omit<Partial<{
|
|
118
118
|
disabled: boolean;
|
|
119
|
+
theme: string;
|
|
119
120
|
id: string;
|
|
120
121
|
location: NonNullable<import('../../../../utils').TAnchor>;
|
|
121
122
|
text: string;
|
|
@@ -334,6 +335,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
334
335
|
type: PropType<boolean>;
|
|
335
336
|
default: boolean;
|
|
336
337
|
};
|
|
338
|
+
theme: {
|
|
339
|
+
type: PropType<string>;
|
|
340
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
341
|
+
default: undefined;
|
|
342
|
+
};
|
|
337
343
|
text: {
|
|
338
344
|
type: PropType<string>;
|
|
339
345
|
default: undefined;
|
|
@@ -348,7 +354,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
348
354
|
};
|
|
349
355
|
}>> & {
|
|
350
356
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
351
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
357
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "theme" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
352
358
|
default: boolean;
|
|
353
359
|
};
|
|
354
360
|
expandFixed: {
|
|
@@ -547,6 +553,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
547
553
|
showSorterTooltip: {
|
|
548
554
|
type: PropType<boolean | Omit<Partial<{
|
|
549
555
|
disabled: boolean;
|
|
556
|
+
theme: string;
|
|
550
557
|
id: string;
|
|
551
558
|
location: NonNullable<import('../../../../utils').TAnchor>;
|
|
552
559
|
text: string;
|
|
@@ -765,6 +772,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
765
772
|
type: PropType<boolean>;
|
|
766
773
|
default: boolean;
|
|
767
774
|
};
|
|
775
|
+
theme: {
|
|
776
|
+
type: PropType<string>;
|
|
777
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
778
|
+
default: undefined;
|
|
779
|
+
};
|
|
768
780
|
text: {
|
|
769
781
|
type: PropType<string>;
|
|
770
782
|
default: undefined;
|
|
@@ -779,7 +791,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
779
791
|
};
|
|
780
792
|
}>> & {
|
|
781
793
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
782
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
794
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "theme" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
783
795
|
default: boolean;
|
|
784
796
|
};
|
|
785
797
|
expandFixed: {
|
|
@@ -899,6 +911,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
899
911
|
sortDirection: string[];
|
|
900
912
|
showSorterTooltip: boolean | Omit<Partial<{
|
|
901
913
|
disabled: boolean;
|
|
914
|
+
theme: string;
|
|
902
915
|
id: string;
|
|
903
916
|
location: NonNullable<import('../../../../utils').TAnchor>;
|
|
904
917
|
text: string;
|
|
@@ -1117,6 +1130,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1117
1130
|
type: PropType<boolean>;
|
|
1118
1131
|
default: boolean;
|
|
1119
1132
|
};
|
|
1133
|
+
theme: {
|
|
1134
|
+
type: PropType<string>;
|
|
1135
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
1136
|
+
default: undefined;
|
|
1137
|
+
};
|
|
1120
1138
|
text: {
|
|
1121
1139
|
type: PropType<string>;
|
|
1122
1140
|
default: undefined;
|
|
@@ -1131,7 +1149,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1131
1149
|
};
|
|
1132
1150
|
}>> & {
|
|
1133
1151
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1134
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>;
|
|
1152
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "theme" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>;
|
|
1135
1153
|
expandFixed: NTable.TFixed;
|
|
1136
1154
|
expandColumnWidth: number;
|
|
1137
1155
|
expandedRowKeys: NTable.TKey[];
|
|
@@ -6,6 +6,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6
6
|
type: PropType<IContextSlots>;
|
|
7
7
|
required: true;
|
|
8
8
|
};
|
|
9
|
+
theme: {
|
|
10
|
+
type: PropType<string>;
|
|
11
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
12
|
+
default: undefined;
|
|
13
|
+
};
|
|
9
14
|
readonly: {
|
|
10
15
|
type: PropType<boolean>;
|
|
11
16
|
default: boolean;
|
|
@@ -109,6 +114,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
109
114
|
showSorterTooltip: {
|
|
110
115
|
type: PropType<boolean | Omit<Partial<{
|
|
111
116
|
disabled: boolean;
|
|
117
|
+
theme: string;
|
|
112
118
|
id: string;
|
|
113
119
|
location: NonNullable<import('../../../utils').TAnchor>;
|
|
114
120
|
text: string;
|
|
@@ -327,6 +333,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
327
333
|
type: PropType<boolean>;
|
|
328
334
|
default: boolean;
|
|
329
335
|
};
|
|
336
|
+
theme: {
|
|
337
|
+
type: PropType<string>;
|
|
338
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
339
|
+
default: undefined;
|
|
340
|
+
};
|
|
330
341
|
text: {
|
|
331
342
|
type: PropType<string>;
|
|
332
343
|
default: undefined;
|
|
@@ -341,7 +352,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
341
352
|
};
|
|
342
353
|
}>> & {
|
|
343
354
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
344
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
355
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "theme" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
345
356
|
default: boolean;
|
|
346
357
|
};
|
|
347
358
|
expandFixed: {
|
|
@@ -437,6 +448,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
437
448
|
type: PropType<IContextSlots>;
|
|
438
449
|
required: true;
|
|
439
450
|
};
|
|
451
|
+
theme: {
|
|
452
|
+
type: PropType<string>;
|
|
453
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
454
|
+
default: undefined;
|
|
455
|
+
};
|
|
440
456
|
readonly: {
|
|
441
457
|
type: PropType<boolean>;
|
|
442
458
|
default: boolean;
|
|
@@ -540,6 +556,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
540
556
|
showSorterTooltip: {
|
|
541
557
|
type: PropType<boolean | Omit<Partial<{
|
|
542
558
|
disabled: boolean;
|
|
559
|
+
theme: string;
|
|
543
560
|
id: string;
|
|
544
561
|
location: NonNullable<import('../../../utils').TAnchor>;
|
|
545
562
|
text: string;
|
|
@@ -758,6 +775,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
758
775
|
type: PropType<boolean>;
|
|
759
776
|
default: boolean;
|
|
760
777
|
};
|
|
778
|
+
theme: {
|
|
779
|
+
type: PropType<string>;
|
|
780
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
781
|
+
default: undefined;
|
|
782
|
+
};
|
|
761
783
|
text: {
|
|
762
784
|
type: PropType<string>;
|
|
763
785
|
default: undefined;
|
|
@@ -772,7 +794,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
772
794
|
};
|
|
773
795
|
}>> & {
|
|
774
796
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
775
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
797
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "theme" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
776
798
|
default: boolean;
|
|
777
799
|
};
|
|
778
800
|
expandFixed: {
|
|
@@ -864,6 +886,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
864
886
|
}, {
|
|
865
887
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
866
888
|
disabled: boolean;
|
|
889
|
+
theme: string;
|
|
867
890
|
id: string;
|
|
868
891
|
components: NTable.NCustomize.TableComponents<any>;
|
|
869
892
|
data: any[];
|
|
@@ -892,6 +915,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
892
915
|
sortDirection: string[];
|
|
893
916
|
showSorterTooltip: boolean | Omit<Partial<{
|
|
894
917
|
disabled: boolean;
|
|
918
|
+
theme: string;
|
|
895
919
|
id: string;
|
|
896
920
|
location: NonNullable<import('../../../utils').TAnchor>;
|
|
897
921
|
text: string;
|
|
@@ -1110,6 +1134,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1110
1134
|
type: PropType<boolean>;
|
|
1111
1135
|
default: boolean;
|
|
1112
1136
|
};
|
|
1137
|
+
theme: {
|
|
1138
|
+
type: PropType<string>;
|
|
1139
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
1140
|
+
default: undefined;
|
|
1141
|
+
};
|
|
1113
1142
|
text: {
|
|
1114
1143
|
type: PropType<string>;
|
|
1115
1144
|
default: undefined;
|
|
@@ -1124,7 +1153,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1124
1153
|
};
|
|
1125
1154
|
}>> & {
|
|
1126
1155
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1127
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>;
|
|
1156
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "theme" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>;
|
|
1128
1157
|
expandFixed: NTable.TFixed;
|
|
1129
1158
|
expandColumnWidth: number;
|
|
1130
1159
|
expandedRowKeys: NTable.TKey[];
|
|
@@ -264,6 +264,7 @@ export declare const makeTableProps: <Defaults extends {
|
|
|
264
264
|
showSorterTooltip: {
|
|
265
265
|
type: PropType<boolean | Omit<Partial<{
|
|
266
266
|
disabled: boolean;
|
|
267
|
+
theme: string;
|
|
267
268
|
id: string;
|
|
268
269
|
location: NonNullable<import('../../../utils').TAnchor>;
|
|
269
270
|
text: string;
|
|
@@ -486,6 +487,11 @@ export declare const makeTableProps: <Defaults extends {
|
|
|
486
487
|
* !!! DO NOT USE IN PRODUCTION ENVIRONMENT !!!
|
|
487
488
|
*/
|
|
488
489
|
};
|
|
490
|
+
theme: {
|
|
491
|
+
type: PropType<string>;
|
|
492
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
493
|
+
default: undefined;
|
|
494
|
+
};
|
|
489
495
|
text: {
|
|
490
496
|
type: PropType<string>;
|
|
491
497
|
default: undefined;
|
|
@@ -500,7 +506,7 @@ export declare const makeTableProps: <Defaults extends {
|
|
|
500
506
|
};
|
|
501
507
|
}>> & {
|
|
502
508
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
503
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
509
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "theme" | "id" | "location" | "text" | "modelValue" | "eager" | "transition" | "attach" | "contained" | "persistent" | "scrim" | "closeOnBack" | "zIndex" | "contentClasses" | "contentProps" | "noClickAnimation" | "activator" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeDelay" | "openDelay" | "locationStrategy" | "origin" | "offset" | "scrollStrategy" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "hideArrow">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
|
|
504
510
|
default: boolean;
|
|
505
511
|
};
|
|
506
512
|
/**
|
|
@@ -41,6 +41,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
41
41
|
type: PropType<string>;
|
|
42
42
|
default: undefined;
|
|
43
43
|
};
|
|
44
|
+
theme: {
|
|
45
|
+
type: PropType<string>;
|
|
46
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
47
|
+
default: undefined;
|
|
48
|
+
};
|
|
44
49
|
dark: {
|
|
45
50
|
type: PropType<boolean>;
|
|
46
51
|
default: boolean;
|
|
@@ -142,6 +147,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
142
147
|
type: PropType<string>;
|
|
143
148
|
default: undefined;
|
|
144
149
|
};
|
|
150
|
+
theme: {
|
|
151
|
+
type: PropType<string>;
|
|
152
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
153
|
+
default: undefined;
|
|
154
|
+
};
|
|
145
155
|
dark: {
|
|
146
156
|
type: PropType<boolean>;
|
|
147
157
|
default: boolean;
|
|
@@ -210,6 +220,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
210
220
|
disabled: boolean;
|
|
211
221
|
dark: boolean;
|
|
212
222
|
required: NonNullable<boolean | "force">;
|
|
223
|
+
theme: string;
|
|
213
224
|
modelValue: any;
|
|
214
225
|
prependIcon: NonNullable<"search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
215
226
|
appendIcon: NonNullable<"search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
export declare const componentName = "CdsTag";
|
|
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
|
text: {
|
|
5
10
|
type: PropType<string>;
|
|
6
11
|
default: undefined;
|
|
@@ -43,6 +48,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
43
48
|
'cds-tag--interactive': boolean;
|
|
44
49
|
'cds-tag--removable': boolean;
|
|
45
50
|
}>;
|
|
51
|
+
themeClasses: Readonly<import("vue").ComputedRef<string | undefined>>;
|
|
46
52
|
tag: string | import("vue").ComputedRef<string>;
|
|
47
53
|
href: import("vue").ComputedRef<string | undefined>;
|
|
48
54
|
to: import("vue").ComputedRef<import("vue-router").RouteLocationRaw | undefined>;
|
|
@@ -54,6 +60,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
54
60
|
*/
|
|
55
61
|
remove: (event: MouseEvent | KeyboardEvent) => true;
|
|
56
62
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
63
|
+
theme: {
|
|
64
|
+
type: PropType<string>;
|
|
65
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
66
|
+
default: undefined;
|
|
67
|
+
};
|
|
57
68
|
text: {
|
|
58
69
|
type: PropType<string>;
|
|
59
70
|
default: undefined;
|
|
@@ -92,6 +103,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
92
103
|
}, {
|
|
93
104
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
94
105
|
disabled: boolean;
|
|
106
|
+
theme: string;
|
|
95
107
|
text: string;
|
|
96
108
|
href: string;
|
|
97
109
|
to: import("vue-router").RouteLocationRaw;
|