@central-design-system/components 3.0.0-alpha.6 → 3.0.0-alpha.7

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.
@@ -52,9 +52,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
52
52
  default: undefined;
53
53
  };
54
54
  /**
55
- * Только иконка
55
+ * Только иконка (prepend-icon)
56
56
  */
57
- iconOnly: {
57
+ icon: {
58
58
  type: PropType<boolean>;
59
59
  default: boolean;
60
60
  };
@@ -127,9 +127,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
127
127
  default: undefined;
128
128
  };
129
129
  /**
130
- * Только иконка
130
+ * Только иконка (prepend-icon)
131
131
  */
132
- iconOnly: {
132
+ icon: {
133
133
  type: PropType<boolean>;
134
134
  default: boolean;
135
135
  };
@@ -143,8 +143,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
143
143
  appearance: "primary" | "secondary" | "transparent";
144
144
  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";
145
145
  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";
146
+ icon: boolean;
146
147
  readonly: boolean;
147
148
  loading: boolean;
148
- iconOnly: boolean;
149
149
  }>;
150
150
  export default _sfc_main;
@@ -36,6 +36,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
36
36
  type: PropType<boolean>;
37
37
  default: boolean;
38
38
  };
39
+ size: {
40
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
41
+ default: string;
42
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
43
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
44
+ };
39
45
  loading: {
40
46
  type: PropType<boolean>;
41
47
  default: boolean;
@@ -92,10 +98,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
92
98
  };
93
99
  errorMessages: {
94
100
  type: PropType<string | string[]>;
95
- default: () => never[]; /**
96
- * Событие при фокусе
97
- * @type { boolean }
98
- */
101
+ default: () => never[];
99
102
  };
100
103
  maxErrors: {
101
104
  type: PropType<string | number>;
@@ -103,7 +106,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
103
106
  };
104
107
  name: {
105
108
  type: PropType<string | undefined>;
106
- default: undefined;
109
+ default: undefined; /**
110
+ * Событие открытия меню
111
+ * @type { boolean }
112
+ */
107
113
  };
108
114
  rules: {
109
115
  type: PropType<import("../../composable").TValidationRule[]>;
@@ -169,18 +175,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
169
175
  };
170
176
  prependInnerIcon: {
171
177
  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">;
172
- default: undefined; /**
173
- * Событие при изменении значения (v-model)
174
- * @type { any }
175
- */
178
+ default: undefined;
176
179
  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
180
  };
178
181
  appendInnerIcon: {
179
182
  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; /**
181
- * Событие при вводе значения в поле
182
- * @type { string }
183
- */
183
+ default: undefined;
184
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;
185
185
  };
186
186
  type: {
@@ -292,6 +292,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
292
292
  isDirty: import("vue").ComputedRef<boolean>;
293
293
  isPure: import("vue").Ref<boolean>;
294
294
  inputRef: import("vue").Ref<import("vue").DefineComponent<{
295
+ size: {
296
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
297
+ default: string;
298
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
299
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
300
+ };
295
301
  loading: {
296
302
  type: PropType<boolean>;
297
303
  default: boolean;
@@ -332,10 +338,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
332
338
  };
333
339
  errorMessages: {
334
340
  type: PropType<string | string[]>;
335
- default: () => never[]; /**
336
- * Событие при фокусе
337
- * @type { boolean }
338
- */
341
+ default: () => never[];
339
342
  };
340
343
  maxErrors: {
341
344
  type: PropType<string | number>;
@@ -343,7 +346,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
343
346
  };
344
347
  name: {
345
348
  type: PropType<string | undefined>;
346
- default: undefined;
349
+ default: undefined; /**
350
+ * Событие открытия меню
351
+ * @type { boolean }
352
+ */
347
353
  };
348
354
  rules: {
349
355
  type: PropType<import("../../composable").TValidationRule[]>;
@@ -409,18 +415,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
409
415
  };
410
416
  prependInnerIcon: {
411
417
  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">;
412
- default: undefined; /**
413
- * Событие при изменении значения (v-model)
414
- * @type { any }
415
- */
418
+ default: undefined;
416
419
  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;
417
420
  };
418
421
  appendInnerIcon: {
419
422
  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; /**
421
- * Событие при вводе значения в поле
422
- * @type { string }
423
- */
423
+ default: undefined;
424
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;
425
425
  };
426
426
  type: {
@@ -462,6 +462,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
462
462
  validationRef: import("vue").Ref<import("vue").DefineComponent<{
463
463
  'onClick:prepend': PropType<(...args: any[]) => any>;
464
464
  'onClick:append': PropType<(...args: any[]) => any>;
465
+ size: {
466
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
467
+ default: string;
468
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
469
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
470
+ };
465
471
  readonly: {
466
472
  type: PropType<boolean>;
467
473
  default: boolean;
@@ -480,10 +486,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
480
486
  };
481
487
  errorMessages: {
482
488
  type: PropType<string | string[]>;
483
- default: () => never[]; /**
484
- * Событие при фокусе
485
- * @type { boolean }
486
- */
489
+ default: () => never[];
487
490
  };
488
491
  maxErrors: {
489
492
  type: PropType<string | number>;
@@ -491,7 +494,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
491
494
  };
492
495
  name: {
493
496
  type: PropType<string | undefined>;
494
- default: undefined;
497
+ default: undefined; /**
498
+ * Событие открытия меню
499
+ * @type { boolean }
500
+ */
495
501
  };
496
502
  rules: {
497
503
  type: PropType<import("../../composable").TValidationRule[]>;
@@ -561,6 +567,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
561
567
  isValid: import("vue").ComputedRef<boolean | null>;
562
568
  validationClasses: import("vue").ComputedRef<Record<string, boolean>>;
563
569
  focusClasses: import("vue").ComputedRef<Record<string, boolean>>;
570
+ sizeClasses: import("vue").ComputedRef<string>;
564
571
  reset: () => void;
565
572
  resetValidation: () => void;
566
573
  validate: () => Promise<string[]>;
@@ -571,6 +578,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
571
578
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
572
579
  'onClick:prepend': PropType<(...args: any[]) => any>;
573
580
  'onClick:append': PropType<(...args: any[]) => any>;
581
+ size: {
582
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
583
+ default: string;
584
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
585
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
586
+ };
574
587
  readonly: {
575
588
  type: PropType<boolean>;
576
589
  default: boolean;
@@ -589,10 +602,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
589
602
  };
590
603
  errorMessages: {
591
604
  type: PropType<string | string[]>;
592
- default: () => never[]; /**
593
- * Событие при фокусе
594
- * @type { boolean }
595
- */
605
+ default: () => never[];
596
606
  };
597
607
  maxErrors: {
598
608
  type: PropType<string | number>;
@@ -600,7 +610,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
600
610
  };
601
611
  name: {
602
612
  type: PropType<string | undefined>;
603
- default: undefined;
613
+ default: undefined; /**
614
+ * Событие открытия меню
615
+ * @type { boolean }
616
+ */
604
617
  };
605
618
  rules: {
606
619
  type: PropType<import("../../composable").TValidationRule[]>;
@@ -665,6 +678,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
665
678
  description: string;
666
679
  disabled: boolean;
667
680
  value: any;
681
+ size: "xs" | "sm" | "md" | "lg" | "xl";
668
682
  error: boolean;
669
683
  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";
670
684
  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";
@@ -689,6 +703,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
689
703
  readonly type?: "number" | "text" | "password" | "email" | "tel" | "url" | undefined;
690
704
  readonly disabled?: boolean | undefined;
691
705
  readonly value?: any;
706
+ readonly size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
692
707
  readonly error?: boolean | undefined;
693
708
  readonly readonly?: boolean | undefined;
694
709
  readonly loading?: boolean | undefined;
@@ -765,6 +780,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
765
780
  'click:control': (event: MouseEvent) => true;
766
781
  'mousedown:control': (event: MouseEvent) => true;
767
782
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
783
+ size: {
784
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
785
+ default: string;
786
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
787
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
788
+ };
768
789
  loading: {
769
790
  type: PropType<boolean>;
770
791
  default: boolean;
@@ -805,10 +826,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
805
826
  };
806
827
  errorMessages: {
807
828
  type: PropType<string | string[]>;
808
- default: () => never[]; /**
809
- * Событие при фокусе
810
- * @type { boolean }
811
- */
829
+ default: () => never[];
812
830
  };
813
831
  maxErrors: {
814
832
  type: PropType<string | number>;
@@ -816,7 +834,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
816
834
  };
817
835
  name: {
818
836
  type: PropType<string | undefined>;
819
- default: undefined;
837
+ default: undefined; /**
838
+ * Событие открытия меню
839
+ * @type { boolean }
840
+ */
820
841
  };
821
842
  rules: {
822
843
  type: PropType<import("../../composable").TValidationRule[]>;
@@ -882,18 +903,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
882
903
  };
883
904
  prependInnerIcon: {
884
905
  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">;
885
- default: undefined; /**
886
- * Событие при изменении значения (v-model)
887
- * @type { any }
888
- */
906
+ default: undefined;
889
907
  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
908
  };
891
909
  appendInnerIcon: {
892
910
  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; /**
894
- * Событие при вводе значения в поле
895
- * @type { string }
896
- */
911
+ default: undefined;
897
912
  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;
898
913
  };
899
914
  type: {
@@ -941,6 +956,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
941
956
  description: string;
942
957
  disabled: boolean;
943
958
  value: any;
959
+ size: "xs" | "sm" | "md" | "lg" | "xl";
944
960
  error: boolean;
945
961
  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";
946
962
  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";
@@ -1842,6 +1858,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1842
1858
  readonly itemChildren?: import("../../composable").TItemKey | undefined;
1843
1859
  readonly itemProps?: import("../../composable").TItemKey | undefined;
1844
1860
  readonly returnObject?: boolean | undefined;
1861
+ readonly size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1845
1862
  readonly error?: boolean | undefined;
1846
1863
  readonly readonly?: boolean | undefined;
1847
1864
  readonly loading?: boolean | undefined;
@@ -2143,6 +2160,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
2143
2160
  type: PropType<boolean>;
2144
2161
  default: boolean;
2145
2162
  };
2163
+ size: {
2164
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
2165
+ default: string;
2166
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
2167
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
2168
+ };
2146
2169
  loading: {
2147
2170
  type: PropType<boolean>;
2148
2171
  default: boolean;
@@ -2199,10 +2222,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2199
2222
  };
2200
2223
  errorMessages: {
2201
2224
  type: PropType<string | string[]>;
2202
- default: () => never[]; /**
2203
- * Событие при фокусе
2204
- * @type { boolean }
2205
- */
2225
+ default: () => never[];
2206
2226
  };
2207
2227
  maxErrors: {
2208
2228
  type: PropType<string | number>;
@@ -2210,7 +2230,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2210
2230
  };
2211
2231
  name: {
2212
2232
  type: PropType<string | undefined>;
2213
- default: undefined;
2233
+ default: undefined; /**
2234
+ * Событие открытия меню
2235
+ * @type { boolean }
2236
+ */
2214
2237
  };
2215
2238
  rules: {
2216
2239
  type: PropType<import("../../composable").TValidationRule[]>;
@@ -2276,18 +2299,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
2276
2299
  };
2277
2300
  prependInnerIcon: {
2278
2301
  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">;
2279
- default: undefined; /**
2280
- * Событие при изменении значения (v-model)
2281
- * @type { any }
2282
- */
2302
+ default: undefined;
2283
2303
  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;
2284
2304
  };
2285
2305
  appendInnerIcon: {
2286
2306
  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">;
2287
- default: undefined; /**
2288
- * Событие при вводе значения в поле
2289
- * @type { string }
2290
- */
2307
+ default: undefined;
2291
2308
  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;
2292
2309
  };
2293
2310
  type: {
@@ -2401,6 +2418,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2401
2418
  itemChildren: import("../../composable").TItemKey;
2402
2419
  itemProps: import("../../composable").TItemKey;
2403
2420
  returnObject: boolean;
2421
+ size: "xs" | "sm" | "md" | "lg" | "xl";
2404
2422
  error: boolean;
2405
2423
  menu: boolean | undefined;
2406
2424
  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";