@factoringplus/pl-components-pack-v3 1.10.0 → 1.10.2-pre-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.
- package/README.md +48 -48
- package/dist/CNAME +1 -1
- package/dist/{crypto-pro-actual-cades-plugin-bbd4b616.cjs → crypto-pro-actual-cades-plugin-2daa7e80.cjs} +1 -1
- package/dist/{crypto-pro-actual-cades-plugin-276931cb.js → crypto-pro-actual-cades-plugin-782f801d.js} +1 -1
- package/dist/{entry-7f85aa9d.js → entry-55b751c6.js} +14402 -14090
- package/dist/entry-c64e8388.cjs +115 -0
- package/dist/favicon.svg +4 -4
- package/dist/icon/cube20.svg +6 -6
- package/dist/icon/cube24.svg +6 -6
- package/dist/pl-components-pack-v3.cjs.js +1 -1
- package/dist/pl-components-pack-v3.es.js +66 -63
- package/dist/src/assets/calendar.json.d.ts +134 -134
- package/dist/src/components/components.d.ts +8 -4
- package/dist/src/components/data/pl-onboarding/pl-onboarding.vue.d.ts +8 -0
- package/dist/src/services/pl-navigation/components/Header.vue.d.ts +5 -3
- package/dist/src/services/pl-navigation/index.d.ts +3 -7
- package/dist/src/services/pl-navigation/pl-navigation.vue.d.ts +3 -3
- package/dist/src/services/pl-navigation-legacy/components/HeaderLegacy.vue.d.ts +43 -0
- package/dist/src/services/pl-navigation-legacy/components/NavButtonLegacy/NavButtonLegacy.vue.d.ts +52 -0
- package/dist/src/services/pl-navigation-legacy/components/NavButtonLegacy/index.d.ts +112 -0
- package/dist/src/services/pl-navigation-legacy/components/SidebarItemLegacy/SidebarItemLegacy.vue.d.ts +35 -0
- package/dist/src/services/pl-navigation-legacy/components/SidebarItemLegacy/index.d.ts +28 -0
- package/dist/src/services/pl-navigation-legacy/index.d.ts +86 -0
- package/dist/src/services/pl-navigation-legacy/pl-navigation-legacy.vue.d.ts +37 -0
- package/dist/src/services/pl-navigation-legacy/screenSizes.d.ts +6 -0
- package/dist/src/services/pl-navigation-legacy/types.d.ts +11 -0
- package/dist/style.css +1 -1
- package/package.json +117 -117
- package/dist/entry-4197d01f.cjs +0 -115
- /package/dist/src/services/{pl-navigation → pl-navigation-legacy}/components/TLogo/TLogo.vue.d.ts +0 -0
- /package/dist/src/services/{pl-navigation → pl-navigation-legacy}/components/TLogo/index.d.ts +0 -0
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
interface IProps {
|
|
2
2
|
sidebarOff?: boolean;
|
|
3
|
+
sidebarOpen?: boolean;
|
|
3
4
|
}
|
|
4
5
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
|
5
6
|
sidebarOff: boolean;
|
|
7
|
+
sidebarOpen: boolean;
|
|
6
8
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
9
|
"sidebar-click": (...args: any[]) => void;
|
|
8
|
-
"exit-click": (...args: any[]) => void;
|
|
9
10
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
|
10
11
|
sidebarOff: boolean;
|
|
12
|
+
sidebarOpen: boolean;
|
|
11
13
|
}>>> & {
|
|
12
14
|
"onSidebar-click"?: (...args: any[]) => any;
|
|
13
|
-
"onExit-click"?: (...args: any[]) => any;
|
|
14
15
|
}, {
|
|
15
16
|
sidebarOff: boolean;
|
|
17
|
+
sidebarOpen: boolean;
|
|
16
18
|
}, {}>, {
|
|
17
19
|
headerLogo?(_: {}): any;
|
|
18
20
|
customContent?(_: {}): any;
|
|
19
|
-
|
|
21
|
+
headerButtons?(_: {}): any;
|
|
20
22
|
}>;
|
|
21
23
|
export default _default;
|
|
22
24
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -9,13 +9,11 @@ export declare const PlNavigation: import('../../install-function').SFCInstallWi
|
|
|
9
9
|
};
|
|
10
10
|
}>> & {
|
|
11
11
|
"onSidebar-click"?: (...args: any[]) => any;
|
|
12
|
-
"onExit-click"?: (...args: any[]) => any;
|
|
13
12
|
"onSidebar-transition-end"?: (...args: any[]) => any;
|
|
14
13
|
}, {
|
|
15
14
|
closeSidebar: (event: Event) => void;
|
|
16
15
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
16
|
"sidebar-click": (...args: any[]) => void;
|
|
18
|
-
"exit-click": (...args: any[]) => void;
|
|
19
17
|
"sidebar-transition-end": (...args: any[]) => void;
|
|
20
18
|
}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
21
19
|
sidebarOpen: import('vue').PropType<boolean>;
|
|
@@ -25,7 +23,6 @@ export declare const PlNavigation: import('../../install-function').SFCInstallWi
|
|
|
25
23
|
};
|
|
26
24
|
}>> & {
|
|
27
25
|
"onSidebar-click"?: (...args: any[]) => any;
|
|
28
|
-
"onExit-click"?: (...args: any[]) => any;
|
|
29
26
|
"onSidebar-transition-end"?: (...args: any[]) => any;
|
|
30
27
|
}, {
|
|
31
28
|
sidebarOff: boolean;
|
|
@@ -44,7 +41,6 @@ export declare const PlNavigation: import('../../install-function').SFCInstallWi
|
|
|
44
41
|
};
|
|
45
42
|
}>> & {
|
|
46
43
|
"onSidebar-click"?: (...args: any[]) => any;
|
|
47
|
-
"onExit-click"?: (...args: any[]) => any;
|
|
48
44
|
"onSidebar-transition-end"?: (...args: any[]) => any;
|
|
49
45
|
}, {
|
|
50
46
|
closeSidebar: (event: Event) => void;
|
|
@@ -62,13 +58,11 @@ export declare const PlNavigation: import('../../install-function').SFCInstallWi
|
|
|
62
58
|
};
|
|
63
59
|
}>> & {
|
|
64
60
|
"onSidebar-click"?: (...args: any[]) => any;
|
|
65
|
-
"onExit-click"?: (...args: any[]) => any;
|
|
66
61
|
"onSidebar-transition-end"?: (...args: any[]) => any;
|
|
67
62
|
}, {
|
|
68
63
|
closeSidebar: (event: Event) => void;
|
|
69
64
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
70
65
|
"sidebar-click": (...args: any[]) => void;
|
|
71
|
-
"exit-click": (...args: any[]) => void;
|
|
72
66
|
"sidebar-transition-end": (...args: any[]) => void;
|
|
73
67
|
}, string, {
|
|
74
68
|
sidebarOff: boolean;
|
|
@@ -76,8 +70,10 @@ export declare const PlNavigation: import('../../install-function').SFCInstallWi
|
|
|
76
70
|
$slots: {
|
|
77
71
|
headerLogo?(_: {}): any;
|
|
78
72
|
customContent?(_: {}): any;
|
|
79
|
-
|
|
73
|
+
headerButtons?(_: {}): any;
|
|
80
74
|
sidebarContent?(_: {}): any;
|
|
75
|
+
footerContent?(_: {}): any;
|
|
76
|
+
footerLogo?(_: {}): any;
|
|
81
77
|
main?(_: {}): any;
|
|
82
78
|
};
|
|
83
79
|
})>;
|
|
@@ -8,7 +8,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
8
8
|
closeSidebar: (event: Event) => void;
|
|
9
9
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
10
|
"sidebar-click": (...args: any[]) => void;
|
|
11
|
-
"exit-click": (...args: any[]) => void;
|
|
12
11
|
"sidebar-transition-end": (...args: any[]) => void;
|
|
13
12
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
14
13
|
sidebarOpen: import('vue').PropType<boolean>;
|
|
@@ -18,15 +17,16 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
18
17
|
};
|
|
19
18
|
}>> & {
|
|
20
19
|
"onSidebar-click"?: (...args: any[]) => any;
|
|
21
|
-
"onExit-click"?: (...args: any[]) => any;
|
|
22
20
|
"onSidebar-transition-end"?: (...args: any[]) => any;
|
|
23
21
|
}, {
|
|
24
22
|
sidebarOff: boolean;
|
|
25
23
|
}, {}>, {
|
|
26
24
|
headerLogo?(_: {}): any;
|
|
27
25
|
customContent?(_: {}): any;
|
|
28
|
-
|
|
26
|
+
headerButtons?(_: {}): any;
|
|
29
27
|
sidebarContent?(_: {}): any;
|
|
28
|
+
footerContent?(_: {}): any;
|
|
29
|
+
footerLogo?(_: {}): any;
|
|
30
30
|
main?(_: {}): any;
|
|
31
31
|
}>;
|
|
32
32
|
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
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, {
|
|
7
|
+
"sidebar-click": (...args: any[]) => void;
|
|
8
|
+
"exit-click": (...args: any[]) => void;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
|
10
|
+
sidebarOff: boolean;
|
|
11
|
+
}>>> & {
|
|
12
|
+
"onSidebar-click"?: (...args: any[]) => any;
|
|
13
|
+
"onExit-click"?: (...args: any[]) => any;
|
|
14
|
+
}, {
|
|
15
|
+
sidebarOff: boolean;
|
|
16
|
+
}, {}>, {
|
|
17
|
+
headerLogo?(_: {}): any;
|
|
18
|
+
customContent?(_: {}): any;
|
|
19
|
+
headerBtns?(_: {}): any;
|
|
20
|
+
}>;
|
|
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
|
+
} & {};
|
|
39
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
40
|
+
new (): {
|
|
41
|
+
$slots: S;
|
|
42
|
+
};
|
|
43
|
+
};
|
package/dist/src/services/pl-navigation-legacy/components/NavButtonLegacy/NavButtonLegacy.vue.d.ts
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { TIcon } from '../../../../components/shared/pl-icon';
|
|
2
|
+
|
|
3
|
+
interface IProps {
|
|
4
|
+
icon?: TIcon;
|
|
5
|
+
type?: 'new' | 'company';
|
|
6
|
+
isClicked?: boolean;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
}
|
|
9
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
|
10
|
+
icon: string;
|
|
11
|
+
isClicked: boolean;
|
|
12
|
+
disabled: boolean;
|
|
13
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
|
+
click: (...args: any[]) => void;
|
|
15
|
+
"update:isClicked": (...args: any[]) => void;
|
|
16
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
|
17
|
+
icon: string;
|
|
18
|
+
isClicked: boolean;
|
|
19
|
+
disabled: boolean;
|
|
20
|
+
}>>> & {
|
|
21
|
+
onClick?: (...args: any[]) => any;
|
|
22
|
+
"onUpdate:isClicked"?: (...args: any[]) => any;
|
|
23
|
+
}, {
|
|
24
|
+
disabled: boolean;
|
|
25
|
+
icon: TIcon;
|
|
26
|
+
isClicked: boolean;
|
|
27
|
+
}, {}>, {
|
|
28
|
+
default?(_: {}): any;
|
|
29
|
+
}>;
|
|
30
|
+
export default _default;
|
|
31
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
32
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
33
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
34
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
35
|
+
} : {
|
|
36
|
+
type: import('vue').PropType<T[K]>;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
type __VLS_WithDefaults<P, D> = {
|
|
41
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
42
|
+
default: D[K];
|
|
43
|
+
}> : P[K];
|
|
44
|
+
};
|
|
45
|
+
type __VLS_Prettify<T> = {
|
|
46
|
+
[K in keyof T]: T[K];
|
|
47
|
+
} & {};
|
|
48
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
49
|
+
new (): {
|
|
50
|
+
$slots: S;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
export declare const PlNavButtonLegacy: import('../../../../install-function').SFCInstallWithContext<{
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
|
3
|
+
type: {
|
|
4
|
+
type: import('vue').PropType<"new" | "company">;
|
|
5
|
+
};
|
|
6
|
+
disabled: {
|
|
7
|
+
type: import('vue').PropType<boolean>;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
icon: {
|
|
11
|
+
type: import('vue').PropType<import('../../../../components/components').TIcon>;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
isClicked: {
|
|
15
|
+
type: import('vue').PropType<boolean>;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
}>> & {
|
|
19
|
+
onClick?: (...args: any[]) => any;
|
|
20
|
+
"onUpdate:isClicked"?: (...args: any[]) => any;
|
|
21
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
22
|
+
click: (...args: any[]) => void;
|
|
23
|
+
"update:isClicked": (...args: any[]) => void;
|
|
24
|
+
}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
25
|
+
type: {
|
|
26
|
+
type: import('vue').PropType<"new" | "company">;
|
|
27
|
+
};
|
|
28
|
+
disabled: {
|
|
29
|
+
type: import('vue').PropType<boolean>;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
icon: {
|
|
33
|
+
type: import('vue').PropType<import('../../../../components/components').TIcon>;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
isClicked: {
|
|
37
|
+
type: import('vue').PropType<boolean>;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
}>> & {
|
|
41
|
+
onClick?: (...args: any[]) => any;
|
|
42
|
+
"onUpdate:isClicked"?: (...args: any[]) => any;
|
|
43
|
+
}, {
|
|
44
|
+
disabled: boolean;
|
|
45
|
+
icon: import('../../../../components/components').TIcon;
|
|
46
|
+
isClicked: boolean;
|
|
47
|
+
}, true, {}, {}, {
|
|
48
|
+
P: {};
|
|
49
|
+
B: {};
|
|
50
|
+
D: {};
|
|
51
|
+
C: {};
|
|
52
|
+
M: {};
|
|
53
|
+
Defaults: {};
|
|
54
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
55
|
+
type: {
|
|
56
|
+
type: import('vue').PropType<"new" | "company">;
|
|
57
|
+
};
|
|
58
|
+
disabled: {
|
|
59
|
+
type: import('vue').PropType<boolean>;
|
|
60
|
+
default: boolean;
|
|
61
|
+
};
|
|
62
|
+
icon: {
|
|
63
|
+
type: import('vue').PropType<import('../../../../components/components').TIcon>;
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
isClicked: {
|
|
67
|
+
type: import('vue').PropType<boolean>;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
70
|
+
}>> & {
|
|
71
|
+
onClick?: (...args: any[]) => any;
|
|
72
|
+
"onUpdate:isClicked"?: (...args: any[]) => any;
|
|
73
|
+
}, {}, {}, {}, {}, {
|
|
74
|
+
disabled: boolean;
|
|
75
|
+
icon: import('../../../../components/components').TIcon;
|
|
76
|
+
isClicked: boolean;
|
|
77
|
+
}>;
|
|
78
|
+
__isFragment?: never;
|
|
79
|
+
__isTeleport?: never;
|
|
80
|
+
__isSuspense?: never;
|
|
81
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
82
|
+
type: {
|
|
83
|
+
type: import('vue').PropType<"new" | "company">;
|
|
84
|
+
};
|
|
85
|
+
disabled: {
|
|
86
|
+
type: import('vue').PropType<boolean>;
|
|
87
|
+
default: boolean;
|
|
88
|
+
};
|
|
89
|
+
icon: {
|
|
90
|
+
type: import('vue').PropType<import('../../../../components/components').TIcon>;
|
|
91
|
+
default: string;
|
|
92
|
+
};
|
|
93
|
+
isClicked: {
|
|
94
|
+
type: import('vue').PropType<boolean>;
|
|
95
|
+
default: boolean;
|
|
96
|
+
};
|
|
97
|
+
}>> & {
|
|
98
|
+
onClick?: (...args: any[]) => any;
|
|
99
|
+
"onUpdate:isClicked"?: (...args: any[]) => any;
|
|
100
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
101
|
+
click: (...args: any[]) => void;
|
|
102
|
+
"update:isClicked": (...args: any[]) => void;
|
|
103
|
+
}, string, {
|
|
104
|
+
disabled: boolean;
|
|
105
|
+
icon: import('../../../../components/components').TIcon;
|
|
106
|
+
isClicked: boolean;
|
|
107
|
+
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
108
|
+
$slots: {
|
|
109
|
+
default?(_: {}): any;
|
|
110
|
+
};
|
|
111
|
+
})>;
|
|
112
|
+
export default PlNavButtonLegacy;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ISidebarItem } from '../../types';
|
|
2
|
+
|
|
3
|
+
interface IProps {
|
|
4
|
+
item: ISidebarItem;
|
|
5
|
+
activePage: string;
|
|
6
|
+
}
|
|
7
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
|
8
|
+
activePage: string;
|
|
9
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
|
+
"sidebar-item-click": (...args: any[]) => void;
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
|
12
|
+
activePage: string;
|
|
13
|
+
}>>> & {
|
|
14
|
+
"onSidebar-item-click"?: (...args: any[]) => any;
|
|
15
|
+
}, {
|
|
16
|
+
activePage: string;
|
|
17
|
+
}, {}>;
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
20
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
21
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
22
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
23
|
+
} : {
|
|
24
|
+
type: import('vue').PropType<T[K]>;
|
|
25
|
+
required: true;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
type __VLS_WithDefaults<P, D> = {
|
|
29
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
30
|
+
default: D[K];
|
|
31
|
+
}> : P[K];
|
|
32
|
+
};
|
|
33
|
+
type __VLS_Prettify<T> = {
|
|
34
|
+
[K in keyof T]: T[K];
|
|
35
|
+
} & {};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare const PlSidebarItemLegacy: import('../../../../install-function').SFCInstallWithContext<import('vue').DefineComponent<{
|
|
2
|
+
item: {
|
|
3
|
+
type: import('vue').PropType<import('../../types').ISidebarItem>;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
activePage: {
|
|
7
|
+
type: import('vue').PropType<string>;
|
|
8
|
+
required: true;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
|
+
"sidebar-item-click": (...args: any[]) => void;
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
14
|
+
item: {
|
|
15
|
+
type: import('vue').PropType<import('../../types').ISidebarItem>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
activePage: {
|
|
19
|
+
type: import('vue').PropType<string>;
|
|
20
|
+
required: true;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
}>> & {
|
|
24
|
+
"onSidebar-item-click"?: (...args: any[]) => any;
|
|
25
|
+
}, {
|
|
26
|
+
activePage: string;
|
|
27
|
+
}, {}>>;
|
|
28
|
+
export default PlSidebarItemLegacy;
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { ISidebarItem } from './types';
|
|
2
|
+
|
|
3
|
+
export declare const PlNavigationLegacy: import('../../install-function').SFCInstallWithContext<{
|
|
4
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
|
5
|
+
sidebarOpen: import('vue').PropType<boolean>;
|
|
6
|
+
sidebarOff: {
|
|
7
|
+
type: import('vue').PropType<boolean>;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
}>> & {
|
|
11
|
+
"onSidebar-click"?: (...args: any[]) => any;
|
|
12
|
+
"onSidebar-transition-end"?: (...args: any[]) => any;
|
|
13
|
+
"onExit-click"?: (...args: any[]) => any;
|
|
14
|
+
}, {
|
|
15
|
+
closeSidebar: (event: Event) => void;
|
|
16
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
|
+
"sidebar-click": (...args: any[]) => void;
|
|
18
|
+
"sidebar-transition-end": (...args: any[]) => void;
|
|
19
|
+
"exit-click": (...args: any[]) => void;
|
|
20
|
+
}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
21
|
+
sidebarOpen: import('vue').PropType<boolean>;
|
|
22
|
+
sidebarOff: {
|
|
23
|
+
type: import('vue').PropType<boolean>;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
}>> & {
|
|
27
|
+
"onSidebar-click"?: (...args: any[]) => any;
|
|
28
|
+
"onSidebar-transition-end"?: (...args: any[]) => any;
|
|
29
|
+
"onExit-click"?: (...args: any[]) => any;
|
|
30
|
+
}, {
|
|
31
|
+
sidebarOff: boolean;
|
|
32
|
+
}, true, {}, {}, {
|
|
33
|
+
P: {};
|
|
34
|
+
B: {};
|
|
35
|
+
D: {};
|
|
36
|
+
C: {};
|
|
37
|
+
M: {};
|
|
38
|
+
Defaults: {};
|
|
39
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
40
|
+
sidebarOpen: import('vue').PropType<boolean>;
|
|
41
|
+
sidebarOff: {
|
|
42
|
+
type: import('vue').PropType<boolean>;
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
45
|
+
}>> & {
|
|
46
|
+
"onSidebar-click"?: (...args: any[]) => any;
|
|
47
|
+
"onSidebar-transition-end"?: (...args: any[]) => any;
|
|
48
|
+
"onExit-click"?: (...args: any[]) => any;
|
|
49
|
+
}, {
|
|
50
|
+
closeSidebar: (event: Event) => void;
|
|
51
|
+
}, {}, {}, {}, {
|
|
52
|
+
sidebarOff: boolean;
|
|
53
|
+
}>;
|
|
54
|
+
__isFragment?: never;
|
|
55
|
+
__isTeleport?: never;
|
|
56
|
+
__isSuspense?: never;
|
|
57
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
58
|
+
sidebarOpen: import('vue').PropType<boolean>;
|
|
59
|
+
sidebarOff: {
|
|
60
|
+
type: import('vue').PropType<boolean>;
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
63
|
+
}>> & {
|
|
64
|
+
"onSidebar-click"?: (...args: any[]) => any;
|
|
65
|
+
"onSidebar-transition-end"?: (...args: any[]) => any;
|
|
66
|
+
"onExit-click"?: (...args: any[]) => any;
|
|
67
|
+
}, {
|
|
68
|
+
closeSidebar: (event: Event) => void;
|
|
69
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
70
|
+
"sidebar-click": (...args: any[]) => void;
|
|
71
|
+
"sidebar-transition-end": (...args: any[]) => void;
|
|
72
|
+
"exit-click": (...args: any[]) => void;
|
|
73
|
+
}, string, {
|
|
74
|
+
sidebarOff: boolean;
|
|
75
|
+
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
76
|
+
$slots: {
|
|
77
|
+
headerLogo?(_: {}): any;
|
|
78
|
+
customContent?(_: {}): any;
|
|
79
|
+
headerBtns?(_: {}): any;
|
|
80
|
+
sidebarContent?(_: {}): any;
|
|
81
|
+
main?(_: {}): any;
|
|
82
|
+
};
|
|
83
|
+
})>;
|
|
84
|
+
export default PlNavigationLegacy;
|
|
85
|
+
export type { ISidebarItem };
|
|
86
|
+
export { ScreenSizes } from './screenSizes';
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
2
|
+
sidebarOpen: import('vue').PropType<boolean>;
|
|
3
|
+
sidebarOff: {
|
|
4
|
+
type: import('vue').PropType<boolean>;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
}, {
|
|
8
|
+
closeSidebar: (event: Event) => void;
|
|
9
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
|
+
"sidebar-click": (...args: any[]) => void;
|
|
11
|
+
"sidebar-transition-end": (...args: any[]) => void;
|
|
12
|
+
"exit-click": (...args: any[]) => void;
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
14
|
+
sidebarOpen: import('vue').PropType<boolean>;
|
|
15
|
+
sidebarOff: {
|
|
16
|
+
type: import('vue').PropType<boolean>;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
}>> & {
|
|
20
|
+
"onSidebar-click"?: (...args: any[]) => any;
|
|
21
|
+
"onSidebar-transition-end"?: (...args: any[]) => any;
|
|
22
|
+
"onExit-click"?: (...args: any[]) => any;
|
|
23
|
+
}, {
|
|
24
|
+
sidebarOff: boolean;
|
|
25
|
+
}, {}>, {
|
|
26
|
+
headerLogo?(_: {}): any;
|
|
27
|
+
customContent?(_: {}): any;
|
|
28
|
+
headerBtns?(_: {}): any;
|
|
29
|
+
sidebarContent?(_: {}): any;
|
|
30
|
+
main?(_: {}): any;
|
|
31
|
+
}>;
|
|
32
|
+
export default _default;
|
|
33
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
34
|
+
new (): {
|
|
35
|
+
$slots: S;
|
|
36
|
+
};
|
|
37
|
+
};
|