@factoringplus/pl-components-pack-v3 1.2.12-pre-12 → 1.2.12-pre-13

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.
@@ -19,7 +19,7 @@ declare const Storybook: {
19
19
  }>;
20
20
  declOfNum: import("../install-function").SFCInstallWithContext<(value: number, words: string[]) => string>;
21
21
  isEqual: import("../install-function").SFCInstallWithContext<(<T>(obj1: T, obj2: T) => boolean)>;
22
- formatDate: import("../install-function").SFCInstallWithContext<(date: string) => string>;
22
+ formatDate: import("../install-function").SFCInstallWithContext<(date: string, format: string) => string>;
23
23
  deepSet: import("../install-function").SFCInstallWithContext<() => {
24
24
  add: (o: any) => void;
25
25
  }>;
@@ -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;
@@ -1,5 +1,2 @@
1
- import type { App } from 'vue';
2
- declare const PlMarkText: {
3
- install(app: App): void;
4
- };
1
+ export declare const PlMarkText: import('../../install-function').SFCInstallWithContext<import("vue").DefineComponent<{}, {}, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>>;
5
2
  export default PlMarkText;
@@ -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;