@factoringplus/pl-components-pack-v3 1.8.14-pre-01 → 1.8.15-pre-01-dropdown

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.
@@ -18,6 +18,7 @@ interface IPlDialogPlusProps {
18
18
  overlayClass?: string;
19
19
  dialogClass?: string;
20
20
  manualClose?: boolean;
21
+ calendar?: boolean;
21
22
  }
22
23
  declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPlDialogPlusProps>, {
23
24
  modelValue: boolean;
@@ -34,6 +35,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
34
35
  overlayClass: string;
35
36
  dialogClass: string;
36
37
  manualClose: boolean;
38
+ calendar: boolean;
37
39
  }>, {
38
40
  closeModal: () => void;
39
41
  }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -54,6 +56,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
54
56
  overlayClass: string;
55
57
  dialogClass: string;
56
58
  manualClose: boolean;
59
+ calendar: boolean;
57
60
  }>>> & {
58
61
  "onUpdate:modelValue"?: (...args: any[]) => any;
59
62
  "onClose-modal"?: (...args: any[]) => any;
@@ -72,6 +75,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
72
75
  overlayClass: string;
73
76
  dialogClass: string;
74
77
  manualClose: boolean;
78
+ calendar: boolean;
75
79
  }, {}>, {
76
80
  header?(_: {
77
81
  touchstart: () => void;
@@ -38,7 +38,6 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
38
38
  symbolsCountSearch: string | number;
39
39
  disableMarkerBottom: boolean;
40
40
  errors: import('async-validator').ValidateError[];
41
- offsets: string;
42
41
  loadingSuggestions: boolean;
43
42
  }, {}>;
44
43
  export default _default;
@@ -47,7 +47,6 @@ declare interface IDropdownProps {
47
47
  id: string;
48
48
  helpertext: string;
49
49
  errors: ValidateError[];
50
- offsets: string;
51
50
  loadingSuggestions: boolean;
52
51
  query: string;
53
52
  symbolsCountSearch: number | string;
@@ -57,5 +56,7 @@ declare interface IDropdownProps {
57
56
  selectedValue: IOption;
58
57
  defaultDropText: string;
59
58
  noData: string;
59
+ inputElement: HTMLElement;
60
+ idProp: string;
60
61
  }
61
62
  export { IOption, IAutocompleteProps, IDropdownProps, IAutocompleteDefaultProps };
@@ -21,7 +21,6 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
21
21
  changeOpen: (...args: any[]) => void;
22
22
  "update:isOpen": (...args: any[]) => void;
23
23
  "update:dateValue": (...args: any[]) => void;
24
- closePickerOnMobile: (...args: any[]) => void;
25
24
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IWrapperRangeProps>, {
26
25
  modelValue: () => any[];
27
26
  isOpen: boolean;
@@ -37,15 +36,14 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
37
36
  onChangeOpen?: (...args: any[]) => any;
38
37
  "onUpdate:isOpen"?: (...args: any[]) => any;
39
38
  "onUpdate:dateValue"?: (...args: any[]) => any;
40
- onClosePickerOnMobile?: (...args: any[]) => any;
41
39
  }, {
42
40
  modelValue: string[];
43
41
  dateValue: string;
44
42
  isOpen: boolean;
45
- periods: boolean;
46
- periodOptions: string[];
47
43
  idProp: string;
48
44
  mobile: boolean;
45
+ periods: boolean;
46
+ periodOptions: string[];
49
47
  monthSwitch: boolean;
50
48
  yearSwitch: boolean;
51
49
  }, {}>;
@@ -32,7 +32,7 @@ declare interface IPickerRangeProps extends IDefaultPickerProps {
32
32
  declare interface IDefaultWrapperProps {
33
33
  isOpen: boolean;
34
34
  dateValue: string;
35
- idProp: string;
35
+ idProp?: string;
36
36
  mobile?: boolean;
37
37
  inputElement?: HTMLElement;
38
38
  monthSwitch?: boolean;
@@ -28,7 +28,6 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
28
28
  helpertext: string;
29
29
  options: IOption[];
30
30
  errors: import('async-validator').ValidateError[];
31
- offsets: string;
32
31
  }, {}>;
33
32
  export default _default;
34
33
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -25,12 +25,13 @@ declare interface ISelectProps {
25
25
  }
26
26
  declare interface IDropdownProps {
27
27
  modelValue: IOption[];
28
- offsets: string;
29
28
  focus: boolean;
30
29
  id: string;
31
30
  helpertext: string;
32
31
  errors: ValidateError[];
33
32
  options: IOption[];
34
33
  buttons: boolean;
34
+ idProp: string;
35
+ inputElement: HTMLElement;
35
36
  }
36
37
  export { IDropdownProps, IOption, ISelectProps };
@@ -2,7 +2,6 @@ import { IDropdownProps, IOption } from '../types';
2
2
 
3
3
  declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDropdownProps>, {
4
4
  modelValue: string;
5
- offsets: string;
6
5
  focus: boolean;
7
6
  id: string;
8
7
  helpertext: string;
@@ -12,7 +11,6 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
12
11
  "select-value": (...args: any[]) => void;
13
12
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDropdownProps>, {
14
13
  modelValue: string;
15
- offsets: string;
16
14
  focus: boolean;
17
15
  id: string;
18
16
  helpertext: string;
@@ -26,7 +24,6 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
26
24
  helpertext: string;
27
25
  options: IOption[];
28
26
  errors: import('async-validator').ValidateError[];
29
- offsets: string;
30
27
  }, {}>;
31
28
  export default _default;
32
29
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -29,12 +29,13 @@ declare interface ISelectProps {
29
29
  teleport?: boolean;
30
30
  }
31
31
  declare interface IDropdownProps {
32
- offsets: string;
33
32
  focus: boolean;
34
33
  id: string;
35
34
  helpertext: string;
36
35
  errors: ValidateError[];
37
36
  options: IOption[];
38
37
  selectedValue: any;
38
+ inputElement: HTMLElement;
39
+ idProp: string;
39
40
  }
40
41
  export { IDropdownProps, IOption, ISelectProps };
@@ -0,0 +1,45 @@
1
+ interface IDropdownProps {
2
+ modelValue: boolean;
3
+ idProp: string;
4
+ inputElement?: HTMLElement;
5
+ mobile?: boolean;
6
+ select?: boolean;
7
+ }
8
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDropdownProps>, {
9
+ modelValue: boolean;
10
+ mobile: boolean;
11
+ select: boolean;
12
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDropdownProps>, {
13
+ modelValue: boolean;
14
+ mobile: boolean;
15
+ select: boolean;
16
+ }>>>, {
17
+ select: boolean;
18
+ modelValue: boolean;
19
+ mobile: boolean;
20
+ }, {}>, {
21
+ default?(_: {}): any;
22
+ }>;
23
+ export default _default;
24
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
25
+ type __VLS_TypePropsToRuntimeProps<T> = {
26
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
27
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
28
+ } : {
29
+ type: import('vue').PropType<T[K]>;
30
+ required: true;
31
+ };
32
+ };
33
+ type __VLS_WithDefaults<P, D> = {
34
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
35
+ default: D[K];
36
+ }> : P[K];
37
+ };
38
+ type __VLS_Prettify<T> = {
39
+ [K in keyof T]: T[K];
40
+ } & {};
41
+ type __VLS_WithTemplateSlots<T, S> = T & {
42
+ new (): {
43
+ $slots: S;
44
+ };
45
+ };