@bscjc/webui 0.0.20 → 1.0.1
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 +56 -0
- package/dist/es/index.mjs +1410 -1362
- package/dist/hooks/useQuery.d.ts +1 -1
- package/dist/index.css +2 -2
- package/dist/lib/index.cjs +8 -8
- package/dist/types/components/JcInputComplex/index.vue.d.ts +2 -2
- package/dist/types/components/JcInputSwitch/index.vue.d.ts +2 -2
- package/dist/types/components/JcMoreQueryContain/index.vue.d.ts +3 -3
- package/dist/types/hooks/useQuery.d.ts +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
1
|
+
import { PropType, nextTick } from 'vue';
|
|
2
2
|
type fieldType = {
|
|
3
3
|
label: string;
|
|
4
4
|
value: string;
|
|
@@ -335,7 +335,7 @@ declare function __VLS_template(): {
|
|
|
335
335
|
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
336
336
|
};
|
|
337
337
|
$forceUpdate: () => void;
|
|
338
|
-
$nextTick: typeof
|
|
338
|
+
$nextTick: typeof nextTick;
|
|
339
339
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
340
340
|
} & Readonly<{
|
|
341
341
|
readonly disabled: boolean;
|
|
@@ -961,7 +961,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
961
961
|
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
962
962
|
};
|
|
963
963
|
$forceUpdate: () => void;
|
|
964
|
-
$nextTick: typeof
|
|
964
|
+
$nextTick: typeof nextTick;
|
|
965
965
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
966
966
|
} & Readonly<{
|
|
967
967
|
readonly disabled: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bscjc/webui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "1.0.1",
|
|
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": "d531b42453a3c9c70131b5b4c6e2d22180b4995a"
|
|
56
56
|
}
|