@factoringplus/pl-components-pack-v3 1.8.33-pre-01 → 1.8.33-pre-multiselect

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 (23) hide show
  1. package/dist/{crypto-pro-8f80ffb5.js → crypto-pro-70fa9136.js} +1 -1
  2. package/dist/{crypto-pro-82567ab3.cjs → crypto-pro-9e09348d.cjs} +1 -1
  3. package/dist/entry-3a3f4fbd.cjs +115 -0
  4. package/dist/{entry-7caa8d8e.js → entry-97b00fcf.js} +7496 -7531
  5. package/dist/pl-components-pack-v3.cjs.js +1 -1
  6. package/dist/pl-components-pack-v3.es.js +1 -1
  7. package/dist/src/components/form/pl-autocomplete/pl-autocompete.vue.d.ts +2 -9
  8. package/dist/src/components/form/pl-autocomplete/types/index.d.ts +0 -1
  9. package/dist/src/components/form/pl-date-picker-plus/common/types/index.d.ts +0 -1
  10. package/dist/src/components/form/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts +2 -9
  11. package/dist/src/components/form/pl-date-picker-plus/pl-date-picker-range-plus/pl-date-picker-range-plus.vue.d.ts +2 -9
  12. package/dist/src/components/form/pl-input-plus/index.d.ts +145 -549
  13. package/dist/src/components/form/pl-input-plus/pl-input-plus.vue.d.ts +2 -9
  14. package/dist/src/components/form/pl-input-plus/types/index.d.ts +0 -1
  15. package/dist/src/components/form/pl-multi-select/components/pl-multi-select-dropdown.vue.d.ts +3 -0
  16. package/dist/src/components/form/pl-multi-select/pl-multi-select.vue.d.ts +5 -9
  17. package/dist/src/components/form/pl-multi-select/types/index.d.ts +2 -1
  18. package/dist/src/components/form/pl-select-plus/pl-select-plus.vue.d.ts +2 -9
  19. package/dist/src/components/form/pl-select-plus/types/index.d.ts +0 -1
  20. package/dist/src/components/form/pl-upload-plus/pl-upload-plus.vue.d.ts +2 -10
  21. package/dist/style.css +1 -1
  22. package/package.json +1 -1
  23. package/dist/entry-a86974ac.cjs +0 -115
@@ -1,6 +1,6 @@
1
1
  import { IPlInputPlusProps } from './types';
2
2
 
3
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPlInputPlusProps>, {
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPlInputPlusProps>, {
4
4
  prop: string;
5
5
  modelValue: string;
6
6
  showWordLimit: boolean;
@@ -122,9 +122,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
122
122
  valueRange: {
123
123
  min: number;
124
124
  };
125
- }, {}>, {
126
- "tooltip-text"?(_: {}): any;
127
- }>;
125
+ }, {}>;
128
126
  export default _default;
129
127
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
130
128
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -143,8 +141,3 @@ type __VLS_WithDefaults<P, D> = {
143
141
  type __VLS_Prettify<T> = {
144
142
  [K in keyof T]: T[K];
145
143
  } & {};
146
- type __VLS_WithTemplateSlots<T, S> = T & {
147
- new (): {
148
- $slots: S;
149
- };
150
- };
@@ -39,7 +39,6 @@ export interface IPlInputPlusProps extends IBaseInputProps {
39
39
  autosize?: boolean;
40
40
  minRows?: number;
41
41
  maxRows?: number;
42
- tooltipWidth?: string;
43
42
  }
44
43
  export interface IPlDefaultProps extends IBaseInputProps {
45
44
  id: string;
@@ -7,6 +7,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
7
7
  helpertext: string;
8
8
  errors: () => any[];
9
9
  options: () => any[];
10
+ selectAll: boolean;
10
11
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
12
  reset: (...args: any[]) => void;
12
13
  "update:modelValue": (...args: any[]) => void;
@@ -18,6 +19,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
18
19
  helpertext: string;
19
20
  errors: () => any[];
20
21
  options: () => any[];
22
+ selectAll: boolean;
21
23
  }>>> & {
22
24
  onReset?: (...args: any[]) => any;
23
25
  "onUpdate:modelValue"?: (...args: any[]) => any;
@@ -28,6 +30,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
28
30
  focus: boolean;
29
31
  helpertext: string;
30
32
  errors: import('async-validator').ValidateError[];
33
+ selectAll: boolean;
31
34
  }, {}>;
32
35
  export default _default;
33
36
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,6 +1,6 @@
1
1
  import { IOption, ISelectProps } from './types';
2
2
 
3
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectProps>, {
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectProps>, {
4
4
  modelValue: () => any[];
5
5
  prop: string;
6
6
  placeholder: string;
@@ -16,6 +16,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
16
16
  clearable: boolean;
17
17
  buttons: boolean;
18
18
  teleport: boolean;
19
+ selectAll: boolean;
19
20
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
20
21
  reset: (...args: any[]) => void;
21
22
  "update:modelValue": (...args: any[]) => void;
@@ -36,6 +37,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
36
37
  clearable: boolean;
37
38
  buttons: boolean;
38
39
  teleport: boolean;
40
+ selectAll: boolean;
39
41
  }>>> & {
40
42
  onChange?: (...args: any[]) => any;
41
43
  onReset?: (...args: any[]) => any;
@@ -55,9 +57,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
55
57
  optional: string;
56
58
  tooltip: string;
57
59
  clearable: boolean;
58
- }, {}>, {
59
- "tooltip-text"?(_: {}): any;
60
- }>;
60
+ selectAll: boolean;
61
+ }, {}>;
61
62
  export default _default;
62
63
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
63
64
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -76,8 +77,3 @@ type __VLS_WithDefaults<P, D> = {
76
77
  type __VLS_Prettify<T> = {
77
78
  [K in keyof T]: T[K];
78
79
  } & {};
79
- type __VLS_WithTemplateSlots<T, S> = T & {
80
- new (): {
81
- $slots: S;
82
- };
83
- };
@@ -22,7 +22,7 @@ declare interface ISelectProps {
22
22
  clearable?: boolean;
23
23
  buttons?: boolean;
24
24
  teleport?: boolean;
25
- tooltipWidth?: string;
25
+ selectAll?: boolean;
26
26
  }
27
27
  declare interface IDropdownProps {
28
28
  modelValue: IOption[];
@@ -34,5 +34,6 @@ declare interface IDropdownProps {
34
34
  buttons: boolean;
35
35
  idProp: string;
36
36
  inputElement: HTMLElement;
37
+ selectAll?: boolean;
37
38
  }
38
39
  export { IDropdownProps, IOption, ISelectProps };
@@ -1,6 +1,6 @@
1
1
  import { IOption, ISelectProps } from './types';
2
2
 
3
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectProps>, {
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectProps>, {
4
4
  modelValue: string;
5
5
  prop: string;
6
6
  placeholder: string;
@@ -57,9 +57,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
57
57
  clearable: boolean;
58
58
  showDescription: boolean;
59
59
  account: boolean;
60
- }, {}>, {
61
- "tooltip-text"?(_: {}): any;
62
- }>;
60
+ }, {}>;
63
61
  export default _default;
64
62
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
65
63
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -78,8 +76,3 @@ type __VLS_WithDefaults<P, D> = {
78
76
  type __VLS_Prettify<T> = {
79
77
  [K in keyof T]: T[K];
80
78
  } & {};
81
- type __VLS_WithTemplateSlots<T, S> = T & {
82
- new (): {
83
- $slots: S;
84
- };
85
- };
@@ -28,7 +28,6 @@ declare interface ISelectProps {
28
28
  showDescription?: boolean;
29
29
  account?: boolean;
30
30
  teleport?: boolean;
31
- tooltipWidth?: string;
32
31
  }
33
32
  declare interface IDropdownProps {
34
33
  focus: boolean;
@@ -15,7 +15,6 @@ interface IProps {
15
15
  width?: string;
16
16
  viewMode?: boolean;
17
17
  maxSumFilesSize?: number;
18
- tooltipWidth?: string;
19
18
  }
20
19
  type TError = {
21
20
  dist: boolean;
@@ -27,7 +26,7 @@ type TUnloadedFile = {
27
26
  error?: TError;
28
27
  removable?: boolean;
29
28
  };
30
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
29
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
31
30
  multiple: boolean;
32
31
  accept: string;
33
32
  fileSize: number;
@@ -89,9 +88,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
89
88
  helperText: string;
90
89
  viewMode: boolean;
91
90
  maxSumFilesSize: number;
92
- }, {}>, {
93
- "tooltip-text"?(_: {}): any;
94
- }>;
91
+ }, {}>;
95
92
  export default _default;
96
93
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
97
94
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -110,8 +107,3 @@ type __VLS_WithDefaults<P, D> = {
110
107
  type __VLS_Prettify<T> = {
111
108
  [K in keyof T]: T[K];
112
109
  } & {};
113
- type __VLS_WithTemplateSlots<T, S> = T & {
114
- new (): {
115
- $slots: S;
116
- };
117
- };