@kengic/vue 0.5.29 → 0.5.30

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,3 +1,4 @@
1
+ import { Ref } from 'vue';
1
2
  import { VarGridDetail } from '../../../../apis/WMS/models';
2
3
  export declare type IUseServices = {
3
4
  /**
@@ -9,3 +10,5 @@ export declare type IUseServices = {
9
10
  filterVarGridDetailByKey: (varGridDetail: VarGridDetail, key?: string | null) => boolean;
10
11
  };
11
12
  export declare function _useServices(): IUseServices;
13
+ /** 监控表格列的下拉列表的尺寸变化, 从而调整位置, 防止遮盖. */
14
+ export declare function _useObserveMenuItemColumns(isMenuItemColumnsVisible: Ref<boolean>): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.5.29",
3
+ "version": "0.5.30",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build:dev": "rimraf dist && vue-tsc && vite build --mode development",