@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
|
@@ -3,6 +3,11 @@ import type { PropType } from 'vue';
|
|
|
3
3
|
import type { IInternalItem } from '../../composable';
|
|
4
4
|
export declare const componentName = "CdsCombobox";
|
|
5
5
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
6
|
+
theme: {
|
|
7
|
+
type: PropType<string>;
|
|
8
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
9
|
+
default: undefined;
|
|
10
|
+
};
|
|
6
11
|
transition: {
|
|
7
12
|
type: PropType<string | boolean | (import("vue").TransitionProps & {
|
|
8
13
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -15,9 +20,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
15
20
|
default: () => never[];
|
|
16
21
|
};
|
|
17
22
|
itemTitle: {
|
|
18
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
19
|
-
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
20
|
-
*/
|
|
23
|
+
type: PropType<import("../../composable").TItemKey>;
|
|
21
24
|
default: string;
|
|
22
25
|
};
|
|
23
26
|
itemValue: {
|
|
@@ -294,8 +297,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
294
297
|
required: boolean;
|
|
295
298
|
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
296
299
|
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
300
|
+
theme: string;
|
|
297
301
|
lines: false | "one" | "two" | "three";
|
|
298
302
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
303
|
+
theme: {
|
|
304
|
+
type: PropType<string>;
|
|
305
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
306
|
+
default: undefined;
|
|
307
|
+
};
|
|
299
308
|
selectStrategy: {
|
|
300
309
|
type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
301
310
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -334,9 +343,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
334
343
|
default: () => never[];
|
|
335
344
|
};
|
|
336
345
|
itemTitle: {
|
|
337
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
338
|
-
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
339
|
-
*/
|
|
346
|
+
type: PropType<import("../../composable").TItemKey>;
|
|
340
347
|
default: string;
|
|
341
348
|
};
|
|
342
349
|
itemValue: {
|
|
@@ -374,7 +381,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
374
381
|
path: unknown[];
|
|
375
382
|
event: Event;
|
|
376
383
|
}) => any) | undefined;
|
|
377
|
-
} & 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>>;
|
|
384
|
+
} & 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>>;
|
|
378
385
|
default: undefined;
|
|
379
386
|
};
|
|
380
387
|
menuIcon: {
|
|
@@ -406,6 +413,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
406
413
|
isDirty: import("vue").ComputedRef<boolean>;
|
|
407
414
|
isPure: import("vue").Ref<boolean>;
|
|
408
415
|
inputRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
416
|
+
theme: {
|
|
417
|
+
type: PropType<string>;
|
|
418
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
419
|
+
default: undefined;
|
|
420
|
+
};
|
|
409
421
|
size: {
|
|
410
422
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
411
423
|
default: string;
|
|
@@ -581,6 +593,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
581
593
|
validationRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
582
594
|
'onClick:prepend': PropType<(...args: any[]) => any>;
|
|
583
595
|
'onClick:append': PropType<(...args: any[]) => any>;
|
|
596
|
+
theme: {
|
|
597
|
+
type: PropType<string>;
|
|
598
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
599
|
+
default: undefined;
|
|
600
|
+
};
|
|
584
601
|
size: {
|
|
585
602
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
586
603
|
default: string;
|
|
@@ -676,6 +693,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
676
693
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
677
694
|
'onClick:prepend': PropType<(...args: any[]) => any>;
|
|
678
695
|
'onClick:append': PropType<(...args: any[]) => any>;
|
|
696
|
+
theme: {
|
|
697
|
+
type: PropType<string>;
|
|
698
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
699
|
+
default: undefined;
|
|
700
|
+
};
|
|
679
701
|
size: {
|
|
680
702
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
681
703
|
default: string;
|
|
@@ -773,6 +795,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
773
795
|
description: string;
|
|
774
796
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
775
797
|
disabled: boolean;
|
|
798
|
+
theme: string;
|
|
776
799
|
name: string | undefined;
|
|
777
800
|
id: string;
|
|
778
801
|
error: boolean;
|
|
@@ -819,6 +842,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
819
842
|
readonly focused?: boolean | undefined;
|
|
820
843
|
readonly readonly?: boolean | undefined;
|
|
821
844
|
readonly description?: string | undefined;
|
|
845
|
+
readonly theme?: string | undefined;
|
|
822
846
|
readonly name?: string | undefined;
|
|
823
847
|
readonly id?: string | undefined;
|
|
824
848
|
readonly prefix?: string | undefined;
|
|
@@ -856,6 +880,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
856
880
|
'cds-text-input--has-prefix': boolean;
|
|
857
881
|
'cds-text-input--has-suffix': boolean;
|
|
858
882
|
}>;
|
|
883
|
+
themeClasses: Readonly<import("vue").ComputedRef<string | undefined>>;
|
|
859
884
|
fieldClasses: import("vue").ComputedRef<Record<string, boolean>>;
|
|
860
885
|
loadingClasses: import("vue").ComputedRef<string | undefined>;
|
|
861
886
|
classesStates: Readonly<{
|
|
@@ -891,6 +916,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
891
916
|
'click:control': (event: MouseEvent) => true;
|
|
892
917
|
'mousedown:control': (event: MouseEvent) => true;
|
|
893
918
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
919
|
+
theme: {
|
|
920
|
+
type: PropType<string>;
|
|
921
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
922
|
+
default: undefined;
|
|
923
|
+
};
|
|
894
924
|
size: {
|
|
895
925
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
896
926
|
default: string;
|
|
@@ -1071,6 +1101,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1071
1101
|
description: string;
|
|
1072
1102
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
1073
1103
|
disabled: boolean;
|
|
1104
|
+
theme: string;
|
|
1074
1105
|
type: "number" | "password" | "text" | "email" | "tel" | "url";
|
|
1075
1106
|
name: string | undefined;
|
|
1076
1107
|
id: string;
|
|
@@ -1108,6 +1139,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1108
1139
|
readonly: boolean;
|
|
1109
1140
|
}> | undefined>;
|
|
1110
1141
|
menuRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
1142
|
+
theme: {
|
|
1143
|
+
type: PropType<string>;
|
|
1144
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
1145
|
+
default: undefined;
|
|
1146
|
+
};
|
|
1111
1147
|
transition: {
|
|
1112
1148
|
type: PropType<string | boolean | (import("vue").TransitionProps & {
|
|
1113
1149
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -1136,10 +1172,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1136
1172
|
default: string;
|
|
1137
1173
|
};
|
|
1138
1174
|
minWidth: {
|
|
1139
|
-
type: PropType<string | number>;
|
|
1175
|
+
type: PropType<string | number>;
|
|
1176
|
+
default: string; /**
|
|
1140
1177
|
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
1141
1178
|
*/
|
|
1142
|
-
default: string;
|
|
1143
1179
|
};
|
|
1144
1180
|
eager: {
|
|
1145
1181
|
type: PropType<boolean>;
|
|
@@ -1172,7 +1208,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1172
1208
|
default: string;
|
|
1173
1209
|
};
|
|
1174
1210
|
origin: {
|
|
1175
|
-
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">;
|
|
1211
|
+
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">; /**
|
|
1212
|
+
* Событие при изменении значения (v-model)
|
|
1213
|
+
* @type { any }
|
|
1214
|
+
*/
|
|
1176
1215
|
default: string;
|
|
1177
1216
|
};
|
|
1178
1217
|
offset: {
|
|
@@ -1206,17 +1245,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1206
1245
|
default: undefined;
|
|
1207
1246
|
};
|
|
1208
1247
|
openOnHover: {
|
|
1209
|
-
type: PropType<boolean>;
|
|
1210
|
-
* Событие при фокусе
|
|
1211
|
-
* @type { boolean }
|
|
1212
|
-
*/
|
|
1248
|
+
type: PropType<boolean>;
|
|
1213
1249
|
default: boolean;
|
|
1214
1250
|
};
|
|
1215
1251
|
openOnFocus: {
|
|
1216
|
-
/**
|
|
1217
|
-
* Событие при изменении значения (v-model)
|
|
1218
|
-
* @type { any }
|
|
1219
|
-
*/
|
|
1220
1252
|
type: PropType<boolean | undefined>;
|
|
1221
1253
|
default: undefined;
|
|
1222
1254
|
};
|
|
@@ -1281,6 +1313,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1281
1313
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1282
1314
|
'update:modelValue': (value: boolean) => true;
|
|
1283
1315
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1316
|
+
theme: {
|
|
1317
|
+
type: PropType<string>;
|
|
1318
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
1319
|
+
default: undefined;
|
|
1320
|
+
};
|
|
1284
1321
|
transition: {
|
|
1285
1322
|
type: PropType<string | boolean | (import("vue").TransitionProps & {
|
|
1286
1323
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -1309,10 +1346,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1309
1346
|
default: string;
|
|
1310
1347
|
};
|
|
1311
1348
|
minWidth: {
|
|
1312
|
-
type: PropType<string | number>;
|
|
1349
|
+
type: PropType<string | number>;
|
|
1350
|
+
default: string; /**
|
|
1313
1351
|
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
1314
1352
|
*/
|
|
1315
|
-
default: string;
|
|
1316
1353
|
};
|
|
1317
1354
|
eager: {
|
|
1318
1355
|
type: PropType<boolean>;
|
|
@@ -1345,7 +1382,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1345
1382
|
default: string;
|
|
1346
1383
|
};
|
|
1347
1384
|
origin: {
|
|
1348
|
-
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">;
|
|
1385
|
+
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">; /**
|
|
1386
|
+
* Событие при изменении значения (v-model)
|
|
1387
|
+
* @type { any }
|
|
1388
|
+
*/
|
|
1349
1389
|
default: string;
|
|
1350
1390
|
};
|
|
1351
1391
|
offset: {
|
|
@@ -1379,17 +1419,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1379
1419
|
default: undefined;
|
|
1380
1420
|
};
|
|
1381
1421
|
openOnHover: {
|
|
1382
|
-
type: PropType<boolean>;
|
|
1383
|
-
* Событие при фокусе
|
|
1384
|
-
* @type { boolean }
|
|
1385
|
-
*/
|
|
1422
|
+
type: PropType<boolean>;
|
|
1386
1423
|
default: boolean;
|
|
1387
1424
|
};
|
|
1388
1425
|
openOnFocus: {
|
|
1389
|
-
/**
|
|
1390
|
-
* Событие при изменении значения (v-model)
|
|
1391
|
-
* @type { any }
|
|
1392
|
-
*/
|
|
1393
1426
|
type: PropType<boolean | undefined>;
|
|
1394
1427
|
default: undefined;
|
|
1395
1428
|
};
|
|
@@ -1455,6 +1488,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1455
1488
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1456
1489
|
}, {
|
|
1457
1490
|
disabled: boolean;
|
|
1491
|
+
theme: string;
|
|
1458
1492
|
id: string;
|
|
1459
1493
|
location: import('../../utils').TAnchor;
|
|
1460
1494
|
modelValue: boolean;
|
|
@@ -1493,6 +1527,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1493
1527
|
minWidth: string | number;
|
|
1494
1528
|
}> | undefined>;
|
|
1495
1529
|
listRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
1530
|
+
theme: {
|
|
1531
|
+
type: PropType<string>;
|
|
1532
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
1533
|
+
default: undefined;
|
|
1534
|
+
};
|
|
1496
1535
|
selectStrategy: {
|
|
1497
1536
|
type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
1498
1537
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -1531,9 +1570,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1531
1570
|
default: () => never[];
|
|
1532
1571
|
};
|
|
1533
1572
|
itemTitle: {
|
|
1534
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
1535
|
-
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
1536
|
-
*/
|
|
1573
|
+
type: PropType<import("../../composable").TItemKey>;
|
|
1537
1574
|
default: string;
|
|
1538
1575
|
};
|
|
1539
1576
|
itemValue: {
|
|
@@ -1572,6 +1609,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1572
1609
|
event: Event;
|
|
1573
1610
|
}) => boolean;
|
|
1574
1611
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1612
|
+
theme: {
|
|
1613
|
+
type: PropType<string>;
|
|
1614
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
1615
|
+
default: undefined;
|
|
1616
|
+
};
|
|
1575
1617
|
selectStrategy: {
|
|
1576
1618
|
type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
1577
1619
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -1610,9 +1652,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1610
1652
|
default: () => never[];
|
|
1611
1653
|
};
|
|
1612
1654
|
itemTitle: {
|
|
1613
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
1614
|
-
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
1615
|
-
*/
|
|
1655
|
+
type: PropType<import("../../composable").TItemKey>;
|
|
1616
1656
|
default: string;
|
|
1617
1657
|
};
|
|
1618
1658
|
itemValue: {
|
|
@@ -1664,6 +1704,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1664
1704
|
required: boolean;
|
|
1665
1705
|
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
1666
1706
|
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
1707
|
+
theme: string;
|
|
1667
1708
|
lines: false | "one" | "two" | "three";
|
|
1668
1709
|
}> | undefined>;
|
|
1669
1710
|
inputProps: import("vue").Ref<{
|
|
@@ -1888,6 +1929,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1888
1929
|
} | undefined;
|
|
1889
1930
|
readonly opened?: unknown[] | undefined;
|
|
1890
1931
|
readonly selected?: unknown[] | undefined;
|
|
1932
|
+
theme?: string | undefined;
|
|
1891
1933
|
"onUpdate:selected"?: ((value: unknown[]) => any) | undefined;
|
|
1892
1934
|
"onUpdate:opened"?: ((value: unknown[]) => any) | undefined;
|
|
1893
1935
|
"onClick:open"?: ((value: {
|
|
@@ -1905,6 +1947,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1905
1947
|
lines?: false | "one" | "two" | "three" | undefined;
|
|
1906
1948
|
} | undefined;
|
|
1907
1949
|
readonly description?: string | undefined;
|
|
1950
|
+
readonly theme?: string | undefined;
|
|
1908
1951
|
readonly name?: string | undefined;
|
|
1909
1952
|
readonly id?: string | undefined;
|
|
1910
1953
|
readonly menu?: boolean | undefined;
|
|
@@ -2039,6 +2082,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2039
2082
|
*/
|
|
2040
2083
|
'update:selectedAll': (value: boolean) => true;
|
|
2041
2084
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2085
|
+
theme: {
|
|
2086
|
+
type: PropType<string>;
|
|
2087
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
2088
|
+
default: undefined;
|
|
2089
|
+
};
|
|
2042
2090
|
transition: {
|
|
2043
2091
|
type: PropType<string | boolean | (import("vue").TransitionProps & {
|
|
2044
2092
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -2051,9 +2099,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2051
2099
|
default: () => never[];
|
|
2052
2100
|
};
|
|
2053
2101
|
itemTitle: {
|
|
2054
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
2055
|
-
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
2056
|
-
*/
|
|
2102
|
+
type: PropType<import("../../composable").TItemKey>;
|
|
2057
2103
|
default: string;
|
|
2058
2104
|
};
|
|
2059
2105
|
itemValue: {
|
|
@@ -2330,8 +2376,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2330
2376
|
required: boolean;
|
|
2331
2377
|
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
2332
2378
|
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
2379
|
+
theme: string;
|
|
2333
2380
|
lines: false | "one" | "two" | "three";
|
|
2334
2381
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2382
|
+
theme: {
|
|
2383
|
+
type: PropType<string>;
|
|
2384
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
2385
|
+
default: undefined;
|
|
2386
|
+
};
|
|
2335
2387
|
selectStrategy: {
|
|
2336
2388
|
type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
2337
2389
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -2370,9 +2422,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2370
2422
|
default: () => never[];
|
|
2371
2423
|
};
|
|
2372
2424
|
itemTitle: {
|
|
2373
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
2374
|
-
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
2375
|
-
*/
|
|
2425
|
+
type: PropType<import("../../composable").TItemKey>;
|
|
2376
2426
|
default: string;
|
|
2377
2427
|
};
|
|
2378
2428
|
itemValue: {
|
|
@@ -2410,7 +2460,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2410
2460
|
path: unknown[];
|
|
2411
2461
|
event: Event;
|
|
2412
2462
|
}) => any) | undefined;
|
|
2413
|
-
} & 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>>;
|
|
2463
|
+
} & 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>>;
|
|
2414
2464
|
default: undefined;
|
|
2415
2465
|
};
|
|
2416
2466
|
menuIcon: {
|
|
@@ -2452,8 +2502,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2452
2502
|
required: boolean;
|
|
2453
2503
|
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
2454
2504
|
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
2505
|
+
theme: string;
|
|
2455
2506
|
lines: false | "one" | "two" | "three";
|
|
2456
2507
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2508
|
+
theme: {
|
|
2509
|
+
type: PropType<string>;
|
|
2510
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
2511
|
+
default: undefined;
|
|
2512
|
+
};
|
|
2457
2513
|
selectStrategy: {
|
|
2458
2514
|
type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
2459
2515
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -2492,9 +2548,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2492
2548
|
default: () => never[];
|
|
2493
2549
|
};
|
|
2494
2550
|
itemTitle: {
|
|
2495
|
-
type: PropType<import("../../composable").TItemKey>;
|
|
2496
|
-
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
2497
|
-
*/
|
|
2551
|
+
type: PropType<import("../../composable").TItemKey>;
|
|
2498
2552
|
default: string;
|
|
2499
2553
|
};
|
|
2500
2554
|
itemValue: {
|
|
@@ -2532,7 +2586,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2532
2586
|
path: unknown[];
|
|
2533
2587
|
event: Event;
|
|
2534
2588
|
}) => any) | undefined;
|
|
2535
|
-
} & 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>;
|
|
2589
|
+
} & 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>;
|
|
2536
2590
|
items: any[];
|
|
2537
2591
|
itemTitle: import("../../composable").TItemKey;
|
|
2538
2592
|
itemValue: import("../../composable").TItemKey;
|
|
@@ -2543,6 +2597,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2543
2597
|
description: string;
|
|
2544
2598
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
2545
2599
|
disabled: boolean;
|
|
2600
|
+
theme: string;
|
|
2546
2601
|
type: "number" | "password" | "text" | "email" | "tel" | "url";
|
|
2547
2602
|
name: string | undefined;
|
|
2548
2603
|
id: string;
|
|
@@ -4,7 +4,9 @@ export declare const componentName = "CdsContainer";
|
|
|
4
4
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
5
5
|
prependIcon: Omit<{
|
|
6
6
|
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">;
|
|
7
|
-
default: undefined;
|
|
7
|
+
default: undefined; /**
|
|
8
|
+
* Показывать только один контейнер из группы
|
|
9
|
+
*/
|
|
8
10
|
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;
|
|
9
11
|
}, "default" | "type"> & {
|
|
10
12
|
type: PropType<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">>;
|
|
@@ -18,6 +20,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
18
20
|
type: PropType<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">>;
|
|
19
21
|
default: 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">;
|
|
20
22
|
};
|
|
23
|
+
theme: {
|
|
24
|
+
type: PropType<string>;
|
|
25
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
26
|
+
default: undefined;
|
|
27
|
+
};
|
|
21
28
|
disabled: {
|
|
22
29
|
type: PropType<boolean>;
|
|
23
30
|
default: boolean;
|
|
@@ -96,7 +103,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
96
103
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
97
104
|
prependIcon: Omit<{
|
|
98
105
|
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">;
|
|
99
|
-
default: undefined;
|
|
106
|
+
default: undefined; /**
|
|
107
|
+
* Показывать только один контейнер из группы
|
|
108
|
+
*/
|
|
100
109
|
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;
|
|
101
110
|
}, "default" | "type"> & {
|
|
102
111
|
type: PropType<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">>;
|
|
@@ -110,6 +119,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
110
119
|
type: PropType<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">>;
|
|
111
120
|
default: 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">;
|
|
112
121
|
};
|
|
122
|
+
theme: {
|
|
123
|
+
type: PropType<string>;
|
|
124
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
125
|
+
default: undefined;
|
|
126
|
+
};
|
|
113
127
|
disabled: {
|
|
114
128
|
type: PropType<boolean>;
|
|
115
129
|
default: boolean;
|
|
@@ -190,6 +204,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
190
204
|
tag: string;
|
|
191
205
|
disabled: boolean;
|
|
192
206
|
required: boolean | "force";
|
|
207
|
+
theme: string;
|
|
193
208
|
modelValue: any;
|
|
194
209
|
locale: "ru" | "en" | import("../../locale").ILocale;
|
|
195
210
|
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">;
|
|
@@ -2,6 +2,11 @@ import type { PropType } from 'vue';
|
|
|
2
2
|
export declare const ITEM_HEIGHT = 32;
|
|
3
3
|
export declare const componentName = "CdsContentSwitcher";
|
|
4
4
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
5
|
+
theme: {
|
|
6
|
+
type: PropType<string>;
|
|
7
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
8
|
+
default: undefined;
|
|
9
|
+
};
|
|
5
10
|
disabled: {
|
|
6
11
|
type: PropType<boolean>;
|
|
7
12
|
default: boolean;
|
|
@@ -27,6 +32,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
27
32
|
*/
|
|
28
33
|
'update:modelValue': (value: unknown) => true;
|
|
29
34
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
35
|
+
theme: {
|
|
36
|
+
type: PropType<string>;
|
|
37
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
38
|
+
default: undefined;
|
|
39
|
+
};
|
|
30
40
|
disabled: {
|
|
31
41
|
type: PropType<boolean>;
|
|
32
42
|
default: boolean;
|
|
@@ -49,6 +59,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
49
59
|
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
50
60
|
}, {
|
|
51
61
|
disabled: boolean;
|
|
62
|
+
theme: string;
|
|
52
63
|
modelValue: any;
|
|
53
64
|
grow: boolean;
|
|
54
65
|
}>;
|
|
@@ -2,6 +2,11 @@ import type { IRawDate } from '../../utils';
|
|
|
2
2
|
import type { TDatetimeValueRange } from '../../composable';
|
|
3
3
|
export declare const componentName = "CdsDatePicker";
|
|
4
4
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
5
|
+
theme: {
|
|
6
|
+
type: import("vue").PropType<string>;
|
|
7
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
8
|
+
default: undefined;
|
|
9
|
+
};
|
|
5
10
|
locale: {
|
|
6
11
|
type: import("vue").PropType<"ru" | "en" | import("../../locale").ILocale>;
|
|
7
12
|
default: undefined;
|
|
@@ -117,6 +122,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
117
122
|
to: Partial<IRawDate>;
|
|
118
123
|
}) => true;
|
|
119
124
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
125
|
+
theme: {
|
|
126
|
+
type: import("vue").PropType<string>;
|
|
127
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
128
|
+
default: undefined;
|
|
129
|
+
};
|
|
120
130
|
locale: {
|
|
121
131
|
type: import("vue").PropType<"ru" | "en" | import("../../locale").ILocale>;
|
|
122
132
|
default: undefined;
|
|
@@ -223,6 +233,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
223
233
|
title: string;
|
|
224
234
|
description: string;
|
|
225
235
|
disabled: boolean;
|
|
236
|
+
theme: string;
|
|
226
237
|
modelValue: string | TDatetimeValueRange | (string | TDatetimeValueRange)[];
|
|
227
238
|
locale: "ru" | "en" | import("../../locale").ILocale;
|
|
228
239
|
readonly: boolean;
|
|
@@ -13,6 +13,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
13
13
|
type: PropType<string>;
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
16
|
+
theme: {
|
|
17
|
+
type: PropType<string>;
|
|
18
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
19
|
+
default: undefined;
|
|
20
|
+
};
|
|
16
21
|
dark: {
|
|
17
22
|
type: PropType<boolean>;
|
|
18
23
|
default: boolean;
|
|
@@ -92,6 +97,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
92
97
|
'cds-drawer--fixed-slots': boolean;
|
|
93
98
|
}>;
|
|
94
99
|
darkClasses: import("vue").ComputedRef<string | undefined>;
|
|
100
|
+
themeClasses: Readonly<import("vue").ComputedRef<string | undefined>>;
|
|
95
101
|
styles: import("vue").ComputedRef<CSSProperties>;
|
|
96
102
|
onClose: () => void;
|
|
97
103
|
onMouseenter: () => void;
|
|
@@ -121,6 +127,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
121
127
|
type: PropType<string>;
|
|
122
128
|
default: string;
|
|
123
129
|
};
|
|
130
|
+
theme: {
|
|
131
|
+
type: PropType<string>;
|
|
132
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
133
|
+
default: undefined;
|
|
134
|
+
};
|
|
124
135
|
dark: {
|
|
125
136
|
type: PropType<boolean>;
|
|
126
137
|
default: boolean;
|
|
@@ -189,6 +200,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
189
200
|
fixed: boolean;
|
|
190
201
|
tag: string;
|
|
191
202
|
dark: boolean;
|
|
203
|
+
theme: string;
|
|
192
204
|
modelValue: boolean | null;
|
|
193
205
|
right: boolean;
|
|
194
206
|
permanent: boolean;
|