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

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