@factoringplus/pl-components-pack-v3 1.6.1-pre-01-signing → 1.7.1-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.
Files changed (35) hide show
  1. package/dist/Sidebar16-Be-7czuk.mjs +23 -0
  2. package/dist/Sidebar20-DNoqCBQY.mjs +23 -0
  3. package/dist/Sidebar24-D8X_gQu-.mjs +23 -0
  4. package/dist/Sidebar32-BVGCF4d_.mjs +18 -0
  5. package/dist/Sidebar40-BwbLe67U.mjs +18 -0
  6. package/dist/components/components.d.ts +5 -1
  7. package/dist/components/data/pl-signing/index.d.ts +37 -10
  8. package/dist/components/data/pl-signing/pl-signing.vue.d.ts +28 -3
  9. package/dist/components/data/pl-signing/types/index.d.ts +9 -0
  10. package/dist/components/form/pl-autocomplete/components/pl-default.vue.d.ts +3 -0
  11. package/dist/components/form/pl-autocomplete/pl-autocompete.vue.d.ts +3 -0
  12. package/dist/components/form/pl-autocomplete/types/index.d.ts +2 -0
  13. package/dist/components/form/pl-input-plus/components/pl-currency.vue.d.ts +3 -0
  14. package/dist/components/form/pl-input-plus/components/pl-default.vue.d.ts +3 -0
  15. package/dist/components/form/pl-input-plus/components/pl-password.vue.d.ts +3 -0
  16. package/dist/components/form/pl-input-plus/components/pl-textarea.vue.d.ts +3 -0
  17. package/dist/components/form/pl-input-plus/pl-input-plus.vue.d.ts +3 -0
  18. package/dist/components/form/pl-input-plus/types/index.d.ts +1 -0
  19. package/dist/components/shared/pl-icon/types/iconsType.d.ts +1 -1
  20. package/dist/pl-components-pack-v3.es.js +10172 -9811
  21. package/dist/pl-components-pack-v3.umd.js +29 -29
  22. package/dist/services/pl-navigation/components/Header.vue.d.ts +19 -0
  23. package/dist/services/pl-navigation/components/NavButton.vue.d.ts +52 -0
  24. package/dist/services/pl-navigation/components/SidebarItem.vue.d.ts +35 -0
  25. package/dist/services/pl-navigation/components/TLogo.vue.d.ts +2 -0
  26. package/dist/services/pl-navigation/components/index.d.ts +6 -0
  27. package/dist/services/pl-navigation/index.d.ts +79 -0
  28. package/dist/services/pl-navigation/pl-navigation.vue.d.ts +40 -0
  29. package/dist/services/pl-navigation/screenSizes.d.ts +6 -0
  30. package/dist/services/pl-navigation/types.d.ts +11 -0
  31. package/dist/style.css +1 -1
  32. package/dist/utils/callSignError.d.ts +2 -0
  33. package/package.json +1 -1
  34. package/dist/services/SigningService/index.d.ts +0 -52
  35. package/dist/services/SigningService/types/index.d.ts +0 -40
@@ -0,0 +1,19 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2
+ "header-logo-click": (...args: any[]) => void;
3
+ "sidebar-click": (...args: any[]) => void;
4
+ "exit-click": (...args: any[]) => void;
5
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>> & {
6
+ "onHeader-logo-click"?: (...args: any[]) => any;
7
+ "onSidebar-click"?: (...args: any[]) => any;
8
+ "onExit-click"?: (...args: any[]) => any;
9
+ }, {}, {}>, {
10
+ headerLogo?(_: {}): any;
11
+ customContent?(_: {}): any;
12
+ headerBtns?(_: {}): any;
13
+ }>;
14
+ export default _default;
15
+ type __VLS_WithTemplateSlots<T, S> = T & {
16
+ new (): {
17
+ $slots: S;
18
+ };
19
+ };
@@ -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,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,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,6 @@
1
+ import { App } from 'vue';
2
+
3
+ declare const PlNavigationPlugin: {
4
+ install(app: App): void;
5
+ };
6
+ export default PlNavigationPlugin;
@@ -0,0 +1,79 @@
1
+ export declare const PlNavigation: import('../../install-function').SFCInstallWithContext<{
2
+ new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
3
+ sidebarOpen: import('vue').PropType<boolean>;
4
+ activePage: import('vue').PropType<string>;
5
+ }>> & {
6
+ "onHeader-logo-click"?: (...args: any[]) => any;
7
+ "onSidebar-click"?: (...args: any[]) => any;
8
+ "onExit-click"?: (...args: any[]) => any;
9
+ "onSidebar-item-click"?: (...args: any[]) => any;
10
+ }, {
11
+ closeSidebar: () => void;
12
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
+ "header-logo-click": (...args: any[]) => void;
14
+ "sidebar-click": (...args: any[]) => void;
15
+ "exit-click": (...args: any[]) => void;
16
+ "sidebar-item-click": (...args: any[]) => void;
17
+ }, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
18
+ sidebarOpen: import('vue').PropType<boolean>;
19
+ activePage: import('vue').PropType<string>;
20
+ }>> & {
21
+ "onHeader-logo-click"?: (...args: any[]) => any;
22
+ "onSidebar-click"?: (...args: any[]) => any;
23
+ "onExit-click"?: (...args: any[]) => any;
24
+ "onSidebar-item-click"?: (...args: any[]) => any;
25
+ }, {}, true, {}, {}, {
26
+ P: {};
27
+ B: {};
28
+ D: {};
29
+ C: {};
30
+ M: {};
31
+ Defaults: {};
32
+ }, Readonly<import('vue').ExtractPropTypes<{
33
+ sidebarOpen: import('vue').PropType<boolean>;
34
+ activePage: import('vue').PropType<string>;
35
+ }>> & {
36
+ "onHeader-logo-click"?: (...args: any[]) => any;
37
+ "onSidebar-click"?: (...args: any[]) => any;
38
+ "onExit-click"?: (...args: any[]) => any;
39
+ "onSidebar-item-click"?: (...args: any[]) => any;
40
+ }, {
41
+ closeSidebar: () => void;
42
+ }, {}, {}, {}, {}>;
43
+ __isFragment?: never;
44
+ __isTeleport?: never;
45
+ __isSuspense?: never;
46
+ } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
47
+ sidebarOpen: import('vue').PropType<boolean>;
48
+ activePage: import('vue').PropType<string>;
49
+ }>> & {
50
+ "onHeader-logo-click"?: (...args: any[]) => any;
51
+ "onSidebar-click"?: (...args: any[]) => any;
52
+ "onExit-click"?: (...args: any[]) => any;
53
+ "onSidebar-item-click"?: (...args: any[]) => any;
54
+ }, {
55
+ closeSidebar: () => void;
56
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
57
+ "header-logo-click": (...args: any[]) => void;
58
+ "sidebar-click": (...args: any[]) => void;
59
+ "exit-click": (...args: any[]) => void;
60
+ "sidebar-item-click": (...args: any[]) => void;
61
+ }, string, {}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
62
+ $slots: {
63
+ headerLogo?(_: {}): any;
64
+ customContent?(_: {}): any;
65
+ headerBtns?(_: {}): any;
66
+ myCompanies?(_: {}): any;
67
+ sidebarItems?(_: {
68
+ setActivePage: (item: string) => void;
69
+ activePage: string;
70
+ }): any;
71
+ additionalSidebarItems?(_: {
72
+ setActivePage: (item: string) => void;
73
+ activePage: string;
74
+ }): any;
75
+ sideFooter?(_: {}): any;
76
+ main?(_: {}): any;
77
+ };
78
+ })>;
79
+ export default PlNavigation;
@@ -0,0 +1,40 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
2
+ sidebarOpen: import('vue').PropType<boolean>;
3
+ activePage: import('vue').PropType<string>;
4
+ }, {
5
+ closeSidebar: () => void;
6
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
+ "header-logo-click": (...args: any[]) => void;
8
+ "sidebar-click": (...args: any[]) => void;
9
+ "exit-click": (...args: any[]) => void;
10
+ "sidebar-item-click": (...args: any[]) => void;
11
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
12
+ sidebarOpen: import('vue').PropType<boolean>;
13
+ activePage: import('vue').PropType<string>;
14
+ }>> & {
15
+ "onHeader-logo-click"?: (...args: any[]) => any;
16
+ "onSidebar-click"?: (...args: any[]) => any;
17
+ "onExit-click"?: (...args: any[]) => any;
18
+ "onSidebar-item-click"?: (...args: any[]) => any;
19
+ }, {}, {}>, {
20
+ headerLogo?(_: {}): any;
21
+ customContent?(_: {}): any;
22
+ headerBtns?(_: {}): any;
23
+ myCompanies?(_: {}): any;
24
+ sidebarItems?(_: {
25
+ setActivePage: (item: string) => void;
26
+ activePage: string;
27
+ }): any;
28
+ additionalSidebarItems?(_: {
29
+ setActivePage: (item: string) => void;
30
+ activePage: string;
31
+ }): any;
32
+ sideFooter?(_: {}): any;
33
+ main?(_: {}): any;
34
+ }>;
35
+ export default _default;
36
+ type __VLS_WithTemplateSlots<T, S> = T & {
37
+ new (): {
38
+ $slots: S;
39
+ };
40
+ };
@@ -0,0 +1,6 @@
1
+ export declare const ScreenSizes: {
2
+ MOBILE: number;
3
+ TABLET: number;
4
+ DESKTOP: number;
5
+ WIDESCREEN: number;
6
+ };
@@ -0,0 +1,11 @@
1
+ import { TIcon } from '../../components/shared/pl-icon';
2
+
3
+ declare interface ISidebarItem {
4
+ name: string;
5
+ label: string;
6
+ iconLeft: TIcon;
7
+ iconRight?: TIcon;
8
+ alert?: boolean;
9
+ counter?: number;
10
+ }
11
+ export { ISidebarItem };