@central-design-system/components 3.0.0-beta.13 → 3.0.0-beta.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/dist/cds.css +1 -1
  2. package/dist/cds.es.js +409 -399
  3. package/dist/cds.umd.js +2 -2
  4. package/dist/components/CdsAutocomplete/CdsAutocomplete.vue.d.ts +25 -25
  5. package/dist/components/CdsBreadcrumbs/CdsBreadcrumbsItem.vue.d.ts +3 -3
  6. package/dist/components/CdsButton/CdsButton.vue.d.ts +17 -17
  7. package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +64 -64
  8. package/dist/components/CdsContainer/CdsContainer.vue.d.ts +18 -18
  9. package/dist/components/CdsContentSwitcher/CdsContentSwitcherItem.vue.d.ts +26 -26
  10. package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +64 -64
  11. package/dist/components/CdsExpandablePanel/CdsExpandablePanel.vue.d.ts +13 -13
  12. package/dist/components/CdsExpandablePanel/CdsExpandablePanelTitle.vue.d.ts +10 -10
  13. package/dist/components/CdsExpandablePanel/composable/expandablePanelTitleProps.d.ts +2 -2
  14. package/dist/components/CdsIcon/CdsIcon.vue.d.ts +3 -3
  15. package/dist/components/CdsInput/CdsInput.vue.d.ts +10 -10
  16. package/dist/components/CdsInput/CdsInputDescription.vue.d.ts +3 -3
  17. package/dist/components/CdsInput/CdsInputLabel.vue.d.ts +3 -3
  18. package/dist/components/CdsLink/CdsLink.vue.d.ts +3 -3
  19. package/dist/components/CdsList/CdsListGroup.vue.d.ts +7 -7
  20. package/dist/components/CdsList/CdsListItem.vue.d.ts +10 -10
  21. package/dist/components/CdsNotification/CdsNotification.vue.d.ts +16 -16
  22. package/dist/components/CdsNotification/CdsNotificationAlert.vue.d.ts +16 -16
  23. package/dist/components/CdsNotification/composable/notification.d.ts +3 -3
  24. package/dist/components/CdsRadioButton/CdsRadio.vue.d.ts +10 -10
  25. package/dist/components/CdsSelect/CdsSelect.vue.d.ts +34 -34
  26. package/dist/components/CdsSlideGroup/CdsSlideGroup.vue.d.ts +18 -18
  27. package/dist/components/CdsStatus/CdsStatus.vue.d.ts +3 -3
  28. package/dist/components/CdsSteps/CdsSteps.vue.d.ts +18 -18
  29. package/dist/components/CdsSteps/CdsStepsItem.vue.d.ts +3 -3
  30. package/dist/components/CdsTable/CdsTable.vue.d.ts +24 -6
  31. package/dist/components/CdsTable/components/Table/InternalTable.d.ts +24 -6
  32. package/dist/components/CdsTable/components/TableProvider.d.ts +24 -6
  33. package/dist/components/CdsTable/composable/table.d.ts +18 -2
  34. package/dist/components/CdsTabs/CdsTab.vue.d.ts +13 -13
  35. package/dist/components/CdsTabs/CdsTabs.vue.d.ts +18 -18
  36. package/dist/components/CdsTag/CdsTag.vue.d.ts +3 -3
  37. package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +34 -34
  38. package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +34 -34
  39. package/dist/components/CdsTooltip/CdsTooltip.vue.d.ts +3 -3
  40. package/dist/components/CdsUploader/CdsUploader.vue.d.ts +25 -25
  41. package/dist/components/CdsUploader/components/AjaxUploader.d.ts +15 -15
  42. package/dist/components/CdsUploader/components/UploadList/ListItem.d.ts +15 -15
  43. package/dist/components/CdsUploader/components/UploadList/UploadList.d.ts +15 -15
  44. package/dist/components/CdsUploader/composable/upload.d.ts +6 -6
  45. package/dist/components/CdsUploader/index.d.ts +1 -0
  46. package/dist/composable/field.d.ts +2 -2
  47. package/dist/composable/filter.d.ts +22 -0
  48. package/dist/composable/icon.d.ts +2 -2
  49. package/dist/composable/select.d.ts +1 -1
  50. package/dist/composable/text.d.ts +2 -2
  51. package/package.json +1 -1
  52. package/src/scss/themes/b2b/tokens.json +104 -104
  53. package/src/scss/themes/cds/tokens.json +104 -104
  54. package/src/scss/themes/index.ts +1 -1
@@ -112,7 +112,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
112
112
  theme: string;
113
113
  id: string;
114
114
  location: NonNullable<import("../../utils").TAnchor>;
115
- text: string;
115
+ text: string | number;
116
116
  modelValue: boolean;
117
117
  eager: boolean;
118
118
  transition: NonNullable<string | boolean | (import("vue").TransitionProps & {
@@ -336,7 +336,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
336
336
  default: undefined;
337
337
  };
338
338
  text: {
339
- type: import("vue").PropType<string>;
339
+ type: import("vue").PropType<string | number>;
340
340
  default: undefined;
341
341
  };
342
342
  id: {
@@ -432,6 +432,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
432
432
  type: import("vue").PropType<(width: number, column: NTable.NColumn.IColumn<any>) => void>;
433
433
  default: undefined;
434
434
  };
435
+ onExpand: {
436
+ type: import("vue").PropType<(expanded: boolean, record: any) => void>;
437
+ default: undefined;
438
+ };
439
+ onExpandedRowsChange: {
440
+ type: import("vue").PropType<(expandedKeys: NTable.TKey[]) => void>;
441
+ default: undefined;
442
+ };
435
443
  }, {
436
444
  table: import("vue").Ref<any>;
437
445
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -567,7 +575,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
567
575
  theme: string;
568
576
  id: string;
569
577
  location: NonNullable<import("../../utils").TAnchor>;
570
- text: string;
578
+ text: string | number;
571
579
  modelValue: boolean;
572
580
  eager: boolean;
573
581
  transition: NonNullable<string | boolean | (import("vue").TransitionProps & {
@@ -791,7 +799,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
791
799
  default: undefined;
792
800
  };
793
801
  text: {
794
- type: import("vue").PropType<string>;
802
+ type: import("vue").PropType<string | number>;
795
803
  default: undefined;
796
804
  };
797
805
  id: {
@@ -887,6 +895,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
887
895
  type: import("vue").PropType<(width: number, column: NTable.NColumn.IColumn<any>) => void>;
888
896
  default: undefined;
889
897
  };
898
+ onExpand: {
899
+ type: import("vue").PropType<(expanded: boolean, record: any) => void>;
900
+ default: undefined;
901
+ };
902
+ onExpandedRowsChange: {
903
+ type: import("vue").PropType<(expandedKeys: NTable.TKey[]) => void>;
904
+ default: undefined;
905
+ };
890
906
  }>> & {
891
907
  onChange?: ((pagination: NTable.NPagination.IProps, filters: Record<string, NTable.TFilterValue | null>, sorter: NTable.ISorterResult<any> | NTable.ISorterResult<any>[], extra: NTable.ICurrentData<any>) => any) | undefined;
892
908
  onResizeColumn?: ((width: number, column: NTable.NColumn.IColumn<any>) => any) | undefined;
@@ -928,7 +944,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
928
944
  theme: string;
929
945
  id: string;
930
946
  location: NonNullable<import("../../utils").TAnchor>;
931
- text: string;
947
+ text: string | number;
932
948
  modelValue: boolean;
933
949
  eager: boolean;
934
950
  transition: NonNullable<string | boolean | (import("vue").TransitionProps & {
@@ -1152,7 +1168,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1152
1168
  default: undefined;
1153
1169
  };
1154
1170
  text: {
1155
- type: import("vue").PropType<string>;
1171
+ type: import("vue").PropType<string | number>;
1156
1172
  default: undefined;
1157
1173
  };
1158
1174
  id: {
@@ -1184,5 +1200,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1184
1200
  transformCellText: NTable.NCell.TTransformCellText<any>;
1185
1201
  getPopupContainer: NTable.NCustomize.TGetPopupContainer;
1186
1202
  onResizeColumn: (width: number, column: NTable.NColumn.IColumn<any>) => void;
1203
+ onExpand: (expanded: boolean, record: any) => void;
1204
+ onExpandedRowsChange: (expandedKeys: NTable.TKey[]) => void;
1187
1205
  }>;
1188
1206
  export default _sfc_main;
@@ -119,7 +119,7 @@ declare const _default: import("vue").DefineComponent<{
119
119
  theme: string;
120
120
  id: string;
121
121
  location: NonNullable<import('../../../../utils').TAnchor>;
122
- text: string;
122
+ text: string | number;
123
123
  modelValue: boolean;
124
124
  eager: boolean;
125
125
  transition: NonNullable<string | boolean | (import("vue").TransitionProps & {
@@ -341,7 +341,7 @@ declare const _default: import("vue").DefineComponent<{
341
341
  default: undefined;
342
342
  };
343
343
  text: {
344
- type: PropType<string>;
344
+ type: PropType<string | number>;
345
345
  default: undefined;
346
346
  };
347
347
  id: {
@@ -437,6 +437,14 @@ declare const _default: import("vue").DefineComponent<{
437
437
  type: PropType<(width: number, column: NTable.NColumn.IColumn<any>) => void>;
438
438
  default: undefined;
439
439
  };
440
+ onExpand: {
441
+ type: PropType<(expanded: boolean, record: any) => void>;
442
+ default: undefined;
443
+ };
444
+ onExpandedRowsChange: {
445
+ type: PropType<(expandedKeys: NTable.TKey[]) => void>;
446
+ default: undefined;
447
+ };
440
448
  }, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("expand" | "update:expandedRowKeys" | "change" | "expandedRowsChange" | "updateInternalRefs")[], "expand" | "change" | "expandedRowsChange" | "update:expandedRowKeys" | "updateInternalRefs", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
441
449
  internalHooks: StringConstructor[];
442
450
  transformColumns: {
@@ -556,7 +564,7 @@ declare const _default: import("vue").DefineComponent<{
556
564
  theme: string;
557
565
  id: string;
558
566
  location: NonNullable<import('../../../../utils').TAnchor>;
559
- text: string;
567
+ text: string | number;
560
568
  modelValue: boolean;
561
569
  eager: boolean;
562
570
  transition: NonNullable<string | boolean | (import("vue").TransitionProps & {
@@ -778,7 +786,7 @@ declare const _default: import("vue").DefineComponent<{
778
786
  default: undefined;
779
787
  };
780
788
  text: {
781
- type: PropType<string>;
789
+ type: PropType<string | number>;
782
790
  default: undefined;
783
791
  };
784
792
  id: {
@@ -874,6 +882,14 @@ declare const _default: import("vue").DefineComponent<{
874
882
  type: PropType<(width: number, column: NTable.NColumn.IColumn<any>) => void>;
875
883
  default: undefined;
876
884
  };
885
+ onExpand: {
886
+ type: PropType<(expanded: boolean, record: any) => void>;
887
+ default: undefined;
888
+ };
889
+ onExpandedRowsChange: {
890
+ type: PropType<(expandedKeys: NTable.TKey[]) => void>;
891
+ default: undefined;
892
+ };
877
893
  }>> & {
878
894
  onChange?: ((...args: any[]) => any) | undefined;
879
895
  onExpand?: ((...args: any[]) => any) | undefined;
@@ -914,7 +930,7 @@ declare const _default: import("vue").DefineComponent<{
914
930
  theme: string;
915
931
  id: string;
916
932
  location: NonNullable<import('../../../../utils').TAnchor>;
917
- text: string;
933
+ text: string | number;
918
934
  modelValue: boolean;
919
935
  eager: boolean;
920
936
  transition: NonNullable<string | boolean | (import("vue").TransitionProps & {
@@ -1136,7 +1152,7 @@ declare const _default: import("vue").DefineComponent<{
1136
1152
  default: undefined;
1137
1153
  };
1138
1154
  text: {
1139
- type: PropType<string>;
1155
+ type: PropType<string | number>;
1140
1156
  default: undefined;
1141
1157
  };
1142
1158
  id: {
@@ -1168,5 +1184,7 @@ declare const _default: import("vue").DefineComponent<{
1168
1184
  transformCellText: NTable.NCell.TTransformCellText<any>;
1169
1185
  getPopupContainer: NTable.NCustomize.TGetPopupContainer;
1170
1186
  onResizeColumn: (width: number, column: NTable.NColumn.IColumn<any>) => void;
1187
+ onExpand: (expanded: boolean, record: any) => void;
1188
+ onExpandedRowsChange: (expandedKeys: NTable.TKey[]) => void;
1171
1189
  }>;
1172
1190
  export default _default;
@@ -117,7 +117,7 @@ declare const _default: import("vue").DefineComponent<{
117
117
  theme: string;
118
118
  id: string;
119
119
  location: NonNullable<import('../../../utils').TAnchor>;
120
- text: string;
120
+ text: string | number;
121
121
  modelValue: boolean;
122
122
  eager: boolean;
123
123
  transition: NonNullable<string | boolean | (import("vue").TransitionProps & {
@@ -339,7 +339,7 @@ declare const _default: import("vue").DefineComponent<{
339
339
  default: undefined;
340
340
  };
341
341
  text: {
342
- type: PropType<string>;
342
+ type: PropType<string | number>;
343
343
  default: undefined;
344
344
  };
345
345
  id: {
@@ -435,6 +435,14 @@ declare const _default: import("vue").DefineComponent<{
435
435
  type: PropType<(width: number, column: NTable.NColumn.IColumn<any>) => void>;
436
436
  default: undefined;
437
437
  };
438
+ onExpand: {
439
+ type: PropType<(expanded: boolean, record: any) => void>;
440
+ default: undefined;
441
+ };
442
+ onExpandedRowsChange: {
443
+ type: PropType<(expandedKeys: NTable.TKey[]) => void>;
444
+ default: undefined;
445
+ };
438
446
  }, {
439
447
  selectedKeySet: import("vue").Ref<Set<NTable.TKey>>;
440
448
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -559,7 +567,7 @@ declare const _default: import("vue").DefineComponent<{
559
567
  theme: string;
560
568
  id: string;
561
569
  location: NonNullable<import('../../../utils').TAnchor>;
562
- text: string;
570
+ text: string | number;
563
571
  modelValue: boolean;
564
572
  eager: boolean;
565
573
  transition: NonNullable<string | boolean | (import("vue").TransitionProps & {
@@ -781,7 +789,7 @@ declare const _default: import("vue").DefineComponent<{
781
789
  default: undefined;
782
790
  };
783
791
  text: {
784
- type: PropType<string>;
792
+ type: PropType<string | number>;
785
793
  default: undefined;
786
794
  };
787
795
  id: {
@@ -877,6 +885,14 @@ declare const _default: import("vue").DefineComponent<{
877
885
  type: PropType<(width: number, column: NTable.NColumn.IColumn<any>) => void>;
878
886
  default: undefined;
879
887
  };
888
+ onExpand: {
889
+ type: PropType<(expanded: boolean, record: any) => void>;
890
+ default: undefined;
891
+ };
892
+ onExpandedRowsChange: {
893
+ type: PropType<(expandedKeys: NTable.TKey[]) => void>;
894
+ default: undefined;
895
+ };
880
896
  }>> & {
881
897
  onChange?: ((pagination: NTable.NPagination.IProps, filters: Record<string, NTable.TFilterValue | null>, sorter: NTable.ISorterResult<any> | NTable.ISorterResult<any>[], extra: NTable.ICurrentData<any>) => any) | undefined;
882
898
  onResizeColumn?: ((width: number, column: NTable.NColumn.IColumn<any>) => any) | undefined;
@@ -918,7 +934,7 @@ declare const _default: import("vue").DefineComponent<{
918
934
  theme: string;
919
935
  id: string;
920
936
  location: NonNullable<import('../../../utils').TAnchor>;
921
- text: string;
937
+ text: string | number;
922
938
  modelValue: boolean;
923
939
  eager: boolean;
924
940
  transition: NonNullable<string | boolean | (import("vue").TransitionProps & {
@@ -1140,7 +1156,7 @@ declare const _default: import("vue").DefineComponent<{
1140
1156
  default: undefined;
1141
1157
  };
1142
1158
  text: {
1143
- type: PropType<string>;
1159
+ type: PropType<string | number>;
1144
1160
  default: undefined;
1145
1161
  };
1146
1162
  id: {
@@ -1172,5 +1188,7 @@ declare const _default: import("vue").DefineComponent<{
1172
1188
  transformCellText: NTable.NCell.TTransformCellText<any>;
1173
1189
  getPopupContainer: NTable.NCustomize.TGetPopupContainer;
1174
1190
  onResizeColumn: (width: number, column: NTable.NColumn.IColumn<any>) => void;
1191
+ onExpand: (expanded: boolean, record: any) => void;
1192
+ onExpandedRowsChange: (expandedKeys: NTable.TKey[]) => void;
1175
1193
  }>;
1176
1194
  export default _default;
@@ -115,6 +115,8 @@ export declare const makeTableProps: <Defaults extends {
115
115
  getPopupContainer?: unknown;
116
116
  onChange?: unknown;
117
117
  onResizeColumn?: unknown;
118
+ onExpand?: unknown;
119
+ onExpandedRowsChange?: unknown;
118
120
  } = {}>(defaults?: Defaults | undefined) => import('../../../utils').AppendDefault<{
119
121
  /**
120
122
  * Идентификатор таблицы
@@ -267,7 +269,7 @@ export declare const makeTableProps: <Defaults extends {
267
269
  theme: string;
268
270
  id: string;
269
271
  location: NonNullable<import('../../../utils').TAnchor>;
270
- text: string;
272
+ text: string | number;
271
273
  modelValue: boolean;
272
274
  eager: boolean;
273
275
  transition: NonNullable<string | boolean | (import("vue").TransitionProps & {
@@ -493,7 +495,7 @@ export declare const makeTableProps: <Defaults extends {
493
495
  default: undefined;
494
496
  };
495
497
  text: {
496
- type: PropType<string>;
498
+ type: PropType<string | number>;
497
499
  default: undefined;
498
500
  };
499
501
  id: {
@@ -649,6 +651,20 @@ export declare const makeTableProps: <Defaults extends {
649
651
  type: PropType<(width: number, column: NTable.NColumn.IColumn) => void>;
650
652
  default: undefined;
651
653
  };
654
+ /**
655
+ * Событие при раскрытии строки
656
+ */
657
+ onExpand: {
658
+ type: PropType<(expanded: boolean, record: NTable.TDefaultRecord) => void>;
659
+ default: undefined;
660
+ };
661
+ /**
662
+ * Событие при изменении раскрытых строк
663
+ */
664
+ onExpandedRowsChange: {
665
+ type: PropType<(expandedKeys: NTable.TKey[]) => void>;
666
+ default: undefined;
667
+ };
652
668
  }, Defaults>;
653
669
  export declare function useLazyKVMap<RecordType>(dataRef: Ref<readonly RecordType[]>, childrenColumnNameRef: Ref<string>, getRowKeyRef: Ref<NTable.NRow.TGetRowKey<RecordType>>): {
654
670
  getRecordByKey: (key: NTable.TKey) => NonNullable<RecordType>;
@@ -20,14 +20,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
20
20
  validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
21
21
  };
22
22
  prependIcon: {
23
- type: PropType<"search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
23
+ type: PropType<"search" | "link" | "list" | "filters" | "add" | "administrator" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
24
24
  default: undefined;
25
- validator: (value: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
25
+ validator: (value: "search" | "link" | "list" | "filters" | "add" | "administrator" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
26
26
  };
27
27
  appendIcon: {
28
- type: PropType<"search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
28
+ type: PropType<"search" | "link" | "list" | "filters" | "add" | "administrator" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
29
29
  default: undefined;
30
- validator: (value: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
30
+ validator: (value: "search" | "link" | "list" | "filters" | "add" | "administrator" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
31
31
  };
32
32
  direction: {
33
33
  type: PropType<"horizontal" | "vertical">;
@@ -36,7 +36,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
36
36
  validator: (value: "horizontal" | "vertical") => boolean;
37
37
  };
38
38
  text: {
39
- type: PropType<string>;
39
+ type: PropType<string | number>;
40
40
  default: undefined;
41
41
  };
42
42
  value: {
@@ -78,14 +78,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
78
78
  validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
79
79
  };
80
80
  prependIcon: {
81
- type: PropType<"search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
81
+ type: PropType<"search" | "link" | "list" | "filters" | "add" | "administrator" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
82
82
  default: undefined;
83
- validator: (value: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
83
+ validator: (value: "search" | "link" | "list" | "filters" | "add" | "administrator" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
84
84
  };
85
85
  appendIcon: {
86
- type: PropType<"search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
86
+ type: PropType<"search" | "link" | "list" | "filters" | "add" | "administrator" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
87
87
  default: undefined;
88
- validator: (value: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
88
+ validator: (value: "search" | "link" | "list" | "filters" | "add" | "administrator" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
89
89
  };
90
90
  direction: {
91
91
  type: PropType<"horizontal" | "vertical">;
@@ -94,7 +94,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
94
94
  validator: (value: "horizontal" | "vertical") => boolean;
95
95
  };
96
96
  text: {
97
- type: PropType<string>;
97
+ type: PropType<string | number>;
98
98
  default: undefined;
99
99
  };
100
100
  value: {
@@ -120,9 +120,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
120
120
  value: any;
121
121
  size: "xs" | "sm" | "md" | "lg" | "xl";
122
122
  disabled: boolean;
123
- text: string;
124
- prependIcon: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
125
- appendIcon: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
123
+ text: string | number;
124
+ prependIcon: "search" | "link" | "list" | "filters" | "add" | "administrator" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
125
+ appendIcon: "search" | "link" | "list" | "filters" | "add" | "administrator" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
126
126
  loading: boolean;
127
127
  readonly: boolean;
128
128
  selectedClass: string;