@central-design-system/components 3.0.0-alpha.16 → 3.0.0-alpha.18

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.
Files changed (82) hide show
  1. package/dist/cds.css +1 -1
  2. package/dist/cds.d.ts +14 -1
  3. package/dist/cds.es.js +8454 -6001
  4. package/dist/cds.umd.js +3 -3
  5. package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +4 -16
  6. package/dist/components/CdsContainer/CdsContainer.vue.d.ts +1 -13
  7. package/dist/components/CdsContainer/CdsContainerItem.vue.d.ts +54 -0
  8. package/dist/components/CdsContainer/context.d.ts +15 -0
  9. package/dist/components/CdsDrawer/CdsDrawer.vue.d.ts +6 -1
  10. package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +24 -30
  11. package/dist/components/CdsFooter/CdsFooter.vue.d.ts +66 -0
  12. package/dist/components/CdsFooter/index.d.ts +1 -0
  13. package/dist/components/CdsHeader/CdsHeader.vue.d.ts +66 -0
  14. package/dist/components/CdsHeader/index.d.ts +1 -0
  15. package/dist/components/CdsInput/CdsInput.vue.d.ts +8 -0
  16. package/dist/components/CdsLayout/CdsLayout.vue.d.ts +38 -0
  17. package/dist/components/CdsLayout/components/LayoutResizeObserver.d.ts +19 -0
  18. package/dist/components/CdsLayout/components/LayoutScrollObserver.d.ts +55 -0
  19. package/dist/components/CdsLayout/components/index.d.ts +2 -0
  20. package/dist/components/CdsLayout/context.d.ts +33 -0
  21. package/dist/components/CdsLayout/index.d.ts +1 -0
  22. package/dist/components/CdsMain/CdsMain.vue.d.ts +3 -0
  23. package/dist/components/CdsMain/context.d.ts +4 -0
  24. package/dist/components/CdsMain/index.d.ts +1 -0
  25. package/dist/components/CdsModal/CdsModal.vue.d.ts +4 -16
  26. package/dist/components/CdsNotification/CdsNotification.vue.d.ts +2 -6
  27. package/dist/components/CdsOverlay/composable/locationStrategies.d.ts +15 -1
  28. package/dist/components/CdsPage/CdsPage.vue.d.ts +25 -0
  29. package/dist/components/CdsPage/index.d.ts +1 -0
  30. package/dist/components/CdsProgress/CdsProgress.vue.d.ts +145 -0
  31. package/dist/components/CdsProgress/index.d.ts +1 -0
  32. package/dist/components/CdsSidebar/CdsSidebar.vue.d.ts +8 -2
  33. package/dist/components/CdsSkeletonLoader/CdsSkeletonLoader.vue.d.ts +121 -0
  34. package/dist/components/CdsSkeletonLoader/index.d.ts +1 -0
  35. package/dist/components/CdsSkeletonLoader/types.d.ts +37 -0
  36. package/dist/components/CdsSteps/CdsSteps.vue.d.ts +167 -0
  37. package/dist/components/CdsSteps/CdsStepsItem.vue.d.ts +84 -0
  38. package/dist/components/CdsSteps/context.d.ts +11 -0
  39. package/dist/components/CdsSteps/index.d.ts +2 -0
  40. package/dist/components/CdsSteps/svg/_CdsStepCurrentIcon.vue.d.ts +2 -0
  41. package/dist/components/CdsSteps/svg/_CdsStepsIconIncomplete.vue.d.ts +2 -0
  42. package/dist/components/CdsTable/CdsTable.vue.d.ts +5 -5
  43. package/dist/components/CdsTable/components/Table/InternalTable.d.ts +5 -5
  44. package/dist/components/CdsTable/components/TableProvider.d.ts +5 -5
  45. package/dist/components/CdsTable/utils/column.d.ts +1 -1
  46. package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +8 -24
  47. package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +4 -12
  48. package/dist/components/CdsToggle/CdsToggle.vue.d.ts +192 -0
  49. package/dist/components/CdsToggle/index.d.ts +1 -0
  50. package/dist/components/CdsToolbar/CdsToolbar.vue.d.ts +45 -0
  51. package/dist/components/CdsToolbar/CdsToolbarTitle.vue.d.ts +18 -0
  52. package/dist/components/CdsToolbar/index.d.ts +2 -0
  53. package/dist/components/CdsUploader/CdsUploader.vue.d.ts +876 -0
  54. package/dist/components/CdsUploader/components/AjaxUploader.d.ts +342 -0
  55. package/dist/components/CdsUploader/components/UploadList/ListItem.d.ts +400 -0
  56. package/dist/components/CdsUploader/components/UploadList/UploadList.d.ts +403 -0
  57. package/dist/components/CdsUploader/components/index.d.ts +2 -0
  58. package/dist/components/CdsUploader/composable/index.d.ts +2 -0
  59. package/dist/components/CdsUploader/composable/request.d.ts +4 -0
  60. package/dist/components/CdsUploader/composable/upload.d.ts +360 -0
  61. package/dist/components/CdsUploader/index.d.ts +1 -0
  62. package/dist/components/CdsUploader/interface.d.ts +98 -0
  63. package/dist/components/CdsUploader/utils/accept.d.ts +2 -0
  64. package/dist/components/CdsUploader/utils/helpers.d.ts +5 -0
  65. package/dist/components/CdsUploader/utils/index.d.ts +4 -0
  66. package/dist/components/CdsUploader/utils/traverseFileTree.d.ts +14 -0
  67. package/dist/components/CdsUploader/utils/uid.d.ts +1 -0
  68. package/dist/components/index.d.ts +25 -1
  69. package/dist/composable/index.d.ts +2 -0
  70. package/dist/composable/intersectionObserver.d.ts +4 -0
  71. package/dist/composable/layout.d.ts +79 -0
  72. package/dist/composable/text.d.ts +3 -1
  73. package/dist/locale/index.d.ts +2 -0
  74. package/dist/utils/dom/classNames.d.ts +3 -0
  75. package/dist/utils/dom/dom.d.ts +1 -0
  76. package/dist/utils/dom/getScrollParent.d.ts +4 -0
  77. package/dist/utils/dom/hRender.d.ts +9 -0
  78. package/dist/utils/helpers.d.ts +9 -0
  79. package/dist/utils/index.d.ts +2 -0
  80. package/dist/utils/use/copyToClipboard.d.ts +1 -0
  81. package/package.json +1 -1
  82. package/src/scss/themes/index.ts +1 -1
@@ -0,0 +1,167 @@
1
+ import type { PropType } from 'vue';
2
+ import type { ITouchHandlers } from '../../directives/touch';
3
+ export declare const CDS_MOBILE_STEPS_WIDTH: number;
4
+ export declare const componentName = "CdsSteps";
5
+ declare const _sfc_main: import("vue").DefineComponent<{
6
+ prependIcon: Omit<{
7
+ type: PropType<"link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">; /**
8
+ * Вертикальное отображение
9
+ */
10
+ default: undefined;
11
+ validator: (value: "link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
12
+ }, "default" | "type"> & {
13
+ type: PropType<NonNullable<"link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">>;
14
+ default: NonNullable<"link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
15
+ };
16
+ appendIcon: Omit<{
17
+ type: PropType<"link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
18
+ default: undefined;
19
+ validator: (value: "link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
20
+ }, "default" | "type"> & {
21
+ type: PropType<NonNullable<"link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">>;
22
+ default: NonNullable<"link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
23
+ };
24
+ modelValue: {
25
+ type: null;
26
+ default: undefined;
27
+ };
28
+ multiple: {
29
+ type: PropType<boolean>;
30
+ default: boolean;
31
+ };
32
+ required: {
33
+ type: PropType<boolean | "force">;
34
+ default: undefined;
35
+ };
36
+ max: {
37
+ type: PropType<number>;
38
+ default: undefined;
39
+ };
40
+ selectedClass: {
41
+ type: PropType<string>;
42
+ default: undefined;
43
+ };
44
+ readonly: {
45
+ type: PropType<boolean>;
46
+ default: boolean;
47
+ };
48
+ disabled: {
49
+ type: PropType<boolean>;
50
+ default: boolean;
51
+ };
52
+ /**
53
+ * Вертикальное отображение
54
+ */
55
+ vertical: {
56
+ type: PropType<boolean>;
57
+ default: boolean;
58
+ };
59
+ /**
60
+ * Мобильная версия
61
+ */
62
+ mobile: {
63
+ type: PropType<boolean>;
64
+ default: boolean;
65
+ };
66
+ /**
67
+ * Активирует переключение контейнеров по свайпу
68
+ */
69
+ touch: {
70
+ type: PropType<boolean | ITouchHandlers>;
71
+ default: undefined;
72
+ };
73
+ }, {
74
+ stepsRef: import("vue").Ref<HTMLElement | undefined>;
75
+ stepNext: () => void;
76
+ stepPrev: () => void;
77
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
78
+ /**
79
+ * Событие изменения v-model
80
+ * @type { boolean }
81
+ */
82
+ 'update:modelValue': (value: unknown) => boolean;
83
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
84
+ prependIcon: Omit<{
85
+ type: PropType<"link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">; /**
86
+ * Вертикальное отображение
87
+ */
88
+ default: undefined;
89
+ validator: (value: "link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
90
+ }, "default" | "type"> & {
91
+ type: PropType<NonNullable<"link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">>;
92
+ default: NonNullable<"link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
93
+ };
94
+ appendIcon: Omit<{
95
+ type: PropType<"link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
96
+ default: undefined;
97
+ validator: (value: "link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
98
+ }, "default" | "type"> & {
99
+ type: PropType<NonNullable<"link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">>;
100
+ default: NonNullable<"link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
101
+ };
102
+ modelValue: {
103
+ type: null;
104
+ default: undefined;
105
+ };
106
+ multiple: {
107
+ type: PropType<boolean>;
108
+ default: boolean;
109
+ };
110
+ required: {
111
+ type: PropType<boolean | "force">;
112
+ default: undefined;
113
+ };
114
+ max: {
115
+ type: PropType<number>;
116
+ default: undefined;
117
+ };
118
+ selectedClass: {
119
+ type: PropType<string>;
120
+ default: undefined;
121
+ };
122
+ readonly: {
123
+ type: PropType<boolean>;
124
+ default: boolean;
125
+ };
126
+ disabled: {
127
+ type: PropType<boolean>;
128
+ default: boolean;
129
+ };
130
+ /**
131
+ * Вертикальное отображение
132
+ */
133
+ vertical: {
134
+ type: PropType<boolean>;
135
+ default: boolean;
136
+ };
137
+ /**
138
+ * Мобильная версия
139
+ */
140
+ mobile: {
141
+ type: PropType<boolean>;
142
+ default: boolean;
143
+ };
144
+ /**
145
+ * Активирует переключение контейнеров по свайпу
146
+ */
147
+ touch: {
148
+ type: PropType<boolean | ITouchHandlers>;
149
+ default: undefined;
150
+ };
151
+ }>> & {
152
+ "onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
153
+ }, {
154
+ required: boolean | "force";
155
+ disabled: boolean;
156
+ prependIcon: NonNullable<"link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
157
+ appendIcon: NonNullable<"link" | "filters" | "search" | "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" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
158
+ readonly: boolean;
159
+ selectedClass: string;
160
+ modelValue: any;
161
+ vertical: boolean;
162
+ max: number;
163
+ multiple: boolean;
164
+ touch: boolean | ITouchHandlers;
165
+ mobile: boolean;
166
+ }>;
167
+ export default _sfc_main;
@@ -0,0 +1,84 @@
1
+ import type { PropType } from 'vue';
2
+ export declare const componentName = "CdsStepsItem";
3
+ declare const _sfc_main: import("vue").DefineComponent<{
4
+ text: {
5
+ type: PropType<string>;
6
+ default: undefined;
7
+ };
8
+ title: {
9
+ type: PropType<string>;
10
+ default: string;
11
+ };
12
+ disabled: {
13
+ type: PropType<boolean>;
14
+ default: boolean;
15
+ };
16
+ readonly: {
17
+ type: PropType<boolean>;
18
+ default: boolean;
19
+ };
20
+ value: {
21
+ type: null;
22
+ default: undefined;
23
+ };
24
+ selectedClass: {
25
+ type: PropType<string>;
26
+ default: undefined;
27
+ };
28
+ /**
29
+ * Шаг завершен с ошибкой - и для списка и для группы
30
+ */
31
+ error: {
32
+ type: PropType<boolean>;
33
+ default: boolean;
34
+ };
35
+ }, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
36
+ 'group:selected': (val: {
37
+ value: boolean;
38
+ }) => boolean;
39
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
40
+ text: {
41
+ type: PropType<string>;
42
+ default: undefined;
43
+ };
44
+ title: {
45
+ type: PropType<string>;
46
+ default: string;
47
+ };
48
+ disabled: {
49
+ type: PropType<boolean>;
50
+ default: boolean;
51
+ };
52
+ readonly: {
53
+ type: PropType<boolean>;
54
+ default: boolean;
55
+ };
56
+ value: {
57
+ type: null;
58
+ default: undefined;
59
+ };
60
+ selectedClass: {
61
+ type: PropType<string>;
62
+ default: undefined;
63
+ };
64
+ /**
65
+ * Шаг завершен с ошибкой - и для списка и для группы
66
+ */
67
+ error: {
68
+ type: PropType<boolean>;
69
+ default: boolean;
70
+ };
71
+ }>> & {
72
+ "onGroup:selected"?: ((val: {
73
+ value: boolean;
74
+ }) => any) | undefined;
75
+ }, {
76
+ text: string;
77
+ disabled: boolean;
78
+ title: string;
79
+ value: any;
80
+ error: boolean;
81
+ readonly: boolean;
82
+ selectedClass: string;
83
+ }>;
84
+ export default _sfc_main;
@@ -0,0 +1,11 @@
1
+ import type { Ref, InjectionKey } from 'vue';
2
+ import type { IGroupItemProvide } from '../../composable';
3
+ export declare const CdsStepsGroupSymbol: InjectionKey<IGroupItemProvide>;
4
+ export declare const CdsStepsSymbol: InjectionKey<ICdsStepsProvide>;
5
+ interface ICdsStepsProvide {
6
+ mobile: Ref<boolean>;
7
+ readonly: Ref<boolean>;
8
+ }
9
+ export declare const useProvideSteps: (data: ICdsStepsProvide) => void;
10
+ export declare const useInjectSteps: () => ICdsStepsProvide;
11
+ export {};
@@ -0,0 +1,2 @@
1
+ export { default as CdsSteps } from './CdsSteps.vue';
2
+ export { default as CdsStepsItem } from './CdsStepsItem.vue';
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _default;
@@ -885,22 +885,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
885
885
  locale: "ru" | "en" | import("../../locale").ILocale;
886
886
  header: NTable.NRender.TPanelRender<any>;
887
887
  expandIcon: NTable.NExpand.TRenderExpandIcon<any>;
888
+ bordered: boolean;
889
+ footer: NTable.NRender.TPanelRender<any>;
888
890
  columns: NTable.NColumn.TColumns<any>;
891
+ scroll: NTable.TScroll & {
892
+ scrollToFirstRowOnChange?: boolean | undefined;
893
+ };
889
894
  rowKey: string | NTable.NRow.TGetRowKey<any>;
890
895
  rowClassName: string | NTable.NRow.TClassName<any>;
891
896
  tableLayout: NTable.TLayout;
892
897
  showHeader: boolean;
893
898
  sticky: boolean | NTable.NSticky.ISticky;
894
899
  hovered: boolean;
895
- bordered: boolean;
896
900
  borderless: boolean;
897
- footer: NTable.NRender.TPanelRender<any>;
898
901
  customRow: NTable.NCustomize.TGetComponentProps<any>;
899
902
  customHeaderRow: NTable.NCustomize.TGetComponentProps<NTable.NColumn.IColumn<any>[]>;
900
903
  pagination: false | NTable.NPagination.IProps;
901
- scroll: NTable.TScroll & {
902
- scrollToFirstRowOnChange?: boolean | undefined;
903
- };
904
904
  sortDirection: string[];
905
905
  showSorterTooltip: boolean | Omit<Partial<{
906
906
  text: string;
@@ -880,22 +880,22 @@ declare const _default: import("vue").DefineComponent<{
880
880
  locale: "ru" | "en" | import("../../../../locale").ILocale;
881
881
  header: NTable.NRender.TPanelRender<any>;
882
882
  expandIcon: NTable.NExpand.TRenderExpandIcon<any>;
883
+ bordered: boolean;
884
+ footer: NTable.NRender.TPanelRender<any>;
883
885
  columns: NTable.NColumn.TColumns<any>;
886
+ scroll: NTable.TScroll & {
887
+ scrollToFirstRowOnChange?: boolean | undefined;
888
+ };
884
889
  rowKey: string | NTable.NRow.TGetRowKey<any>;
885
890
  rowClassName: string | NTable.NRow.TClassName<any>;
886
891
  tableLayout: NTable.TLayout;
887
892
  showHeader: boolean;
888
893
  sticky: boolean | NTable.NSticky.ISticky;
889
894
  hovered: boolean;
890
- bordered: boolean;
891
895
  borderless: boolean;
892
- footer: NTable.NRender.TPanelRender<any>;
893
896
  customRow: NTable.NCustomize.TGetComponentProps<any>;
894
897
  customHeaderRow: NTable.NCustomize.TGetComponentProps<NTable.NColumn.IColumn<any>[]>;
895
898
  pagination: false | NTable.NPagination.IProps;
896
- scroll: NTable.TScroll & {
897
- scrollToFirstRowOnChange?: boolean | undefined;
898
- };
899
899
  sortDirection: string[];
900
900
  showSorterTooltip: boolean | Omit<Partial<{
901
901
  text: string;
@@ -873,22 +873,22 @@ declare const _default: import("vue").DefineComponent<{
873
873
  locale: "ru" | "en" | import("../../../locale").ILocale;
874
874
  header: NTable.NRender.TPanelRender<any>;
875
875
  expandIcon: NTable.NExpand.TRenderExpandIcon<any>;
876
+ bordered: boolean;
877
+ footer: NTable.NRender.TPanelRender<any>;
876
878
  columns: NTable.NColumn.TColumns<any>;
879
+ scroll: NTable.TScroll & {
880
+ scrollToFirstRowOnChange?: boolean | undefined;
881
+ };
877
882
  rowKey: string | NTable.NRow.TGetRowKey<any>;
878
883
  rowClassName: string | NTable.NRow.TClassName<any>;
879
884
  tableLayout: NTable.TLayout;
880
885
  showHeader: boolean;
881
886
  sticky: boolean | NTable.NSticky.ISticky;
882
887
  hovered: boolean;
883
- bordered: boolean;
884
888
  borderless: boolean;
885
- footer: NTable.NRender.TPanelRender<any>;
886
889
  customRow: NTable.NCustomize.TGetComponentProps<any>;
887
890
  customHeaderRow: NTable.NCustomize.TGetComponentProps<NTable.NColumn.IColumn<any>[]>;
888
891
  pagination: false | NTable.NPagination.IProps;
889
- scroll: NTable.TScroll & {
890
- scrollToFirstRowOnChange?: boolean | undefined;
891
- };
892
892
  sortDirection: string[];
893
893
  showSorterTooltip: boolean | Omit<Partial<{
894
894
  text: string;
@@ -4,4 +4,4 @@ export declare function getColumnKey<RecordType>(column: NTable.NColumn.IColumn<
4
4
  export declare function getColumnPos(index: number, pos?: string): string;
5
5
  export declare function renderColumnTitle<RecordType>(title: NTable.NColumn.TTitle<RecordType>, props: NTable.NColumn.ITitleProps<RecordType>): import("../interface").VueNode;
6
6
  export declare function flattenChildren(children?: any[], filterEmpty?: boolean): any[];
7
- export declare function isEmptyElement(c: Record<string, any>): boolean;
7
+ export declare function isEmptyElement(c: Record<string, any>): boolean | undefined;
@@ -112,16 +112,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
112
112
  default: undefined;
113
113
  };
114
114
  description: {
115
- type: PropType<string>; /**
116
- * Автоматическое увеличение высоты текстовой области
117
- */
115
+ type: PropType<string>;
118
116
  default: undefined;
119
117
  };
120
118
  value: {
121
119
  type: PropType<any>;
122
- default: null; /**
123
- * Количество строк в текстовой области
124
- */
120
+ default: null;
125
121
  };
126
122
  messages: {
127
123
  type: PropType<string | string[]>;
@@ -273,16 +269,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
273
269
  default: undefined;
274
270
  };
275
271
  description: {
276
- type: PropType<string>; /**
277
- * Автоматическое увеличение высоты текстовой области
278
- */
272
+ type: PropType<string>;
279
273
  default: undefined;
280
274
  };
281
275
  value: {
282
276
  type: PropType<any>;
283
- default: null; /**
284
- * Количество строк в текстовой области
285
- */
277
+ default: null;
286
278
  };
287
279
  messages: {
288
280
  type: PropType<string | string[]>;
@@ -390,16 +382,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
390
382
  default: undefined;
391
383
  };
392
384
  description: {
393
- type: PropType<string>; /**
394
- * Автоматическое увеличение высоты текстовой области
395
- */
385
+ type: PropType<string>;
396
386
  default: undefined;
397
387
  };
398
388
  value: {
399
389
  type: PropType<any>;
400
- default: null; /**
401
- * Количество строк в текстовой области
402
- */
390
+ default: null;
403
391
  };
404
392
  messages: {
405
393
  type: PropType<string | string[]>;
@@ -653,16 +641,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
653
641
  default: undefined;
654
642
  };
655
643
  description: {
656
- type: PropType<string>; /**
657
- * Автоматическое увеличение высоты текстовой области
658
- */
644
+ type: PropType<string>;
659
645
  default: undefined;
660
646
  };
661
647
  value: {
662
648
  type: PropType<any>;
663
- default: null; /**
664
- * Количество строк в текстовой области
665
- */
649
+ default: null;
666
650
  };
667
651
  messages: {
668
652
  type: PropType<string | string[]>;
@@ -98,9 +98,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
98
98
  default: null;
99
99
  };
100
100
  messages: {
101
- type: import("vue").PropType<string | string[]>; /**
102
- * Событие клика по иконке перед значением поля
103
- */
101
+ type: import("vue").PropType<string | string[]>;
104
102
  default: () => never[];
105
103
  };
106
104
  persistentMessages: {
@@ -257,9 +255,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
257
255
  default: null;
258
256
  };
259
257
  messages: {
260
- type: import("vue").PropType<string | string[]>; /**
261
- * Событие клика по иконке перед значением поля
262
- */
258
+ type: import("vue").PropType<string | string[]>;
263
259
  default: () => never[];
264
260
  };
265
261
  persistentMessages: {
@@ -372,9 +368,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
372
368
  default: null;
373
369
  };
374
370
  messages: {
375
- type: import("vue").PropType<string | string[]>; /**
376
- * Событие клика по иконке перед значением поля
377
- */
371
+ type: import("vue").PropType<string | string[]>;
378
372
  default: () => never[];
379
373
  };
380
374
  persistentMessages: {
@@ -617,9 +611,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
617
611
  default: null;
618
612
  };
619
613
  messages: {
620
- type: import("vue").PropType<string | string[]>; /**
621
- * Событие клика по иконке перед значением поля
622
- */
614
+ type: import("vue").PropType<string | string[]>;
623
615
  default: () => never[];
624
616
  };
625
617
  persistentMessages: {