@kengic/vue 0.26.6-beta.20 → 0.26.6-beta.23
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/dist/fullscreen-exit-outlined.a75b82c2.mjs +8 -0
- package/dist/fullscreen-outlined.c9ba7960.mjs +8 -0
- package/dist/index.css +1 -1
- package/dist/kengic-vue.js +3946 -3919
- package/dist/src/components/KgCanvas/KgCanvas.Fullscreen.d.ts +8 -0
- package/dist/src/config/setup/setup.d.ts +1 -0
- package/dist/src/consts/index.vm.d.ts +9 -1
- package/package.json +2 -2
@@ -0,0 +1,8 @@
|
|
1
|
+
import { ExtractPropTypes } from 'vue';
|
2
|
+
import './KgCanvas.css';
|
3
|
+
export declare const getProps: () => any;
|
4
|
+
export declare type KgCanvasFullscreenProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
5
|
+
declare const _default: import("vue").DefineComponent<any, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<any>, {} | {
|
6
|
+
[x: string]: any;
|
7
|
+
}>;
|
8
|
+
export default _default;
|
@@ -480,7 +480,15 @@ export declare enum KG_HTTP_HEADERS {
|
|
480
480
|
/**
|
481
481
|
* 仓库编号.
|
482
482
|
*/
|
483
|
-
KG_WAREHOUSE = "Kg-Warehouse"
|
483
|
+
KG_WAREHOUSE = "Kg-Warehouse",
|
484
|
+
/**
|
485
|
+
* 工作站.
|
486
|
+
*/
|
487
|
+
KG_WORK_STATION = "Kg-Work-Station",
|
488
|
+
/**
|
489
|
+
* 工作区.
|
490
|
+
*/
|
491
|
+
KG_WORK_AREA = "Kg-Work-Area"
|
484
492
|
}
|
485
493
|
/** 特殊属性:请求返回的原始响应数据. */
|
486
494
|
export declare const __KG__RESPONSE__ = "__KG__RESPONSE__";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kengic/vue",
|
3
|
-
"version": "0.26.6-beta.
|
3
|
+
"version": "0.26.6-beta.23",
|
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",
|
@@ -40,7 +40,7 @@
|
|
40
40
|
"@iconify-icons/mdi": "1.2.48",
|
41
41
|
"@iconify-icons/ph": "1.2.5",
|
42
42
|
"@iconify/vue": "4.1.1",
|
43
|
-
"@kengic/core": "6.0.1-beta.
|
43
|
+
"@kengic/core": "6.0.1-beta.26",
|
44
44
|
"@kengic/pont": "1.2.17-beta.1",
|
45
45
|
"@rys-fe/vite-plugin-theme": "0.8.6",
|
46
46
|
"@thymine/xunee": "0.4.9-beta.8",
|