@bscjc/webui 1.2.4 → 1.4.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.
Files changed (47) hide show
  1. package/README.md +5 -2
  2. package/dist/components/JcCascader/index.d.ts +150 -50
  3. package/dist/components/JcColumnConfig/constants.d.ts +9 -0
  4. package/dist/components/JcColumnConfig/index.d.ts +190 -0
  5. package/dist/components/JcColumnConfig/index.vue.d.ts +95 -0
  6. package/dist/components/JcColumnConfig/storage.d.ts +28 -0
  7. package/dist/components/JcColumnConfig/types.d.ts +99 -0
  8. package/dist/components/JcColumnConfig/useColumnConfig.d.ts +88 -0
  9. package/dist/components/JcDatePicker/index.d.ts +98 -33
  10. package/dist/components/JcImportButton/index.d.ts +62 -0
  11. package/dist/components/JcImportButton/index.vue.d.ts +29 -0
  12. package/dist/components/JcImportDialog/index.d.ts +101 -0
  13. package/dist/components/JcImportDialog/index.vue.d.ts +53 -0
  14. package/dist/components/JcInputComplex/index.d.ts +86 -28
  15. package/dist/components/JcInputSwitch/index.d.ts +86 -28
  16. package/dist/components/JcListLayout/index.d.ts +2 -4
  17. package/dist/components/JcMoreQueryContain/index.d.ts +2 -4
  18. package/dist/components/JcSelectQuery/index.d.ts +2 -4
  19. package/dist/components/JcTagQuery/index.d.ts +29 -10
  20. package/dist/components/index.d.ts +3 -0
  21. package/dist/es/index.mjs +2311 -2506
  22. package/dist/index.css +2 -2
  23. package/dist/lib/index.cjs +8 -8
  24. package/dist/tsconfig.app.tsbuildinfo +1 -1
  25. package/dist/types/components/JcCascader/index.d.ts +152 -52
  26. package/dist/types/components/JcColumnConfig/constants.d.ts +9 -0
  27. package/dist/types/components/JcColumnConfig/index.d.ts +190 -0
  28. package/dist/types/components/JcColumnConfig/index.vue.d.ts +95 -0
  29. package/dist/types/components/JcColumnConfig/storage.d.ts +25 -0
  30. package/dist/types/components/JcColumnConfig/types.d.ts +96 -0
  31. package/dist/types/components/JcColumnConfig/useColumnConfig.d.ts +85 -0
  32. package/dist/types/components/JcDatePicker/index.d.ts +100 -35
  33. package/dist/types/components/JcImportButton/index.d.ts +64 -0
  34. package/dist/types/components/JcImportButton/index.vue.d.ts +31 -0
  35. package/dist/types/components/JcImportDialog/index.d.ts +103 -0
  36. package/dist/types/components/JcImportDialog/index.vue.d.ts +55 -0
  37. package/dist/types/components/JcInputComplex/index.d.ts +1213 -1155
  38. package/dist/types/components/JcInputSwitch/index.d.ts +423 -365
  39. package/dist/types/components/JcListLayout/index.d.ts +2 -4
  40. package/dist/types/components/JcMoreQueryContain/index.d.ts +2 -4
  41. package/dist/types/components/JcSelectQuery/index.d.ts +2 -4
  42. package/dist/types/components/JcTagQuery/index.d.ts +29 -10
  43. package/dist/types/components/index.d.ts +3 -0
  44. package/dist/types/components.d.ts +3 -0
  45. package/dist/types/utils/install.d.ts +4 -0
  46. package/dist/utils/install.d.ts +4 -0
  47. package/package.json +7 -4
@@ -1,32 +1,86 @@
1
- import type { Plugin } from "vue";
2
- type SFCWithInstall<T> = T & Plugin;
3
- export declare const JcInputSwitch: SFCWithInstall<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
- fieldList: {
5
- type: import("vue").PropType<Array<{
1
+ export declare const JcInputSwitch: {
2
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
3
+ fieldList: {
4
+ type: import("vue").PropType<Array<{
5
+ label: string;
6
+ value: string;
7
+ }>>;
8
+ required: true;
9
+ default: () => never[];
10
+ };
11
+ size: {
12
+ type: import("vue").PropType<"small" | "default" | "large">;
13
+ default: string;
14
+ validator: (value: string) => boolean;
15
+ };
16
+ width: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ injectionKey: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ };
24
+ }>> & Readonly<{
25
+ onFieldChange?: ((...args: any[]) => any) | undefined;
26
+ }>, {
27
+ [x: string]: any;
28
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
29
+ fieldChange: (...args: any[]) => void;
30
+ }, import("vue").PublicProps, {
31
+ size: "small" | "default" | "large";
32
+ injectionKey: string;
33
+ width: string;
34
+ fieldList: {
6
35
  label: string;
7
36
  value: string;
8
- }>>;
9
- required: true;
10
- default: () => never[];
11
- };
12
- size: {
13
- type: import("vue").PropType<"small" | "default" | "large">;
14
- default: string;
15
- validator: (value: string) => boolean;
16
- };
17
- width: {
18
- type: StringConstructor;
19
- default: string;
20
- };
21
- injectionKey: {
22
- type: StringConstructor;
23
- default: string;
24
- };
25
- }>, {
26
- [x: string]: any;
27
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
28
- fieldChange: (...args: any[]) => void;
29
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
37
+ }[];
38
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
39
+ P: {};
40
+ B: {};
41
+ D: {};
42
+ C: {};
43
+ M: {};
44
+ Defaults: {};
45
+ }, Readonly<import("vue").ExtractPropTypes<{
46
+ fieldList: {
47
+ type: import("vue").PropType<Array<{
48
+ label: string;
49
+ value: string;
50
+ }>>;
51
+ required: true;
52
+ default: () => never[];
53
+ };
54
+ size: {
55
+ type: import("vue").PropType<"small" | "default" | "large">;
56
+ default: string;
57
+ validator: (value: string) => boolean;
58
+ };
59
+ width: {
60
+ type: StringConstructor;
61
+ default: string;
62
+ };
63
+ injectionKey: {
64
+ type: StringConstructor;
65
+ default: string;
66
+ };
67
+ }>> & Readonly<{
68
+ onFieldChange?: ((...args: any[]) => any) | undefined;
69
+ }>, {
70
+ [x: string]: any;
71
+ }, {}, {}, {}, {
72
+ size: "small" | "default" | "large";
73
+ injectionKey: string;
74
+ width: string;
75
+ fieldList: {
76
+ label: string;
77
+ value: string;
78
+ }[];
79
+ }>;
80
+ __isFragment?: never;
81
+ __isTeleport?: never;
82
+ __isSuspense?: never;
83
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
30
84
  fieldList: {
31
85
  type: import("vue").PropType<Array<{
32
86
  label: string;
@@ -51,6 +105,10 @@ export declare const JcInputSwitch: SFCWithInstall<import("vue").DefineComponent
51
105
  }>> & Readonly<{
52
106
  onFieldChange?: ((...args: any[]) => any) | undefined;
53
107
  }>, {
108
+ [x: string]: any;
109
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
110
+ fieldChange: (...args: any[]) => void;
111
+ }, string, {
54
112
  size: "small" | "default" | "large";
55
113
  injectionKey: string;
56
114
  width: string;
@@ -58,5 +116,5 @@ export declare const JcInputSwitch: SFCWithInstall<import("vue").DefineComponent
58
116
  label: string;
59
117
  value: string;
60
118
  }[];
61
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
119
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin;
62
120
  export default JcInputSwitch;
@@ -1,6 +1,4 @@
1
- import type { Plugin } from "vue";
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, {}, any, import("vue").ComponentProvideOptions, {
5
3
  P: {};
6
4
  B: {};
@@ -20,5 +18,5 @@ export declare const JcListLayout: SFCWithInstall<{
20
18
  } & {
21
19
  'bottom-body'?: (props: {}) => any;
22
20
  };
23
- })>;
21
+ }) & import("vue").Plugin;
24
22
  export default JcListLayout;
@@ -1,6 +1,4 @@
1
- import type { Plugin } from "vue";
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: {
@@ -225,5 +223,5 @@ export declare const JcMoreQueryContain: SFCWithInstall<{
225
223
  scopeForm: any;
226
224
  }) => any;
227
225
  };
228
- })>;
226
+ }) & import("vue").Plugin;
229
227
  export default JcMoreQueryContain;
@@ -1,6 +1,4 @@
1
- import type { Plugin } from "vue";
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;
@@ -222,5 +220,5 @@ export declare const JcSelectQuery: SFCWithInstall<{
222
220
  scope: any;
223
221
  }) => any;
224
222
  };
225
- })>;
223
+ }) & import("vue").Plugin;
226
224
  export default JcSelectQuery;
@@ -1,16 +1,35 @@
1
- import type { Plugin } from "vue";
2
- type SFCWithInstall<T> = T & Plugin;
3
- export declare const JcTagQuery: SFCWithInstall<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
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, {}, any, 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, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
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
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
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;
@@ -6,3 +6,6 @@ export * from "./JcInputComplex/index";
6
6
  export * from "./JcTagQuery/index";
7
7
  export * from "./JcMoreQueryContain/index";
8
8
  export * from "./JcListLayout/index";
9
+ export * from "./JcImportDialog/index";
10
+ export * from "./JcImportButton/index";
11
+ export * from "./JcColumnConfig/index";