@factoringplus/pl-components-pack-v3 1.3.2-pre-01 → 1.3.2-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.
@@ -10,6 +10,7 @@ import { default as PlTooltip } from './deprecated/pl-tooltip';
10
10
  import { default as PlUpload } from './deprecated/pl-upload';
11
11
  import { default as PlUploadLegacy } from './deprecated/pl-upload-legacy';
12
12
  import { default as PlDialog } from './deprecated/pl-dialog';
13
+ import { default as PlSigningService } from '../services/SigningService';
13
14
  import { default as PlButton } from './basic/pl-button';
14
15
  import { default as PlAutocomplete } from './form/pl-autocomplete';
15
16
  import { default as PlCard } from './data/pl-card';
@@ -49,6 +50,7 @@ export * from './deprecated/pl-tooltip';
49
50
  export * from './deprecated/pl-upload';
50
51
  export * from './deprecated/pl-upload-legacy';
51
52
  export * from './deprecated/pl-dialog';
53
+ export * from '../services/SigningService';
52
54
  export * from './basic/pl-button';
53
55
  export * from './deprecated/currency-input';
54
56
  export * from './form/pl-autocomplete';
@@ -83,4 +85,4 @@ export * from '../utils/deepSet';
83
85
  export * from '../utils/dadataParser';
84
86
  export * from '../plugins/filters';
85
87
  export * from '../plugins/api/api';
86
- export { PlButton, PlCurrency, PlAutocomplete, PlCard, PlCheckbox, PlCheckboxPlus, PlDatePickerPlugin, PlDatePickerLegacyPlugin, PlDatePickerPlusPlugin, PlDialogPlus, PlDialog, PlForm, PlIcon, PlInput, PlInputPlus, PlLink, PlMultitab, PlRadio, PlScrollbar, PlSelect, PlSelectPlus, PlSkeleton, PlSnackbar, PlStepper, PlSuggestions, PlSwitch, PlTabPane, PlTablePlugin, PlTablePlus, PlTabs, PlTextPlugin, PlTooltip, PlUpload, PlUploadLegacy, PlUploadPlus, PlTooltipPlus, PlMultiSelect, PlMarkText, PlPagination, };
88
+ export { PlButton, PlCurrency, PlAutocomplete, PlCard, PlCheckbox, PlCheckboxPlus, PlDatePickerPlugin, PlDatePickerLegacyPlugin, PlDatePickerPlusPlugin, PlDialogPlus, PlDialog, PlForm, PlIcon, PlInput, PlInputPlus, PlLink, PlMultitab, PlRadio, PlScrollbar, PlSelect, PlSelectPlus, PlSkeleton, PlSnackbar, PlStepper, PlSuggestions, PlSwitch, PlTabPane, PlTablePlugin, PlTablePlus, PlTabs, PlTextPlugin, PlTooltip, PlUpload, PlUploadLegacy, PlUploadPlus, PlTooltipPlus, PlMultiSelect, PlMarkText, PlPagination, PlSigningService, };
@@ -21,8 +21,8 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
21
21
  onPageSizeChange?: (...args: any[]) => any;
22
22
  }, {
23
23
  pageSize: number;
24
- pageNumber: number;
25
24
  showPageSize: boolean;
25
+ pageNumber: number;
26
26
  }, {}>;
27
27
  export default _default;
28
28
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -7,10 +7,6 @@ export declare const PlPagination: import('../../../../../install-function').SFC
7
7
  type: import('vue').PropType<number>;
8
8
  default: number;
9
9
  };
10
- pageNumber: {
11
- type: import('vue').PropType<number>;
12
- default: number;
13
- };
14
10
  showPageSize: {
15
11
  type: import('vue').PropType<boolean>;
16
12
  default: boolean;
@@ -18,6 +14,10 @@ export declare const PlPagination: import('../../../../../install-function').SFC
18
14
  options: {
19
15
  type: import('vue').PropType<number[]>;
20
16
  };
17
+ pageNumber: {
18
+ type: import('vue').PropType<number>;
19
+ default: number;
20
+ };
21
21
  }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
22
22
  pageChange: (...args: any[]) => void;
23
23
  pageSizeChange: (...args: any[]) => void;
@@ -30,10 +30,6 @@ export declare const PlPagination: import('../../../../../install-function').SFC
30
30
  type: import('vue').PropType<number>;
31
31
  default: number;
32
32
  };
33
- pageNumber: {
34
- type: import('vue').PropType<number>;
35
- default: number;
36
- };
37
33
  showPageSize: {
38
34
  type: import('vue').PropType<boolean>;
39
35
  default: boolean;
@@ -41,12 +37,16 @@ export declare const PlPagination: import('../../../../../install-function').SFC
41
37
  options: {
42
38
  type: import('vue').PropType<number[]>;
43
39
  };
40
+ pageNumber: {
41
+ type: import('vue').PropType<number>;
42
+ default: number;
43
+ };
44
44
  }>> & {
45
45
  onPageChange?: (...args: any[]) => any;
46
46
  onPageSizeChange?: (...args: any[]) => any;
47
47
  }, {
48
48
  pageSize: number;
49
- pageNumber: number;
50
49
  showPageSize: boolean;
50
+ pageNumber: number;
51
51
  }, {}>>;
52
52
  export default PlPagination;
@@ -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,10 +44,10 @@ 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
- options: IOption[];
50
+ options: any[] | IOption[];
51
51
  prop: string;
52
52
  helpertext: string;
53
53
  optional: string;
@@ -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 };