@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,7 +1,13 @@
|
|
|
1
|
+
import { noop } from '../../utils';
|
|
1
2
|
import type { PropType } from 'vue';
|
|
2
3
|
import type { IInternalItem } from '../../composable';
|
|
3
4
|
export declare const componentName = "CdsCombobox";
|
|
4
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
|
+
};
|
|
5
11
|
transition: {
|
|
6
12
|
type: PropType<string | boolean | (import("vue").TransitionProps & {
|
|
7
13
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -117,10 +123,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
117
123
|
default: () => never[];
|
|
118
124
|
};
|
|
119
125
|
modelValue: {
|
|
120
|
-
/**
|
|
121
|
-
* Событие при вводе значения в поле
|
|
122
|
-
* @type { string }
|
|
123
|
-
*/
|
|
124
126
|
type: PropType<any>;
|
|
125
127
|
default: null;
|
|
126
128
|
};
|
|
@@ -295,8 +297,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
295
297
|
required: boolean;
|
|
296
298
|
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
297
299
|
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
300
|
+
theme: string;
|
|
298
301
|
lines: false | "one" | "two" | "three";
|
|
299
302
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
303
|
+
theme: {
|
|
304
|
+
type: PropType<string>;
|
|
305
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
306
|
+
default: undefined;
|
|
307
|
+
};
|
|
300
308
|
selectStrategy: {
|
|
301
309
|
type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
302
310
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -373,9 +381,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
373
381
|
path: unknown[];
|
|
374
382
|
event: Event;
|
|
375
383
|
}) => any) | undefined;
|
|
376
|
-
} & 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>>;
|
|
377
385
|
default: undefined;
|
|
378
386
|
};
|
|
387
|
+
menuIcon: {
|
|
388
|
+
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">;
|
|
389
|
+
default: string;
|
|
390
|
+
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;
|
|
391
|
+
};
|
|
379
392
|
/**
|
|
380
393
|
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
381
394
|
*/
|
|
@@ -400,6 +413,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
400
413
|
isDirty: import("vue").ComputedRef<boolean>;
|
|
401
414
|
isPure: import("vue").Ref<boolean>;
|
|
402
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
|
+
};
|
|
403
421
|
size: {
|
|
404
422
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
405
423
|
default: string;
|
|
@@ -461,10 +479,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
461
479
|
default: () => never[];
|
|
462
480
|
};
|
|
463
481
|
modelValue: {
|
|
464
|
-
/**
|
|
465
|
-
* Событие при вводе значения в поле
|
|
466
|
-
* @type { string }
|
|
467
|
-
*/
|
|
468
482
|
type: PropType<any>;
|
|
469
483
|
default: null;
|
|
470
484
|
};
|
|
@@ -579,6 +593,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
579
593
|
validationRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
580
594
|
'onClick:prepend': PropType<(...args: any[]) => any>;
|
|
581
595
|
'onClick:append': PropType<(...args: any[]) => any>;
|
|
596
|
+
theme: {
|
|
597
|
+
type: PropType<string>;
|
|
598
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
599
|
+
default: undefined;
|
|
600
|
+
};
|
|
582
601
|
size: {
|
|
583
602
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
584
603
|
default: string;
|
|
@@ -618,10 +637,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
618
637
|
default: () => never[];
|
|
619
638
|
};
|
|
620
639
|
modelValue: {
|
|
621
|
-
/**
|
|
622
|
-
* Событие при вводе значения в поле
|
|
623
|
-
* @type { string }
|
|
624
|
-
*/
|
|
625
640
|
type: PropType<any>;
|
|
626
641
|
default: null;
|
|
627
642
|
};
|
|
@@ -678,6 +693,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
678
693
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
679
694
|
'onClick:prepend': PropType<(...args: any[]) => any>;
|
|
680
695
|
'onClick:append': PropType<(...args: any[]) => any>;
|
|
696
|
+
theme: {
|
|
697
|
+
type: PropType<string>;
|
|
698
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
699
|
+
default: undefined;
|
|
700
|
+
};
|
|
681
701
|
size: {
|
|
682
702
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
683
703
|
default: string;
|
|
@@ -717,10 +737,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
717
737
|
default: () => never[];
|
|
718
738
|
};
|
|
719
739
|
modelValue: {
|
|
720
|
-
/**
|
|
721
|
-
* Событие при вводе значения в поле
|
|
722
|
-
* @type { string }
|
|
723
|
-
*/
|
|
724
740
|
type: PropType<any>;
|
|
725
741
|
default: null;
|
|
726
742
|
};
|
|
@@ -779,6 +795,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
779
795
|
description: string;
|
|
780
796
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
781
797
|
disabled: boolean;
|
|
798
|
+
theme: string;
|
|
782
799
|
name: string | undefined;
|
|
783
800
|
id: string;
|
|
784
801
|
error: boolean;
|
|
@@ -805,9 +822,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
805
822
|
readonly size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
806
823
|
readonly disabled?: boolean | undefined;
|
|
807
824
|
readonly type?: "number" | "password" | "text" | "email" | "tel" | "url" | undefined;
|
|
825
|
+
readonly error?: boolean | undefined;
|
|
808
826
|
readonly active?: boolean | undefined;
|
|
809
827
|
readonly autofocus?: boolean | undefined;
|
|
810
|
-
readonly error?: boolean | undefined;
|
|
811
828
|
readonly counter?: boolean | undefined;
|
|
812
829
|
readonly clearable?: boolean | undefined;
|
|
813
830
|
readonly persistentClearable?: boolean | undefined;
|
|
@@ -825,6 +842,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
825
842
|
readonly focused?: boolean | undefined;
|
|
826
843
|
readonly readonly?: boolean | undefined;
|
|
827
844
|
readonly description?: string | undefined;
|
|
845
|
+
readonly theme?: string | undefined;
|
|
828
846
|
readonly name?: string | undefined;
|
|
829
847
|
readonly id?: string | undefined;
|
|
830
848
|
readonly prefix?: string | undefined;
|
|
@@ -862,6 +880,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
862
880
|
'cds-text-input--has-prefix': boolean;
|
|
863
881
|
'cds-text-input--has-suffix': boolean;
|
|
864
882
|
}>;
|
|
883
|
+
themeClasses: Readonly<import("vue").ComputedRef<string | undefined>>;
|
|
865
884
|
fieldClasses: import("vue").ComputedRef<Record<string, boolean>>;
|
|
866
885
|
loadingClasses: import("vue").ComputedRef<string | undefined>;
|
|
867
886
|
classesStates: Readonly<{
|
|
@@ -897,6 +916,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
897
916
|
'click:control': (event: MouseEvent) => true;
|
|
898
917
|
'mousedown:control': (event: MouseEvent) => true;
|
|
899
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
|
+
};
|
|
900
924
|
size: {
|
|
901
925
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
902
926
|
default: string;
|
|
@@ -958,10 +982,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
958
982
|
default: () => never[];
|
|
959
983
|
};
|
|
960
984
|
modelValue: {
|
|
961
|
-
/**
|
|
962
|
-
* Событие при вводе значения в поле
|
|
963
|
-
* @type { string }
|
|
964
|
-
*/
|
|
965
985
|
type: PropType<any>;
|
|
966
986
|
default: null;
|
|
967
987
|
};
|
|
@@ -1081,15 +1101,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1081
1101
|
description: string;
|
|
1082
1102
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
1083
1103
|
disabled: boolean;
|
|
1104
|
+
theme: string;
|
|
1084
1105
|
type: "number" | "password" | "text" | "email" | "tel" | "url";
|
|
1085
1106
|
name: string | undefined;
|
|
1086
1107
|
id: string;
|
|
1108
|
+
error: boolean;
|
|
1087
1109
|
active: boolean;
|
|
1088
1110
|
autofocus: boolean;
|
|
1089
1111
|
prefix: string;
|
|
1090
1112
|
suffix: string;
|
|
1091
1113
|
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";
|
|
1092
|
-
error: boolean;
|
|
1093
1114
|
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";
|
|
1094
1115
|
role: string;
|
|
1095
1116
|
placeholder: string;
|
|
@@ -1118,6 +1139,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1118
1139
|
readonly: boolean;
|
|
1119
1140
|
}> | undefined>;
|
|
1120
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
|
+
};
|
|
1121
1147
|
transition: {
|
|
1122
1148
|
type: PropType<string | boolean | (import("vue").TransitionProps & {
|
|
1123
1149
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -1147,7 +1173,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1147
1173
|
};
|
|
1148
1174
|
minWidth: {
|
|
1149
1175
|
type: PropType<string | number>;
|
|
1150
|
-
default: string;
|
|
1176
|
+
default: string; /**
|
|
1177
|
+
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
1178
|
+
*/
|
|
1151
1179
|
};
|
|
1152
1180
|
eager: {
|
|
1153
1181
|
type: PropType<boolean>;
|
|
@@ -1180,7 +1208,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1180
1208
|
default: string;
|
|
1181
1209
|
};
|
|
1182
1210
|
origin: {
|
|
1183
|
-
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">;
|
|
1211
|
+
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">; /**
|
|
1212
|
+
* Событие при изменении значения (v-model)
|
|
1213
|
+
* @type { any }
|
|
1214
|
+
*/
|
|
1184
1215
|
default: string;
|
|
1185
1216
|
};
|
|
1186
1217
|
offset: {
|
|
@@ -1282,6 +1313,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1282
1313
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1283
1314
|
'update:modelValue': (value: boolean) => true;
|
|
1284
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
|
+
};
|
|
1285
1321
|
transition: {
|
|
1286
1322
|
type: PropType<string | boolean | (import("vue").TransitionProps & {
|
|
1287
1323
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -1311,7 +1347,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1311
1347
|
};
|
|
1312
1348
|
minWidth: {
|
|
1313
1349
|
type: PropType<string | number>;
|
|
1314
|
-
default: string;
|
|
1350
|
+
default: string; /**
|
|
1351
|
+
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
1352
|
+
*/
|
|
1315
1353
|
};
|
|
1316
1354
|
eager: {
|
|
1317
1355
|
type: PropType<boolean>;
|
|
@@ -1344,7 +1382,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1344
1382
|
default: string;
|
|
1345
1383
|
};
|
|
1346
1384
|
origin: {
|
|
1347
|
-
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">;
|
|
1385
|
+
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">; /**
|
|
1386
|
+
* Событие при изменении значения (v-model)
|
|
1387
|
+
* @type { any }
|
|
1388
|
+
*/
|
|
1348
1389
|
default: string;
|
|
1349
1390
|
};
|
|
1350
1391
|
offset: {
|
|
@@ -1447,6 +1488,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1447
1488
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1448
1489
|
}, {
|
|
1449
1490
|
disabled: boolean;
|
|
1491
|
+
theme: string;
|
|
1450
1492
|
id: string;
|
|
1451
1493
|
location: import('../../utils').TAnchor;
|
|
1452
1494
|
modelValue: boolean;
|
|
@@ -1485,6 +1527,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1485
1527
|
minWidth: string | number;
|
|
1486
1528
|
}> | undefined>;
|
|
1487
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
|
+
};
|
|
1488
1535
|
selectStrategy: {
|
|
1489
1536
|
type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
1490
1537
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -1562,6 +1609,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1562
1609
|
event: Event;
|
|
1563
1610
|
}) => boolean;
|
|
1564
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
|
+
};
|
|
1565
1617
|
selectStrategy: {
|
|
1566
1618
|
type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
1567
1619
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -1652,6 +1704,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1652
1704
|
required: boolean;
|
|
1653
1705
|
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
1654
1706
|
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
1707
|
+
theme: string;
|
|
1655
1708
|
lines: false | "one" | "two" | "three";
|
|
1656
1709
|
}> | undefined>;
|
|
1657
1710
|
inputProps: import("vue").Ref<{
|
|
@@ -1672,6 +1725,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1672
1725
|
readonly disabled?: boolean | undefined;
|
|
1673
1726
|
readonly type?: "number" | "password" | "text" | "email" | "tel" | "url" | undefined;
|
|
1674
1727
|
readonly delimiters?: string[] | undefined;
|
|
1728
|
+
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;
|
|
1729
|
+
readonly error?: boolean | undefined;
|
|
1675
1730
|
readonly customFilter?: ((value: string, query: string, item?: any) => import("../../composable").TFilterMath) | undefined;
|
|
1676
1731
|
readonly customKeyFilter?: {
|
|
1677
1732
|
[x: string]: (value: string, query: string, item?: any) => import("../../composable").TFilterMath;
|
|
@@ -1681,7 +1736,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1681
1736
|
readonly noFilter?: boolean | undefined;
|
|
1682
1737
|
readonly active?: boolean | undefined;
|
|
1683
1738
|
readonly autofocus?: boolean | undefined;
|
|
1684
|
-
readonly error?: boolean | undefined;
|
|
1685
1739
|
readonly role?: string | undefined;
|
|
1686
1740
|
readonly counter?: boolean | undefined;
|
|
1687
1741
|
readonly clearable?: boolean | undefined;
|
|
@@ -1875,6 +1929,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1875
1929
|
} | undefined;
|
|
1876
1930
|
readonly opened?: unknown[] | undefined;
|
|
1877
1931
|
readonly selected?: unknown[] | undefined;
|
|
1932
|
+
theme?: string | undefined;
|
|
1878
1933
|
"onUpdate:selected"?: ((value: unknown[]) => any) | undefined;
|
|
1879
1934
|
"onUpdate:opened"?: ((value: unknown[]) => any) | undefined;
|
|
1880
1935
|
"onClick:open"?: ((value: {
|
|
@@ -1892,12 +1947,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1892
1947
|
lines?: false | "one" | "two" | "three" | undefined;
|
|
1893
1948
|
} | undefined;
|
|
1894
1949
|
readonly description?: string | undefined;
|
|
1950
|
+
readonly theme?: string | undefined;
|
|
1895
1951
|
readonly name?: string | undefined;
|
|
1896
1952
|
readonly id?: string | undefined;
|
|
1953
|
+
readonly menu?: boolean | undefined;
|
|
1897
1954
|
readonly prefix?: string | undefined;
|
|
1898
1955
|
readonly suffix?: string | undefined;
|
|
1899
1956
|
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;
|
|
1900
|
-
readonly menu?: boolean | undefined;
|
|
1901
1957
|
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;
|
|
1902
1958
|
readonly placeholder?: string | undefined;
|
|
1903
1959
|
readonly limit?: number | undefined;
|
|
@@ -1984,6 +2040,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1984
2040
|
noData: string;
|
|
1985
2041
|
selectAll: string;
|
|
1986
2042
|
};
|
|
2043
|
+
noop: typeof noop;
|
|
1987
2044
|
select: (item: IInternalItem) => void;
|
|
1988
2045
|
selectAll: () => void;
|
|
1989
2046
|
mergeItemProps: (item: IInternalItem) => {
|
|
@@ -1995,6 +2052,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1995
2052
|
onFocusout: (event: FocusEvent) => void;
|
|
1996
2053
|
onAfterLeave: () => void;
|
|
1997
2054
|
onMousedownControl: () => void;
|
|
2055
|
+
onMousedownMenuIcon: (event: MouseEvent) => void;
|
|
1998
2056
|
onInputModelValue: (value: string) => void;
|
|
1999
2057
|
getMatches: (item: IInternalItem<any>) => Record<string, import("../../composable").TFilterMath> | undefined;
|
|
2000
2058
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -2024,6 +2082,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2024
2082
|
*/
|
|
2025
2083
|
'update:selectedAll': (value: boolean) => true;
|
|
2026
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
|
+
};
|
|
2027
2090
|
transition: {
|
|
2028
2091
|
type: PropType<string | boolean | (import("vue").TransitionProps & {
|
|
2029
2092
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -2139,10 +2202,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2139
2202
|
default: () => never[];
|
|
2140
2203
|
};
|
|
2141
2204
|
modelValue: {
|
|
2142
|
-
/**
|
|
2143
|
-
* Событие при вводе значения в поле
|
|
2144
|
-
* @type { string }
|
|
2145
|
-
*/
|
|
2146
2205
|
type: PropType<any>;
|
|
2147
2206
|
default: null;
|
|
2148
2207
|
};
|
|
@@ -2317,8 +2376,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2317
2376
|
required: boolean;
|
|
2318
2377
|
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
2319
2378
|
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
2379
|
+
theme: string;
|
|
2320
2380
|
lines: false | "one" | "two" | "three";
|
|
2321
2381
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2382
|
+
theme: {
|
|
2383
|
+
type: PropType<string>;
|
|
2384
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
2385
|
+
default: undefined;
|
|
2386
|
+
};
|
|
2322
2387
|
selectStrategy: {
|
|
2323
2388
|
type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
2324
2389
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -2395,9 +2460,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2395
2460
|
path: unknown[];
|
|
2396
2461
|
event: Event;
|
|
2397
2462
|
}) => any) | undefined;
|
|
2398
|
-
} & 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>>;
|
|
2399
2464
|
default: undefined;
|
|
2400
2465
|
};
|
|
2466
|
+
menuIcon: {
|
|
2467
|
+
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">;
|
|
2468
|
+
default: string;
|
|
2469
|
+
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;
|
|
2470
|
+
};
|
|
2401
2471
|
/**
|
|
2402
2472
|
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
2403
2473
|
*/
|
|
@@ -2432,8 +2502,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2432
2502
|
required: boolean;
|
|
2433
2503
|
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
2434
2504
|
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
2505
|
+
theme: string;
|
|
2435
2506
|
lines: false | "one" | "two" | "three";
|
|
2436
2507
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2508
|
+
theme: {
|
|
2509
|
+
type: PropType<string>;
|
|
2510
|
+
available: readonly ["cds", "b2b", "promo", "dark"];
|
|
2511
|
+
default: undefined;
|
|
2512
|
+
};
|
|
2437
2513
|
selectStrategy: {
|
|
2438
2514
|
type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
2439
2515
|
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
@@ -2510,7 +2586,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2510
2586
|
path: unknown[];
|
|
2511
2587
|
event: Event;
|
|
2512
2588
|
}) => any) | undefined;
|
|
2513
|
-
} & 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>;
|
|
2514
2590
|
items: any[];
|
|
2515
2591
|
itemTitle: import("../../composable").TItemKey;
|
|
2516
2592
|
itemValue: import("../../composable").TItemKey;
|
|
@@ -2521,10 +2597,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2521
2597
|
description: string;
|
|
2522
2598
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
2523
2599
|
disabled: boolean;
|
|
2600
|
+
theme: string;
|
|
2524
2601
|
type: "number" | "password" | "text" | "email" | "tel" | "url";
|
|
2525
2602
|
name: string | undefined;
|
|
2526
2603
|
id: string;
|
|
2527
2604
|
delimiters: string[];
|
|
2605
|
+
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";
|
|
2606
|
+
error: boolean;
|
|
2607
|
+
menu: boolean | undefined;
|
|
2528
2608
|
customFilter: (value: string, query: string, item?: any) => import("../../composable").TFilterMath;
|
|
2529
2609
|
customKeyFilter: {
|
|
2530
2610
|
[x: string]: (value: string, query: string, item?: any) => import("../../composable").TFilterMath;
|
|
@@ -2537,8 +2617,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2537
2617
|
prefix: string;
|
|
2538
2618
|
suffix: string;
|
|
2539
2619
|
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";
|
|
2540
|
-
error: boolean;
|
|
2541
|
-
menu: boolean | undefined;
|
|
2542
2620
|
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";
|
|
2543
2621
|
role: string;
|
|
2544
2622
|
placeholder: 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">;
|