@factoringplus/pl-components-pack-v3 1.3.3 → 1.3.4-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';
@@ -50,6 +51,7 @@ export * from './deprecated/pl-tooltip';
50
51
  export * from './deprecated/pl-upload';
51
52
  export * from './deprecated/pl-upload-legacy';
52
53
  export * from './deprecated/pl-dialog';
54
+ export * from '../services/SigningService';
53
55
  export * from './basic/pl-button';
54
56
  export * from './deprecated/currency-input';
55
57
  export * from './form/pl-autocomplete';
@@ -86,4 +88,4 @@ export * from '../plugins/filters';
86
88
  export * from '../plugins/api/api';
87
89
  export * from './data/pl-table-plus/components/Pagination';
88
90
  export * from './data/pl-tags-chips';
89
- 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, PlTagsChips, };
91
+ 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, PlTagsChips, };
@@ -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 };