@bscjc/webui 1.2.3 → 1.3.0
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/README.md +5 -2
- package/dist/components/JcCascader/index.d.ts +150 -50
- package/dist/components/JcDatePicker/index.d.ts +98 -33
- package/dist/components/JcImportButton/index.d.ts +62 -0
- package/dist/components/JcImportButton/index.vue.d.ts +29 -0
- package/dist/components/JcImportDialog/index.d.ts +101 -0
- package/dist/components/JcImportDialog/index.vue.d.ts +53 -0
- package/dist/components/JcInputComplex/index.d.ts +86 -28
- package/dist/components/JcInputSwitch/index.d.ts +86 -28
- package/dist/components/JcListLayout/index.d.ts +2 -4
- package/dist/components/JcMoreQueryContain/index.d.ts +2 -4
- package/dist/components/JcSelectQuery/index.d.ts +2 -4
- package/dist/components/JcTagQuery/index.d.ts +29 -10
- package/dist/components/index.d.ts +2 -0
- package/dist/es/index.mjs +1533 -1352
- package/dist/index.css +2 -2
- package/dist/lib/index.cjs +8 -8
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/types/components/JcCascader/index.d.ts +152 -52
- package/dist/types/components/JcDatePicker/index.d.ts +100 -35
- package/dist/types/components/JcImportButton/index.d.ts +64 -0
- package/dist/types/components/JcImportButton/index.vue.d.ts +31 -0
- package/dist/types/components/JcImportDialog/index.d.ts +103 -0
- package/dist/types/components/JcImportDialog/index.vue.d.ts +55 -0
- package/dist/types/components/JcInputComplex/index.d.ts +1213 -1155
- package/dist/types/components/JcInputSwitch/index.d.ts +423 -365
- package/dist/types/components/JcListLayout/index.d.ts +2 -4
- package/dist/types/components/JcMoreQueryContain/index.d.ts +2 -4
- package/dist/types/components/JcSelectQuery/index.d.ts +2 -4
- package/dist/types/components/JcTagQuery/index.d.ts +29 -10
- package/dist/types/components/index.d.ts +2 -0
- package/dist/types/components.d.ts +2 -0
- package/dist/types/utils/install.d.ts +4 -0
- package/dist/utils/install.d.ts +4 -0
- package/package.json +2 -2
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
type SFCWithInstall<T> = T & Plugin;
|
|
3
|
-
export declare const JcListLayout: SFCWithInstall<{
|
|
1
|
+
export declare const JcListLayout: {
|
|
4
2
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
5
3
|
P: {};
|
|
6
4
|
B: {};
|
|
@@ -18,5 +16,5 @@ export declare const JcListLayout: SFCWithInstall<{
|
|
|
18
16
|
'bottom-header'?(_: {}): any;
|
|
19
17
|
'bottom-body'?(_: {}): any;
|
|
20
18
|
};
|
|
21
|
-
})
|
|
19
|
+
}) & import('vue').Plugin;
|
|
22
20
|
export default JcListLayout;
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
type SFCWithInstall<T> = T & Plugin;
|
|
3
|
-
export declare const JcMoreQueryContain: SFCWithInstall<{
|
|
1
|
+
export declare const JcMoreQueryContain: {
|
|
4
2
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
5
3
|
fieldList: {
|
|
6
4
|
type: {
|
|
@@ -770,5 +768,5 @@ export declare const JcMoreQueryContain: SFCWithInstall<{
|
|
|
770
768
|
scopeForm: any;
|
|
771
769
|
}): any;
|
|
772
770
|
};
|
|
773
|
-
})
|
|
771
|
+
}) & import('vue').Plugin;
|
|
774
772
|
export default JcMoreQueryContain;
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
type SFCWithInstall<T> = T & Plugin;
|
|
3
|
-
export declare const JcSelectQuery: SFCWithInstall<{
|
|
1
|
+
export declare const JcSelectQuery: {
|
|
4
2
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
5
3
|
field: {
|
|
6
4
|
type: StringConstructor;
|
|
@@ -1028,5 +1026,5 @@ export declare const JcSelectQuery: SFCWithInstall<{
|
|
|
1028
1026
|
scope: any;
|
|
1029
1027
|
}): any;
|
|
1030
1028
|
};
|
|
1031
|
-
})
|
|
1029
|
+
}) & import('vue').Plugin;
|
|
1032
1030
|
export default JcSelectQuery;
|
|
@@ -1,16 +1,35 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
export declare const JcTagQuery: {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
3
|
+
injectionKey: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
8
|
+
injectionKey: string;
|
|
9
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
10
|
+
P: {};
|
|
11
|
+
B: {};
|
|
12
|
+
D: {};
|
|
13
|
+
C: {};
|
|
14
|
+
M: {};
|
|
15
|
+
Defaults: {};
|
|
16
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
17
|
+
injectionKey: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
22
|
+
injectionKey: string;
|
|
23
|
+
}>;
|
|
24
|
+
__isFragment?: never;
|
|
25
|
+
__isTeleport?: never;
|
|
26
|
+
__isSuspense?: never;
|
|
27
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
4
28
|
injectionKey: {
|
|
5
29
|
type: StringConstructor;
|
|
6
30
|
default: string;
|
|
7
31
|
};
|
|
8
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string,
|
|
9
|
-
injectionKey: {
|
|
10
|
-
type: StringConstructor;
|
|
11
|
-
default: string;
|
|
12
|
-
};
|
|
13
|
-
}>> & Readonly<{}>, {
|
|
32
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
14
33
|
injectionKey: string;
|
|
15
|
-
}, {},
|
|
34
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin;
|
|
16
35
|
export default JcTagQuery;
|
|
@@ -10,6 +10,8 @@ declare module "@vue/runtime-core" {
|
|
|
10
10
|
JcTagQuery: typeof components.JcTagQuery;
|
|
11
11
|
JcMoreQueryContain: typeof components.JcMoreQueryContain;
|
|
12
12
|
JcListLayout: typeof components.JcListLayout;
|
|
13
|
+
JcImportDialog: typeof components.JcImportDialog;
|
|
14
|
+
JcImportButton: typeof components.JcImportButton;
|
|
13
15
|
|
|
14
16
|
// Global component extensions
|
|
15
17
|
[key: `Jc${string}`]: import("vue").DefineComponent;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bscjc/webui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.3.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/lib/index.cjs",
|
|
7
7
|
"module": "./dist/es/index.mjs",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"cssnano": "^7.0.7",
|
|
53
53
|
"unplugin-element-plus": "^0.10.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "8ad3604e29dd684fff35e2c9a7de13aa7176dfdd"
|
|
56
56
|
}
|