@bscjc/webui 1.0.0 → 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.
@@ -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 import('vue').nextTick;
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 import('vue').nextTick;
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;
@@ -1,4 +1,4 @@
1
- export declare const reactiveQuery: (params?: {}) => {
1
+ export declare const reactiveQuery: (params?: any) => {
2
2
  queryForm: Record<string, any>;
3
3
  setQuery: (key: string, value: any) => void;
4
4
  addTag: (tag: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bscjc/webui",
3
3
  "private": false,
4
- "version": "1.0.0",
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": "ecb014d62f0f22fea8318742440f845c31884f17"
55
+ "gitHead": "d531b42453a3c9c70131b5b4c6e2d22180b4995a"
56
56
  }