@factoringplus/pl-components-pack-v3 1.8.35-pre-tooltip → 1.8.35-pre-navigation

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.
Files changed (24) hide show
  1. package/dist/{crypto-pro-a84e7c2f.js → crypto-pro-130f45bd.js} +1 -1
  2. package/dist/{crypto-pro-2b171e36.cjs → crypto-pro-c2b3939a.cjs} +1 -1
  3. package/dist/{entry-1514d4af.js → entry-3c2aa53a.js} +7889 -7928
  4. package/dist/{entry-650188cb.cjs → entry-e833c340.cjs} +27 -27
  5. package/dist/pl-components-pack-v3.cjs.js +1 -1
  6. package/dist/pl-components-pack-v3.es.js +1 -1
  7. package/dist/src/components/form/pl-autocomplete/pl-autocompete.vue.d.ts +2 -9
  8. package/dist/src/components/form/pl-autocomplete/types/index.d.ts +0 -1
  9. package/dist/src/components/form/pl-date-picker-plus/common/types/index.d.ts +0 -1
  10. package/dist/src/components/form/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts +2 -9
  11. package/dist/src/components/form/pl-date-picker-plus/pl-date-picker-range-plus/pl-date-picker-range-plus.vue.d.ts +2 -9
  12. package/dist/src/components/form/pl-input-plus/index.d.ts +145 -549
  13. package/dist/src/components/form/pl-input-plus/pl-input-plus.vue.d.ts +2 -9
  14. package/dist/src/components/form/pl-input-plus/types/index.d.ts +0 -1
  15. package/dist/src/components/form/pl-multi-select/pl-multi-select.vue.d.ts +2 -9
  16. package/dist/src/components/form/pl-multi-select/types/index.d.ts +0 -1
  17. package/dist/src/components/form/pl-select-plus/pl-select-plus.vue.d.ts +2 -9
  18. package/dist/src/components/form/pl-select-plus/types/index.d.ts +0 -1
  19. package/dist/src/components/form/pl-upload-plus/pl-upload-plus.vue.d.ts +2 -10
  20. package/dist/src/services/pl-navigation/components/Header.vue.d.ts +29 -3
  21. package/dist/src/services/pl-navigation/index.d.ts +25 -3
  22. package/dist/src/services/pl-navigation/pl-navigation.vue.d.ts +11 -1
  23. package/dist/style.css +1 -1
  24. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  import { IPlInputPlusProps } from './types';
2
2
 
3
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPlInputPlusProps>, {
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPlInputPlusProps>, {
4
4
  prop: string;
5
5
  modelValue: string;
6
6
  showWordLimit: boolean;
@@ -122,9 +122,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
122
122
  valueRange: {
123
123
  min: number;
124
124
  };
125
- }, {}>, {
126
- "tooltip-text"?(_: {}): any;
127
- }>;
125
+ }, {}>;
128
126
  export default _default;
129
127
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
130
128
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -143,8 +141,3 @@ type __VLS_WithDefaults<P, D> = {
143
141
  type __VLS_Prettify<T> = {
144
142
  [K in keyof T]: T[K];
145
143
  } & {};
146
- type __VLS_WithTemplateSlots<T, S> = T & {
147
- new (): {
148
- $slots: S;
149
- };
150
- };
@@ -39,7 +39,6 @@ export interface IPlInputPlusProps extends IBaseInputProps {
39
39
  autosize?: boolean;
40
40
  minRows?: number;
41
41
  maxRows?: number;
42
- tooltipWidth?: string;
43
42
  }
44
43
  export interface IPlDefaultProps extends IBaseInputProps {
45
44
  id: string;
@@ -1,6 +1,6 @@
1
1
  import { IOption, ISelectProps } from './types';
2
2
 
3
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectProps>, {
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectProps>, {
4
4
  modelValue: () => any[];
5
5
  prop: string;
6
6
  placeholder: string;
@@ -55,9 +55,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
55
55
  optional: string;
56
56
  tooltip: string;
57
57
  clearable: boolean;
58
- }, {}>, {
59
- "tooltip-text"?(_: {}): any;
60
- }>;
58
+ }, {}>;
61
59
  export default _default;
62
60
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
63
61
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -76,8 +74,3 @@ type __VLS_WithDefaults<P, D> = {
76
74
  type __VLS_Prettify<T> = {
77
75
  [K in keyof T]: T[K];
78
76
  } & {};
79
- type __VLS_WithTemplateSlots<T, S> = T & {
80
- new (): {
81
- $slots: S;
82
- };
83
- };
@@ -22,7 +22,6 @@ declare interface ISelectProps {
22
22
  clearable?: boolean;
23
23
  buttons?: boolean;
24
24
  teleport?: boolean;
25
- tooltipWidth?: string;
26
25
  }
27
26
  declare interface IDropdownProps {
28
27
  modelValue: IOption[];
@@ -1,6 +1,6 @@
1
1
  import { IOption, ISelectProps } from './types';
2
2
 
3
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectProps>, {
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectProps>, {
4
4
  modelValue: string;
5
5
  prop: string;
6
6
  placeholder: string;
@@ -57,9 +57,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
57
57
  clearable: boolean;
58
58
  showDescription: boolean;
59
59
  account: boolean;
60
- }, {}>, {
61
- "tooltip-text"?(_: {}): any;
62
- }>;
60
+ }, {}>;
63
61
  export default _default;
64
62
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
65
63
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -78,8 +76,3 @@ type __VLS_WithDefaults<P, D> = {
78
76
  type __VLS_Prettify<T> = {
79
77
  [K in keyof T]: T[K];
80
78
  } & {};
81
- type __VLS_WithTemplateSlots<T, S> = T & {
82
- new (): {
83
- $slots: S;
84
- };
85
- };
@@ -28,7 +28,6 @@ declare interface ISelectProps {
28
28
  showDescription?: boolean;
29
29
  account?: boolean;
30
30
  teleport?: boolean;
31
- tooltipWidth?: string;
32
31
  }
33
32
  declare interface IDropdownProps {
34
33
  focus: boolean;
@@ -15,7 +15,6 @@ interface IProps {
15
15
  width?: string;
16
16
  viewMode?: boolean;
17
17
  maxSumFilesSize?: number;
18
- tooltipWidth?: string;
19
18
  }
20
19
  type TError = {
21
20
  dist: boolean;
@@ -27,7 +26,7 @@ type TUnloadedFile = {
27
26
  error?: TError;
28
27
  removable?: boolean;
29
28
  };
30
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
29
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
31
30
  multiple: boolean;
32
31
  accept: string;
33
32
  fileSize: number;
@@ -89,9 +88,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
89
88
  helperText: string;
90
89
  viewMode: boolean;
91
90
  maxSumFilesSize: number;
92
- }, {}>, {
93
- "tooltip-text"?(_: {}): any;
94
- }>;
91
+ }, {}>;
95
92
  export default _default;
96
93
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
97
94
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -110,8 +107,3 @@ type __VLS_WithDefaults<P, D> = {
110
107
  type __VLS_Prettify<T> = {
111
108
  [K in keyof T]: T[K];
112
109
  } & {};
113
- type __VLS_WithTemplateSlots<T, S> = T & {
114
- new (): {
115
- $slots: S;
116
- };
117
- };
@@ -1,15 +1,41 @@
1
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1
+ interface IProps {
2
+ sidebarOff?: boolean;
3
+ }
4
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
5
+ sidebarOff: boolean;
6
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2
7
  "sidebar-click": (...args: any[]) => void;
3
8
  "exit-click": (...args: any[]) => void;
4
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>> & {
9
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
10
+ sidebarOff: boolean;
11
+ }>>> & {
5
12
  "onSidebar-click"?: (...args: any[]) => any;
6
13
  "onExit-click"?: (...args: any[]) => any;
7
- }, {}, {}>, {
14
+ }, {
15
+ sidebarOff: boolean;
16
+ }, {}>, {
8
17
  headerLogo?(_: {}): any;
9
18
  customContent?(_: {}): any;
10
19
  headerBtns?(_: {}): any;
11
20
  }>;
12
21
  export default _default;
22
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
23
+ type __VLS_TypePropsToRuntimeProps<T> = {
24
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
25
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
26
+ } : {
27
+ type: import('vue').PropType<T[K]>;
28
+ required: true;
29
+ };
30
+ };
31
+ type __VLS_WithDefaults<P, D> = {
32
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
33
+ default: D[K];
34
+ }> : P[K];
35
+ };
36
+ type __VLS_Prettify<T> = {
37
+ [K in keyof T]: T[K];
38
+ } & {};
13
39
  type __VLS_WithTemplateSlots<T, S> = T & {
14
40
  new (): {
15
41
  $slots: S;
@@ -3,6 +3,10 @@ import { ISidebarItem } from './types';
3
3
  export declare const PlNavigation: import('../../install-function').SFCInstallWithContext<{
4
4
  new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
5
5
  sidebarOpen: import('vue').PropType<boolean>;
6
+ sidebarOff: {
7
+ type: import('vue').PropType<boolean>;
8
+ default: boolean;
9
+ };
6
10
  }>> & {
7
11
  "onSidebar-click"?: (...args: any[]) => any;
8
12
  "onExit-click"?: (...args: any[]) => any;
@@ -15,11 +19,17 @@ export declare const PlNavigation: import('../../install-function').SFCInstallWi
15
19
  "sidebar-transition-end": (...args: any[]) => void;
16
20
  }, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
17
21
  sidebarOpen: import('vue').PropType<boolean>;
22
+ sidebarOff: {
23
+ type: import('vue').PropType<boolean>;
24
+ default: boolean;
25
+ };
18
26
  }>> & {
19
27
  "onSidebar-click"?: (...args: any[]) => any;
20
28
  "onExit-click"?: (...args: any[]) => any;
21
29
  "onSidebar-transition-end"?: (...args: any[]) => any;
22
- }, {}, true, {}, {}, {
30
+ }, {
31
+ sidebarOff: boolean;
32
+ }, true, {}, {}, {
23
33
  P: {};
24
34
  B: {};
25
35
  D: {};
@@ -28,18 +38,28 @@ export declare const PlNavigation: import('../../install-function').SFCInstallWi
28
38
  Defaults: {};
29
39
  }, Readonly<import('vue').ExtractPropTypes<{
30
40
  sidebarOpen: import('vue').PropType<boolean>;
41
+ sidebarOff: {
42
+ type: import('vue').PropType<boolean>;
43
+ default: boolean;
44
+ };
31
45
  }>> & {
32
46
  "onSidebar-click"?: (...args: any[]) => any;
33
47
  "onExit-click"?: (...args: any[]) => any;
34
48
  "onSidebar-transition-end"?: (...args: any[]) => any;
35
49
  }, {
36
50
  closeSidebar: (event: Event) => void;
37
- }, {}, {}, {}, {}>;
51
+ }, {}, {}, {}, {
52
+ sidebarOff: boolean;
53
+ }>;
38
54
  __isFragment?: never;
39
55
  __isTeleport?: never;
40
56
  __isSuspense?: never;
41
57
  } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
42
58
  sidebarOpen: import('vue').PropType<boolean>;
59
+ sidebarOff: {
60
+ type: import('vue').PropType<boolean>;
61
+ default: boolean;
62
+ };
43
63
  }>> & {
44
64
  "onSidebar-click"?: (...args: any[]) => any;
45
65
  "onExit-click"?: (...args: any[]) => any;
@@ -50,7 +70,9 @@ export declare const PlNavigation: import('../../install-function').SFCInstallWi
50
70
  "sidebar-click": (...args: any[]) => void;
51
71
  "exit-click": (...args: any[]) => void;
52
72
  "sidebar-transition-end": (...args: any[]) => void;
53
- }, string, {}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
73
+ }, string, {
74
+ sidebarOff: boolean;
75
+ }, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
54
76
  $slots: {
55
77
  headerLogo?(_: {}): any;
56
78
  customContent?(_: {}): any;
@@ -1,5 +1,9 @@
1
1
  declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
2
2
  sidebarOpen: import('vue').PropType<boolean>;
3
+ sidebarOff: {
4
+ type: import('vue').PropType<boolean>;
5
+ default: boolean;
6
+ };
3
7
  }, {
4
8
  closeSidebar: (event: Event) => void;
5
9
  }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -8,11 +12,17 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
8
12
  "sidebar-transition-end": (...args: any[]) => void;
9
13
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
10
14
  sidebarOpen: import('vue').PropType<boolean>;
15
+ sidebarOff: {
16
+ type: import('vue').PropType<boolean>;
17
+ default: boolean;
18
+ };
11
19
  }>> & {
12
20
  "onSidebar-click"?: (...args: any[]) => any;
13
21
  "onExit-click"?: (...args: any[]) => any;
14
22
  "onSidebar-transition-end"?: (...args: any[]) => any;
15
- }, {}, {}>, {
23
+ }, {
24
+ sidebarOff: boolean;
25
+ }, {}>, {
16
26
  headerLogo?(_: {}): any;
17
27
  customContent?(_: {}): any;
18
28
  headerBtns?(_: {}): any;