@factoringplus/pl-components-pack-v3 1.8.4-pre-02-radio → 1.8.4

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.
@@ -37,7 +37,9 @@ import { default as PlPagination } from './data/pl-table-plus/components/Paginat
37
37
  import { default as PlOnboarding } from './data/pl-onboarding';
38
38
  import { default as PlSigning } from './data/pl-signing';
39
39
  import { default as PlNavigation } from '../services/pl-navigation';
40
- import { default as PlNavButton } from '../services/pl-navigation/components';
40
+ import { default as PlNavButton } from '../services/pl-navigation/components/NavButton';
41
+ import { default as PlSidebarItem } from '../services/pl-navigation/components/SidebarItem';
42
+ import { default as TLogo } from '../services/pl-navigation/components/TLogo';
41
43
  import { default as PlTextCell } from './data/pl-text-cell';
42
44
  import { default as PlIcon } from './shared/pl-icon';
43
45
  import { default as PlTextPlugin } from './shared/pl-text';
@@ -82,7 +84,9 @@ export * from './data/pl-snackbar';
82
84
  export * from './data/pl-tabs';
83
85
  export * from './data/pl-stepper';
84
86
  export * from '../services/pl-navigation';
85
- export * from '../services/pl-navigation/components';
87
+ export * from '../services/pl-navigation/components/SidebarItem';
88
+ export * from '../services/pl-navigation/components/NavButton';
89
+ export * from '../services/pl-navigation/components/TLogo';
86
90
  export * from './data/pl-text-cell';
87
91
  export * from './shared/pl-icon';
88
92
  export * from './shared/pl-text';
@@ -96,4 +100,4 @@ export * from '../utils/deepSet';
96
100
  export * from '../utils/dadataParser';
97
101
  export * from '../plugins/filters';
98
102
  export * from '../plugins/api/api';
99
- 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, PlSigning, PlTagsChips, PlOnboarding, PlNavigation, PlNavButton, PlSidebarItem, PlTextCell, };
103
+ 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, PlSigning, PlTagsChips, PlOnboarding, PlNavigation, PlNavButton, PlSidebarItem, TLogo, PlTextCell, };
@@ -33,9 +33,9 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
33
33
  focus: boolean;
34
34
  helpertext: string;
35
35
  uniqKey: string;
36
+ query: string;
36
37
  suggestionList: IOption[];
37
38
  symbolsCountSearch: string | number;
38
- query: string;
39
39
  disableMarkerBottom: boolean;
40
40
  errors: import('async-validator').ValidateError[];
41
41
  offsets: string;
@@ -1,54 +1,69 @@
1
1
  interface RadioOption {
2
- value: any;
2
+ value: string;
3
3
  label?: string;
4
4
  description?: string;
5
- disabled?: boolean;
6
5
  }
7
6
  declare const _default: import('vue').DefineComponent<{
8
- modelValue: import('vue').PropType<any>;
9
7
  size: {
10
- type: import('vue').PropType<"small" | "medium">;
8
+ type: StringConstructor;
11
9
  default: string;
12
10
  };
13
11
  label: {
14
- type: import('vue').PropType<string>;
15
- };
16
- disabled: {
17
- type: import('vue').PropType<boolean>;
12
+ type: StringConstructor;
13
+ default: string;
18
14
  };
19
15
  description: {
20
- type: import('vue').PropType<string>;
16
+ type: StringConstructor;
17
+ default: string;
18
+ };
19
+ modelValue: {
20
+ type: StringConstructor;
21
+ default: any;
22
+ };
23
+ disabled: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
21
26
  };
22
27
  options: {
23
- type: import('vue').PropType<RadioOption[]>;
28
+ type: () => RadioOption[];
24
29
  required: true;
25
30
  };
26
31
  }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
27
32
  "update:modelValue": (...args: any[]) => void;
28
33
  change: (...args: any[]) => void;
29
34
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
30
- modelValue: import('vue').PropType<any>;
31
35
  size: {
32
- type: import('vue').PropType<"small" | "medium">;
36
+ type: StringConstructor;
33
37
  default: string;
34
38
  };
35
39
  label: {
36
- type: import('vue').PropType<string>;
37
- };
38
- disabled: {
39
- type: import('vue').PropType<boolean>;
40
+ type: StringConstructor;
41
+ default: string;
40
42
  };
41
43
  description: {
42
- type: import('vue').PropType<string>;
44
+ type: StringConstructor;
45
+ default: string;
46
+ };
47
+ modelValue: {
48
+ type: StringConstructor;
49
+ default: any;
50
+ };
51
+ disabled: {
52
+ type: BooleanConstructor;
53
+ default: boolean;
43
54
  };
44
55
  options: {
45
- type: import('vue').PropType<RadioOption[]>;
56
+ type: () => RadioOption[];
46
57
  required: true;
47
58
  };
48
59
  }>> & {
49
60
  onChange?: (...args: any[]) => any;
50
61
  "onUpdate:modelValue"?: (...args: any[]) => any;
51
62
  }, {
52
- size: "small" | "medium";
63
+ size: string;
64
+ label: string;
65
+ disabled: boolean;
66
+ modelValue: string;
67
+ description: string;
53
68
  }, {}>;
54
69
  export default _default;