@bscjc/webui 0.0.16 → 0.0.18
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 +1 -475
- package/dist/components/JcListLayout/index.d.ts +24 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/es/index.mjs +1118 -1050
- package/dist/hooks/useQuery.d.ts +6 -3
- package/dist/hooks/useQueryStore.d.ts +20 -6
- package/dist/index.css +2 -2
- package/dist/lib/index.cjs +8 -8
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/types/components.d.ts +1 -0
- package/package.json +16 -4
- package/dist/types/components/JcDatePicker/index.d.ts +0 -66
- package/dist/types/components/JcDatePicker/index.vue.d.ts +0 -60
- package/dist/types/components/JcInputComplex/index.d.ts +0 -1377
- package/dist/types/components/JcInputComplex/index.vue.d.ts +0 -1371
- package/dist/types/components/JcInputSwitch/index.d.ts +0 -573
- package/dist/types/components/JcInputSwitch/index.vue.d.ts +0 -567
- package/dist/types/components/JcMoreQueryContain/index.d.ts +0 -759
- package/dist/types/components/JcMoreQueryContain/index.vue.d.ts +0 -1191
- package/dist/types/components/JcSelectQuery/index.d.ts +0 -1002
- package/dist/types/components/JcSelectQuery/index.vue.d.ts +0 -1728
- package/dist/types/components/JcTagQuery/index.d.ts +0 -4
- package/dist/types/components/JcTagQuery/index.vue.d.ts +0 -2
- package/dist/types/components/index.d.ts +0 -6
- package/dist/types/hooks/useQuery.d.ts +0 -11
- package/dist/types/hooks/useQueryStore.d.ts +0 -36
- package/dist/types/index.d.ts +0 -9
- /package/dist/components/{ListLayout → JcListLayout}/index.vue.d.ts +0 -0
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { Plugin } from 'vue';
|
|
2
|
-
type SFCWithInstall<T> = T & Plugin;
|
|
3
|
-
export declare const JcTagQuery: SFCWithInstall<import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>>;
|
|
4
|
-
export default JcTagQuery;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
-
export default _default;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export declare const reactiveQuery: (params?: {}) => {
|
|
2
|
-
queryForm: Record<string, any>;
|
|
3
|
-
setQuery: (key: string, value: any) => void;
|
|
4
|
-
addTag: (tag: any) => void;
|
|
5
|
-
reduceTag: (tag: {
|
|
6
|
-
label: string;
|
|
7
|
-
value: string;
|
|
8
|
-
}, index?: number) => void;
|
|
9
|
-
reduceAllTag: () => void;
|
|
10
|
-
clearQuery: () => void;
|
|
11
|
-
};
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
type tagType = {
|
|
2
|
-
label: string;
|
|
3
|
-
value: string;
|
|
4
|
-
};
|
|
5
|
-
export type QueryAndTagType = {
|
|
6
|
-
queryForm: Record<string, any>;
|
|
7
|
-
tags: Array<tagType>;
|
|
8
|
-
};
|
|
9
|
-
declare const useProvideQueryStore: (initObj: QueryAndTagType) => {
|
|
10
|
-
state: {
|
|
11
|
-
queryForm: Record<string, any>;
|
|
12
|
-
tags: {
|
|
13
|
-
label: string;
|
|
14
|
-
value: string;
|
|
15
|
-
}[];
|
|
16
|
-
};
|
|
17
|
-
setQuery: (key: string, value: any) => void;
|
|
18
|
-
addTag: (tag: any) => void;
|
|
19
|
-
reduceTag: (tag: tagType, index?: number) => void;
|
|
20
|
-
reduceAllTag: () => void;
|
|
21
|
-
clearQuery: (initObj?: any) => void;
|
|
22
|
-
}, useQueryStore: () => {
|
|
23
|
-
state: {
|
|
24
|
-
queryForm: Record<string, any>;
|
|
25
|
-
tags: {
|
|
26
|
-
label: string;
|
|
27
|
-
value: string;
|
|
28
|
-
}[];
|
|
29
|
-
};
|
|
30
|
-
setQuery: (key: string, value: any) => void;
|
|
31
|
-
addTag: (tag: any) => void;
|
|
32
|
-
reduceTag: (tag: tagType, index?: number) => void;
|
|
33
|
-
reduceAllTag: () => void;
|
|
34
|
-
clearQuery: (initObj?: any) => void;
|
|
35
|
-
} | undefined;
|
|
36
|
-
export { useProvideQueryStore, useQueryStore };
|
package/dist/types/index.d.ts
DELETED
|
File without changes
|