@factoringplus/pl-components-pack-v3 1.8.32-pre-01 → 1.8.32-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.
- package/dist/{crypto-pro-c392cbae.js → crypto-pro-8111b55c.js} +1 -1
- package/dist/{crypto-pro-e478627b.cjs → crypto-pro-a7f2b9d8.cjs} +1 -1
- package/dist/{entry-e8b13f9e.js → entry-c5a1255c.js} +9729 -9876
- package/dist/entry-ffe67986.cjs +115 -0
- package/dist/pl-components-pack-v3.cjs.js +1 -1
- package/dist/pl-components-pack-v3.es.js +54 -60
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-control/index.d.ts +2 -2
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-control/pl-skeleton-control.vue.d.ts +2 -2
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-text-cell/index.d.ts +9 -9
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-text-cell/pl-skeleton-text-cell.vue.d.ts +4 -4
- package/dist/src/components/components.d.ts +1 -7
- package/dist/src/components/data/pl-tags-chips/index.d.ts +19 -19
- package/dist/src/components/data/pl-tags-chips/pl-tags-chips.vue.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/entry-9fbbcccf.cjs +0 -115
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-button/index.d.ts +0 -29
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-button/pl-skeleton-button.vue.d.ts +0 -33
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-input/index.d.ts +0 -20
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-input/pl-skeleton-input.vue.d.ts +0 -29
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-tabs/index.d.ts +0 -10
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-tabs/pl-skeleton-tabs.vue.d.ts +0 -22
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-tags-chips/index.d.ts +0 -29
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-tags-chips/pl-skeleton-tags-chips.vue.d.ts +0 -33
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-text/index.d.ts +0 -20
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-text/pl-skeleton-text.vue.d.ts +0 -29
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-upload/index.d.ts +0 -10
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-upload/pl-skeleton-upload.vue.d.ts +0 -22
@@ -1,29 +0,0 @@
|
|
1
|
-
export declare const PlSkeletonButton: import('../../../../../install-function').SFCInstallWithContext<import('vue').DefineComponent<{
|
2
|
-
size: {
|
3
|
-
type: import('vue').PropType<"small" | "large" | "medium">;
|
4
|
-
default: string;
|
5
|
-
};
|
6
|
-
type: {
|
7
|
-
type: import('vue').PropType<"link" | "primary" | "empty">;
|
8
|
-
default: string;
|
9
|
-
};
|
10
|
-
width: {
|
11
|
-
type: import('vue').PropType<string>;
|
12
|
-
};
|
13
|
-
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
14
|
-
size: {
|
15
|
-
type: import('vue').PropType<"small" | "large" | "medium">;
|
16
|
-
default: string;
|
17
|
-
};
|
18
|
-
type: {
|
19
|
-
type: import('vue').PropType<"link" | "primary" | "empty">;
|
20
|
-
default: string;
|
21
|
-
};
|
22
|
-
width: {
|
23
|
-
type: import('vue').PropType<string>;
|
24
|
-
};
|
25
|
-
}>>, {
|
26
|
-
size: "small" | "large" | "medium";
|
27
|
-
type: "link" | "primary" | "empty";
|
28
|
-
}, {}>>;
|
29
|
-
export default PlSkeletonButton;
|
@@ -1,33 +0,0 @@
|
|
1
|
-
interface IProps {
|
2
|
-
width?: string;
|
3
|
-
type?: 'primary' | 'empty' | 'link';
|
4
|
-
size?: 'large' | 'medium' | 'small';
|
5
|
-
}
|
6
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
7
|
-
type: string;
|
8
|
-
size: string;
|
9
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
10
|
-
type: string;
|
11
|
-
size: string;
|
12
|
-
}>>>, {
|
13
|
-
size: "small" | "large" | "medium";
|
14
|
-
type: "link" | "primary" | "empty";
|
15
|
-
}, {}>;
|
16
|
-
export default _default;
|
17
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
18
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
19
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
20
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
21
|
-
} : {
|
22
|
-
type: import('vue').PropType<T[K]>;
|
23
|
-
required: true;
|
24
|
-
};
|
25
|
-
};
|
26
|
-
type __VLS_WithDefaults<P, D> = {
|
27
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
28
|
-
default: D[K];
|
29
|
-
}> : P[K];
|
30
|
-
};
|
31
|
-
type __VLS_Prettify<T> = {
|
32
|
-
[K in keyof T]: T[K];
|
33
|
-
} & {};
|
@@ -1,20 +0,0 @@
|
|
1
|
-
export declare const PlSkeletonInput: import('../../../../../install-function').SFCInstallWithContext<import('vue').DefineComponent<{
|
2
|
-
type: {
|
3
|
-
type: import('vue').PropType<"input" | "text-area">;
|
4
|
-
default: string;
|
5
|
-
};
|
6
|
-
width: {
|
7
|
-
type: import('vue').PropType<string>;
|
8
|
-
};
|
9
|
-
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
10
|
-
type: {
|
11
|
-
type: import('vue').PropType<"input" | "text-area">;
|
12
|
-
default: string;
|
13
|
-
};
|
14
|
-
width: {
|
15
|
-
type: import('vue').PropType<string>;
|
16
|
-
};
|
17
|
-
}>>, {
|
18
|
-
type: "input" | "text-area";
|
19
|
-
}, {}>>;
|
20
|
-
export default PlSkeletonInput;
|
@@ -1,29 +0,0 @@
|
|
1
|
-
interface IProps {
|
2
|
-
width?: string;
|
3
|
-
type?: 'input' | 'text-area';
|
4
|
-
}
|
5
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
6
|
-
type: string;
|
7
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
8
|
-
type: string;
|
9
|
-
}>>>, {
|
10
|
-
type: "input" | "text-area";
|
11
|
-
}, {}>;
|
12
|
-
export default _default;
|
13
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
14
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
15
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
16
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
17
|
-
} : {
|
18
|
-
type: import('vue').PropType<T[K]>;
|
19
|
-
required: true;
|
20
|
-
};
|
21
|
-
};
|
22
|
-
type __VLS_WithDefaults<P, D> = {
|
23
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
24
|
-
default: D[K];
|
25
|
-
}> : P[K];
|
26
|
-
};
|
27
|
-
type __VLS_Prettify<T> = {
|
28
|
-
[K in keyof T]: T[K];
|
29
|
-
} & {};
|
@@ -1,10 +0,0 @@
|
|
1
|
-
export declare const PlSkeletonTabs: import('../../../../../install-function').SFCInstallWithContext<import('vue').DefineComponent<{
|
2
|
-
width: {
|
3
|
-
type: import('vue').PropType<string>;
|
4
|
-
};
|
5
|
-
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
6
|
-
width: {
|
7
|
-
type: import('vue').PropType<string>;
|
8
|
-
};
|
9
|
-
}>>, {}, {}>>;
|
10
|
-
export default PlSkeletonTabs;
|
package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-tabs/pl-skeleton-tabs.vue.d.ts
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
interface IProps {
|
2
|
-
width?: string;
|
3
|
-
}
|
4
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {}>>>, {}, {}>;
|
5
|
-
export default _default;
|
6
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
7
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
8
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
9
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
10
|
-
} : {
|
11
|
-
type: import('vue').PropType<T[K]>;
|
12
|
-
required: true;
|
13
|
-
};
|
14
|
-
};
|
15
|
-
type __VLS_WithDefaults<P, D> = {
|
16
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
17
|
-
default: D[K];
|
18
|
-
}> : P[K];
|
19
|
-
};
|
20
|
-
type __VLS_Prettify<T> = {
|
21
|
-
[K in keyof T]: T[K];
|
22
|
-
} & {};
|
@@ -1,29 +0,0 @@
|
|
1
|
-
export declare const PlSkeletonTagsChips: import('../../../../../install-function').SFCInstallWithContext<import('vue').DefineComponent<{
|
2
|
-
size: {
|
3
|
-
type: import('vue').PropType<"small" | "large">;
|
4
|
-
default: string;
|
5
|
-
};
|
6
|
-
type: {
|
7
|
-
type: import('vue').PropType<"tag" | "chip">;
|
8
|
-
default: string;
|
9
|
-
};
|
10
|
-
width: {
|
11
|
-
type: import('vue').PropType<string>;
|
12
|
-
};
|
13
|
-
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
14
|
-
size: {
|
15
|
-
type: import('vue').PropType<"small" | "large">;
|
16
|
-
default: string;
|
17
|
-
};
|
18
|
-
type: {
|
19
|
-
type: import('vue').PropType<"tag" | "chip">;
|
20
|
-
default: string;
|
21
|
-
};
|
22
|
-
width: {
|
23
|
-
type: import('vue').PropType<string>;
|
24
|
-
};
|
25
|
-
}>>, {
|
26
|
-
size: "small" | "large";
|
27
|
-
type: "tag" | "chip";
|
28
|
-
}, {}>>;
|
29
|
-
export default PlSkeletonTagsChips;
|
@@ -1,33 +0,0 @@
|
|
1
|
-
interface IProps {
|
2
|
-
width?: string;
|
3
|
-
type?: 'tag' | 'chip';
|
4
|
-
size?: 'large' | 'small';
|
5
|
-
}
|
6
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
7
|
-
type: string;
|
8
|
-
size: string;
|
9
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
10
|
-
type: string;
|
11
|
-
size: string;
|
12
|
-
}>>>, {
|
13
|
-
size: "small" | "large";
|
14
|
-
type: "tag" | "chip";
|
15
|
-
}, {}>;
|
16
|
-
export default _default;
|
17
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
18
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
19
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
20
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
21
|
-
} : {
|
22
|
-
type: import('vue').PropType<T[K]>;
|
23
|
-
required: true;
|
24
|
-
};
|
25
|
-
};
|
26
|
-
type __VLS_WithDefaults<P, D> = {
|
27
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
28
|
-
default: D[K];
|
29
|
-
}> : P[K];
|
30
|
-
};
|
31
|
-
type __VLS_Prettify<T> = {
|
32
|
-
[K in keyof T]: T[K];
|
33
|
-
} & {};
|
@@ -1,20 +0,0 @@
|
|
1
|
-
export declare const PlSkeletonText: import('../../../../../install-function').SFCInstallWithContext<import('vue').DefineComponent<{
|
2
|
-
type: {
|
3
|
-
type: import('vue').PropType<"H1" | "H2" | "H3" | "H4" | "Title1" | "Title2" | "Title3" | "Subtitle1" | "Subtitle2" | "Btn1" | "Btn2" | "Btn3" | "Body1" | "Body2" | "Body3" | "Underline" | "System" | "Cap" | "Tag">;
|
4
|
-
default: string;
|
5
|
-
};
|
6
|
-
width: {
|
7
|
-
type: import('vue').PropType<string>;
|
8
|
-
};
|
9
|
-
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
10
|
-
type: {
|
11
|
-
type: import('vue').PropType<"H1" | "H2" | "H3" | "H4" | "Title1" | "Title2" | "Title3" | "Subtitle1" | "Subtitle2" | "Btn1" | "Btn2" | "Btn3" | "Body1" | "Body2" | "Body3" | "Underline" | "System" | "Cap" | "Tag">;
|
12
|
-
default: string;
|
13
|
-
};
|
14
|
-
width: {
|
15
|
-
type: import('vue').PropType<string>;
|
16
|
-
};
|
17
|
-
}>>, {
|
18
|
-
type: "H1" | "H2" | "H3" | "H4" | "Title1" | "Title2" | "Title3" | "Subtitle1" | "Subtitle2" | "Btn1" | "Btn2" | "Btn3" | "Body1" | "Body2" | "Body3" | "Underline" | "System" | "Cap" | "Tag";
|
19
|
-
}, {}>>;
|
20
|
-
export default PlSkeletonText;
|
package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-text/pl-skeleton-text.vue.d.ts
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
interface IProps {
|
2
|
-
width?: string;
|
3
|
-
type?: 'H1' | 'H2' | 'H3' | 'H4' | 'Title1' | 'Title2' | 'Title3' | 'Subtitle1' | 'Subtitle2' | 'Btn1' | 'Btn2' | 'Btn3' | 'Body1' | 'Body2' | 'Body3' | 'Underline' | 'System' | 'Cap' | 'Tag';
|
4
|
-
}
|
5
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
6
|
-
type: string;
|
7
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
8
|
-
type: string;
|
9
|
-
}>>>, {
|
10
|
-
type: "H1" | "H2" | "H3" | "H4" | "Title1" | "Title2" | "Title3" | "Subtitle1" | "Subtitle2" | "Btn1" | "Btn2" | "Btn3" | "Body1" | "Body2" | "Body3" | "Underline" | "System" | "Cap" | "Tag";
|
11
|
-
}, {}>;
|
12
|
-
export default _default;
|
13
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
14
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
15
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
16
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
17
|
-
} : {
|
18
|
-
type: import('vue').PropType<T[K]>;
|
19
|
-
required: true;
|
20
|
-
};
|
21
|
-
};
|
22
|
-
type __VLS_WithDefaults<P, D> = {
|
23
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
24
|
-
default: D[K];
|
25
|
-
}> : P[K];
|
26
|
-
};
|
27
|
-
type __VLS_Prettify<T> = {
|
28
|
-
[K in keyof T]: T[K];
|
29
|
-
} & {};
|
@@ -1,10 +0,0 @@
|
|
1
|
-
export declare const PlSkeletonUpload: import('../../../../../install-function').SFCInstallWithContext<import('vue').DefineComponent<{
|
2
|
-
width: {
|
3
|
-
type: import('vue').PropType<string>;
|
4
|
-
};
|
5
|
-
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
6
|
-
width: {
|
7
|
-
type: import('vue').PropType<string>;
|
8
|
-
};
|
9
|
-
}>>, {}, {}>>;
|
10
|
-
export default PlSkeletonUpload;
|
@@ -1,22 +0,0 @@
|
|
1
|
-
interface IProps {
|
2
|
-
width?: string;
|
3
|
-
}
|
4
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {}>>>, {}, {}>;
|
5
|
-
export default _default;
|
6
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
7
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
8
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
9
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
10
|
-
} : {
|
11
|
-
type: import('vue').PropType<T[K]>;
|
12
|
-
required: true;
|
13
|
-
};
|
14
|
-
};
|
15
|
-
type __VLS_WithDefaults<P, D> = {
|
16
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
17
|
-
default: D[K];
|
18
|
-
}> : P[K];
|
19
|
-
};
|
20
|
-
type __VLS_Prettify<T> = {
|
21
|
-
[K in keyof T]: T[K];
|
22
|
-
} & {};
|