@bscjc/webui 0.0.15 → 0.0.17

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 (30) hide show
  1. package/README.md +1 -475
  2. package/dist/components/JcListLayout/index.d.ts +24 -0
  3. package/dist/components/index.d.ts +1 -0
  4. package/dist/es/index.mjs +1118 -1050
  5. package/dist/hooks/useQuery.d.ts +6 -3
  6. package/dist/hooks/useQueryStore.d.ts +20 -6
  7. package/dist/index.css +2 -0
  8. package/dist/lib/index.cjs +8 -8
  9. package/dist/tsconfig.app.tsbuildinfo +1 -1
  10. package/dist/types/components.d.ts +1 -0
  11. package/package.json +9 -4
  12. package/dist/es/styles/index.css +0 -1
  13. package/dist/lib/styles/index.css +0 -1
  14. package/dist/types/components/JcDatePicker/index.d.ts +0 -66
  15. package/dist/types/components/JcDatePicker/index.vue.d.ts +0 -60
  16. package/dist/types/components/JcInputComplex/index.d.ts +0 -1377
  17. package/dist/types/components/JcInputComplex/index.vue.d.ts +0 -1371
  18. package/dist/types/components/JcInputSwitch/index.d.ts +0 -573
  19. package/dist/types/components/JcInputSwitch/index.vue.d.ts +0 -567
  20. package/dist/types/components/JcMoreQueryContain/index.d.ts +0 -759
  21. package/dist/types/components/JcMoreQueryContain/index.vue.d.ts +0 -1191
  22. package/dist/types/components/JcSelectQuery/index.d.ts +0 -1002
  23. package/dist/types/components/JcSelectQuery/index.vue.d.ts +0 -1728
  24. package/dist/types/components/JcTagQuery/index.d.ts +0 -4
  25. package/dist/types/components/JcTagQuery/index.vue.d.ts +0 -2
  26. package/dist/types/components/index.d.ts +0 -6
  27. package/dist/types/hooks/useQuery.d.ts +0 -11
  28. package/dist/types/hooks/useQueryStore.d.ts +0 -36
  29. package/dist/types/index.d.ts +0 -9
  30. /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,6 +0,0 @@
1
- export * from './JcSelectQuery/index';
2
- export * from './JcDatePicker/index';
3
- export * from './JcInputSwitch/index';
4
- export * from './JcInputComplex/index';
5
- export * from './JcTagQuery/index';
6
- export * from './JcMoreQueryContain/index';
@@ -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 };
@@ -1,9 +0,0 @@
1
- import { App } from 'vue';
2
- export * from './components/index';
3
- export * from './hooks/useQuery';
4
- export * from './style.scss';
5
- export * from './components';
6
- declare const _default: {
7
- install: (app: App) => void;
8
- };
9
- export default _default;