@central-design-system/components 3.0.0-beta.7 → 3.0.0-beta.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cds.css +1 -1
- package/dist/cds.d.ts +1 -0
- package/dist/cds.es.js +9439 -8438
- package/dist/cds.umd.js +7 -3
- package/dist/components/CdsAutocomplete/CdsAutocomplete.vue.d.ts +111 -23
- package/dist/components/CdsBadge/CdsBadge.vue.d.ts +25 -16
- package/dist/components/CdsBreadcrumbs/CdsBreadcrumbs.vue.d.ts +11 -0
- package/dist/components/CdsBreadcrumbs/CdsBreadcrumbsItem.vue.d.ts +11 -0
- package/dist/components/CdsButton/CdsButton.vue.d.ts +11 -0
- package/dist/components/CdsCheckbox/CdsCheckbox.vue.d.ts +11 -0
- package/dist/components/CdsCheckbox/CdsCheckboxGroup.vue.d.ts +13 -0
- package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +115 -37
- package/dist/components/CdsContainer/CdsContainer.vue.d.ts +17 -2
- package/dist/components/CdsContentSwitcher/CdsContentSwitcher.vue.d.ts +11 -0
- package/dist/components/CdsDatePicker/CdsDatePicker.vue.d.ts +11 -0
- package/dist/components/CdsDrawer/CdsDrawer.vue.d.ts +12 -0
- package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +152 -45
- package/dist/components/CdsExpandablePanel/CdsExpandablePanels.vue.d.ts +11 -0
- package/dist/components/CdsFooter/CdsFooter.vue.d.ts +11 -0
- package/dist/components/CdsForm/CdsForm.vue.d.ts +11 -0
- package/dist/components/CdsHeader/CdsHeader.vue.d.ts +11 -0
- package/dist/components/CdsIcon/CdsIcon.vue.d.ts +13 -0
- package/dist/components/CdsInput/CdsInput.vue.d.ts +13 -8
- package/dist/components/CdsLayout/CdsLayout.vue.d.ts +11 -0
- package/dist/components/CdsLink/CdsLink.vue.d.ts +12 -0
- package/dist/components/CdsList/CdsList.vue.d.ts +13 -16
- package/dist/components/CdsLoader/CdsLoader.vue.d.ts +12 -0
- package/dist/components/CdsMenu/CdsMenu.vue.d.ts +11 -0
- package/dist/components/CdsModal/CdsModal.vue.d.ts +11 -0
- package/dist/components/CdsNotification/CdsNotification.vue.d.ts +22 -11
- package/dist/components/CdsNotification/CdsNotificationAlert.vue.d.ts +14 -3
- package/dist/components/CdsPagination/CdsPagination.vue.d.ts +11 -0
- package/dist/components/CdsProgress/CdsProgress.vue.d.ts +12 -1
- package/dist/components/CdsRadioButton/CdsRadio.vue.d.ts +11 -0
- package/dist/components/CdsRadioButton/CdsRadioButton.vue.d.ts +13 -0
- package/dist/components/CdsSelect/CdsSelect.vue.d.ts +42 -26
- package/dist/components/CdsSidebar/CdsSidebar.vue.d.ts +30 -8
- package/dist/components/CdsSkeletonLoader/CdsSkeletonLoader.vue.d.ts +11 -0
- package/dist/components/CdsStages/CdsStages.vue.d.ts +12 -0
- package/dist/components/CdsStatus/CdsStatus.vue.d.ts +12 -0
- package/dist/components/CdsSteps/CdsSteps.vue.d.ts +13 -6
- package/dist/components/CdsTable/CdsTable.vue.d.ts +50 -18
- package/dist/components/CdsTable/components/Table/InternalTable.d.ts +21 -3
- package/dist/components/CdsTable/components/TableProvider.d.ts +32 -3
- package/dist/components/CdsTable/composable/table.d.ts +7 -1
- package/dist/components/CdsTabs/CdsTabs.vue.d.ts +11 -0
- package/dist/components/CdsTag/CdsTag.vue.d.ts +12 -0
- package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +48 -52
- package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +46 -18
- package/dist/components/CdsTimePicker/CdsTimePicker.vue.d.ts +11 -0
- package/dist/components/CdsToggle/CdsToggle.vue.d.ts +13 -8
- package/dist/components/CdsToolbar/CdsToolbar.vue.d.ts +11 -0
- package/dist/components/CdsTooltip/CdsTooltip.vue.d.ts +19 -0
- package/dist/components/CdsUploader/CdsUploader.vue.d.ts +35 -12
- package/dist/components/CdsUploader/components/UploadList/ListItem.d.ts +24 -6
- package/dist/components/CdsUploader/components/UploadList/UploadList.d.ts +24 -6
- package/dist/components/CdsUploader/composable/upload.d.ts +18 -8
- package/dist/composable/index.d.ts +1 -0
- package/dist/composable/select.d.ts +21 -8
- package/dist/composable/theme.d.ts +82 -0
- package/dist/composable/variant.d.ts +1 -1
- package/dist/create.d.ts +2 -1
- package/dist/themes/b2b.d.ts +26 -0
- package/dist/themes/cds.d.ts +26 -0
- package/dist/themes/dark.d.ts +26 -0
- package/dist/themes/index.d.ts +5 -0
- package/dist/themes/promo.d.ts +26 -0
- package/dist/themes/themes.d.ts +10 -0
- package/dist/utils/colors.d.ts +368 -0
- package/dist/utils/colorsUtils/APCA.d.ts +7 -0
- package/dist/utils/colorsUtils/index.d.ts +1 -0
- package/dist/utils/colorsUtils/transformCIELAB.d.ts +3 -0
- package/dist/utils/colorsUtils/transformSRGB.d.ts +3 -0
- package/dist/utils/colorsUtils/utils.d.ts +41 -0
- package/dist/utils/helpers.d.ts +7 -0
- package/dist/utils/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/scss/themes/index.ts +1 -1
- package/src/scss/utility/variables/flex.scss +42 -1
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import type { IInternalItem } from '../../composable';
|
|
2
2
|
export declare const componentName = "CdsDropdown";
|
|
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
|
transition: {
|
|
5
10
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
|
6
11
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -147,14 +152,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
147
152
|
default: null;
|
|
148
153
|
};
|
|
149
154
|
messages: {
|
|
150
|
-
type: import("vue").PropType<string | string[]>;
|
|
151
|
-
* Событие при фокусе
|
|
152
|
-
* @type { boolean }
|
|
153
|
-
*/
|
|
155
|
+
type: import("vue").PropType<string | string[]>;
|
|
154
156
|
default: () => never[];
|
|
155
157
|
};
|
|
156
158
|
persistentMessages: {
|
|
157
|
-
type: import("vue").PropType<boolean>;
|
|
159
|
+
type: import("vue").PropType<boolean>; /**
|
|
160
|
+
* Событие при изменении значения (v-model)
|
|
161
|
+
* @type { any }
|
|
162
|
+
*/
|
|
158
163
|
default: boolean;
|
|
159
164
|
};
|
|
160
165
|
active: {
|
|
@@ -259,8 +264,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
259
264
|
required: boolean;
|
|
260
265
|
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
261
266
|
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
267
|
+
theme: string;
|
|
262
268
|
lines: false | "one" | "two" | "three";
|
|
263
269
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
270
|
+
theme: {
|
|
271
|
+
type: import("vue").PropType<string>;
|
|
272
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
273
|
+
default: undefined;
|
|
274
|
+
};
|
|
264
275
|
selectStrategy: {
|
|
265
276
|
type: import("vue").PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
266
277
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -333,13 +344,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
333
344
|
}) => any) | undefined;
|
|
334
345
|
"onClick:select"?: ((value: {
|
|
335
346
|
id: unknown;
|
|
336
|
-
value: boolean;
|
|
347
|
+
value: boolean; /**
|
|
348
|
+
* Событие выбора всех элементов
|
|
349
|
+
* @type { boolean }
|
|
350
|
+
*/
|
|
337
351
|
path: unknown[];
|
|
338
352
|
event: Event;
|
|
339
353
|
}) => any) | undefined;
|
|
340
|
-
} & 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>>;
|
|
354
|
+
} & 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>>;
|
|
341
355
|
default: undefined;
|
|
342
356
|
};
|
|
357
|
+
menuIcon: {
|
|
358
|
+
type: import("vue").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">;
|
|
359
|
+
default: string;
|
|
360
|
+
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;
|
|
361
|
+
};
|
|
343
362
|
}, {
|
|
344
363
|
model: import("vue").Ref<readonly IInternalItem<any>[]> & {
|
|
345
364
|
readonly externalValue: any;
|
|
@@ -356,6 +375,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
356
375
|
isFocused: import("vue").Ref<boolean>;
|
|
357
376
|
externalValidationValue: import("vue").ComputedRef<any>;
|
|
358
377
|
inputRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
378
|
+
theme: {
|
|
379
|
+
type: import("vue").PropType<string>;
|
|
380
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
381
|
+
default: undefined;
|
|
382
|
+
};
|
|
359
383
|
size: {
|
|
360
384
|
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
361
385
|
default: string;
|
|
@@ -451,14 +475,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
451
475
|
default: null;
|
|
452
476
|
};
|
|
453
477
|
messages: {
|
|
454
|
-
type: import("vue").PropType<string | string[]>;
|
|
455
|
-
* Событие при фокусе
|
|
456
|
-
* @type { boolean }
|
|
457
|
-
*/
|
|
478
|
+
type: import("vue").PropType<string | string[]>;
|
|
458
479
|
default: () => never[];
|
|
459
480
|
};
|
|
460
481
|
persistentMessages: {
|
|
461
|
-
type: import("vue").PropType<boolean>;
|
|
482
|
+
type: import("vue").PropType<boolean>; /**
|
|
483
|
+
* Событие при изменении значения (v-model)
|
|
484
|
+
* @type { any }
|
|
485
|
+
*/
|
|
462
486
|
default: boolean;
|
|
463
487
|
};
|
|
464
488
|
active: {
|
|
@@ -534,6 +558,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
534
558
|
validationRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
535
559
|
'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
|
|
536
560
|
'onClick:append': import("vue").PropType<(...args: any[]) => any>;
|
|
561
|
+
theme: {
|
|
562
|
+
type: import("vue").PropType<string>;
|
|
563
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
564
|
+
default: undefined;
|
|
565
|
+
};
|
|
537
566
|
size: {
|
|
538
567
|
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
539
568
|
default: string;
|
|
@@ -617,14 +646,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
617
646
|
default: null;
|
|
618
647
|
};
|
|
619
648
|
messages: {
|
|
620
|
-
type: import("vue").PropType<string | string[]>;
|
|
621
|
-
* Событие при фокусе
|
|
622
|
-
* @type { boolean }
|
|
623
|
-
*/
|
|
649
|
+
type: import("vue").PropType<string | string[]>;
|
|
624
650
|
default: () => never[];
|
|
625
651
|
};
|
|
626
652
|
persistentMessages: {
|
|
627
|
-
type: import("vue").PropType<boolean>;
|
|
653
|
+
type: import("vue").PropType<boolean>; /**
|
|
654
|
+
* Событие при изменении значения (v-model)
|
|
655
|
+
* @type { any }
|
|
656
|
+
*/
|
|
628
657
|
default: boolean;
|
|
629
658
|
};
|
|
630
659
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -632,6 +661,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
632
661
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
633
662
|
'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
|
|
634
663
|
'onClick:append': import("vue").PropType<(...args: any[]) => any>;
|
|
664
|
+
theme: {
|
|
665
|
+
type: import("vue").PropType<string>;
|
|
666
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
667
|
+
default: undefined;
|
|
668
|
+
};
|
|
635
669
|
size: {
|
|
636
670
|
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
637
671
|
default: string;
|
|
@@ -715,14 +749,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
715
749
|
default: null;
|
|
716
750
|
};
|
|
717
751
|
messages: {
|
|
718
|
-
type: import("vue").PropType<string | string[]>;
|
|
719
|
-
* Событие при фокусе
|
|
720
|
-
* @type { boolean }
|
|
721
|
-
*/
|
|
752
|
+
type: import("vue").PropType<string | string[]>;
|
|
722
753
|
default: () => never[];
|
|
723
754
|
};
|
|
724
755
|
persistentMessages: {
|
|
725
|
-
type: import("vue").PropType<boolean>;
|
|
756
|
+
type: import("vue").PropType<boolean>; /**
|
|
757
|
+
* Событие при изменении значения (v-model)
|
|
758
|
+
* @type { any }
|
|
759
|
+
*/
|
|
726
760
|
default: boolean;
|
|
727
761
|
};
|
|
728
762
|
}>> & {
|
|
@@ -732,6 +766,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
732
766
|
description: string;
|
|
733
767
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
734
768
|
disabled: boolean;
|
|
769
|
+
theme: string;
|
|
735
770
|
name: string | undefined;
|
|
736
771
|
id: string;
|
|
737
772
|
error: boolean;
|
|
@@ -758,9 +793,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
758
793
|
readonly size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
759
794
|
readonly disabled?: boolean | undefined;
|
|
760
795
|
readonly type?: "number" | "password" | "text" | "email" | "tel" | "url" | undefined;
|
|
796
|
+
readonly error?: boolean | undefined;
|
|
761
797
|
readonly active?: boolean | undefined;
|
|
762
798
|
readonly autofocus?: boolean | undefined;
|
|
763
|
-
readonly error?: boolean | undefined;
|
|
764
799
|
readonly counter?: boolean | undefined;
|
|
765
800
|
readonly clearable?: boolean | undefined;
|
|
766
801
|
readonly persistentClearable?: boolean | undefined;
|
|
@@ -778,6 +813,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
778
813
|
readonly focused?: boolean | undefined;
|
|
779
814
|
readonly readonly?: boolean | undefined;
|
|
780
815
|
readonly description?: string | undefined;
|
|
816
|
+
readonly theme?: string | undefined;
|
|
781
817
|
readonly name?: string | undefined;
|
|
782
818
|
readonly id?: string | undefined;
|
|
783
819
|
readonly prefix?: string | undefined;
|
|
@@ -815,6 +851,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
815
851
|
'cds-text-input--has-prefix': boolean;
|
|
816
852
|
'cds-text-input--has-suffix': boolean;
|
|
817
853
|
}>;
|
|
854
|
+
themeClasses: Readonly<import("vue").ComputedRef<string | undefined>>;
|
|
818
855
|
fieldClasses: import("vue").ComputedRef<Record<string, boolean>>;
|
|
819
856
|
loadingClasses: import("vue").ComputedRef<string | undefined>;
|
|
820
857
|
classesStates: Readonly<{
|
|
@@ -850,6 +887,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
850
887
|
'click:control': (event: MouseEvent) => true;
|
|
851
888
|
'mousedown:control': (event: MouseEvent) => true;
|
|
852
889
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
890
|
+
theme: {
|
|
891
|
+
type: import("vue").PropType<string>;
|
|
892
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
893
|
+
default: undefined;
|
|
894
|
+
};
|
|
853
895
|
size: {
|
|
854
896
|
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
855
897
|
default: string;
|
|
@@ -945,14 +987,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
945
987
|
default: null;
|
|
946
988
|
};
|
|
947
989
|
messages: {
|
|
948
|
-
type: import("vue").PropType<string | string[]>;
|
|
949
|
-
* Событие при фокусе
|
|
950
|
-
* @type { boolean }
|
|
951
|
-
*/
|
|
990
|
+
type: import("vue").PropType<string | string[]>;
|
|
952
991
|
default: () => never[];
|
|
953
992
|
};
|
|
954
993
|
persistentMessages: {
|
|
955
|
-
type: import("vue").PropType<boolean>;
|
|
994
|
+
type: import("vue").PropType<boolean>; /**
|
|
995
|
+
* Событие при изменении значения (v-model)
|
|
996
|
+
* @type { any }
|
|
997
|
+
*/
|
|
956
998
|
default: boolean;
|
|
957
999
|
};
|
|
958
1000
|
active: {
|
|
@@ -1033,15 +1075,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1033
1075
|
description: string;
|
|
1034
1076
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
1035
1077
|
disabled: boolean;
|
|
1078
|
+
theme: string;
|
|
1036
1079
|
type: "number" | "password" | "text" | "email" | "tel" | "url";
|
|
1037
1080
|
name: string | undefined;
|
|
1038
1081
|
id: string;
|
|
1082
|
+
error: boolean;
|
|
1039
1083
|
active: boolean;
|
|
1040
1084
|
autofocus: boolean;
|
|
1041
1085
|
prefix: string;
|
|
1042
1086
|
suffix: string;
|
|
1043
1087
|
prependInnerIcon: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
1044
|
-
error: boolean;
|
|
1045
1088
|
appendInnerIcon: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
1046
1089
|
role: string;
|
|
1047
1090
|
placeholder: string;
|
|
@@ -1070,6 +1113,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1070
1113
|
readonly: boolean;
|
|
1071
1114
|
}> | undefined>;
|
|
1072
1115
|
menuRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
1116
|
+
theme: {
|
|
1117
|
+
type: import("vue").PropType<string>;
|
|
1118
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
1119
|
+
default: undefined;
|
|
1120
|
+
};
|
|
1073
1121
|
transition: {
|
|
1074
1122
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
|
1075
1123
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -1234,6 +1282,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1234
1282
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1235
1283
|
'update:modelValue': (value: boolean) => true;
|
|
1236
1284
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1285
|
+
theme: {
|
|
1286
|
+
type: import("vue").PropType<string>;
|
|
1287
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
1288
|
+
default: undefined;
|
|
1289
|
+
};
|
|
1237
1290
|
transition: {
|
|
1238
1291
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
|
1239
1292
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -1399,6 +1452,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1399
1452
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1400
1453
|
}, {
|
|
1401
1454
|
disabled: boolean;
|
|
1455
|
+
theme: string;
|
|
1402
1456
|
id: string;
|
|
1403
1457
|
location: import('../../utils').TAnchor;
|
|
1404
1458
|
modelValue: boolean;
|
|
@@ -1437,6 +1491,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1437
1491
|
minWidth: string | number;
|
|
1438
1492
|
}> | undefined>;
|
|
1439
1493
|
listRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
1494
|
+
theme: {
|
|
1495
|
+
type: import("vue").PropType<string>;
|
|
1496
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
1497
|
+
default: undefined;
|
|
1498
|
+
};
|
|
1440
1499
|
selectStrategy: {
|
|
1441
1500
|
type: import("vue").PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
1442
1501
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -1509,11 +1568,19 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1509
1568
|
}) => boolean;
|
|
1510
1569
|
'click:select': (value: {
|
|
1511
1570
|
id: unknown;
|
|
1512
|
-
value: boolean;
|
|
1571
|
+
value: boolean; /**
|
|
1572
|
+
* Событие выбора всех элементов
|
|
1573
|
+
* @type { boolean }
|
|
1574
|
+
*/
|
|
1513
1575
|
path: unknown[];
|
|
1514
1576
|
event: Event;
|
|
1515
1577
|
}) => boolean;
|
|
1516
1578
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1579
|
+
theme: {
|
|
1580
|
+
type: import("vue").PropType<string>;
|
|
1581
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
1582
|
+
default: undefined;
|
|
1583
|
+
};
|
|
1517
1584
|
selectStrategy: {
|
|
1518
1585
|
type: import("vue").PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
1519
1586
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -1586,7 +1653,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1586
1653
|
}) => any) | undefined;
|
|
1587
1654
|
"onClick:select"?: ((value: {
|
|
1588
1655
|
id: unknown;
|
|
1589
|
-
value: boolean;
|
|
1656
|
+
value: boolean; /**
|
|
1657
|
+
* Событие выбора всех элементов
|
|
1658
|
+
* @type { boolean }
|
|
1659
|
+
*/
|
|
1590
1660
|
path: unknown[];
|
|
1591
1661
|
event: Event;
|
|
1592
1662
|
}) => any) | undefined;
|
|
@@ -1604,6 +1674,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1604
1674
|
required: boolean;
|
|
1605
1675
|
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
1606
1676
|
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
1677
|
+
theme: string;
|
|
1607
1678
|
lines: false | "one" | "two" | "three";
|
|
1608
1679
|
}> | undefined>;
|
|
1609
1680
|
inputProps: import("vue").Ref<{
|
|
@@ -1623,9 +1694,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1623
1694
|
readonly size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1624
1695
|
readonly disabled?: boolean | undefined;
|
|
1625
1696
|
readonly type?: "number" | "password" | "text" | "email" | "tel" | "url" | undefined;
|
|
1697
|
+
readonly menuIcon?: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
|
|
1698
|
+
readonly error?: boolean | undefined;
|
|
1626
1699
|
readonly active?: boolean | undefined;
|
|
1627
1700
|
readonly autofocus?: boolean | undefined;
|
|
1628
|
-
readonly error?: boolean | undefined;
|
|
1629
1701
|
readonly counter?: boolean | undefined;
|
|
1630
1702
|
readonly clearable?: boolean | undefined;
|
|
1631
1703
|
readonly persistentClearable?: boolean | undefined;
|
|
@@ -1818,6 +1890,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1818
1890
|
} | undefined;
|
|
1819
1891
|
readonly opened?: unknown[] | undefined;
|
|
1820
1892
|
readonly selected?: unknown[] | undefined;
|
|
1893
|
+
theme?: string | undefined;
|
|
1821
1894
|
"onUpdate:selected"?: ((value: unknown[]) => any) | undefined;
|
|
1822
1895
|
"onUpdate:opened"?: ((value: unknown[]) => any) | undefined;
|
|
1823
1896
|
"onClick:open"?: ((value: {
|
|
@@ -1828,19 +1901,23 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1828
1901
|
}) => any) | undefined;
|
|
1829
1902
|
"onClick:select"?: ((value: {
|
|
1830
1903
|
id: unknown;
|
|
1831
|
-
value: boolean;
|
|
1904
|
+
value: boolean; /**
|
|
1905
|
+
* Событие выбора всех элементов
|
|
1906
|
+
* @type { boolean }
|
|
1907
|
+
*/
|
|
1832
1908
|
path: unknown[];
|
|
1833
1909
|
event: Event;
|
|
1834
1910
|
}) => any) | undefined;
|
|
1835
1911
|
lines?: false | "one" | "two" | "three" | undefined;
|
|
1836
1912
|
} | undefined;
|
|
1837
1913
|
readonly description?: string | undefined;
|
|
1914
|
+
readonly theme?: string | undefined;
|
|
1838
1915
|
readonly name?: string | undefined;
|
|
1839
1916
|
readonly id?: string | undefined;
|
|
1917
|
+
readonly menu?: boolean | undefined;
|
|
1840
1918
|
readonly prefix?: string | undefined;
|
|
1841
1919
|
readonly suffix?: string | undefined;
|
|
1842
1920
|
readonly prependInnerIcon?: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
|
|
1843
|
-
readonly menu?: boolean | undefined;
|
|
1844
1921
|
readonly appendInnerIcon?: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
|
|
1845
1922
|
readonly role?: string | undefined;
|
|
1846
1923
|
readonly placeholder?: string | undefined;
|
|
@@ -1959,6 +2036,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1959
2036
|
*/
|
|
1960
2037
|
'update:selectedAll': (value: boolean) => true;
|
|
1961
2038
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2039
|
+
theme: {
|
|
2040
|
+
type: import("vue").PropType<string>;
|
|
2041
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
2042
|
+
default: undefined;
|
|
2043
|
+
};
|
|
1962
2044
|
transition: {
|
|
1963
2045
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
|
1964
2046
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -2105,14 +2187,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2105
2187
|
default: null;
|
|
2106
2188
|
};
|
|
2107
2189
|
messages: {
|
|
2108
|
-
type: import("vue").PropType<string | string[]>;
|
|
2109
|
-
* Событие при фокусе
|
|
2110
|
-
* @type { boolean }
|
|
2111
|
-
*/
|
|
2190
|
+
type: import("vue").PropType<string | string[]>;
|
|
2112
2191
|
default: () => never[];
|
|
2113
2192
|
};
|
|
2114
2193
|
persistentMessages: {
|
|
2115
|
-
type: import("vue").PropType<boolean>;
|
|
2194
|
+
type: import("vue").PropType<boolean>; /**
|
|
2195
|
+
* Событие при изменении значения (v-model)
|
|
2196
|
+
* @type { any }
|
|
2197
|
+
*/
|
|
2116
2198
|
default: boolean;
|
|
2117
2199
|
};
|
|
2118
2200
|
active: {
|
|
@@ -2217,8 +2299,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2217
2299
|
required: boolean;
|
|
2218
2300
|
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
2219
2301
|
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
2302
|
+
theme: string;
|
|
2220
2303
|
lines: false | "one" | "two" | "three";
|
|
2221
2304
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2305
|
+
theme: {
|
|
2306
|
+
type: import("vue").PropType<string>;
|
|
2307
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
2308
|
+
default: undefined;
|
|
2309
|
+
};
|
|
2222
2310
|
selectStrategy: {
|
|
2223
2311
|
type: import("vue").PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
2224
2312
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -2291,13 +2379,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2291
2379
|
}) => any) | undefined;
|
|
2292
2380
|
"onClick:select"?: ((value: {
|
|
2293
2381
|
id: unknown;
|
|
2294
|
-
value: boolean;
|
|
2382
|
+
value: boolean; /**
|
|
2383
|
+
* Событие выбора всех элементов
|
|
2384
|
+
* @type { boolean }
|
|
2385
|
+
*/
|
|
2295
2386
|
path: unknown[];
|
|
2296
2387
|
event: Event;
|
|
2297
2388
|
}) => any) | undefined;
|
|
2298
|
-
} & 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>>;
|
|
2389
|
+
} & 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>>;
|
|
2299
2390
|
default: undefined;
|
|
2300
2391
|
};
|
|
2392
|
+
menuIcon: {
|
|
2393
|
+
type: import("vue").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">;
|
|
2394
|
+
default: string;
|
|
2395
|
+
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;
|
|
2396
|
+
};
|
|
2301
2397
|
}>> & {
|
|
2302
2398
|
"onUpdate:focused"?: ((value: boolean) => any) | undefined;
|
|
2303
2399
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
@@ -2324,8 +2420,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2324
2420
|
required: boolean;
|
|
2325
2421
|
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
2326
2422
|
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
2423
|
+
theme: string;
|
|
2327
2424
|
lines: false | "one" | "two" | "three";
|
|
2328
2425
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2426
|
+
theme: {
|
|
2427
|
+
type: import("vue").PropType<string>;
|
|
2428
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
2429
|
+
default: undefined;
|
|
2430
|
+
};
|
|
2329
2431
|
selectStrategy: {
|
|
2330
2432
|
type: import("vue").PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
2331
2433
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -2398,11 +2500,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2398
2500
|
}) => any) | undefined;
|
|
2399
2501
|
"onClick:select"?: ((value: {
|
|
2400
2502
|
id: unknown;
|
|
2401
|
-
value: boolean;
|
|
2503
|
+
value: boolean; /**
|
|
2504
|
+
* Событие выбора всех элементов
|
|
2505
|
+
* @type { boolean }
|
|
2506
|
+
*/
|
|
2402
2507
|
path: unknown[];
|
|
2403
2508
|
event: Event;
|
|
2404
2509
|
}) => any) | undefined;
|
|
2405
|
-
} & 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>;
|
|
2510
|
+
} & 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>;
|
|
2406
2511
|
items: any[];
|
|
2407
2512
|
itemTitle: import("../../composable").TItemKey;
|
|
2408
2513
|
itemValue: import("../../composable").TItemKey;
|
|
@@ -2413,16 +2518,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2413
2518
|
description: string;
|
|
2414
2519
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
2415
2520
|
disabled: boolean;
|
|
2521
|
+
theme: string;
|
|
2416
2522
|
type: "number" | "password" | "text" | "email" | "tel" | "url";
|
|
2417
2523
|
name: string | undefined;
|
|
2418
2524
|
id: string;
|
|
2525
|
+
menuIcon: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
2526
|
+
error: boolean;
|
|
2527
|
+
menu: boolean | undefined;
|
|
2419
2528
|
active: boolean;
|
|
2420
2529
|
autofocus: boolean;
|
|
2421
2530
|
prefix: string;
|
|
2422
2531
|
suffix: string;
|
|
2423
2532
|
prependInnerIcon: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
2424
|
-
error: boolean;
|
|
2425
|
-
menu: boolean | undefined;
|
|
2426
2533
|
appendInnerIcon: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
2427
2534
|
role: string;
|
|
2428
2535
|
placeholder: string;
|
|
@@ -7,6 +7,11 @@ export declare const CdsExpandablePanelsGroupSymbol: InjectionKey<IGroupItemProv
|
|
|
7
7
|
export declare const CdsExpandablePanelSymbol: InjectionKey<IExpandablePanelsProvide>;
|
|
8
8
|
export declare const componentName = "CdsExpandablePanels";
|
|
9
9
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
10
|
+
theme: {
|
|
11
|
+
type: import("vue").PropType<string>;
|
|
12
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
10
15
|
tag: {
|
|
11
16
|
type: import("vue").PropType<string>;
|
|
12
17
|
default: string;
|
|
@@ -54,6 +59,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
54
59
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
55
60
|
'update:modelValue': (value: any) => boolean;
|
|
56
61
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
62
|
+
theme: {
|
|
63
|
+
type: import("vue").PropType<string>;
|
|
64
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
65
|
+
default: undefined;
|
|
66
|
+
};
|
|
57
67
|
tag: {
|
|
58
68
|
type: import("vue").PropType<string>;
|
|
59
69
|
default: string;
|
|
@@ -105,6 +115,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
105
115
|
tag: string;
|
|
106
116
|
disabled: boolean;
|
|
107
117
|
required: boolean | "force";
|
|
118
|
+
theme: string;
|
|
108
119
|
modelValue: any;
|
|
109
120
|
readonly: boolean;
|
|
110
121
|
variant: "default" | "accordion";
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
export declare const componentName = "CdsFooter";
|
|
2
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
theme: {
|
|
4
|
+
type: import("vue").PropType<string>;
|
|
5
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
6
|
+
default: undefined;
|
|
7
|
+
};
|
|
3
8
|
dark: {
|
|
4
9
|
type: import("vue").PropType<boolean>;
|
|
5
10
|
default: boolean;
|
|
@@ -32,6 +37,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
32
37
|
reveal: (value: boolean) => true;
|
|
33
38
|
focusin: (event: FocusEvent) => true;
|
|
34
39
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
40
|
+
theme: {
|
|
41
|
+
type: import("vue").PropType<string>;
|
|
42
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
43
|
+
default: undefined;
|
|
44
|
+
};
|
|
35
45
|
dark: {
|
|
36
46
|
type: import("vue").PropType<boolean>;
|
|
37
47
|
default: boolean;
|
|
@@ -65,6 +75,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
65
75
|
onReveal?: ((value: boolean) => any) | undefined;
|
|
66
76
|
}, {
|
|
67
77
|
dark: boolean;
|
|
78
|
+
theme: string;
|
|
68
79
|
modelValue: boolean;
|
|
69
80
|
height: string | number;
|
|
70
81
|
reveal: boolean;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { SubmitEventPromise } from '../../composable';
|
|
2
2
|
export declare const componentName = "CdsForm";
|
|
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
|
label: {
|
|
5
10
|
type: import("vue").PropType<string>;
|
|
6
11
|
default: string;
|
|
@@ -39,6 +44,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
39
44
|
*/
|
|
40
45
|
submit: (event: SubmitEventPromise) => true;
|
|
41
46
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
47
|
+
theme: {
|
|
48
|
+
type: import("vue").PropType<string>;
|
|
49
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
50
|
+
default: undefined;
|
|
51
|
+
};
|
|
42
52
|
label: {
|
|
43
53
|
type: import("vue").PropType<string>;
|
|
44
54
|
default: string;
|
|
@@ -73,6 +83,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
73
83
|
}, {
|
|
74
84
|
description: string;
|
|
75
85
|
disabled: boolean;
|
|
86
|
+
theme: string;
|
|
76
87
|
label: string;
|
|
77
88
|
modelValue: boolean | null;
|
|
78
89
|
validateOn: "input" | "blur" | "submit" | undefined;
|