@factoringplus/pl-components-pack-v3 1.2.32-pre-01 → 1.2.32-pre-sign-01

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.
@@ -11,6 +11,7 @@ export * from './deprecated/pl-tooltip';
11
11
  export * from './deprecated/pl-upload';
12
12
  export * from './deprecated/pl-upload-legacy';
13
13
  export * from './deprecated/pl-dialog';
14
+ export * from '../services/SigningService';
14
15
  export * from './basic/pl-button';
15
16
  export * from './deprecated/currency-input';
16
17
  export * from './form/pl-autocomplete';
@@ -3,7 +3,7 @@ import { TIcon } from '../../../pl-icon';
3
3
 
4
4
  interface IProps {
5
5
  prop?: string;
6
- modelValue: IOption;
6
+ modelValue: IOption | any;
7
7
  placeholder?: string;
8
8
  id?: string;
9
9
  disabled?: boolean;
@@ -1,6 +1,7 @@
1
1
  import { IDropdownProps, IOption } from '../types';
2
2
 
3
3
  declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDropdownProps>, {
4
+ modelValue: string;
4
5
  offsets: string;
5
6
  focus: boolean;
6
7
  id: string;
@@ -10,6 +11,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
10
11
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
12
  "select-value": (...args: any[]) => void;
12
13
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDropdownProps>, {
14
+ modelValue: string;
13
15
  offsets: string;
14
16
  focus: boolean;
15
17
  id: string;
@@ -44,7 +44,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
44
44
  label: string;
45
45
  disabled: boolean;
46
46
  width: string;
47
- modelValue: string | number;
47
+ modelValue: any;
48
48
  teleport: boolean;
49
49
  placeholder: string;
50
50
  prop: string;
@@ -54,7 +54,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
54
54
  leftIcon: any;
55
55
  rightIcon: any;
56
56
  clearable: boolean;
57
- options: IOption[];
57
+ options: any[] | IOption[];
58
58
  showDescription: boolean;
59
59
  account: boolean;
60
60
  }, {}>;
@@ -2,7 +2,7 @@ import { TIcon } from '../../../pl-icon';
2
2
  import { ValidateError } from 'async-validator';
3
3
 
4
4
  declare interface IOption {
5
- value: string | number;
5
+ value: string | number | any;
6
6
  description?: string;
7
7
  summ?: number;
8
8
  leftIcon?: TIcon;
@@ -11,8 +11,8 @@ declare interface IOption {
11
11
  customDescription?: string;
12
12
  }
13
13
  declare interface ISelectProps {
14
- modelValue: string | number | null;
15
- options: IOption[];
14
+ modelValue: any;
15
+ options: IOption[] | any[];
16
16
  prop?: string;
17
17
  placeholder?: string;
18
18
  width?: string;
@@ -35,6 +35,6 @@ declare interface IDropdownProps {
35
35
  helpertext: string;
36
36
  errors: ValidateError[];
37
37
  options: IOption[];
38
- selectedValue: string | number | IOption;
38
+ selectedValue: any;
39
39
  }
40
40
  export { IDropdownProps, IOption, ISelectProps };