@factoringplus/pl-components-pack-v3 1.10.2-pre-07 → 1.10.2-pre-table-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/dist/CalendarScheduled24-3634752a.js +21 -0
- package/dist/CalendarScheduled24-f110091b.cjs +1 -0
- package/dist/{crypto-pro-actual-cades-plugin-c320f71b.cjs → crypto-pro-actual-cades-plugin-b5530d44.cjs} +1 -1
- package/dist/{crypto-pro-actual-cades-plugin-90d587da.js → crypto-pro-actual-cades-plugin-d3982070.js} +1 -1
- package/dist/entry-4c59bfb9.cjs +115 -0
- package/dist/{entry-5646db9e.js → entry-fcb0121c.js} +11797 -12072
- package/dist/pl-components-pack-v3.cjs.js +1 -1
- package/dist/pl-components-pack-v3.es.js +60 -62
- package/dist/src/components/components.d.ts +1 -5
- package/dist/src/components/data/pl-table-plus/pl-table-plus.vue.d.ts +11 -0
- package/dist/src/components/shared/pl-icon/types/index.d.ts +1 -1
- package/dist/src/services/pl-navigation/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/entry-e842b984.cjs +0 -115
- package/dist/src/services/pl-navigation-plus/components/HeaderPlus.vue.d.ts +0 -45
- package/dist/src/services/pl-navigation-plus/components/NavButtonPlus/NavButtonPlus.vue.d.ts +0 -52
- package/dist/src/services/pl-navigation-plus/components/NavButtonPlus/index.d.ts +0 -112
- package/dist/src/services/pl-navigation-plus/components/SidebarItem/SidebarItemPlus.vue.d.ts +0 -35
- package/dist/src/services/pl-navigation-plus/components/SidebarItem/index.d.ts +0 -28
- package/dist/src/services/pl-navigation-plus/index.d.ts +0 -82
- package/dist/src/services/pl-navigation-plus/pl-navigation-plus.vue.d.ts +0 -37
- package/dist/src/services/pl-navigation-plus/types.d.ts +0 -11
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
interface IProps {
|
|
2
|
-
sidebarOff?: boolean;
|
|
3
|
-
sidebarOpen?: boolean;
|
|
4
|
-
}
|
|
5
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
|
6
|
-
sidebarOff: boolean;
|
|
7
|
-
sidebarOpen: boolean;
|
|
8
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
-
"sidebar-click": (...args: any[]) => void;
|
|
10
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
|
11
|
-
sidebarOff: boolean;
|
|
12
|
-
sidebarOpen: boolean;
|
|
13
|
-
}>>> & {
|
|
14
|
-
"onSidebar-click"?: (...args: any[]) => any;
|
|
15
|
-
}, {
|
|
16
|
-
sidebarOff: boolean;
|
|
17
|
-
sidebarOpen: boolean;
|
|
18
|
-
}, {}>, {
|
|
19
|
-
headerLogo?(_: {}): any;
|
|
20
|
-
customContent?(_: {}): any;
|
|
21
|
-
headerButtons?(_: {}): any;
|
|
22
|
-
}>;
|
|
23
|
-
export default _default;
|
|
24
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
25
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
26
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
27
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
28
|
-
} : {
|
|
29
|
-
type: import('vue').PropType<T[K]>;
|
|
30
|
-
required: true;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
33
|
-
type __VLS_WithDefaults<P, D> = {
|
|
34
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
35
|
-
default: D[K];
|
|
36
|
-
}> : P[K];
|
|
37
|
-
};
|
|
38
|
-
type __VLS_Prettify<T> = {
|
|
39
|
-
[K in keyof T]: T[K];
|
|
40
|
-
} & {};
|
|
41
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
42
|
-
new (): {
|
|
43
|
-
$slots: S;
|
|
44
|
-
};
|
|
45
|
-
};
|
package/dist/src/services/pl-navigation-plus/components/NavButtonPlus/NavButtonPlus.vue.d.ts
DELETED
|
@@ -1,52 +0,0 @@
|
|
|
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
|
-
};
|
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
export declare const PlNavButtonPlus: 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 PlNavButtonPlus;
|
package/dist/src/services/pl-navigation-plus/components/SidebarItem/SidebarItemPlus.vue.d.ts
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
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
|
-
} & {};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
export declare const PlSidebarItemPlus: 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 PlSidebarItemPlus;
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
import { ISidebarItem } from './types';
|
|
2
|
-
|
|
3
|
-
export declare const PlNavigationPlus: 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
|
-
}, {
|
|
14
|
-
closeSidebar: (event: Event) => void;
|
|
15
|
-
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
-
"sidebar-click": (...args: any[]) => void;
|
|
17
|
-
"sidebar-transition-end": (...args: any[]) => void;
|
|
18
|
-
}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
19
|
-
sidebarOpen: import('vue').PropType<boolean>;
|
|
20
|
-
sidebarOff: {
|
|
21
|
-
type: import('vue').PropType<boolean>;
|
|
22
|
-
default: boolean;
|
|
23
|
-
};
|
|
24
|
-
}>> & {
|
|
25
|
-
"onSidebar-click"?: (...args: any[]) => any;
|
|
26
|
-
"onSidebar-transition-end"?: (...args: any[]) => any;
|
|
27
|
-
}, {
|
|
28
|
-
sidebarOff: boolean;
|
|
29
|
-
}, true, {}, {}, {
|
|
30
|
-
P: {};
|
|
31
|
-
B: {};
|
|
32
|
-
D: {};
|
|
33
|
-
C: {};
|
|
34
|
-
M: {};
|
|
35
|
-
Defaults: {};
|
|
36
|
-
}, Readonly<import('vue').ExtractPropTypes<{
|
|
37
|
-
sidebarOpen: import('vue').PropType<boolean>;
|
|
38
|
-
sidebarOff: {
|
|
39
|
-
type: import('vue').PropType<boolean>;
|
|
40
|
-
default: boolean;
|
|
41
|
-
};
|
|
42
|
-
}>> & {
|
|
43
|
-
"onSidebar-click"?: (...args: any[]) => any;
|
|
44
|
-
"onSidebar-transition-end"?: (...args: any[]) => any;
|
|
45
|
-
}, {
|
|
46
|
-
closeSidebar: (event: Event) => void;
|
|
47
|
-
}, {}, {}, {}, {
|
|
48
|
-
sidebarOff: boolean;
|
|
49
|
-
}>;
|
|
50
|
-
__isFragment?: never;
|
|
51
|
-
__isTeleport?: never;
|
|
52
|
-
__isSuspense?: never;
|
|
53
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
54
|
-
sidebarOpen: import('vue').PropType<boolean>;
|
|
55
|
-
sidebarOff: {
|
|
56
|
-
type: import('vue').PropType<boolean>;
|
|
57
|
-
default: boolean;
|
|
58
|
-
};
|
|
59
|
-
}>> & {
|
|
60
|
-
"onSidebar-click"?: (...args: any[]) => any;
|
|
61
|
-
"onSidebar-transition-end"?: (...args: any[]) => any;
|
|
62
|
-
}, {
|
|
63
|
-
closeSidebar: (event: Event) => void;
|
|
64
|
-
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
65
|
-
"sidebar-click": (...args: any[]) => void;
|
|
66
|
-
"sidebar-transition-end": (...args: any[]) => void;
|
|
67
|
-
}, string, {
|
|
68
|
-
sidebarOff: boolean;
|
|
69
|
-
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
70
|
-
$slots: {
|
|
71
|
-
headerLogo?(_: {}): any;
|
|
72
|
-
customContent?(_: {}): any;
|
|
73
|
-
headerButtons?(_: {}): any;
|
|
74
|
-
sidebarContent?(_: {}): any;
|
|
75
|
-
footerContent?(_: {}): any;
|
|
76
|
-
footerLogo?(_: {}): any;
|
|
77
|
-
main?(_: {}): any;
|
|
78
|
-
};
|
|
79
|
-
})>;
|
|
80
|
-
export default PlNavigationPlus;
|
|
81
|
-
export type { ISidebarItem };
|
|
82
|
-
export { ScreenSizes } from '../pl-navigation/screenSizes';
|
|
@@ -1,37 +0,0 @@
|
|
|
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
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
13
|
-
sidebarOpen: import('vue').PropType<boolean>;
|
|
14
|
-
sidebarOff: {
|
|
15
|
-
type: import('vue').PropType<boolean>;
|
|
16
|
-
default: boolean;
|
|
17
|
-
};
|
|
18
|
-
}>> & {
|
|
19
|
-
"onSidebar-click"?: (...args: any[]) => any;
|
|
20
|
-
"onSidebar-transition-end"?: (...args: any[]) => any;
|
|
21
|
-
}, {
|
|
22
|
-
sidebarOff: boolean;
|
|
23
|
-
}, {}>, {
|
|
24
|
-
headerLogo?(_: {}): any;
|
|
25
|
-
customContent?(_: {}): any;
|
|
26
|
-
headerButtons?(_: {}): any;
|
|
27
|
-
sidebarContent?(_: {}): any;
|
|
28
|
-
footerContent?(_: {}): any;
|
|
29
|
-
footerLogo?(_: {}): any;
|
|
30
|
-
main?(_: {}): any;
|
|
31
|
-
}>;
|
|
32
|
-
export default _default;
|
|
33
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
34
|
-
new (): {
|
|
35
|
-
$slots: S;
|
|
36
|
-
};
|
|
37
|
-
};
|