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

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/components/pl-default.vue.d.ts +60 -0
  4. package/dist/components/pl-autocomplete/pl-autocompete.vue.d.ts +9 -9
  5. package/dist/components/pl-autocomplete/types/index.d.ts +17 -5
  6. package/dist/components/pl-checkbox-plus/pl-checkbox-plus.vue.d.ts +1 -1
  7. package/dist/components/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts +3 -3
  8. package/dist/components/pl-date-picker-plus/pl-date-picker-range-plus/pl-date-picker-range-plus.vue.d.ts +3 -3
  9. package/dist/components/pl-dialog/pl-dialog-plus.stories.d.ts +1154 -0
  10. package/dist/components/pl-dialog/pl-dialog-plus.vue.d.ts +82 -0
  11. package/dist/components/pl-dialog/pl-dialog.stories.d.ts +30 -30
  12. package/dist/components/pl-dialog/pl-dialog.vue.d.ts +1 -1
  13. package/dist/components/pl-icon/types/iconsType.d.ts +1 -1
  14. package/dist/components/pl-link/pl-link.vue.d.ts +48 -0
  15. package/dist/components/pl-option/pl-option.vue.d.ts +1 -1
  16. package/dist/components/pl-radio/pl-radio.vue.d.ts +1 -1
  17. package/dist/components/pl-scrollbar/pl-scrollbar.vue.d.ts +5 -1
  18. package/dist/components/pl-select-plus/pl-select-plus.vue.d.ts +5 -5
  19. package/dist/components/pl-switch/pl-switch.vue.d.ts +1 -1
  20. package/dist/components/pl-upload-plus/pl-upload-plus.vue.d.ts +1 -1
  21. package/dist/pl-components-pack-v3.es.js +9158 -8991
  22. package/dist/pl-components-pack-v3.umd.js +22 -22
  23. package/dist/style.css +1 -1
  24. package/package.json +2 -1
@@ -0,0 +1,82 @@
1
+ interface IPlDialogPlusProps {
2
+ modelValue: boolean;
3
+ beforeClose?: Function;
4
+ width?: string;
5
+ showHeader?: boolean;
6
+ showClose?: boolean;
7
+ disabledTeleport?: boolean;
8
+ closeOnOverlay?: boolean;
9
+ innerScroll?: boolean;
10
+ title?: string;
11
+ subTitle?: string;
12
+ type?: 'standart' | 'status' | 'illustration';
13
+ }
14
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPlDialogPlusProps>, {
15
+ modelValue: boolean;
16
+ width: string;
17
+ showHeader: boolean;
18
+ showClose: boolean;
19
+ disabledTeleport: boolean;
20
+ beforeClose: () => void;
21
+ closeOnOverlay: boolean;
22
+ innerScroll: boolean;
23
+ type: string;
24
+ }>, {
25
+ closeModal: () => void;
26
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
27
+ "update:modelValue": (...args: any[]) => void;
28
+ "close-modal": (...args: any[]) => void;
29
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPlDialogPlusProps>, {
30
+ modelValue: boolean;
31
+ width: string;
32
+ showHeader: boolean;
33
+ showClose: boolean;
34
+ disabledTeleport: boolean;
35
+ beforeClose: () => void;
36
+ closeOnOverlay: boolean;
37
+ innerScroll: boolean;
38
+ type: string;
39
+ }>>> & {
40
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
41
+ "onClose-modal"?: ((...args: any[]) => any) | undefined;
42
+ }, {
43
+ type: "standart" | "status" | "illustration";
44
+ modelValue: boolean;
45
+ width: string;
46
+ showHeader: boolean;
47
+ showClose: boolean;
48
+ disabledTeleport: boolean;
49
+ beforeClose: Function;
50
+ closeOnOverlay: boolean;
51
+ innerScroll: boolean;
52
+ }, {}>, {
53
+ header?(_: {
54
+ touchstart: () => void;
55
+ }): any;
56
+ headerBtns?(_: {}): any;
57
+ default?(_: {}): any;
58
+ footer?(_: {}): any;
59
+ }>;
60
+ export default _default;
61
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
62
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
63
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
64
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
65
+ } : {
66
+ type: import('vue').PropType<T[K]>;
67
+ required: true;
68
+ };
69
+ };
70
+ declare type __VLS_WithDefaults<P, D> = {
71
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
72
+ default: D[K];
73
+ }> : P[K];
74
+ };
75
+ declare type __VLS_Prettify<T> = {
76
+ [K in keyof T]: T[K];
77
+ } & {};
78
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
79
+ new (): {
80
+ $slots: S;
81
+ };
82
+ };
@@ -6,13 +6,13 @@ export declare const PlDialogStory: () => {
6
6
  $data: {};
7
7
  $props: {
8
8
  padding?: string | undefined;
9
- customClass?: string | undefined;
10
9
  modelValue?: boolean | undefined;
11
10
  showHeader?: boolean | undefined;
12
11
  showGrabber?: boolean | undefined;
13
12
  widthThis?: string | undefined;
14
13
  headerPadding?: string | undefined;
15
14
  showClose?: boolean | undefined;
15
+ customClass?: string | undefined;
16
16
  slide?: boolean | undefined;
17
17
  simple?: boolean | undefined;
18
18
  disabledTeleport?: boolean | undefined;
@@ -85,10 +85,6 @@ export declare const PlDialogStory: () => {
85
85
  type: import("vue").PropType<string>;
86
86
  default: string;
87
87
  };
88
- customClass: {
89
- type: import("vue").PropType<string>;
90
- default: string;
91
- };
92
88
  modelValue: {
93
89
  type: import("vue").PropType<boolean>;
94
90
  required: true;
@@ -114,6 +110,10 @@ export declare const PlDialogStory: () => {
114
110
  type: import("vue").PropType<boolean>;
115
111
  default: boolean;
116
112
  };
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;
@@ -153,13 +153,13 @@ export declare const PlDialogStory: () => {
153
153
  changeVisibleModalValue: (...args: any[]) => void;
154
154
  }, string, {
155
155
  padding: string;
156
- customClass: string;
157
156
  modelValue: boolean;
158
157
  showHeader: boolean;
159
158
  showGrabber: boolean;
160
159
  widthThis: string;
161
160
  headerPadding: string;
162
161
  showClose: boolean;
162
+ customClass: string;
163
163
  slide: boolean;
164
164
  simple: boolean;
165
165
  disabledTeleport: boolean;
@@ -192,10 +192,6 @@ export declare const PlDialogStory: () => {
192
192
  type: import("vue").PropType<string>;
193
193
  default: string;
194
194
  };
195
- customClass: {
196
- type: import("vue").PropType<string>;
197
- default: string;
198
- };
199
195
  modelValue: {
200
196
  type: import("vue").PropType<boolean>;
201
197
  required: true;
@@ -221,6 +217,10 @@ export declare const PlDialogStory: () => {
221
217
  type: import("vue").PropType<boolean>;
222
218
  default: boolean;
223
219
  };
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;
@@ -264,10 +264,6 @@ export declare const PlDialogStory: () => {
264
264
  type: import("vue").PropType<string>;
265
265
  default: string;
266
266
  };
267
- customClass: {
268
- type: import("vue").PropType<string>;
269
- default: string;
270
- };
271
267
  modelValue: {
272
268
  type: import("vue").PropType<boolean>;
273
269
  required: true;
@@ -293,6 +289,10 @@ export declare const PlDialogStory: () => {
293
289
  type: import("vue").PropType<boolean>;
294
290
  default: boolean;
295
291
  };
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;
@@ -332,13 +332,13 @@ export declare const PlDialogStory: () => {
332
332
  changeVisibleModalValue: (...args: any[]) => void;
333
333
  }, string, {
334
334
  padding: string;
335
- customClass: string;
336
335
  modelValue: boolean;
337
336
  showHeader: boolean;
338
337
  showGrabber: boolean;
339
338
  widthThis: string;
340
339
  headerPadding: string;
341
340
  showClose: boolean;
341
+ customClass: string;
342
342
  slide: boolean;
343
343
  simple: boolean;
344
344
  disabledTeleport: boolean;
@@ -595,13 +595,13 @@ declare const _default: {
595
595
  $data: {};
596
596
  $props: {
597
597
  padding?: string | undefined;
598
- customClass?: string | undefined;
599
598
  modelValue?: boolean | undefined;
600
599
  showHeader?: boolean | undefined;
601
600
  showGrabber?: boolean | undefined;
602
601
  widthThis?: string | undefined;
603
602
  headerPadding?: string | undefined;
604
603
  showClose?: boolean | undefined;
604
+ customClass?: string | undefined;
605
605
  slide?: boolean | undefined;
606
606
  simple?: boolean | undefined;
607
607
  disabledTeleport?: boolean | undefined;
@@ -674,10 +674,6 @@ declare const _default: {
674
674
  type: import("vue").PropType<string>;
675
675
  default: string;
676
676
  };
677
- customClass: {
678
- type: import("vue").PropType<string>;
679
- default: string;
680
- };
681
677
  modelValue: {
682
678
  type: import("vue").PropType<boolean>;
683
679
  required: true;
@@ -703,6 +699,10 @@ declare const _default: {
703
699
  type: import("vue").PropType<boolean>;
704
700
  default: boolean;
705
701
  };
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;
@@ -742,13 +742,13 @@ declare const _default: {
742
742
  changeVisibleModalValue: (...args: any[]) => void;
743
743
  }, string, {
744
744
  padding: string;
745
- customClass: string;
746
745
  modelValue: boolean;
747
746
  showHeader: boolean;
748
747
  showGrabber: boolean;
749
748
  widthThis: string;
750
749
  headerPadding: string;
751
750
  showClose: boolean;
751
+ customClass: string;
752
752
  slide: boolean;
753
753
  simple: boolean;
754
754
  disabledTeleport: boolean;
@@ -781,10 +781,6 @@ declare const _default: {
781
781
  type: import("vue").PropType<string>;
782
782
  default: string;
783
783
  };
784
- customClass: {
785
- type: import("vue").PropType<string>;
786
- default: string;
787
- };
788
784
  modelValue: {
789
785
  type: import("vue").PropType<boolean>;
790
786
  required: true;
@@ -810,6 +806,10 @@ declare const _default: {
810
806
  type: import("vue").PropType<boolean>;
811
807
  default: boolean;
812
808
  };
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;
@@ -853,10 +853,6 @@ declare const _default: {
853
853
  type: import("vue").PropType<string>;
854
854
  default: string;
855
855
  };
856
- customClass: {
857
- type: import("vue").PropType<string>;
858
- default: string;
859
- };
860
856
  modelValue: {
861
857
  type: import("vue").PropType<boolean>;
862
858
  required: true;
@@ -882,6 +878,10 @@ declare const _default: {
882
878
  type: import("vue").PropType<boolean>;
883
879
  default: boolean;
884
880
  };
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;
@@ -921,13 +921,13 @@ declare const _default: {
921
921
  changeVisibleModalValue: (...args: any[]) => void;
922
922
  }, string, {
923
923
  padding: string;
924
- customClass: string;
925
924
  modelValue: boolean;
926
925
  showHeader: boolean;
927
926
  showGrabber: boolean;
928
927
  widthThis: string;
929
928
  headerPadding: string;
930
929
  showClose: boolean;
930
+ customClass: string;
931
931
  slide: boolean;
932
932
  simple: boolean;
933
933
  disabledTeleport: boolean;
@@ -58,13 +58,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
58
58
  onChangeVisibleModalValue?: ((...args: any[]) => any) | undefined;
59
59
  }, {
60
60
  padding: string;
61
- customClass: string;
62
61
  modelValue: boolean;
63
62
  showHeader: boolean;
64
63
  showGrabber: boolean;
65
64
  widthThis: string;
66
65
  headerPadding: string;
67
66
  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 = '' | '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 = '' | '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';
@@ -0,0 +1,48 @@
1
+ interface IPlLinkProps {
2
+ href?: string;
3
+ disabled?: boolean;
4
+ type?: 'default' | 'success' | 'warning' | 'error' | 'gradient';
5
+ nativeType?: string;
6
+ target?: '_blank' | '_self' | '_parent' | '_top';
7
+ }
8
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPlLinkProps>, {
9
+ href: string;
10
+ disabled: boolean;
11
+ type: string;
12
+ target: string;
13
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPlLinkProps>, {
14
+ href: string;
15
+ disabled: boolean;
16
+ type: string;
17
+ target: string;
18
+ }>>>, {
19
+ type: "default" | "error" | "success" | "warning" | "gradient";
20
+ target: "_blank" | "_self" | "_parent" | "_top";
21
+ href: string;
22
+ disabled: boolean;
23
+ }, {}>, {
24
+ default?(_: {}): any;
25
+ }>;
26
+ export default _default;
27
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };
36
+ declare type __VLS_WithDefaults<P, D> = {
37
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
38
+ default: D[K];
39
+ }> : P[K];
40
+ };
41
+ declare type __VLS_Prettify<T> = {
42
+ [K in keyof T]: T[K];
43
+ } & {};
44
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
45
+ new (): {
46
+ $slots: S;
47
+ };
48
+ };
@@ -107,8 +107,8 @@ declare const _default: import("vue").DefineComponent<{
107
107
  }>>, {
108
108
  label: string;
109
109
  disabled: boolean;
110
- disableMarkerBottom: boolean;
111
110
  leftIcon: string;
111
+ disableMarkerBottom: boolean;
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
- description: string;
67
66
  modelValue: boolean;
67
+ description: string;
68
68
  }, {}>;
69
69
  export default _default;
@@ -4,6 +4,7 @@ interface IProps {
4
4
  wrapClass?: string;
5
5
  viewClass?: string;
6
6
  hideScrollThumb?: boolean;
7
+ offsetRight?: string;
7
8
  }
8
9
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
9
10
  maxHeight: string;
@@ -11,6 +12,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
11
12
  wrapClass: string;
12
13
  viewClass: string;
13
14
  hideScrollThumb: boolean;
15
+ offsetRight: string;
14
16
  }>, {
15
17
  setScrollTop: (val: number) => void;
16
18
  setScrollLeft: (val: number) => void;
@@ -24,15 +26,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
24
26
  wrapClass: string;
25
27
  viewClass: string;
26
28
  hideScrollThumb: boolean;
29
+ offsetRight: string;
27
30
  }>>> & {
28
31
  onScroll?: ((...args: any[]) => any) | undefined;
29
32
  onWheel?: ((...args: any[]) => any) | undefined;
30
33
  }, {
31
- height: string | number;
32
34
  maxHeight: string | number;
35
+ height: string | number;
33
36
  wrapClass: string;
34
37
  viewClass: string;
35
38
  hideScrollThumb: boolean;
39
+ offsetRight: string;
36
40
  }, {}>, {
37
41
  default?(_: {}): any;
38
42
  }>;
@@ -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
- helpertext: string;
46
- leftIcon: string;
47
- rightIcon: string;
48
- width: string;
49
45
  modelValue: string | number | IOption | null;
50
46
  prop: string;
51
47
  placeholder: string;
48
+ clearable: boolean;
49
+ leftIcon: string;
50
+ helpertext: string;
51
+ rightIcon: string;
52
+ width: string;
52
53
  optional: string;
53
54
  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
- description: string;
45
44
  modelValue: boolean;
45
+ description: string;
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;
68
67
  modelValue: (File | TUnloadedFile)[];
69
68
  prop: string;
69
+ description: string;
70
70
  optional: string;
71
71
  tooltip: string;
72
72
  accept: string;