@factoringplus/pl-components-pack-v3 1.0.9-pre-01 → 1.0.9-pre-02

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 (24) hide show
  1. package/README.md +17 -17
  2. package/dist/components/pl-autocomplete/components/pl-autocomplete-dropdown.vue.d.ts +1 -1
  3. package/dist/components/pl-autocomplete/pl-autocompete.vue.d.ts +9 -9
  4. package/dist/components/pl-autocomplete/types/index.d.ts +5 -17
  5. package/dist/components/pl-checkbox-plus/pl-checkbox-plus.vue.d.ts +1 -1
  6. package/dist/components/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts +3 -3
  7. package/dist/components/pl-date-picker-plus/pl-date-picker-range-plus/pl-date-picker-range-plus.vue.d.ts +3 -3
  8. package/dist/components/pl-dialog/pl-dialog.stories.d.ts +42 -42
  9. package/dist/components/pl-dialog/pl-dialog.vue.d.ts +2 -2
  10. package/dist/components/pl-icon/types/iconsType.d.ts +1 -1
  11. package/dist/components/pl-option/pl-option.vue.d.ts +1 -1
  12. package/dist/components/pl-radio/pl-radio.vue.d.ts +1 -1
  13. package/dist/components/pl-scrollbar/pl-scrollbar.vue.d.ts +1 -5
  14. package/dist/components/pl-select-plus/pl-select-plus.vue.d.ts +5 -5
  15. package/dist/components/pl-switch/pl-switch.vue.d.ts +1 -1
  16. package/dist/components/pl-upload-plus/pl-upload-plus.vue.d.ts +1 -1
  17. package/dist/pl-components-pack-v3.es.js +9586 -9796
  18. package/dist/pl-components-pack-v3.umd.js +23 -23
  19. package/dist/style.css +1 -1
  20. package/package.json +1 -2
  21. package/dist/components/pl-autocomplete/components/pl-default.vue.d.ts +0 -60
  22. package/dist/components/pl-dialog/pl-dialog-plus.stories.d.ts +0 -1154
  23. package/dist/components/pl-dialog/pl-dialog-plus.vue.d.ts +0 -82
  24. package/dist/components/pl-link/pl-link.vue.d.ts +0 -48
package/README.md CHANGED
@@ -1,17 +1,17 @@
1
- # Библиотека компонентов Vue 3
2
-
3
- ## Установка
4
-
5
- ```bash
6
- npm i @factoringplus/pl-components-pack-v3
7
- ```
8
-
9
- ### Добавление компонентов в проект
10
-
11
- ```bash
12
- // src/main.js
13
- import components from '@factoringplus/pl-components-pack-v3';
14
- import '@factoringplus/pl-components-pack-v3/dist/style.css';
15
-
16
- app.use(components)
17
- ```
1
+ # Библиотека компонентов Vue 3
2
+
3
+ ## Установка
4
+
5
+ ```bash
6
+ npm i @factoringplus/pl-components-pack-v3
7
+ ```
8
+
9
+ ### Добавление компонентов в проект
10
+
11
+ ```bash
12
+ // src/main.js
13
+ import components from '@factoringplus/pl-components-pack-v3';
14
+ import '@factoringplus/pl-components-pack-v3/dist/style.css';
15
+
16
+ app.use(components)
17
+ ```
@@ -30,11 +30,11 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
30
30
  }, {
31
31
  id: string;
32
32
  focus: boolean;
33
- query: string;
34
33
  helpertext: string;
35
34
  errors: import("async-validator").ValidateError[];
36
35
  offsets: string;
37
36
  loadingSuggestions: boolean;
37
+ query: string;
38
38
  symbolsCountSearch: number;
39
39
  suggestionList: IOption[];
40
40
  disableMarkerBottom: boolean;
@@ -1,6 +1,6 @@
1
1
  import type { IOption, IAutocompleteProps } from './types';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IAutocompleteProps>, {
3
- modelValue: IOption;
3
+ modelValue: string;
4
4
  prop: string;
5
5
  placeholder: string;
6
6
  width: string;
@@ -25,7 +25,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
25
25
  fetchDadata: (...args: any[]) => void;
26
26
  changeValue: (...args: any[]) => void;
27
27
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IAutocompleteProps>, {
28
- modelValue: IOption;
28
+ modelValue: string;
29
29
  prop: string;
30
30
  placeholder: string;
31
31
  width: string;
@@ -52,12 +52,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
52
52
  }, {
53
53
  label: string;
54
54
  disabled: boolean;
55
- modelValue: IOption;
56
- prop: string;
57
- placeholder: string;
58
- clearable: boolean;
59
- leftIcon: import("../pl-icon").TIcon;
60
- memoryBlur: boolean;
61
55
  helpertext: string;
62
56
  symbolsCountSearch: number;
63
57
  suggestionList: IOption[];
@@ -65,10 +59,16 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
65
59
  uniqKey: string;
66
60
  defaultDropText: string;
67
61
  noData: string;
68
- rightIcon: import("../pl-icon").TIcon;
62
+ leftIcon: string;
63
+ rightIcon: string;
69
64
  width: string;
65
+ modelValue: string | number | IOption | null;
66
+ prop: string;
67
+ placeholder: string;
70
68
  optional: string;
71
69
  tooltip: string;
70
+ clearable: boolean;
71
+ memoryBlur: boolean;
72
72
  teleport: boolean;
73
73
  }, {}>;
74
74
  export default _default;
@@ -1,24 +1,12 @@
1
1
  import type { ValidateError } from 'async-validator';
2
- import type { TIcon } from '../../pl-icon/types';
3
2
  declare interface IOption {
4
3
  value: string;
5
4
  bottomText?: string;
6
5
  disabled?: boolean;
7
6
  data?: boolean | object;
8
7
  }
9
- declare interface IAutocompleteDefaultProps {
10
- modelValue: string;
11
- prop?: string;
12
- placeholder?: string;
13
- id: string;
14
- disabled?: boolean;
15
- clearable?: boolean;
16
- showError: number;
17
- leftIcon: TIcon;
18
- memoryBlur?: boolean;
19
- }
20
8
  declare interface IAutocompleteProps {
21
- modelValue: IOption;
9
+ modelValue: string | number | IOption | null;
22
10
  suggestionList: IOption[];
23
11
  prop?: string;
24
12
  placeholder?: string;
@@ -27,8 +15,8 @@ declare interface IAutocompleteProps {
27
15
  optional?: string;
28
16
  label?: string;
29
17
  tooltip?: string;
30
- leftIcon?: TIcon;
31
- rightIcon?: TIcon;
18
+ leftIcon?: string;
19
+ rightIcon?: string;
32
20
  disabled?: boolean;
33
21
  clearable?: boolean;
34
22
  symbolsCountSearch?: number;
@@ -51,8 +39,8 @@ declare interface IDropdownProps {
51
39
  suggestionList: IOption[];
52
40
  disableMarkerBottom: boolean;
53
41
  uniqKey: string;
54
- selectedValue: IOption;
42
+ selectedValue: string | number | IOption | null;
55
43
  defaultDropText: string;
56
44
  noData: string;
57
45
  }
58
- export { IOption, IAutocompleteProps, IDropdownProps, IAutocompleteDefaultProps };
46
+ export { IOption, IAutocompleteProps, IDropdownProps };
@@ -58,8 +58,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
58
58
  label: string;
59
59
  disabled: boolean;
60
60
  size: string;
61
- modelValue: boolean;
62
61
  description: string;
62
+ modelValue: boolean;
63
63
  isIndeterminate: boolean;
64
64
  }, {}>, {
65
65
  default?(_: {}): any;
@@ -59,14 +59,14 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
59
59
  }, {
60
60
  label: string;
61
61
  disabled: boolean;
62
+ helpertext: string;
63
+ width: string;
62
64
  modelValue: string | null;
63
65
  prop: string;
64
66
  placeholder: string;
65
- clearable: boolean;
66
- helpertext: string;
67
- width: string;
68
67
  optional: string;
69
68
  tooltip: string;
69
+ clearable: boolean;
70
70
  monthSwitch: boolean;
71
71
  yearSwitch: boolean;
72
72
  disabledDate: Function;
@@ -66,14 +66,14 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
66
66
  }, {
67
67
  label: string;
68
68
  disabled: boolean;
69
+ helpertext: string;
70
+ width: string;
69
71
  modelValue: string[] | null;
70
72
  prop: string;
71
73
  placeholder: string;
72
- clearable: boolean;
73
- helpertext: string;
74
- width: string;
75
74
  optional: string;
76
75
  tooltip: string;
76
+ clearable: boolean;
77
77
  periods: boolean;
78
78
  monthSwitch: boolean;
79
79
  yearSwitch: boolean;
@@ -5,14 +5,14 @@ export declare const PlDialogStory: () => {
5
5
  $: import("vue").ComponentInternalInstance;
6
6
  $data: {};
7
7
  $props: {
8
- padding?: string | undefined;
8
+ customClass?: string | undefined;
9
9
  modelValue?: boolean | undefined;
10
10
  showHeader?: boolean | undefined;
11
11
  showGrabber?: boolean | undefined;
12
12
  widthThis?: string | undefined;
13
+ padding?: string | undefined;
13
14
  headerPadding?: string | undefined;
14
15
  showClose?: boolean | undefined;
15
- customClass?: string | undefined;
16
16
  slide?: boolean | undefined;
17
17
  simple?: boolean | undefined;
18
18
  disabledTeleport?: boolean | undefined;
@@ -81,7 +81,7 @@ export declare const PlDialogStory: () => {
81
81
  $emit: ((event: "update:modelValue", ...args: any[]) => void) & ((event: "changeVisibleModalValue", ...args: any[]) => void);
82
82
  $el: any;
83
83
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
84
- padding: {
84
+ customClass: {
85
85
  type: import("vue").PropType<string>;
86
86
  default: string;
87
87
  };
@@ -102,6 +102,10 @@ export declare const PlDialogStory: () => {
102
102
  type: import("vue").PropType<string>;
103
103
  default: string;
104
104
  };
105
+ padding: {
106
+ type: import("vue").PropType<string>;
107
+ default: string;
108
+ };
105
109
  headerPadding: {
106
110
  type: import("vue").PropType<string>;
107
111
  default: string;
@@ -110,10 +114,6 @@ export declare const PlDialogStory: () => {
110
114
  type: import("vue").PropType<boolean>;
111
115
  default: boolean;
112
116
  };
113
- customClass: {
114
- type: import("vue").PropType<string>;
115
- default: string;
116
- };
117
117
  slide: {
118
118
  type: import("vue").PropType<boolean>;
119
119
  default: boolean;
@@ -152,14 +152,14 @@ export declare const PlDialogStory: () => {
152
152
  "update:modelValue": (...args: any[]) => void;
153
153
  changeVisibleModalValue: (...args: any[]) => void;
154
154
  }, string, {
155
- padding: string;
155
+ customClass: string;
156
156
  modelValue: boolean;
157
157
  showHeader: boolean;
158
158
  showGrabber: boolean;
159
159
  widthThis: string;
160
+ padding: string;
160
161
  headerPadding: string;
161
162
  showClose: boolean;
162
- customClass: string;
163
163
  slide: boolean;
164
164
  simple: boolean;
165
165
  disabledTeleport: boolean;
@@ -188,7 +188,7 @@ export declare const PlDialogStory: () => {
188
188
  $nextTick: typeof import("vue").nextTick;
189
189
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
190
190
  } & Readonly<import("vue").ExtractPropTypes<{
191
- padding: {
191
+ customClass: {
192
192
  type: import("vue").PropType<string>;
193
193
  default: string;
194
194
  };
@@ -209,6 +209,10 @@ export declare const PlDialogStory: () => {
209
209
  type: import("vue").PropType<string>;
210
210
  default: string;
211
211
  };
212
+ padding: {
213
+ type: import("vue").PropType<string>;
214
+ default: string;
215
+ };
212
216
  headerPadding: {
213
217
  type: import("vue").PropType<string>;
214
218
  default: string;
@@ -217,10 +221,6 @@ export declare const PlDialogStory: () => {
217
221
  type: import("vue").PropType<boolean>;
218
222
  default: boolean;
219
223
  };
220
- customClass: {
221
- type: import("vue").PropType<string>;
222
- default: string;
223
- };
224
224
  slide: {
225
225
  type: import("vue").PropType<boolean>;
226
226
  default: boolean;
@@ -260,7 +260,7 @@ export declare const PlDialogStory: () => {
260
260
  __isTeleport?: undefined;
261
261
  __isSuspense?: undefined;
262
262
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
263
- padding: {
263
+ customClass: {
264
264
  type: import("vue").PropType<string>;
265
265
  default: string;
266
266
  };
@@ -281,6 +281,10 @@ export declare const PlDialogStory: () => {
281
281
  type: import("vue").PropType<string>;
282
282
  default: string;
283
283
  };
284
+ padding: {
285
+ type: import("vue").PropType<string>;
286
+ default: string;
287
+ };
284
288
  headerPadding: {
285
289
  type: import("vue").PropType<string>;
286
290
  default: string;
@@ -289,10 +293,6 @@ export declare const PlDialogStory: () => {
289
293
  type: import("vue").PropType<boolean>;
290
294
  default: boolean;
291
295
  };
292
- customClass: {
293
- type: import("vue").PropType<string>;
294
- default: string;
295
- };
296
296
  slide: {
297
297
  type: import("vue").PropType<boolean>;
298
298
  default: boolean;
@@ -331,14 +331,14 @@ export declare const PlDialogStory: () => {
331
331
  "update:modelValue": (...args: any[]) => void;
332
332
  changeVisibleModalValue: (...args: any[]) => void;
333
333
  }, string, {
334
- padding: string;
334
+ customClass: string;
335
335
  modelValue: boolean;
336
336
  showHeader: boolean;
337
337
  showGrabber: boolean;
338
338
  widthThis: string;
339
+ padding: string;
339
340
  headerPadding: string;
340
341
  showClose: boolean;
341
- customClass: string;
342
342
  slide: boolean;
343
343
  simple: boolean;
344
344
  disabledTeleport: boolean;
@@ -594,14 +594,14 @@ declare const _default: {
594
594
  $: import("vue").ComponentInternalInstance;
595
595
  $data: {};
596
596
  $props: {
597
- padding?: string | undefined;
597
+ customClass?: string | undefined;
598
598
  modelValue?: boolean | undefined;
599
599
  showHeader?: boolean | undefined;
600
600
  showGrabber?: boolean | undefined;
601
601
  widthThis?: string | undefined;
602
+ padding?: string | undefined;
602
603
  headerPadding?: string | undefined;
603
604
  showClose?: boolean | undefined;
604
- customClass?: string | undefined;
605
605
  slide?: boolean | undefined;
606
606
  simple?: boolean | undefined;
607
607
  disabledTeleport?: boolean | undefined;
@@ -670,7 +670,7 @@ declare const _default: {
670
670
  $emit: ((event: "update:modelValue", ...args: any[]) => void) & ((event: "changeVisibleModalValue", ...args: any[]) => void);
671
671
  $el: any;
672
672
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
673
- padding: {
673
+ customClass: {
674
674
  type: import("vue").PropType<string>;
675
675
  default: string;
676
676
  };
@@ -691,6 +691,10 @@ declare const _default: {
691
691
  type: import("vue").PropType<string>;
692
692
  default: string;
693
693
  };
694
+ padding: {
695
+ type: import("vue").PropType<string>;
696
+ default: string;
697
+ };
694
698
  headerPadding: {
695
699
  type: import("vue").PropType<string>;
696
700
  default: string;
@@ -699,10 +703,6 @@ declare const _default: {
699
703
  type: import("vue").PropType<boolean>;
700
704
  default: boolean;
701
705
  };
702
- customClass: {
703
- type: import("vue").PropType<string>;
704
- default: string;
705
- };
706
706
  slide: {
707
707
  type: import("vue").PropType<boolean>;
708
708
  default: boolean;
@@ -741,14 +741,14 @@ declare const _default: {
741
741
  "update:modelValue": (...args: any[]) => void;
742
742
  changeVisibleModalValue: (...args: any[]) => void;
743
743
  }, string, {
744
- padding: string;
744
+ customClass: string;
745
745
  modelValue: boolean;
746
746
  showHeader: boolean;
747
747
  showGrabber: boolean;
748
748
  widthThis: string;
749
+ padding: string;
749
750
  headerPadding: string;
750
751
  showClose: boolean;
751
- customClass: string;
752
752
  slide: boolean;
753
753
  simple: boolean;
754
754
  disabledTeleport: boolean;
@@ -777,7 +777,7 @@ declare const _default: {
777
777
  $nextTick: typeof import("vue").nextTick;
778
778
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
779
779
  } & Readonly<import("vue").ExtractPropTypes<{
780
- padding: {
780
+ customClass: {
781
781
  type: import("vue").PropType<string>;
782
782
  default: string;
783
783
  };
@@ -798,6 +798,10 @@ declare const _default: {
798
798
  type: import("vue").PropType<string>;
799
799
  default: string;
800
800
  };
801
+ padding: {
802
+ type: import("vue").PropType<string>;
803
+ default: string;
804
+ };
801
805
  headerPadding: {
802
806
  type: import("vue").PropType<string>;
803
807
  default: string;
@@ -806,10 +810,6 @@ declare const _default: {
806
810
  type: import("vue").PropType<boolean>;
807
811
  default: boolean;
808
812
  };
809
- customClass: {
810
- type: import("vue").PropType<string>;
811
- default: string;
812
- };
813
813
  slide: {
814
814
  type: import("vue").PropType<boolean>;
815
815
  default: boolean;
@@ -849,7 +849,7 @@ declare const _default: {
849
849
  __isTeleport?: undefined;
850
850
  __isSuspense?: undefined;
851
851
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
852
- padding: {
852
+ customClass: {
853
853
  type: import("vue").PropType<string>;
854
854
  default: string;
855
855
  };
@@ -870,6 +870,10 @@ declare const _default: {
870
870
  type: import("vue").PropType<string>;
871
871
  default: string;
872
872
  };
873
+ padding: {
874
+ type: import("vue").PropType<string>;
875
+ default: string;
876
+ };
873
877
  headerPadding: {
874
878
  type: import("vue").PropType<string>;
875
879
  default: string;
@@ -878,10 +882,6 @@ declare const _default: {
878
882
  type: import("vue").PropType<boolean>;
879
883
  default: boolean;
880
884
  };
881
- customClass: {
882
- type: import("vue").PropType<string>;
883
- default: string;
884
- };
885
885
  slide: {
886
886
  type: import("vue").PropType<boolean>;
887
887
  default: boolean;
@@ -920,14 +920,14 @@ declare const _default: {
920
920
  "update:modelValue": (...args: any[]) => void;
921
921
  changeVisibleModalValue: (...args: any[]) => void;
922
922
  }, string, {
923
- padding: string;
923
+ customClass: string;
924
924
  modelValue: boolean;
925
925
  showHeader: boolean;
926
926
  showGrabber: boolean;
927
927
  widthThis: string;
928
+ padding: string;
928
929
  headerPadding: string;
929
930
  showClose: boolean;
930
- customClass: string;
931
931
  slide: boolean;
932
932
  simple: boolean;
933
933
  disabledTeleport: boolean;
@@ -57,14 +57,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
57
57
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
58
58
  onChangeVisibleModalValue?: ((...args: any[]) => any) | undefined;
59
59
  }, {
60
- padding: string;
60
+ customClass: string;
61
61
  modelValue: boolean;
62
62
  showHeader: boolean;
63
63
  showGrabber: boolean;
64
64
  widthThis: string;
65
+ padding: string;
65
66
  headerPadding: string;
66
67
  showClose: boolean;
67
- customClass: string;
68
68
  slide: boolean;
69
69
  simple: boolean;
70
70
  disabledTeleport: boolean;
@@ -2,4 +2,4 @@ export declare type TIconProps = {
2
2
  name: TIcon;
3
3
  color?: string | '';
4
4
  };
5
- export declare type TIcon = '' | 'Close16' | 'User20' | 'Group20' | 'Edit20' | 'BlankPan20' | 'Support20' | 'HandKey20' | 'Lock20' | 'Connection20' | 'Picture20' | 'Ruble20' | 'Document20' | 'Clip20' | 'Bell20' | 'USB20' | 'Layers20' | 'BlankKey20' | 'BlankChat20' | 'BlankCheck20' | 'BlankLock20' | 'Calendar20' | 'MailCheck20' | 'Mail20' | 'HandTop20' | 'HandRight20' | 'Pin20' | 'Rotate20' | 'Search20' | 'ArrowTop20' | 'ArrowRight20' | 'ArrowLeft20' | 'ArrowBottom20' | 'Settings20' | 'Chart20' | 'Exit20' | 'Warning20' | 'WarningTwo20' | 'WarningThree20' | 'CircleCheck20' | 'Question20' | 'Library20' | 'Loader20' | 'Share20' | 'Saved20' | 'CloudDownload20' | 'Bin20' | 'Eye20' | 'EyeCrossed20' | 'Chat20' | 'Bell20' | 'DotsHorizontal20' | 'DotsVertical20' | 'Scheduled20' | 'Dashboard20' | 'Clock20' | 'Box20' | 'Sort20' | 'SortTwo20' | 'Filter20' | 'Grid20' | 'Hub20' | 'GridTwo20' | 'Home20' | 'Key20' | 'Bulb20' | 'Attachment20' | 'Download20' | 'Link20' | 'Copy20' | 'Telegram20' | 'SortThree20' | 'Plus20' | 'Minus20' | 'Close20' | 'Check20' | 'Scroll20' | 'Print20' | 'Send20' | 'Block20' | 'Star20' | 'Share20' | 'Sticker20' | 'ChevronDoubleLeft20' | 'Cube20' | 'Menu20' | 'AlertFill20' | 'Main20' | 'Wallet20' | 'Truck20' | 'Percent20' | 'Shield20' | 'ChevronDown20' | 'ChevronUp20' | 'ChevronLeft20' | 'ChevronRight20' | 'CreditCard20' | 'Zap20' | 'User24' | 'Group24' | 'Edit24' | 'BlankPan24' | 'Support24' | 'HandKey24' | 'Lock24' | 'Connection24' | 'Picture24' | 'Ruble24' | 'Document24' | 'Clip24' | 'Bell24' | 'USB24' | 'Layers24' | 'BlankKey24' | 'BlankChat24' | 'BlankCheck24' | 'BlankLock24' | 'Calendar24' | 'MailCheck24' | 'Mail24' | 'HandTop24' | 'HandRight24' | 'Pin24' | 'Rotate24' | 'Search24' | 'ArrowTop24' | 'ArrowRight24' | 'ArrowLeft24' | 'ArrowBottom24' | 'Settings24' | 'Chart24' | 'Exit24' | 'Warning24' | 'WarningTwo24' | 'WarningThree24' | 'CircleCheck24' | 'Question24' | 'Library24' | 'Loader24' | 'Share24' | 'Saved24' | 'CloudDownload24' | 'Bin24' | 'Eye24' | 'EyeCrossed24' | 'Chat24' | 'Bell24' | 'DotsHorizontal24' | 'DotsVertical24' | 'Scheduled24' | 'Dashboard24' | 'Clock24' | 'Box24' | 'Sort24' | 'SortTwo24' | 'Filter24' | 'Grid24' | 'Hub24' | 'GridTwo24' | 'Home24' | 'Key24' | 'Bulb24' | 'Attachment24' | 'Download24' | 'Link24' | 'Copy24' | 'Telegram24' | 'SortThree24' | 'Plus24' | 'Minus24' | 'Close24' | 'Check24' | 'Scroll24' | 'Print24' | 'Send24' | 'Block24' | 'Star24' | 'Share24' | 'Sticker24' | 'ChevronDoubleLeft24' | 'ChevronDoubleRight24' | 'Cube24' | 'Menu24' | 'AlertFill24' | 'Main24' | 'Wallet24' | 'Truck24' | 'Percent24' | 'Shield24' | 'ChevronDown24' | 'ChevronUp24' | 'ChevronLeft24' | 'ChevronRight24' | 'Word24' | 'Exel24' | 'PDF24' | 'JPG24' | 'PNG24' | 'Info24' | 'WB20' | 'Ozon20' | 'Yandex20' | 'WB24' | 'Ozon24' | 'Yandex24' | 'WB40' | 'Ozon40' | 'Yandex40' | 'WB56' | 'Ozon56' | 'Yandex56';
5
+ export declare type TIcon = '' | 'User20' | 'Group20' | 'Edit20' | 'BlankPan20' | 'Support20' | 'HandKey20' | 'Lock20' | 'Connection20' | 'Picture20' | 'Ruble20' | 'Document20' | 'Clip20' | 'Bell20' | 'USB20' | 'Layers20' | 'BlankKey20' | 'BlankChat20' | 'BlankCheck20' | 'BlankLock20' | 'Calendar20' | 'MailCheck20' | 'Mail20' | 'HandTop20' | 'HandRight20' | 'Pin20' | 'Rotate20' | 'Search20' | 'ArrowTop20' | 'ArrowRight20' | 'ArrowLeft20' | 'ArrowBottom20' | 'Settings20' | 'Chart20' | 'Exit20' | 'Warning20' | 'WarningTwo20' | 'WarningThree20' | 'CircleCheck20' | 'Question20' | 'Library20' | 'Loader20' | 'Share20' | 'Saved20' | 'CloudDownload20' | 'Bin20' | 'Eye20' | 'EyeCrossed20' | 'Chat20' | 'Bell20' | 'DotsHorizontal20' | 'DotsVertical20' | 'Scheduled20' | 'Dashboard20' | 'Clock20' | 'Box20' | 'Sort20' | 'SortTwo20' | 'Filter20' | 'Grid20' | 'Hub20' | 'GridTwo20' | 'Home20' | 'Key20' | 'Bulb20' | 'Attachment20' | 'Download20' | 'Link20' | 'Copy20' | 'Telegram20' | 'SortThree20' | 'Plus20' | 'Minus20' | 'Close20' | 'Check20' | 'Scroll20' | 'Print20' | 'Send20' | 'Block20' | 'Star20' | 'Share20' | 'Sticker20' | 'ChevronDoubleLeft20' | 'Cube20' | 'Menu20' | 'AlertFill20' | 'Main20' | 'Wallet20' | 'Truck20' | 'Percent20' | 'Shield20' | 'ChevronDown20' | 'ChevronUp20' | 'ChevronLeft20' | 'ChevronRight20' | 'CreditCard20' | 'Zap20' | 'User24' | 'Group24' | 'Edit24' | 'BlankPan24' | 'Support24' | 'HandKey24' | 'Lock24' | 'Connection24' | 'Picture24' | 'Ruble24' | 'Document24' | 'Clip24' | 'Bell24' | 'USB24' | 'Layers24' | 'BlankKey24' | 'BlankChat24' | 'BlankCheck24' | 'BlankLock24' | 'Calendar24' | 'MailCheck24' | 'Mail24' | 'HandTop24' | 'HandRight24' | 'Pin24' | 'Rotate24' | 'Search24' | 'ArrowTop24' | 'ArrowRight24' | 'ArrowLeft24' | 'ArrowBottom24' | 'Settings24' | 'Chart24' | 'Exit24' | 'Warning24' | 'WarningTwo24' | 'WarningThree24' | 'CircleCheck24' | 'Question24' | 'Library24' | 'Loader24' | 'Share24' | 'Saved24' | 'CloudDownload24' | 'Bin24' | 'Eye24' | 'EyeCrossed24' | 'Chat24' | 'Bell24' | 'DotsHorizontal24' | 'DotsVertical24' | 'Scheduled24' | 'Dashboard24' | 'Clock24' | 'Box24' | 'Sort24' | 'SortTwo24' | 'Filter24' | 'Grid24' | 'Hub24' | 'GridTwo24' | 'Home24' | 'Key24' | 'Bulb24' | 'Attachment24' | 'Download24' | 'Link24' | 'Copy24' | 'Telegram24' | 'SortThree24' | 'Plus24' | 'Minus24' | 'Close24' | 'Check24' | 'Scroll24' | 'Print24' | 'Send24' | 'Block24' | 'Star24' | 'Share24' | 'Sticker24' | 'ChevronDoubleLeft24' | 'ChevronDoubleRight24' | 'Cube24' | 'Menu24' | 'AlertFill24' | 'Main24' | 'Wallet24' | 'Truck24' | 'Percent24' | 'Shield24' | 'ChevronDown24' | 'ChevronUp24' | 'ChevronLeft24' | 'ChevronRight24' | 'Word24' | 'Exel24' | 'PDF24' | 'JPG24' | 'PNG24' | 'Info24' | 'WB20' | 'Ozon20' | 'Yandex20' | 'WB24' | 'Ozon24' | 'Yandex24' | 'WB40' | 'Ozon40' | 'Yandex40' | 'WB56' | 'Ozon56' | 'Yandex56';
@@ -107,8 +107,8 @@ declare const _default: import("vue").DefineComponent<{
107
107
  }>>, {
108
108
  label: string;
109
109
  disabled: boolean;
110
- leftIcon: string;
111
110
  disableMarkerBottom: boolean;
111
+ leftIcon: string;
112
112
  leftIconColor: string;
113
113
  rightIcon: string;
114
114
  rightIconColor: string;
@@ -63,7 +63,7 @@ declare const _default: import("vue").DefineComponent<{
63
63
  label: string;
64
64
  disabled: boolean;
65
65
  size: string;
66
- modelValue: boolean;
67
66
  description: string;
67
+ modelValue: boolean;
68
68
  }, {}>;
69
69
  export default _default;
@@ -4,7 +4,6 @@ interface IProps {
4
4
  wrapClass?: string;
5
5
  viewClass?: string;
6
6
  hideScrollThumb?: boolean;
7
- offsetRight?: string;
8
7
  }
9
8
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
10
9
  maxHeight: string;
@@ -12,7 +11,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
12
11
  wrapClass: string;
13
12
  viewClass: string;
14
13
  hideScrollThumb: boolean;
15
- offsetRight: string;
16
14
  }>, {
17
15
  setScrollTop: (val: number) => void;
18
16
  setScrollLeft: (val: number) => void;
@@ -26,17 +24,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
26
24
  wrapClass: string;
27
25
  viewClass: string;
28
26
  hideScrollThumb: boolean;
29
- offsetRight: string;
30
27
  }>>> & {
31
28
  onScroll?: ((...args: any[]) => any) | undefined;
32
29
  onWheel?: ((...args: any[]) => any) | undefined;
33
30
  }, {
34
- maxHeight: string | number;
35
31
  height: string | number;
32
+ maxHeight: string | number;
36
33
  wrapClass: string;
37
34
  viewClass: string;
38
35
  hideScrollThumb: boolean;
39
- offsetRight: string;
40
36
  }, {}>, {
41
37
  default?(_: {}): any;
42
38
  }>;
@@ -42,16 +42,16 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
42
42
  }, {
43
43
  label: string;
44
44
  disabled: boolean;
45
- modelValue: string | number | IOption | null;
46
- prop: string;
47
- placeholder: string;
48
- clearable: boolean;
49
- leftIcon: string;
50
45
  helpertext: string;
46
+ leftIcon: string;
51
47
  rightIcon: string;
52
48
  width: string;
49
+ modelValue: string | number | IOption | null;
50
+ prop: string;
51
+ placeholder: string;
53
52
  optional: string;
54
53
  tooltip: string;
54
+ clearable: boolean;
55
55
  teleport: boolean;
56
56
  options: IOption[];
57
57
  showDescription: boolean;
@@ -41,7 +41,7 @@ declare const _default: import("vue").DefineComponent<{
41
41
  }, {
42
42
  label: string;
43
43
  disabled: boolean;
44
- modelValue: boolean;
45
44
  description: string;
45
+ modelValue: boolean;
46
46
  }, {}>;
47
47
  export default _default;
@@ -64,9 +64,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
64
64
  }, {
65
65
  title: string;
66
66
  disabled: boolean;
67
+ description: string;
67
68
  modelValue: (File | TUnloadedFile)[];
68
69
  prop: string;
69
- description: string;
70
70
  optional: string;
71
71
  tooltip: string;
72
72
  accept: string;