@factoringplus/pl-components-pack-v3 1.7.1-pre-01 → 1.7.1-pre-03

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.
@@ -1,9 +1,7 @@
1
1
  declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2
- "header-logo-click": (...args: any[]) => void;
3
2
  "sidebar-click": (...args: any[]) => void;
4
3
  "exit-click": (...args: any[]) => void;
5
4
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>> & {
6
- "onHeader-logo-click"?: (...args: any[]) => any;
7
5
  "onSidebar-click"?: (...args: any[]) => any;
8
6
  "onExit-click"?: (...args: any[]) => any;
9
7
  }, {}, {}>, {
@@ -1,4 +1,4 @@
1
- import { TIcon } from '../../../components/shared/pl-icon';
1
+ import { TIcon } from '../../../../components/shared/pl-icon';
2
2
 
3
3
  interface IProps {
4
4
  icon?: TIcon;
@@ -0,0 +1,112 @@
1
+ export declare const PlNavButton: 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 PlNavButton;
@@ -1,4 +1,4 @@
1
- import { ISidebarItem } from '../types';
1
+ import { ISidebarItem } from '../../types';
2
2
 
3
3
  interface IProps {
4
4
  item: ISidebarItem;
@@ -0,0 +1,28 @@
1
+ export declare const PlSidebarItem: 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 PlSidebarItem;
@@ -0,0 +1,2 @@
1
+ export declare const TLogo: import('../../../../install-function').SFCInstallWithContext<import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>>;
2
+ export default TLogo;
@@ -1,16 +1,16 @@
1
+ import { ISidebarItem } from './types';
2
+
1
3
  export declare const PlNavigation: import('../../install-function').SFCInstallWithContext<{
2
4
  new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
3
5
  sidebarOpen: import('vue').PropType<boolean>;
4
6
  activePage: import('vue').PropType<string>;
5
7
  }>> & {
6
- "onHeader-logo-click"?: (...args: any[]) => any;
7
8
  "onSidebar-click"?: (...args: any[]) => any;
8
9
  "onExit-click"?: (...args: any[]) => any;
9
10
  "onSidebar-item-click"?: (...args: any[]) => any;
10
11
  }, {
11
- closeSidebar: () => void;
12
+ closeSidebar: (event: Event) => void;
12
13
  }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
- "header-logo-click": (...args: any[]) => void;
14
14
  "sidebar-click": (...args: any[]) => void;
15
15
  "exit-click": (...args: any[]) => void;
16
16
  "sidebar-item-click": (...args: any[]) => void;
@@ -18,7 +18,6 @@ export declare const PlNavigation: import('../../install-function').SFCInstallWi
18
18
  sidebarOpen: import('vue').PropType<boolean>;
19
19
  activePage: import('vue').PropType<string>;
20
20
  }>> & {
21
- "onHeader-logo-click"?: (...args: any[]) => any;
22
21
  "onSidebar-click"?: (...args: any[]) => any;
23
22
  "onExit-click"?: (...args: any[]) => any;
24
23
  "onSidebar-item-click"?: (...args: any[]) => any;
@@ -33,12 +32,11 @@ export declare const PlNavigation: import('../../install-function').SFCInstallWi
33
32
  sidebarOpen: import('vue').PropType<boolean>;
34
33
  activePage: import('vue').PropType<string>;
35
34
  }>> & {
36
- "onHeader-logo-click"?: (...args: any[]) => any;
37
35
  "onSidebar-click"?: (...args: any[]) => any;
38
36
  "onExit-click"?: (...args: any[]) => any;
39
37
  "onSidebar-item-click"?: (...args: any[]) => any;
40
38
  }, {
41
- closeSidebar: () => void;
39
+ closeSidebar: (event: Event) => void;
42
40
  }, {}, {}, {}, {}>;
43
41
  __isFragment?: never;
44
42
  __isTeleport?: never;
@@ -47,14 +45,12 @@ export declare const PlNavigation: import('../../install-function').SFCInstallWi
47
45
  sidebarOpen: import('vue').PropType<boolean>;
48
46
  activePage: import('vue').PropType<string>;
49
47
  }>> & {
50
- "onHeader-logo-click"?: (...args: any[]) => any;
51
48
  "onSidebar-click"?: (...args: any[]) => any;
52
49
  "onExit-click"?: (...args: any[]) => any;
53
50
  "onSidebar-item-click"?: (...args: any[]) => any;
54
51
  }, {
55
- closeSidebar: () => void;
52
+ closeSidebar: (event: Event) => void;
56
53
  }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
57
- "header-logo-click": (...args: any[]) => void;
58
54
  "sidebar-click": (...args: any[]) => void;
59
55
  "exit-click": (...args: any[]) => void;
60
56
  "sidebar-item-click": (...args: any[]) => void;
@@ -77,3 +73,5 @@ export declare const PlNavigation: import('../../install-function').SFCInstallWi
77
73
  };
78
74
  })>;
79
75
  export default PlNavigation;
76
+ export type { ISidebarItem };
77
+ export { ScreenSizes } from './screenSizes';
@@ -2,9 +2,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
2
2
  sidebarOpen: import('vue').PropType<boolean>;
3
3
  activePage: import('vue').PropType<string>;
4
4
  }, {
5
- closeSidebar: () => void;
5
+ closeSidebar: (event: Event) => void;
6
6
  }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
- "header-logo-click": (...args: any[]) => void;
8
7
  "sidebar-click": (...args: any[]) => void;
9
8
  "exit-click": (...args: any[]) => void;
10
9
  "sidebar-item-click": (...args: any[]) => void;
@@ -12,7 +11,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
12
11
  sidebarOpen: import('vue').PropType<boolean>;
13
12
  activePage: import('vue').PropType<string>;
14
13
  }>> & {
15
- "onHeader-logo-click"?: (...args: any[]) => any;
16
14
  "onSidebar-click"?: (...args: any[]) => any;
17
15
  "onExit-click"?: (...args: any[]) => any;
18
16
  "onSidebar-item-click"?: (...args: any[]) => any;