@central-design-system/components 3.0.0-beta.7 → 3.0.0-beta.8
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.es.js +3248 -3208
- package/dist/cds.umd.js +2 -2
- package/dist/components/CdsAutocomplete/CdsAutocomplete.vue.d.ts +29 -12
- package/dist/components/CdsBadge/CdsBadge.vue.d.ts +5 -7
- package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +64 -41
- package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +18 -6
- package/dist/components/CdsProgress/CdsProgress.vue.d.ts +1 -1
- package/dist/components/CdsSelect/CdsSelect.vue.d.ts +2 -2
- package/dist/components/CdsSidebar/CdsSidebar.vue.d.ts +22 -8
- package/dist/components/CdsTable/composable/scroll.d.ts +4607 -0
- package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +2 -2
- package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +2 -2
- package/dist/components/CdsUploader/components/UploadList/ListItem.d.ts +6 -6
- package/dist/components/CdsUploader/components/UploadList/UploadList.d.ts +6 -6
- package/dist/components/CdsUploader/composable/upload.d.ts +2 -2
- package/dist/composable/select.d.ts +17 -8
- package/package.json +1 -1
- package/src/scss/themes/index.ts +1 -1
- package/src/scss/utility/variables/flex.scss +42 -1
|
@@ -340,6 +340,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
340
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>>;
|
|
341
341
|
default: undefined;
|
|
342
342
|
};
|
|
343
|
+
menuIcon: {
|
|
344
|
+
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">;
|
|
345
|
+
default: string;
|
|
346
|
+
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;
|
|
347
|
+
};
|
|
343
348
|
}, {
|
|
344
349
|
model: import("vue").Ref<readonly IInternalItem<any>[]> & {
|
|
345
350
|
readonly externalValue: any;
|
|
@@ -758,9 +763,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
758
763
|
readonly size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
759
764
|
readonly disabled?: boolean | undefined;
|
|
760
765
|
readonly type?: "number" | "password" | "text" | "email" | "tel" | "url" | undefined;
|
|
766
|
+
readonly error?: boolean | undefined;
|
|
761
767
|
readonly active?: boolean | undefined;
|
|
762
768
|
readonly autofocus?: boolean | undefined;
|
|
763
|
-
readonly error?: boolean | undefined;
|
|
764
769
|
readonly counter?: boolean | undefined;
|
|
765
770
|
readonly clearable?: boolean | undefined;
|
|
766
771
|
readonly persistentClearable?: boolean | undefined;
|
|
@@ -1036,12 +1041,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1036
1041
|
type: "number" | "password" | "text" | "email" | "tel" | "url";
|
|
1037
1042
|
name: string | undefined;
|
|
1038
1043
|
id: string;
|
|
1044
|
+
error: boolean;
|
|
1039
1045
|
active: boolean;
|
|
1040
1046
|
autofocus: boolean;
|
|
1041
1047
|
prefix: string;
|
|
1042
1048
|
suffix: string;
|
|
1043
1049
|
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
1050
|
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
1051
|
role: string;
|
|
1047
1052
|
placeholder: string;
|
|
@@ -1623,9 +1628,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1623
1628
|
readonly size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1624
1629
|
readonly disabled?: boolean | undefined;
|
|
1625
1630
|
readonly type?: "number" | "password" | "text" | "email" | "tel" | "url" | undefined;
|
|
1631
|
+
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;
|
|
1632
|
+
readonly error?: boolean | undefined;
|
|
1626
1633
|
readonly active?: boolean | undefined;
|
|
1627
1634
|
readonly autofocus?: boolean | undefined;
|
|
1628
|
-
readonly error?: boolean | undefined;
|
|
1629
1635
|
readonly counter?: boolean | undefined;
|
|
1630
1636
|
readonly clearable?: boolean | undefined;
|
|
1631
1637
|
readonly persistentClearable?: boolean | undefined;
|
|
@@ -1837,10 +1843,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1837
1843
|
readonly description?: string | undefined;
|
|
1838
1844
|
readonly name?: string | undefined;
|
|
1839
1845
|
readonly id?: string | undefined;
|
|
1846
|
+
readonly menu?: boolean | undefined;
|
|
1840
1847
|
readonly prefix?: string | undefined;
|
|
1841
1848
|
readonly suffix?: string | undefined;
|
|
1842
1849
|
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
1850
|
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
1851
|
readonly role?: string | undefined;
|
|
1846
1852
|
readonly placeholder?: string | undefined;
|
|
@@ -2298,6 +2304,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2298
2304
|
} & 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>>;
|
|
2299
2305
|
default: undefined;
|
|
2300
2306
|
};
|
|
2307
|
+
menuIcon: {
|
|
2308
|
+
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">;
|
|
2309
|
+
default: string;
|
|
2310
|
+
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;
|
|
2311
|
+
};
|
|
2301
2312
|
}>> & {
|
|
2302
2313
|
"onUpdate:focused"?: ((value: boolean) => any) | undefined;
|
|
2303
2314
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
@@ -2416,13 +2427,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2416
2427
|
type: "number" | "password" | "text" | "email" | "tel" | "url";
|
|
2417
2428
|
name: string | undefined;
|
|
2418
2429
|
id: string;
|
|
2430
|
+
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";
|
|
2431
|
+
error: boolean;
|
|
2432
|
+
menu: boolean | undefined;
|
|
2419
2433
|
active: boolean;
|
|
2420
2434
|
autofocus: boolean;
|
|
2421
2435
|
prefix: string;
|
|
2422
2436
|
suffix: string;
|
|
2423
2437
|
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
2438
|
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
2439
|
role: string;
|
|
2428
2440
|
placeholder: string;
|
|
@@ -130,8 +130,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
130
130
|
tag: string;
|
|
131
131
|
reverse: boolean;
|
|
132
132
|
indeterminate: boolean;
|
|
133
|
-
active: boolean;
|
|
134
133
|
location: NonNullable<import('../../utils').TAnchor>;
|
|
134
|
+
active: boolean;
|
|
135
135
|
modelValue: string | number;
|
|
136
136
|
max: string | number;
|
|
137
137
|
height: string | number;
|
|
@@ -435,9 +435,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
435
435
|
readonly size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
436
436
|
readonly disabled?: boolean | undefined;
|
|
437
437
|
readonly type?: "number" | "password" | "text" | "email" | "tel" | "url" | undefined;
|
|
438
|
+
readonly error?: boolean | undefined;
|
|
438
439
|
readonly active?: boolean | undefined;
|
|
439
440
|
readonly autofocus?: boolean | undefined;
|
|
440
|
-
readonly error?: boolean | undefined;
|
|
441
441
|
readonly counter?: boolean | undefined;
|
|
442
442
|
readonly clearable?: boolean | undefined;
|
|
443
443
|
readonly persistentClearable?: boolean | undefined;
|
|
@@ -749,12 +749,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
749
749
|
type: "number" | "password" | "text" | "email" | "tel" | "url";
|
|
750
750
|
name: string | undefined;
|
|
751
751
|
id: string;
|
|
752
|
+
error: boolean;
|
|
752
753
|
active: boolean;
|
|
753
754
|
autofocus: boolean;
|
|
754
755
|
prefix: string;
|
|
755
756
|
suffix: string;
|
|
756
757
|
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";
|
|
757
|
-
error: boolean;
|
|
758
758
|
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";
|
|
759
759
|
role: string;
|
|
760
760
|
placeholder: string;
|
|
@@ -8,11 +8,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
8
8
|
size: {
|
|
9
9
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
10
10
|
default: string;
|
|
11
|
-
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
12
|
-
|
|
13
|
-
* Событие изменения модели
|
|
14
|
-
* @type { boolean }
|
|
11
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"]; /**
|
|
12
|
+
* Скрывать overlay в открытом состоянии
|
|
15
13
|
*/
|
|
14
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
16
15
|
};
|
|
17
16
|
/**
|
|
18
17
|
* Показать/Скрыть
|
|
@@ -21,11 +20,19 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
21
20
|
type: PropType<boolean>;
|
|
22
21
|
default: boolean;
|
|
23
22
|
};
|
|
23
|
+
/**
|
|
24
|
+
* Скрывать overlay в открытом состоянии
|
|
25
|
+
*/
|
|
26
|
+
disabledOverlay: {
|
|
27
|
+
type: PropType<boolean>;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
24
30
|
}, {
|
|
25
31
|
attrs: {
|
|
26
32
|
[x: string]: unknown;
|
|
27
33
|
};
|
|
28
34
|
sizeClasses: import("vue").ComputedRef<string>;
|
|
35
|
+
showOverlay: import("vue").ComputedRef<boolean>;
|
|
29
36
|
hasToolbarSlot: import("vue").ComputedRef<boolean>;
|
|
30
37
|
hasAppendSlot: import("vue").ComputedRef<boolean>;
|
|
31
38
|
hide: () => void;
|
|
@@ -48,11 +55,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
48
55
|
size: {
|
|
49
56
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
50
57
|
default: string;
|
|
51
|
-
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
52
|
-
|
|
53
|
-
* Событие изменения модели
|
|
54
|
-
* @type { boolean }
|
|
58
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"]; /**
|
|
59
|
+
* Скрывать overlay в открытом состоянии
|
|
55
60
|
*/
|
|
61
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
56
62
|
};
|
|
57
63
|
/**
|
|
58
64
|
* Показать/Скрыть
|
|
@@ -61,6 +67,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
61
67
|
type: PropType<boolean>;
|
|
62
68
|
default: boolean;
|
|
63
69
|
};
|
|
70
|
+
/**
|
|
71
|
+
* Скрывать overlay в открытом состоянии
|
|
72
|
+
*/
|
|
73
|
+
disabledOverlay: {
|
|
74
|
+
type: PropType<boolean>;
|
|
75
|
+
default: boolean;
|
|
76
|
+
};
|
|
64
77
|
}>> & {
|
|
65
78
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
66
79
|
"onClick:outside"?: ((event: MouseEvent) => any) | undefined;
|
|
@@ -68,5 +81,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
68
81
|
title: string;
|
|
69
82
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
70
83
|
modelValue: boolean;
|
|
84
|
+
disabledOverlay: boolean;
|
|
71
85
|
}>;
|
|
72
86
|
export default _sfc_main;
|