@kengic/vue 0.21.5-beta.3 → 0.21.5-beta.5
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/kengic-vue.js +2211 -2149
- package/dist/src/components/KgTable/KgTable.hooks.d.ts +2 -0
- package/package.json +1 -7
@@ -24,6 +24,8 @@ export declare type IUseLoading = {
|
|
24
24
|
export declare function _useLoading(): IUseLoading;
|
25
25
|
export declare type IUseResizeObserver = {};
|
26
26
|
export declare function _useResizeObserver(kgTableRef: Ref<UnwrapRef<HTMLDivElement | null>>): IUseResizeObserver;
|
27
|
+
export declare type ICacheScrollState = {};
|
28
|
+
export declare function _useCacheScrollState(kgTableRef: Ref<UnwrapRef<HTMLDivElement | null>>): ICacheScrollState;
|
27
29
|
export declare type IUseDragColumn = {};
|
28
30
|
export declare function _useDragColumn(kgTableRef: Ref<UnwrapRef<HTMLDivElement | null>>, columns: ComputedRef<ColumnsType<IKgTableRow>>): IUseDragColumn;
|
29
31
|
export interface IUseDatas {
|
package/package.json
CHANGED
@@ -1,13 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kengic/vue",
|
3
|
-
"version": "0.21.5-beta.
|
3
|
+
"version": "0.21.5-beta.5",
|
4
4
|
"scripts": {
|
5
5
|
"build": "npm run switch-node-version && rimraf dist && vue-tsc && vite build",
|
6
6
|
"build:dev": "npm run switch-node-version && rimraf dist && vue-tsc && vite build --mode development",
|
7
7
|
"--------------------------------------------------": "",
|
8
|
-
"publish:all:major": "npm run bump-version:major && npm run publish:all",
|
9
|
-
"publish:all:minor": "npm run bump-version:minor && npm run publish:all",
|
10
|
-
"publish:all:patch": "npm run bump-version:patch && npm run publish:all",
|
11
8
|
"publish:all:beta": "npm run bump-version:beta && npm run publish:all",
|
12
9
|
"----- --------------------------------------------": "",
|
13
10
|
"gen:apis:WMS": "npm run switch-node-version && kengic-pont generate-apis --config kg.config.ts --origin WMS",
|
@@ -19,9 +16,6 @@
|
|
19
16
|
"switch-node-version": "nvm use 18.16.0 && corepack enable && corepack prepare pnpm@7.30.5 --activate",
|
20
17
|
"-- -----------------------------------------------": "",
|
21
18
|
"bump-version:beta": "npm run switch-node-version && tsx scripts/bump.ts beta",
|
22
|
-
"bump-version:major": "npm run switch-node-version && tsx scripts/bump.ts major",
|
23
|
-
"bump-version:minor": "npm run switch-node-version && tsx scripts/bump.ts minor",
|
24
|
-
"bump-version:patch": "npm run switch-node-version && tsx scripts/bump.ts patch",
|
25
19
|
"---- ---------------------------------------------": "",
|
26
20
|
"publish:all": "npm run switch-node-version && tsx scripts/publish.ts",
|
27
21
|
"publish:npm": "npm run switch-node-version && npmrc kengic && npm publish ./ --registry https://registry.npmjs.org/ --access public"
|