@central-design-system/components 3.0.0-alpha.4 → 3.0.0-alpha.6
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 +51 -47
- package/dist/cds.es.js +4479 -3571
- package/dist/cds.umd.js +1 -1
- package/dist/components/CdsButton/CdsButton.vue.d.ts +10 -0
- package/dist/components/CdsCheckbox/CdsCheckbox.vue.d.ts +11 -11
- package/dist/components/CdsCheckbox/CdsCheckboxGroup.vue.d.ts +18 -18
- package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +127 -185
- package/dist/components/CdsDatePicker/CdsDatePicker.vue.d.ts +17 -17
- package/dist/components/CdsDatePicker/composable/calendar.d.ts +3 -1
- package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +94 -95
- package/dist/components/CdsForm/CdsForm.vue.d.ts +1 -1
- package/dist/components/CdsGrid/composable/grid.d.ts +2 -1
- package/dist/components/CdsInput/CdsInput.vue.d.ts +11 -11
- package/dist/components/CdsMenu/CdsMenu.vue.d.ts +24 -18
- package/dist/components/CdsOverlay/CdsOverlay.vue.d.ts +9 -13
- package/dist/components/CdsOverlay/composable/locationStrategies.d.ts +3 -0
- package/dist/components/CdsPagination/CdsPagination.vue.d.ts +142 -0
- package/dist/components/CdsRadioButton/CdsRadio.vue.d.ts +18 -18
- package/dist/components/CdsRadioButton/CdsRadioButton.vue.d.ts +18 -18
- package/dist/components/CdsSelect/CdsSelect.vue.d.ts +51 -33
- package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +83 -62
- package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +37 -73
- package/dist/components/CdsTimePicker/CdsTimePicker.vue.d.ts +171 -0
- package/dist/components/CdsTimePicker/composable/index.d.ts +1 -0
- package/dist/components/CdsTimePicker/composable/time.d.ts +134 -0
- package/dist/components/CdsTooltip/CdsTooltip.vue.d.ts +765 -0
- package/dist/components/index.d.ts +4 -1
- package/dist/composable/datetime.d.ts +2 -17
- package/dist/composable/dimensions.d.ts +23 -5
- package/dist/composable/display.d.ts +56 -0
- package/dist/composable/index.d.ts +4 -0
- package/dist/composable/overlay.d.ts +1 -1
- package/dist/composable/readonly.d.ts +19 -0
- package/dist/composable/refs.d.ts +6 -0
- package/dist/composable/resizeObserver.d.ts +7 -0
- package/dist/composable/validation.d.ts +0 -16
- package/dist/create.d.ts +21 -0
- package/dist/globals.d.ts +2 -0
- package/dist/utils/date.d.ts +2 -1
- package/dist/utils/helpers.d.ts +3 -0
- package/package.json +1 -2
- package/src/scss/themes/index.ts +1 -1
- package/dist/types/CdsOptions.d.ts +0 -3
- package/src/utils/__test__/helper.test.ts +0 -59
- package/src/utils/__test__/mocks/helper.mock.ts +0 -362
- package/src/utils/__test__/mocks/propFactory.mock.ts +0 -88
- package/src/utils/__test__/propFactory.test.ts +0 -9
- package/src/utils/anchor.ts +0 -76
- package/src/utils/animation.ts +0 -62
- package/src/utils/box.ts +0 -39
- package/src/utils/cache.ts +0 -12
- package/src/utils/changeCase/__test__/lowerCase.test.ts +0 -12
- package/src/utils/changeCase/__test__/mocks/lowerCase.mock.ts +0 -80
- package/src/utils/changeCase/__test__/mocks/noCase.mock.ts +0 -131
- package/src/utils/changeCase/__test__/mocks/paramCase.mock.ts +0 -39
- package/src/utils/changeCase/__test__/mocks/pascalCase.mock.ts +0 -46
- package/src/utils/changeCase/__test__/noCase.test.ts +0 -8
- package/src/utils/changeCase/__test__/paramCase.test.ts +0 -8
- package/src/utils/changeCase/__test__/pascalCase.test.ts +0 -8
- package/src/utils/changeCase/lowerCase.ts +0 -56
- package/src/utils/changeCase/noCase.ts +0 -45
- package/src/utils/changeCase/paramCase.ts +0 -11
- package/src/utils/changeCase/pascalCase.ts +0 -24
- package/src/utils/date.ts +0 -1100
- package/src/utils/dom.ts +0 -24
- package/src/utils/getCurrentInstance.ts +0 -43
- package/src/utils/getScrollParent.ts +0 -29
- package/src/utils/globals.ts +0 -8
- package/src/utils/helpers.ts +0 -311
- package/src/utils/index.ts +0 -19
- package/src/utils/propsFactory.ts +0 -92
|
@@ -33,10 +33,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
33
33
|
type: PropType<boolean>;
|
|
34
34
|
default: boolean;
|
|
35
35
|
}, "default" | "type"> & {
|
|
36
|
-
/**
|
|
37
|
-
* Событие при фокусе
|
|
38
|
-
* @type { boolean }
|
|
39
|
-
*/
|
|
40
36
|
type: PropType<boolean>;
|
|
41
37
|
default: boolean;
|
|
42
38
|
};
|
|
@@ -44,6 +40,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
44
40
|
type: PropType<boolean>;
|
|
45
41
|
default: boolean;
|
|
46
42
|
};
|
|
43
|
+
readonly: {
|
|
44
|
+
type: PropType<boolean>;
|
|
45
|
+
default: boolean;
|
|
46
|
+
};
|
|
47
|
+
disabled: {
|
|
48
|
+
type: PropType<boolean>;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
47
51
|
focused: {
|
|
48
52
|
type: PropType<boolean>;
|
|
49
53
|
default: boolean;
|
|
@@ -79,22 +83,19 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
79
83
|
};
|
|
80
84
|
appendIcon: {
|
|
81
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" | "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" | "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">;
|
|
82
|
-
default: undefined;
|
|
83
|
-
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
84
|
-
*/
|
|
86
|
+
default: undefined;
|
|
85
87
|
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" | "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" | "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;
|
|
86
88
|
};
|
|
87
|
-
disabled: {
|
|
88
|
-
type: PropType<boolean>;
|
|
89
|
-
default: boolean;
|
|
90
|
-
};
|
|
91
89
|
error: {
|
|
92
90
|
type: PropType<boolean>;
|
|
93
91
|
default: boolean;
|
|
94
92
|
};
|
|
95
93
|
errorMessages: {
|
|
96
94
|
type: PropType<string | string[]>;
|
|
97
|
-
default: () => never[];
|
|
95
|
+
default: () => never[]; /**
|
|
96
|
+
* Событие при фокусе
|
|
97
|
+
* @type { boolean }
|
|
98
|
+
*/
|
|
98
99
|
};
|
|
99
100
|
maxErrors: {
|
|
100
101
|
type: PropType<string | number>;
|
|
@@ -104,10 +105,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
104
105
|
type: PropType<string | undefined>;
|
|
105
106
|
default: undefined;
|
|
106
107
|
};
|
|
107
|
-
readonly: {
|
|
108
|
-
type: PropType<boolean>;
|
|
109
|
-
default: boolean;
|
|
110
|
-
};
|
|
111
108
|
rules: {
|
|
112
109
|
type: PropType<import("../../composable").TValidationRule[]>;
|
|
113
110
|
default: () => never[];
|
|
@@ -172,12 +169,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
172
169
|
};
|
|
173
170
|
prependInnerIcon: {
|
|
174
171
|
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" | "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" | "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">;
|
|
175
|
-
default: undefined;
|
|
172
|
+
default: undefined; /**
|
|
173
|
+
* Событие при изменении значения (v-model)
|
|
174
|
+
* @type { any }
|
|
175
|
+
*/
|
|
176
176
|
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" | "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" | "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;
|
|
177
177
|
};
|
|
178
178
|
appendInnerIcon: {
|
|
179
179
|
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" | "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" | "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">;
|
|
180
|
-
default: undefined;
|
|
180
|
+
default: undefined; /**
|
|
181
|
+
* Событие при вводе значения в поле
|
|
182
|
+
* @type { string }
|
|
183
|
+
*/
|
|
181
184
|
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" | "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" | "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;
|
|
182
185
|
};
|
|
183
186
|
type: {
|
|
@@ -223,10 +226,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
223
226
|
type: PropType<string | string[]>;
|
|
224
227
|
default: string;
|
|
225
228
|
}, "default" | "type"> & {
|
|
226
|
-
/**
|
|
227
|
-
* Событие при фокусе
|
|
228
|
-
* @type { boolean }
|
|
229
|
-
*/
|
|
230
229
|
type: PropType<NonNullable<string | string[]>>;
|
|
231
230
|
default: NonNullable<string | string[]>;
|
|
232
231
|
};
|
|
@@ -258,10 +257,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
258
257
|
type: PropType<boolean>;
|
|
259
258
|
default: boolean;
|
|
260
259
|
}, "default" | "type"> & {
|
|
261
|
-
/**
|
|
262
|
-
* Событие при фокусе
|
|
263
|
-
* @type { boolean }
|
|
264
|
-
*/
|
|
265
260
|
type: PropType<boolean>;
|
|
266
261
|
default: boolean;
|
|
267
262
|
};
|
|
@@ -282,10 +277,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
282
277
|
};
|
|
283
278
|
}, {
|
|
284
279
|
model: import("vue").Ref<readonly IInternalItem<any>[]> & {
|
|
285
|
-
/**
|
|
286
|
-
* Событие при вводе значения в поле
|
|
287
|
-
* @type { string }
|
|
288
|
-
*/
|
|
289
280
|
readonly externalValue: any;
|
|
290
281
|
};
|
|
291
282
|
search: import("vue").WritableComputedRef<string>;
|
|
@@ -305,6 +296,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
305
296
|
type: PropType<boolean>;
|
|
306
297
|
default: boolean;
|
|
307
298
|
};
|
|
299
|
+
readonly: {
|
|
300
|
+
type: PropType<boolean>;
|
|
301
|
+
default: boolean;
|
|
302
|
+
};
|
|
303
|
+
disabled: {
|
|
304
|
+
type: PropType<boolean>;
|
|
305
|
+
default: boolean;
|
|
306
|
+
};
|
|
308
307
|
focused: {
|
|
309
308
|
type: PropType<boolean>;
|
|
310
309
|
default: boolean;
|
|
@@ -324,22 +323,19 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
324
323
|
};
|
|
325
324
|
appendIcon: {
|
|
326
325
|
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" | "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" | "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">;
|
|
327
|
-
default: undefined;
|
|
328
|
-
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
329
|
-
*/
|
|
326
|
+
default: undefined;
|
|
330
327
|
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" | "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" | "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;
|
|
331
328
|
};
|
|
332
|
-
disabled: {
|
|
333
|
-
type: PropType<boolean>;
|
|
334
|
-
default: boolean;
|
|
335
|
-
};
|
|
336
329
|
error: {
|
|
337
330
|
type: PropType<boolean>;
|
|
338
331
|
default: boolean;
|
|
339
332
|
};
|
|
340
333
|
errorMessages: {
|
|
341
334
|
type: PropType<string | string[]>;
|
|
342
|
-
default: () => never[];
|
|
335
|
+
default: () => never[]; /**
|
|
336
|
+
* Событие при фокусе
|
|
337
|
+
* @type { boolean }
|
|
338
|
+
*/
|
|
343
339
|
};
|
|
344
340
|
maxErrors: {
|
|
345
341
|
type: PropType<string | number>;
|
|
@@ -349,10 +345,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
349
345
|
type: PropType<string | undefined>;
|
|
350
346
|
default: undefined;
|
|
351
347
|
};
|
|
352
|
-
readonly: {
|
|
353
|
-
type: PropType<boolean>;
|
|
354
|
-
default: boolean;
|
|
355
|
-
};
|
|
356
348
|
rules: {
|
|
357
349
|
type: PropType<import("../../composable").TValidationRule[]>;
|
|
358
350
|
default: () => never[];
|
|
@@ -417,12 +409,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
417
409
|
};
|
|
418
410
|
prependInnerIcon: {
|
|
419
411
|
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" | "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" | "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">;
|
|
420
|
-
default: undefined;
|
|
412
|
+
default: undefined; /**
|
|
413
|
+
* Событие при изменении значения (v-model)
|
|
414
|
+
* @type { any }
|
|
415
|
+
*/
|
|
421
416
|
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" | "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" | "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;
|
|
422
417
|
};
|
|
423
418
|
appendInnerIcon: {
|
|
424
419
|
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" | "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" | "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">;
|
|
425
|
-
default: undefined;
|
|
420
|
+
default: undefined; /**
|
|
421
|
+
* Событие при вводе значения в поле
|
|
422
|
+
* @type { string }
|
|
423
|
+
*/
|
|
426
424
|
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" | "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" | "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;
|
|
427
425
|
};
|
|
428
426
|
type: {
|
|
@@ -457,10 +455,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
457
455
|
}, {
|
|
458
456
|
id: import("vue").ComputedRef<string>;
|
|
459
457
|
model: import("vue").Ref<any> & {
|
|
460
|
-
/**
|
|
461
|
-
* Событие при вводе значения в поле
|
|
462
|
-
* @type { string }
|
|
463
|
-
*/
|
|
464
458
|
readonly externalValue: any;
|
|
465
459
|
};
|
|
466
460
|
fieldRef: import("vue").Ref<HTMLElement | undefined>;
|
|
@@ -468,7 +462,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
468
462
|
validationRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
469
463
|
'onClick:prepend': PropType<(...args: any[]) => any>;
|
|
470
464
|
'onClick:append': PropType<(...args: any[]) => any>;
|
|
471
|
-
|
|
465
|
+
readonly: {
|
|
472
466
|
type: PropType<boolean>;
|
|
473
467
|
default: boolean;
|
|
474
468
|
};
|
|
@@ -476,13 +470,20 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
476
470
|
type: PropType<boolean>;
|
|
477
471
|
default: boolean;
|
|
478
472
|
};
|
|
473
|
+
focused: {
|
|
474
|
+
type: PropType<boolean>;
|
|
475
|
+
default: boolean;
|
|
476
|
+
};
|
|
479
477
|
error: {
|
|
480
478
|
type: PropType<boolean>;
|
|
481
479
|
default: boolean;
|
|
482
480
|
};
|
|
483
481
|
errorMessages: {
|
|
484
482
|
type: PropType<string | string[]>;
|
|
485
|
-
default: () => never[];
|
|
483
|
+
default: () => never[]; /**
|
|
484
|
+
* Событие при фокусе
|
|
485
|
+
* @type { boolean }
|
|
486
|
+
*/
|
|
486
487
|
};
|
|
487
488
|
maxErrors: {
|
|
488
489
|
type: PropType<string | number>;
|
|
@@ -492,10 +493,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
492
493
|
type: PropType<string | undefined>;
|
|
493
494
|
default: undefined;
|
|
494
495
|
};
|
|
495
|
-
readonly: {
|
|
496
|
-
type: PropType<boolean>;
|
|
497
|
-
default: boolean;
|
|
498
|
-
};
|
|
499
496
|
rules: {
|
|
500
497
|
type: PropType<import("../../composable").TValidationRule[]>;
|
|
501
498
|
default: () => never[];
|
|
@@ -525,9 +522,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
525
522
|
};
|
|
526
523
|
appendIcon: {
|
|
527
524
|
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" | "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" | "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">;
|
|
528
|
-
default: undefined;
|
|
529
|
-
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
530
|
-
*/
|
|
525
|
+
default: undefined;
|
|
531
526
|
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" | "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" | "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;
|
|
532
527
|
};
|
|
533
528
|
id: {
|
|
@@ -576,7 +571,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
576
571
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
577
572
|
'onClick:prepend': PropType<(...args: any[]) => any>;
|
|
578
573
|
'onClick:append': PropType<(...args: any[]) => any>;
|
|
579
|
-
|
|
574
|
+
readonly: {
|
|
580
575
|
type: PropType<boolean>;
|
|
581
576
|
default: boolean;
|
|
582
577
|
};
|
|
@@ -584,13 +579,20 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
584
579
|
type: PropType<boolean>;
|
|
585
580
|
default: boolean;
|
|
586
581
|
};
|
|
582
|
+
focused: {
|
|
583
|
+
type: PropType<boolean>;
|
|
584
|
+
default: boolean;
|
|
585
|
+
};
|
|
587
586
|
error: {
|
|
588
587
|
type: PropType<boolean>;
|
|
589
588
|
default: boolean;
|
|
590
589
|
};
|
|
591
590
|
errorMessages: {
|
|
592
591
|
type: PropType<string | string[]>;
|
|
593
|
-
default: () => never[];
|
|
592
|
+
default: () => never[]; /**
|
|
593
|
+
* Событие при фокусе
|
|
594
|
+
* @type { boolean }
|
|
595
|
+
*/
|
|
594
596
|
};
|
|
595
597
|
maxErrors: {
|
|
596
598
|
type: PropType<string | number>;
|
|
@@ -600,10 +602,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
600
602
|
type: PropType<string | undefined>;
|
|
601
603
|
default: undefined;
|
|
602
604
|
};
|
|
603
|
-
readonly: {
|
|
604
|
-
type: PropType<boolean>;
|
|
605
|
-
default: boolean;
|
|
606
|
-
};
|
|
607
605
|
rules: {
|
|
608
606
|
type: PropType<import("../../composable").TValidationRule[]>;
|
|
609
607
|
default: () => never[];
|
|
@@ -633,9 +631,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
633
631
|
};
|
|
634
632
|
appendIcon: {
|
|
635
633
|
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" | "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" | "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">;
|
|
636
|
-
default: undefined;
|
|
637
|
-
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
638
|
-
*/
|
|
634
|
+
default: undefined;
|
|
639
635
|
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" | "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" | "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;
|
|
640
636
|
};
|
|
641
637
|
id: {
|
|
@@ -672,13 +668,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
672
668
|
error: boolean;
|
|
673
669
|
prependIcon: "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" | "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" | "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";
|
|
674
670
|
appendIcon: "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" | "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" | "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";
|
|
671
|
+
readonly: boolean;
|
|
675
672
|
messages: string | string[];
|
|
676
673
|
id: string;
|
|
677
674
|
label: string;
|
|
678
675
|
persistentMessages: boolean;
|
|
679
676
|
errorMessages: string | string[];
|
|
680
677
|
maxErrors: string | number;
|
|
681
|
-
readonly: boolean;
|
|
682
678
|
rules: import("../../composable").TValidationRule[];
|
|
683
679
|
modelValue: any;
|
|
684
680
|
validateOn: "input" | "blur" | "submit";
|
|
@@ -694,13 +690,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
694
690
|
readonly disabled?: boolean | undefined;
|
|
695
691
|
readonly value?: any;
|
|
696
692
|
readonly error?: boolean | undefined;
|
|
693
|
+
readonly readonly?: boolean | undefined;
|
|
697
694
|
readonly loading?: boolean | undefined;
|
|
698
695
|
readonly messages?: string | string[] | undefined;
|
|
699
696
|
readonly active?: boolean | undefined;
|
|
700
697
|
readonly persistentMessages?: boolean | undefined;
|
|
701
698
|
readonly errorMessages?: string | string[] | undefined;
|
|
702
699
|
readonly maxErrors?: string | number | undefined;
|
|
703
|
-
readonly readonly?: boolean | undefined;
|
|
704
700
|
readonly rules?: (import("../../composable").TValidationResult | ((value: any) => import("../../composable").TValidationResult) | ((value: any) => PromiseLike<import("../../composable").TValidationResult>) | {
|
|
705
701
|
then: <TResult1 = import("../../composable").TValidationResult, TResult2 = never>(onfulfilled?: ((value: import("../../composable").TValidationResult) => TResult1 | PromiseLike<TResult1>) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null | undefined) => PromiseLike<TResult1 | TResult2>;
|
|
706
702
|
})[] | undefined;
|
|
@@ -773,6 +769,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
773
769
|
type: PropType<boolean>;
|
|
774
770
|
default: boolean;
|
|
775
771
|
};
|
|
772
|
+
readonly: {
|
|
773
|
+
type: PropType<boolean>;
|
|
774
|
+
default: boolean;
|
|
775
|
+
};
|
|
776
|
+
disabled: {
|
|
777
|
+
type: PropType<boolean>;
|
|
778
|
+
default: boolean;
|
|
779
|
+
};
|
|
776
780
|
focused: {
|
|
777
781
|
type: PropType<boolean>;
|
|
778
782
|
default: boolean;
|
|
@@ -792,22 +796,19 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
792
796
|
};
|
|
793
797
|
appendIcon: {
|
|
794
798
|
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" | "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" | "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">;
|
|
795
|
-
default: undefined;
|
|
796
|
-
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
797
|
-
*/
|
|
799
|
+
default: undefined;
|
|
798
800
|
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" | "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" | "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;
|
|
799
801
|
};
|
|
800
|
-
disabled: {
|
|
801
|
-
type: PropType<boolean>;
|
|
802
|
-
default: boolean;
|
|
803
|
-
};
|
|
804
802
|
error: {
|
|
805
803
|
type: PropType<boolean>;
|
|
806
804
|
default: boolean;
|
|
807
805
|
};
|
|
808
806
|
errorMessages: {
|
|
809
807
|
type: PropType<string | string[]>;
|
|
810
|
-
default: () => never[];
|
|
808
|
+
default: () => never[]; /**
|
|
809
|
+
* Событие при фокусе
|
|
810
|
+
* @type { boolean }
|
|
811
|
+
*/
|
|
811
812
|
};
|
|
812
813
|
maxErrors: {
|
|
813
814
|
type: PropType<string | number>;
|
|
@@ -817,10 +818,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
817
818
|
type: PropType<string | undefined>;
|
|
818
819
|
default: undefined;
|
|
819
820
|
};
|
|
820
|
-
readonly: {
|
|
821
|
-
type: PropType<boolean>;
|
|
822
|
-
default: boolean;
|
|
823
|
-
};
|
|
824
821
|
rules: {
|
|
825
822
|
type: PropType<import("../../composable").TValidationRule[]>;
|
|
826
823
|
default: () => never[];
|
|
@@ -885,12 +882,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
885
882
|
};
|
|
886
883
|
prependInnerIcon: {
|
|
887
884
|
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" | "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" | "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">;
|
|
888
|
-
default: undefined;
|
|
885
|
+
default: undefined; /**
|
|
886
|
+
* Событие при изменении значения (v-model)
|
|
887
|
+
* @type { any }
|
|
888
|
+
*/
|
|
889
889
|
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" | "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" | "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;
|
|
890
890
|
};
|
|
891
891
|
appendInnerIcon: {
|
|
892
892
|
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" | "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" | "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">;
|
|
893
|
-
default: undefined;
|
|
893
|
+
default: undefined; /**
|
|
894
|
+
* Событие при вводе значения в поле
|
|
895
|
+
* @type { string }
|
|
896
|
+
*/
|
|
894
897
|
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" | "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" | "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;
|
|
895
898
|
};
|
|
896
899
|
type: {
|
|
@@ -941,6 +944,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
941
944
|
error: boolean;
|
|
942
945
|
prependIcon: "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" | "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" | "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";
|
|
943
946
|
appendIcon: "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" | "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" | "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";
|
|
947
|
+
readonly: boolean;
|
|
944
948
|
loading: boolean;
|
|
945
949
|
messages: string | string[];
|
|
946
950
|
active: boolean;
|
|
@@ -949,7 +953,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
949
953
|
persistentMessages: boolean;
|
|
950
954
|
errorMessages: string | string[];
|
|
951
955
|
maxErrors: string | number;
|
|
952
|
-
readonly: boolean;
|
|
953
956
|
rules: import("../../composable").TValidationRule[];
|
|
954
957
|
modelValue: any;
|
|
955
958
|
validateOn: "input" | "blur" | "submit";
|
|
@@ -982,6 +985,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
982
985
|
type: PropType<string | number>;
|
|
983
986
|
default: string;
|
|
984
987
|
};
|
|
988
|
+
width: {
|
|
989
|
+
type: PropType<string | number>;
|
|
990
|
+
default: string;
|
|
991
|
+
};
|
|
985
992
|
maxHeight: {
|
|
986
993
|
type: PropType<string | number>;
|
|
987
994
|
default: string;
|
|
@@ -998,10 +1005,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
998
1005
|
type: PropType<string | number>;
|
|
999
1006
|
default: string;
|
|
1000
1007
|
};
|
|
1001
|
-
width: {
|
|
1002
|
-
type: PropType<string | number>;
|
|
1003
|
-
default: string;
|
|
1004
|
-
};
|
|
1005
1008
|
eager: {
|
|
1006
1009
|
type: PropType<boolean>;
|
|
1007
1010
|
default: boolean;
|
|
@@ -1011,10 +1014,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1011
1014
|
default: string;
|
|
1012
1015
|
validator: (value: any) => boolean;
|
|
1013
1016
|
}, "default" | "type"> & {
|
|
1014
|
-
/**
|
|
1015
|
-
* Событие при фокусе
|
|
1016
|
-
* @type { boolean }
|
|
1017
|
-
*/
|
|
1018
1017
|
type: PropType<NonNullable<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>>;
|
|
1019
1018
|
default: NonNullable<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
|
|
1020
1019
|
};
|
|
@@ -1025,10 +1024,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1025
1024
|
default: string;
|
|
1026
1025
|
validator: (value: any) => boolean;
|
|
1027
1026
|
}, "default" | "type"> & {
|
|
1028
|
-
/**
|
|
1029
|
-
* Событие при фокусе
|
|
1030
|
-
* @type { boolean }
|
|
1031
|
-
*/
|
|
1032
1027
|
type: PropType<NonNullable<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
1033
1028
|
updateLocation: (event: Event) => void;
|
|
1034
1029
|
} | undefined)>>;
|
|
@@ -1052,10 +1047,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1052
1047
|
type: PropType<string | number>;
|
|
1053
1048
|
default: null;
|
|
1054
1049
|
}, "default" | "type"> & {
|
|
1055
|
-
/**
|
|
1056
|
-
* Событие при фокусе
|
|
1057
|
-
* @type { boolean }
|
|
1058
|
-
*/
|
|
1059
1050
|
type: PropType<NonNullable<string | number>>;
|
|
1060
1051
|
default: NonNullable<string | number>;
|
|
1061
1052
|
};
|
|
@@ -1063,10 +1054,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1063
1054
|
type: PropType<string | number>;
|
|
1064
1055
|
default: null;
|
|
1065
1056
|
}, "default" | "type"> & {
|
|
1066
|
-
/**
|
|
1067
|
-
* Событие при фокусе
|
|
1068
|
-
* @type { boolean }
|
|
1069
|
-
*/
|
|
1070
1057
|
type: PropType<NonNullable<string | number>>;
|
|
1071
1058
|
default: NonNullable<string | number>;
|
|
1072
1059
|
};
|
|
@@ -1094,10 +1081,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1094
1081
|
type: PropType<boolean>;
|
|
1095
1082
|
default: boolean;
|
|
1096
1083
|
}, "default" | "type"> & {
|
|
1097
|
-
/**
|
|
1098
|
-
* Событие при фокусе
|
|
1099
|
-
* @type { boolean }
|
|
1100
|
-
*/
|
|
1101
1084
|
type: PropType<boolean>;
|
|
1102
1085
|
default: boolean;
|
|
1103
1086
|
};
|
|
@@ -1121,10 +1104,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1121
1104
|
type: PropType<string | boolean>;
|
|
1122
1105
|
default: boolean;
|
|
1123
1106
|
}, "default" | "type"> & {
|
|
1124
|
-
/**
|
|
1125
|
-
* Событие при фокусе
|
|
1126
|
-
* @type { boolean }
|
|
1127
|
-
*/
|
|
1128
1107
|
type: PropType<NonNullable<string | boolean>>;
|
|
1129
1108
|
default: NonNullable<string | boolean>;
|
|
1130
1109
|
};
|
|
@@ -1193,6 +1172,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1193
1172
|
type: PropType<string | number>;
|
|
1194
1173
|
default: string;
|
|
1195
1174
|
};
|
|
1175
|
+
width: {
|
|
1176
|
+
type: PropType<string | number>;
|
|
1177
|
+
default: string;
|
|
1178
|
+
};
|
|
1196
1179
|
maxHeight: {
|
|
1197
1180
|
type: PropType<string | number>;
|
|
1198
1181
|
default: string;
|
|
@@ -1209,10 +1192,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1209
1192
|
type: PropType<string | number>;
|
|
1210
1193
|
default: string;
|
|
1211
1194
|
};
|
|
1212
|
-
width: {
|
|
1213
|
-
type: PropType<string | number>;
|
|
1214
|
-
default: string;
|
|
1215
|
-
};
|
|
1216
1195
|
closeDelay: {
|
|
1217
1196
|
type: PropType<string | number>;
|
|
1218
1197
|
default: null;
|
|
@@ -1339,6 +1318,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1339
1318
|
type: PropType<string | number>;
|
|
1340
1319
|
default: string;
|
|
1341
1320
|
};
|
|
1321
|
+
width: {
|
|
1322
|
+
type: PropType<string | number>;
|
|
1323
|
+
default: string;
|
|
1324
|
+
};
|
|
1342
1325
|
maxHeight: {
|
|
1343
1326
|
type: PropType<string | number>;
|
|
1344
1327
|
default: string;
|
|
@@ -1355,10 +1338,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1355
1338
|
type: PropType<string | number>;
|
|
1356
1339
|
default: string;
|
|
1357
1340
|
};
|
|
1358
|
-
width: {
|
|
1359
|
-
type: PropType<string | number>;
|
|
1360
|
-
default: string;
|
|
1361
|
-
};
|
|
1362
1341
|
closeDelay: {
|
|
1363
1342
|
type: PropType<string | number>;
|
|
1364
1343
|
default: null;
|
|
@@ -1470,11 +1449,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1470
1449
|
scrollStrategy: "none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void);
|
|
1471
1450
|
eager: boolean;
|
|
1472
1451
|
height: string | number;
|
|
1452
|
+
width: string | number;
|
|
1473
1453
|
maxHeight: string | number;
|
|
1474
1454
|
maxWidth: string | number;
|
|
1475
1455
|
minHeight: string | number;
|
|
1476
1456
|
minWidth: string | number;
|
|
1477
|
-
width: string | number;
|
|
1478
1457
|
absolute: boolean;
|
|
1479
1458
|
}> | undefined>;
|
|
1480
1459
|
openChildren: import("vue").Ref<number>;
|
|
@@ -1492,6 +1471,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1492
1471
|
type: PropType<string | number>;
|
|
1493
1472
|
default: string;
|
|
1494
1473
|
};
|
|
1474
|
+
width: {
|
|
1475
|
+
type: PropType<string | number>;
|
|
1476
|
+
default: string;
|
|
1477
|
+
};
|
|
1495
1478
|
maxHeight: {
|
|
1496
1479
|
type: PropType<string | number>;
|
|
1497
1480
|
default: string;
|
|
@@ -1508,10 +1491,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1508
1491
|
type: PropType<string | number>;
|
|
1509
1492
|
default: string;
|
|
1510
1493
|
};
|
|
1511
|
-
width: {
|
|
1512
|
-
type: PropType<string | number>;
|
|
1513
|
-
default: string;
|
|
1514
|
-
};
|
|
1515
1494
|
eager: {
|
|
1516
1495
|
type: PropType<boolean>;
|
|
1517
1496
|
default: boolean;
|
|
@@ -1521,10 +1500,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1521
1500
|
default: string;
|
|
1522
1501
|
validator: (value: any) => boolean;
|
|
1523
1502
|
}, "default" | "type"> & {
|
|
1524
|
-
/**
|
|
1525
|
-
* Событие при фокусе
|
|
1526
|
-
* @type { boolean }
|
|
1527
|
-
*/
|
|
1528
1503
|
type: PropType<NonNullable<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>>;
|
|
1529
1504
|
default: NonNullable<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
|
|
1530
1505
|
};
|
|
@@ -1535,10 +1510,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1535
1510
|
default: string;
|
|
1536
1511
|
validator: (value: any) => boolean;
|
|
1537
1512
|
}, "default" | "type"> & {
|
|
1538
|
-
/**
|
|
1539
|
-
* Событие при фокусе
|
|
1540
|
-
* @type { boolean }
|
|
1541
|
-
*/
|
|
1542
1513
|
type: PropType<NonNullable<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
1543
1514
|
updateLocation: (event: Event) => void;
|
|
1544
1515
|
} | undefined)>>;
|
|
@@ -1562,10 +1533,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1562
1533
|
type: PropType<string | number>;
|
|
1563
1534
|
default: null;
|
|
1564
1535
|
}, "default" | "type"> & {
|
|
1565
|
-
/**
|
|
1566
|
-
* Событие при фокусе
|
|
1567
|
-
* @type { boolean }
|
|
1568
|
-
*/
|
|
1569
1536
|
type: PropType<NonNullable<string | number>>;
|
|
1570
1537
|
default: NonNullable<string | number>;
|
|
1571
1538
|
};
|
|
@@ -1573,10 +1540,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1573
1540
|
type: PropType<string | number>;
|
|
1574
1541
|
default: null;
|
|
1575
1542
|
}, "default" | "type"> & {
|
|
1576
|
-
/**
|
|
1577
|
-
* Событие при фокусе
|
|
1578
|
-
* @type { boolean }
|
|
1579
|
-
*/
|
|
1580
1543
|
type: PropType<NonNullable<string | number>>;
|
|
1581
1544
|
default: NonNullable<string | number>;
|
|
1582
1545
|
};
|
|
@@ -1604,10 +1567,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1604
1567
|
type: PropType<boolean>;
|
|
1605
1568
|
default: boolean;
|
|
1606
1569
|
}, "default" | "type"> & {
|
|
1607
|
-
/**
|
|
1608
|
-
* Событие при фокусе
|
|
1609
|
-
* @type { boolean }
|
|
1610
|
-
*/
|
|
1611
1570
|
type: PropType<boolean>;
|
|
1612
1571
|
default: boolean;
|
|
1613
1572
|
};
|
|
@@ -1631,10 +1590,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1631
1590
|
type: PropType<string | boolean>;
|
|
1632
1591
|
default: boolean;
|
|
1633
1592
|
}, "default" | "type"> & {
|
|
1634
|
-
/**
|
|
1635
|
-
* Событие при фокусе
|
|
1636
|
-
* @type { boolean }
|
|
1637
|
-
*/
|
|
1638
1593
|
type: PropType<NonNullable<string | boolean>>;
|
|
1639
1594
|
default: NonNullable<string | boolean>;
|
|
1640
1595
|
};
|
|
@@ -1696,11 +1651,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1696
1651
|
scrollStrategy: NonNullable<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
|
|
1697
1652
|
eager: boolean;
|
|
1698
1653
|
height: string | number;
|
|
1654
|
+
width: string | number;
|
|
1699
1655
|
maxHeight: string | number;
|
|
1700
1656
|
maxWidth: string | number;
|
|
1701
1657
|
minHeight: string | number;
|
|
1702
1658
|
minWidth: string | number;
|
|
1703
|
-
width: string | number;
|
|
1704
1659
|
}> | undefined>;
|
|
1705
1660
|
listRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
1706
1661
|
selectStrategy: {
|
|
@@ -1728,10 +1683,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1728
1683
|
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
1729
1684
|
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
1730
1685
|
}, "default" | "type"> & {
|
|
1731
|
-
/**
|
|
1732
|
-
* Событие при фокусе
|
|
1733
|
-
* @type { boolean }
|
|
1734
|
-
*/
|
|
1735
1686
|
type: PropType<NonNullable<"xs" | "sm" | "md" | "lg" | "xl">>;
|
|
1736
1687
|
default: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
1737
1688
|
};
|
|
@@ -1813,10 +1764,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1813
1764
|
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
1814
1765
|
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
1815
1766
|
}, "default" | "type"> & {
|
|
1816
|
-
/**
|
|
1817
|
-
* Событие при фокусе
|
|
1818
|
-
* @type { boolean }
|
|
1819
|
-
*/
|
|
1820
1767
|
type: PropType<NonNullable<"xs" | "sm" | "md" | "lg" | "xl">>;
|
|
1821
1768
|
default: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
1822
1769
|
};
|
|
@@ -1896,6 +1843,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1896
1843
|
readonly itemProps?: import("../../composable").TItemKey | undefined;
|
|
1897
1844
|
readonly returnObject?: boolean | undefined;
|
|
1898
1845
|
readonly error?: boolean | undefined;
|
|
1846
|
+
readonly readonly?: boolean | undefined;
|
|
1899
1847
|
readonly loading?: boolean | undefined;
|
|
1900
1848
|
readonly transition?: string | boolean | {
|
|
1901
1849
|
name?: string | undefined;
|
|
@@ -2056,7 +2004,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2056
2004
|
readonly persistentMessages?: boolean | undefined;
|
|
2057
2005
|
readonly errorMessages?: string | string[] | undefined;
|
|
2058
2006
|
readonly maxErrors?: string | number | undefined;
|
|
2059
|
-
readonly readonly?: boolean | undefined;
|
|
2060
2007
|
readonly rules?: (import("../../composable").TValidationResult | ((value: any) => import("../../composable").TValidationResult) | ((value: any) => PromiseLike<import("../../composable").TValidationResult>) | {
|
|
2061
2008
|
then: <TResult1 = import("../../composable").TValidationResult, TResult2 = never>(onfulfilled?: ((value: import("../../composable").TValidationResult) => TResult1 | PromiseLike<TResult1>) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null | undefined) => PromiseLike<TResult1 | TResult2>;
|
|
2062
2009
|
})[] | undefined;
|
|
@@ -2193,10 +2140,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2193
2140
|
type: PropType<boolean>;
|
|
2194
2141
|
default: boolean;
|
|
2195
2142
|
}, "default" | "type"> & {
|
|
2196
|
-
/**
|
|
2197
|
-
* Событие при фокусе
|
|
2198
|
-
* @type { boolean }
|
|
2199
|
-
*/
|
|
2200
2143
|
type: PropType<boolean>;
|
|
2201
2144
|
default: boolean;
|
|
2202
2145
|
};
|
|
@@ -2204,6 +2147,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2204
2147
|
type: PropType<boolean>;
|
|
2205
2148
|
default: boolean;
|
|
2206
2149
|
};
|
|
2150
|
+
readonly: {
|
|
2151
|
+
type: PropType<boolean>;
|
|
2152
|
+
default: boolean;
|
|
2153
|
+
};
|
|
2154
|
+
disabled: {
|
|
2155
|
+
type: PropType<boolean>;
|
|
2156
|
+
default: boolean;
|
|
2157
|
+
};
|
|
2207
2158
|
focused: {
|
|
2208
2159
|
type: PropType<boolean>;
|
|
2209
2160
|
default: boolean;
|
|
@@ -2239,22 +2190,19 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2239
2190
|
};
|
|
2240
2191
|
appendIcon: {
|
|
2241
2192
|
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" | "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" | "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">;
|
|
2242
|
-
default: undefined;
|
|
2243
|
-
* Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
|
|
2244
|
-
*/
|
|
2193
|
+
default: undefined;
|
|
2245
2194
|
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" | "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" | "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;
|
|
2246
2195
|
};
|
|
2247
|
-
disabled: {
|
|
2248
|
-
type: PropType<boolean>;
|
|
2249
|
-
default: boolean;
|
|
2250
|
-
};
|
|
2251
2196
|
error: {
|
|
2252
2197
|
type: PropType<boolean>;
|
|
2253
2198
|
default: boolean;
|
|
2254
2199
|
};
|
|
2255
2200
|
errorMessages: {
|
|
2256
2201
|
type: PropType<string | string[]>;
|
|
2257
|
-
default: () => never[];
|
|
2202
|
+
default: () => never[]; /**
|
|
2203
|
+
* Событие при фокусе
|
|
2204
|
+
* @type { boolean }
|
|
2205
|
+
*/
|
|
2258
2206
|
};
|
|
2259
2207
|
maxErrors: {
|
|
2260
2208
|
type: PropType<string | number>;
|
|
@@ -2264,10 +2212,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2264
2212
|
type: PropType<string | undefined>;
|
|
2265
2213
|
default: undefined;
|
|
2266
2214
|
};
|
|
2267
|
-
readonly: {
|
|
2268
|
-
type: PropType<boolean>;
|
|
2269
|
-
default: boolean;
|
|
2270
|
-
};
|
|
2271
2215
|
rules: {
|
|
2272
2216
|
type: PropType<import("../../composable").TValidationRule[]>;
|
|
2273
2217
|
default: () => never[];
|
|
@@ -2332,12 +2276,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2332
2276
|
};
|
|
2333
2277
|
prependInnerIcon: {
|
|
2334
2278
|
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" | "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" | "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">;
|
|
2335
|
-
default: undefined;
|
|
2279
|
+
default: undefined; /**
|
|
2280
|
+
* Событие при изменении значения (v-model)
|
|
2281
|
+
* @type { any }
|
|
2282
|
+
*/
|
|
2336
2283
|
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" | "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" | "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;
|
|
2337
2284
|
};
|
|
2338
2285
|
appendInnerIcon: {
|
|
2339
2286
|
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" | "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" | "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">;
|
|
2340
|
-
default: undefined;
|
|
2287
|
+
default: undefined; /**
|
|
2288
|
+
* Событие при вводе значения в поле
|
|
2289
|
+
* @type { string }
|
|
2290
|
+
*/
|
|
2341
2291
|
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" | "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" | "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;
|
|
2342
2292
|
};
|
|
2343
2293
|
type: {
|
|
@@ -2383,10 +2333,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2383
2333
|
type: PropType<string | string[]>;
|
|
2384
2334
|
default: string;
|
|
2385
2335
|
}, "default" | "type"> & {
|
|
2386
|
-
/**
|
|
2387
|
-
* Событие при фокусе
|
|
2388
|
-
* @type { boolean }
|
|
2389
|
-
*/
|
|
2390
2336
|
type: PropType<NonNullable<string | string[]>>;
|
|
2391
2337
|
default: NonNullable<string | string[]>;
|
|
2392
2338
|
};
|
|
@@ -2418,10 +2364,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2418
2364
|
type: PropType<boolean>;
|
|
2419
2365
|
default: boolean;
|
|
2420
2366
|
}, "default" | "type"> & {
|
|
2421
|
-
/**
|
|
2422
|
-
* Событие при фокусе
|
|
2423
|
-
* @type { boolean }
|
|
2424
|
-
*/
|
|
2425
2367
|
type: PropType<boolean>;
|
|
2426
2368
|
default: boolean;
|
|
2427
2369
|
};
|
|
@@ -2463,6 +2405,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2463
2405
|
menu: boolean | undefined;
|
|
2464
2406
|
prependIcon: "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" | "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" | "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";
|
|
2465
2407
|
appendIcon: "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" | "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" | "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";
|
|
2408
|
+
readonly: boolean;
|
|
2466
2409
|
loading: boolean;
|
|
2467
2410
|
transition: string | boolean | (import("vue").TransitionProps & {
|
|
2468
2411
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
@@ -2474,7 +2417,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2474
2417
|
persistentMessages: boolean;
|
|
2475
2418
|
errorMessages: string | string[];
|
|
2476
2419
|
maxErrors: string | number;
|
|
2477
|
-
readonly: boolean;
|
|
2478
2420
|
rules: import("../../composable").TValidationRule[];
|
|
2479
2421
|
modelValue: any;
|
|
2480
2422
|
validateOn: "input" | "blur" | "submit";
|