@kengic/vue 0.30.1-beta.21 → 0.30.1-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/index.css +1 -1
- package/dist/kengic-vue.js +40548 -39037
- package/dist/partition-outlined.1bcf4f37.mjs +8 -0
- package/dist/profile-outlined.1059fb0d.mjs +8 -0
- package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.hooks.d.ts +2 -2
- package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.store.d.ts +29 -29
- package/dist/src/component/KgCircularShuttleMonitor/index.d.ts +3 -0
- package/dist/src/component/KgModal/KgModal.d.ts +6 -6
- package/dist/src/component/KgModal/{hooks/useDragToResize.d.ts → KgModal.service.d.ts} +13 -2
- package/dist/src/component/KgModal02/KgModal02.d.ts +591 -0
- package/dist/src/component/KgModal02/KgModal02.model.d.ts +1 -0
- package/dist/src/component/KgModal02/index.d.ts +1 -0
- package/dist/src/component/KgSimulator/KgSimulator.Menu.Scene.Create.CircularConveyor.d.ts +36 -0
- package/dist/src/component/KgSimulator/KgSimulator.Menu.Scene.Open.CircularConveyor.d.ts +36 -0
- package/dist/src/component/KgSimulator/KgSimulator.Panel.Property.d.ts +4 -0
- package/dist/src/component/KgSimulator/KgSimulator.Panel.Scene.d.ts +4 -0
- package/dist/src/component/KgSimulator/KgSimulator.Prefab.d.ts +27 -0
- package/dist/src/component/KgSimulator/KgSimulator.Title.d.ts +11 -0
- package/dist/src/component/KgSimulator/KgSimulator.Toolbar.Property.d.ts +9 -0
- package/dist/src/component/KgSimulator/KgSimulator.Toolbar.Scene.d.ts +9 -0
- package/dist/src/component/KgSimulator/KgSimulator.d.ts +1 -1
- package/dist/src/component/KgSimulator/KgSimulator.service.d.ts +2 -5
- package/dist/src/component/KgSimulator/KgSimulator.store.d.ts +84 -15
- package/dist/src/component/KgTable02/KgTable02.event.d.ts +13 -3
- package/dist/src/component/KgTable02/KgTable02.hooks.d.ts +9 -0
- package/dist/src/component/KgVar/{KgVarFactory.d.ts → KgVar.Factory.d.ts} +13 -12
- package/dist/src/component/KgVar/KgVar.d.ts +23 -17
- package/dist/src/component/KgVar/KgVar.event.d.ts +19 -6
- package/dist/src/component/KgVar/KgVar.hooks.d.ts +15 -2
- package/dist/src/component/KgVar/index.d.ts +1 -1
- package/dist/src/component/index.d.ts +2 -0
- package/dist/src/config/index.d.ts +9 -3
- package/dist/src/const/form-id.const.d.ts +8 -0
- package/dist/src/i18n/i18n.setup.d.ts +1 -1
- package/dist/src/page/index.d.ts +2 -2
- package/dist/src/service/http-client.d.ts +5 -1
- package/dist/src/util/tsx.helper.d.ts +7 -7
- package/package.json +1 -1
- package/dist/src/component/KgModal/hooks/useDragToMove.d.ts +0 -12
- /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.AreaSelect.d.ts +0 -0
- /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.Canvas.d.ts +0 -0
- /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.Canvas.service.d.ts +0 -0
- /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.Legend.d.ts +0 -0
- /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.Offline.d.ts +0 -0
- /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.Setting.d.ts +0 -0
- /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.Tab.Log.d.ts +0 -0
- /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.Tab.Rgv.d.ts +0 -0
- /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.d.ts +0 -0
- /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.model.d.ts +0 -0
|
@@ -2,22 +2,22 @@ import { Slots } from 'vue';
|
|
|
2
2
|
/**
|
|
3
3
|
* 根据名称渲染单个插槽.
|
|
4
4
|
*
|
|
5
|
-
* @param param.
|
|
5
|
+
* @param param.slotRecord 插槽对象.
|
|
6
6
|
* @param param.name 插槽名称.
|
|
7
7
|
*/
|
|
8
8
|
export declare function renderSlot(param: {
|
|
9
|
-
slots: Slots;
|
|
10
9
|
name: string;
|
|
10
|
+
slotRecord: Slots;
|
|
11
11
|
}): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
12
12
|
[key: string]: any;
|
|
13
13
|
}>[] | null;
|
|
14
14
|
/**
|
|
15
15
|
* 渲染插槽.
|
|
16
16
|
*
|
|
17
|
-
* @param param.
|
|
18
|
-
* @param param.
|
|
17
|
+
* @param param.slotRecord 插槽对象.
|
|
18
|
+
* @param param.excludeSlotList 要排除的插槽名称列表.
|
|
19
19
|
*/
|
|
20
|
-
export declare function
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
export declare function renderSlotList(param: {
|
|
21
|
+
excludeSlotList?: string[];
|
|
22
|
+
slotRecord: Slots;
|
|
23
23
|
}): any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kengic/vue",
|
|
3
|
-
"version": "0.30.1-beta.
|
|
3
|
+
"version": "0.30.1-beta.23",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "npm run use-node && rimraf dist && vue-tsc && vite build",
|
|
6
6
|
"build:dev": "npm run use-node && rimraf dist && vue-tsc && vite build --mode development",
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ComputedRef, Ref } from 'vue';
|
|
2
|
-
/**
|
|
3
|
-
* 拖拽改变位置.
|
|
4
|
-
*
|
|
5
|
-
* @param param.getProps 组件参数.
|
|
6
|
-
* @param param.domRef 页面特殊元素对象.
|
|
7
|
-
*/
|
|
8
|
-
export declare function useDragToMove(param: {
|
|
9
|
-
domRef: Ref<HTMLDivElement | null>;
|
|
10
|
-
getKgIsDragToMove: ComputedRef<boolean>;
|
|
11
|
-
getVisible: ComputedRef<boolean>;
|
|
12
|
-
}): void;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|