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

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,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,3 +1,5 @@
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>;
@@ -8,7 +10,7 @@ export declare const PlNavigation: import('../../install-function').SFCInstallWi
8
10
  "onExit-click"?: (...args: any[]) => any;
9
11
  "onSidebar-item-click"?: (...args: any[]) => any;
10
12
  }, {
11
- closeSidebar: () => void;
13
+ closeSidebar: (event: Event) => void;
12
14
  }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
15
  "header-logo-click": (...args: any[]) => void;
14
16
  "sidebar-click": (...args: any[]) => void;
@@ -38,7 +40,7 @@ export declare const PlNavigation: import('../../install-function').SFCInstallWi
38
40
  "onExit-click"?: (...args: any[]) => any;
39
41
  "onSidebar-item-click"?: (...args: any[]) => any;
40
42
  }, {
41
- closeSidebar: () => void;
43
+ closeSidebar: (event: Event) => void;
42
44
  }, {}, {}, {}, {}>;
43
45
  __isFragment?: never;
44
46
  __isTeleport?: never;
@@ -52,7 +54,7 @@ export declare const PlNavigation: import('../../install-function').SFCInstallWi
52
54
  "onExit-click"?: (...args: any[]) => any;
53
55
  "onSidebar-item-click"?: (...args: any[]) => any;
54
56
  }, {
55
- closeSidebar: () => void;
57
+ closeSidebar: (event: Event) => void;
56
58
  }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
57
59
  "header-logo-click": (...args: any[]) => void;
58
60
  "sidebar-click": (...args: any[]) => void;
@@ -77,3 +79,5 @@ export declare const PlNavigation: import('../../install-function').SFCInstallWi
77
79
  };
78
80
  })>;
79
81
  export default PlNavigation;
82
+ export type { ISidebarItem };
83
+ export { ScreenSizes } from './screenSizes';
@@ -2,7 +2,7 @@ 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
7
  "header-logo-click": (...args: any[]) => void;
8
8
  "sidebar-click": (...args: any[]) => void;