@factoringplus/pl-components-pack-v3 1.2.12 → 1.2.13-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.
@@ -36,7 +36,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
36
36
  errors: import("async-validator").ValidateError[];
37
37
  offsets: string;
38
38
  loadingSuggestions: boolean;
39
- symbolsCountSearch: number;
39
+ symbolsCountSearch: string | number;
40
40
  suggestionList: IOption[];
41
41
  uniqKey: string;
42
42
  }, {}>;
@@ -66,7 +66,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
66
66
  width: string;
67
67
  disableMarkerBottom: boolean;
68
68
  helpertext: string;
69
- symbolsCountSearch: number;
69
+ symbolsCountSearch: string | number;
70
70
  suggestionList: IOption[];
71
71
  uniqKey: string;
72
72
  defaultDropText: string;
@@ -31,7 +31,7 @@ declare interface IAutocompleteProps {
31
31
  rightIcon?: TIcon;
32
32
  disabled?: boolean;
33
33
  clearable?: boolean;
34
- symbolsCountSearch?: number;
34
+ symbolsCountSearch?: number | string;
35
35
  noData?: string;
36
36
  defaultDropText?: string;
37
37
  memoryBlur?: boolean;
@@ -47,7 +47,7 @@ declare interface IDropdownProps {
47
47
  offsets: string;
48
48
  loadingSuggestions: boolean;
49
49
  query: string;
50
- symbolsCountSearch: number;
50
+ symbolsCountSearch: number | string;
51
51
  suggestionList: IOption[];
52
52
  disableMarkerBottom: boolean;
53
53
  uniqKey: string;
@@ -18,6 +18,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
18
18
  blur: (...args: any[]) => void;
19
19
  touchstart: (...args: any[]) => void;
20
20
  mousedown: (...args: any[]) => void;
21
+ "custom-blur": (...args: any[]) => void;
21
22
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPlDefaultProps>, {
22
23
  leftIcon: string;
23
24
  rightIcon: string;
@@ -36,6 +37,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
36
37
  onTouchstart?: (...args: any[]) => any;
37
38
  "onUpdate:modelValue"?: (...args: any[]) => any;
38
39
  onResetValue?: (...args: any[]) => any;
40
+ "onCustom-blur"?: (...args: any[]) => any;
39
41
  onTabHandler?: (...args: any[]) => any;
40
42
  }, {
41
43
  id: string;
@@ -37,6 +37,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
37
37
  resetValue: (...args: any[]) => void;
38
38
  blur: (...args: any[]) => void;
39
39
  touchstart: (...args: any[]) => void;
40
+ "custom-blur": (...args: any[]) => void;
40
41
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPlInputPlusProps>, {
41
42
  prop: string;
42
43
  modelValue: string;
@@ -71,6 +72,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
71
72
  onTouchstart?: (...args: any[]) => any;
72
73
  "onUpdate:modelValue"?: (...args: any[]) => any;
73
74
  onResetValue?: (...args: any[]) => any;
75
+ "onCustom-blur"?: (...args: any[]) => any;
74
76
  }, {
75
77
  label: string;
76
78
  textarea: boolean;
@@ -42,7 +42,7 @@ 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;
45
+ modelValue: string | number;
46
46
  prop: string;
47
47
  placeholder: string;
48
48
  clearable: boolean;
@@ -10,7 +10,7 @@ declare interface IOption {
10
10
  customDescription?: string;
11
11
  }
12
12
  declare interface ISelectProps {
13
- modelValue: string | number | IOption | null;
13
+ modelValue: string | number | null;
14
14
  options: IOption[];
15
15
  prop?: string;
16
16
  placeholder?: string;