@kengic/vue 0.30.1-beta.5 → 0.30.1-beta.51
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/CHANGELOG.md +9 -0
- package/README.md +1 -1
- package/dist/align-left-outlined.579b01c6.mjs +8 -0
- package/dist/caret-down-outlined.c0564a3f.mjs +8 -0
- package/dist/caret-left-outlined.35b1d7d1.mjs +8 -0
- package/dist/caret-up-outlined.81b559ad.mjs +8 -0
- package/dist/check-box-outline-blank.d01a2055.mjs +8 -0
- package/dist/collapse-all-rounded.26ee73fc.mjs +8 -0
- package/dist/double-right-outlined.f057a6b2.mjs +8 -0
- package/dist/expand-all-rounded.e01e6cb9.mjs +8 -0
- package/dist/eye-invisible-outlined.5f8d6151.mjs +8 -0
- package/dist/holder-outlined.9e698750.mjs +8 -0
- package/dist/index.css +1 -1
- package/dist/kengic-vue.js +172885 -127732
- package/dist/loading-outlined.13a15197.mjs +8 -0
- package/dist/more-outlined.8e1202ac.mjs +8 -0
- package/dist/palette-swatch-variant.f7258843.mjs +8 -0
- package/dist/partition-outlined.1bcf4f37.mjs +8 -0
- package/dist/pause-rounded.1ed7cc39.mjs +8 -0
- package/dist/play-arrow-rounded.90fc4173.mjs +8 -0
- package/dist/profile-outlined.1059fb0d.mjs +8 -0
- package/dist/project/build/utils.ts +20 -15
- package/dist/src/component/KgButton/KgButton.hooks.d.ts +2 -2
- package/dist/src/component/KgButton/KgButton.store.d.ts +1 -1
- package/dist/src/component/KgCanvas/KgCanvas.ContextMenu.d.ts +1 -2
- package/dist/src/component/KgCanvas/{KgCanvas.Toolbar.Fullscreen.d.ts → KgCanvas.ToolbarButton.Fullscreen.d.ts} +2 -3
- package/dist/src/component/KgCanvas/KgCanvas.ToolbarButton.Mode.d.ts +7 -0
- package/dist/src/component/KgCanvas/{KgCanvas.Toolbar.OverviewScale.d.ts → KgCanvas.ToolbarButton.OverviewScale.d.ts} +2 -3
- package/dist/src/component/KgCanvas/KgCanvas.Tooltip.d.ts +1 -2
- package/dist/src/component/KgCanvas/KgCanvas.d.ts +59 -3
- package/dist/src/component/KgCanvas/KgCanvas.event.d.ts +42 -5
- package/dist/src/component/KgCanvas/KgCanvas.hooks.d.ts +33 -5
- package/dist/src/component/KgCanvas/KgCanvas.model.d.ts +26 -32
- package/dist/src/component/KgCanvas/KgCanvas.service.d.ts +5 -31
- package/dist/src/component/KgCanvas/KgCanvas.store.d.ts +4 -1
- package/dist/src/component/KgCanvas/index.d.ts +1 -1
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.AreaSelect.d.ts +5 -0
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Canvas.d.ts +5 -0
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Legend.d.ts +5 -0
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Offline.d.ts +5 -0
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Setting.d.ts +5 -0
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Tab.Log.d.ts +5 -0
- package/dist/src/{page/KgCircleVis/components/KgCircleVis.Tab.Rgv.d.ts → component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Tab.Rgv.d.ts} +5 -5
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.d.ts +5 -0
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.hooks.d.ts +29 -0
- package/dist/src/{page/KgCircleVis/components/KgCircleVis.model.d.ts → component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.model.d.ts} +1 -1
- package/dist/src/{page/KgCircleVis/components/KgCircleVis.store.d.ts → component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.store.d.ts} +41 -41
- package/dist/src/component/KgCircularShuttleMonitor/index.d.ts +3 -0
- package/dist/src/component/KgForm/KgForm.d.ts +39 -39
- package/dist/src/component/KgForm/KgForm.hooks.d.ts +2 -2
- package/dist/src/component/KgForm/KgForm.store.d.ts +4 -4
- package/dist/src/component/KgForm/index.d.ts +52 -52
- package/dist/src/component/KgForm.Item/KgForm.Item.d.ts +35 -35
- package/dist/src/component/KgForm.Item/KgForm.Item.model.d.ts +31 -33
- package/dist/src/component/KgForm.Item/components/KgForm.Item.Checkbox.d.ts +34 -34
- package/dist/src/component/KgForm.Item/components/KgForm.Item.CheckboxGroup.d.ts +38 -36
- package/dist/src/component/KgForm.Item/components/KgForm.Item.Date.d.ts +34 -34
- package/dist/src/component/KgForm.Item/components/KgForm.Item.DateRange.d.ts +34 -34
- package/dist/src/component/KgForm.Item/components/KgForm.Item.Image.d.ts +34 -34
- package/dist/src/component/KgForm.Item/components/KgForm.Item.Input.d.ts +34 -34
- package/dist/src/component/KgForm.Item/components/KgForm.Item.InputNumber.d.ts +34 -34
- package/dist/src/component/KgForm.Item/components/KgForm.Item.InputPassword.d.ts +34 -34
- package/dist/src/component/KgForm.Item/components/KgForm.Item.Link.d.ts +34 -34
- package/dist/src/component/KgForm.Item/components/KgForm.Item.RadioGroup.d.ts +34 -36
- package/dist/src/component/KgForm.Item/components/KgForm.Item.Select.d.ts +35 -35
- package/dist/src/component/KgForm.Item/components/KgForm.Item.Switch.d.ts +34 -34
- package/dist/src/component/KgForm.Item/components/KgForm.Item.TextArea.d.ts +34 -34
- package/dist/src/component/KgImage/KgImage.d.ts +6 -6
- package/dist/src/component/KgLayoutHeader/{components/KgLayoutHeaderLocale.d.ts → KgLayoutHeader.Locale.d.ts} +1 -1
- package/dist/src/component/KgLayoutHeader/index.d.ts +1 -1
- package/dist/src/component/KgModal/KgModal.d.ts +20 -20
- 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/KgResizable/KgResizable.d.ts +4 -4
- package/dist/src/component/KgSearch/KgSearch.hooks.d.ts +2 -2
- package/dist/src/component/KgSearch/KgSearch.store.d.ts +26 -26
- package/dist/src/component/KgSimulator/KgSimulator.Canvas.Title.d.ts +11 -0
- package/dist/src/component/KgSimulator/KgSimulator.Canvas.d.ts +11 -0
- package/dist/src/component/KgSimulator/KgSimulator.Canvas.service.d.ts +80 -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.Menu.d.ts +4 -0
- package/dist/src/component/KgSimulator/KgSimulator.Panel.Prefab.d.ts +4 -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.Panel.d.ts +97 -0
- package/dist/src/component/KgSimulator/KgSimulator.Prefab.d.ts +108 -0
- package/dist/src/component/KgSimulator/KgSimulator.ToolbarButton.Prefab.d.ts +9 -0
- package/dist/src/component/KgSimulator/KgSimulator.ToolbarButton.Property.d.ts +9 -0
- package/dist/src/component/KgSimulator/KgSimulator.ToolbarButton.Scene.d.ts +9 -0
- package/dist/src/component/KgSimulator/KgSimulator.ToolbarButton.d.ts +113 -0
- package/dist/src/component/KgSimulator/KgSimulator.d.ts +33 -0
- package/dist/src/component/KgSimulator/KgSimulator.event.d.ts +99 -0
- package/dist/src/component/KgSimulator/KgSimulator.hooks.d.ts +103 -0
- package/dist/src/component/KgSimulator/KgSimulator.icons.d.ts +10 -0
- package/dist/src/component/KgSimulator/KgSimulator.model.d.ts +1467 -0
- package/dist/src/component/KgSimulator/KgSimulator.store.d.ts +294 -0
- package/dist/src/component/KgSimulator/KgSimulator.utils.d.ts +21 -0
- package/dist/src/component/KgSimulator/index.d.ts +3 -0
- package/dist/src/component/KgSubmit/KgSubmit.event.d.ts +20 -15
- package/dist/src/component/KgSubmit/KgSubmit.hooks.d.ts +46 -14
- package/dist/src/component/KgSubmit/KgSubmit.store.d.ts +46 -0
- package/dist/src/component/KgTable/{components/KgTable.BodyCell.d.ts → KgTable.BodyCell.d.ts} +1 -1
- package/dist/src/component/KgTable/{components/setting/KgTable.Setting.service.d.ts → KgTable.Setting.service.d.ts} +1 -1
- package/dist/src/component/KgTable/KgTable.store.d.ts +1 -1
- package/dist/src/component/KgTable02/KgTable02.BodyCell.d.ts +32 -3
- 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} +9 -0
- 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 +20 -7
- package/dist/src/component/KgVar/KgVar.model.d.ts +0 -5
- package/dist/src/component/KgVar/index.d.ts +1 -1
- package/dist/src/component/KgVarConfig/KgVarConfig.model.d.ts +0 -3
- package/dist/src/component/index.d.ts +3 -0
- package/dist/src/config/config.store.d.ts +9 -5
- package/dist/src/config/index.d.ts +9 -3
- package/dist/src/const/const.model.d.ts +524 -11
- package/dist/src/const/form-id.const.d.ts +22 -10
- package/dist/src/const/index.d.ts +0 -1
- package/dist/src/i18n/i18n.setup.d.ts +1 -1
- package/dist/src/i18n/index.d.ts +0 -2
- package/dist/src/page/{KgCircleVis/KgPageCircleVis.d.ts → KgPageCircularShuttleMonitor/KgPageCircularShuttleMonitor.d.ts} +1 -1
- package/dist/src/page/KgPageCircularShuttleMonitor/index.d.ts +1 -0
- package/dist/src/page/KgPageDda/KgPageDda.d.ts +1 -1
- package/dist/src/page/KgPageDda/components/KgPageDda.Create.store.d.ts +3 -3
- package/dist/src/page/index.d.ts +2 -2
- package/dist/src/project/src/hooks/index.d.ts +0 -1
- package/dist/src/project/src/utils/env.d.ts +0 -16
- package/dist/src/service/http-client.d.ts +5 -1
- package/dist/src/util/ant-design-vue.d.ts +16 -16
- package/dist/src/util/kg-route.util.d.ts +6 -9
- package/dist/src/util/kg.util.d.ts +1 -2
- package/dist/src/util/tsx.helper.d.ts +7 -7
- package/package.json +9 -7
- package/dist/src/component/KgForm/KgForm.model.d.ts +0 -9
- package/dist/src/component/KgModal/hooks/useDragToMove.d.ts +0 -12
- package/dist/src/const/injection-keys.const.d.ts +0 -11
- package/dist/src/i18n/cs_CZ.d.ts +0 -301
- package/dist/src/i18n/en.d.ts +0 -300
- package/dist/src/i18n/es_ES.d.ts +0 -300
- package/dist/src/i18n/fr_FR.d.ts +0 -300
- package/dist/src/i18n/km_KH.d.ts +0 -300
- package/dist/src/i18n/ko_KR.d.ts +0 -300
- package/dist/src/i18n/vi_VN.d.ts +0 -300
- package/dist/src/i18n/zh_CN.d.ts +0 -301
- package/dist/src/page/KgCircleVis/components/KgCircleVis.AreaSelect.d.ts +0 -5
- package/dist/src/page/KgCircleVis/components/KgCircleVis.Canvas.d.ts +0 -5
- package/dist/src/page/KgCircleVis/components/KgCircleVis.Legend.d.ts +0 -5
- package/dist/src/page/KgCircleVis/components/KgCircleVis.Offline.d.ts +0 -5
- package/dist/src/page/KgCircleVis/components/KgCircleVis.Setting.d.ts +0 -5
- package/dist/src/page/KgCircleVis/components/KgCircleVis.Tab.Log.d.ts +0 -5
- package/dist/src/page/KgCircleVis/components/KgCircleVis.d.ts +0 -5
- package/dist/src/page/KgCircleVis/components/KgCircleVis.hooks.d.ts +0 -29
- package/dist/src/page/KgCircleVis/index.d.ts +0 -1
- package/dist/src/project/src/hooks/web/useI18n.d.ts +0 -13
- /package/dist/src/{page/KgCircleVis/components/KgCircleVis.Canvas.service.d.ts → component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Canvas.service.d.ts} +0 -0
- /package/dist/src/component/KgTable/{components/KgTable.HeadCell.d.ts → KgTable.HeadCell.d.ts} +0 -0
- /package/dist/src/component/KgTable/{components/KgTable.Info.d.ts → KgTable.Info.d.ts} +0 -0
- /package/dist/src/component/KgTable/{components/setting/KgTable.Setting.VarGridMaster.SaveAs.d.ts → KgTable.Setting.VarGridMaster.SaveAs.d.ts} +0 -0
- /package/dist/src/component/KgTable/{components/setting/KgTable.Setting.d.ts → KgTable.Setting.d.ts} +0 -0
|
@@ -25,78 +25,78 @@ export interface IUseKgSearchStoreGetters {
|
|
|
25
25
|
/**
|
|
26
26
|
* 获取当前的 VarProfileMaster.
|
|
27
27
|
*/
|
|
28
|
-
getCurrentVarProfileMaster: (
|
|
28
|
+
getCurrentVarProfileMaster: (fid: string | null | undefined) => VarProfileMasterDTO | null;
|
|
29
29
|
/**
|
|
30
|
-
* @param
|
|
30
|
+
* @param fid 界面标识.
|
|
31
31
|
*/
|
|
32
|
-
getDynamicQueryOperatorModel: (
|
|
32
|
+
getDynamicQueryOperatorModel: (fid: string | null | undefined) => Record<string, string>;
|
|
33
33
|
/**
|
|
34
|
-
* @param
|
|
34
|
+
* @param fid 界面标识.
|
|
35
35
|
*/
|
|
36
|
-
getFormModel: (
|
|
36
|
+
getFormModel: (fid: string | null | undefined) => Record<string, any> | null;
|
|
37
37
|
/**
|
|
38
38
|
* 是否就绪.
|
|
39
39
|
*
|
|
40
|
-
* @param
|
|
40
|
+
* @param fid 界面标识.
|
|
41
41
|
*/
|
|
42
|
-
getIsReady: (
|
|
42
|
+
getIsReady: (fid: string | null | undefined) => boolean;
|
|
43
43
|
/**
|
|
44
44
|
* 获取重置方法.
|
|
45
45
|
*
|
|
46
|
-
* @param
|
|
46
|
+
* @param fid 界面标识.
|
|
47
47
|
*/
|
|
48
|
-
getResetFn: (
|
|
48
|
+
getResetFn: (fid: string | null | undefined) => IKgSearchOnResetFn | null;
|
|
49
49
|
/**
|
|
50
50
|
* 获取查询方法.
|
|
51
51
|
*
|
|
52
|
-
* @param
|
|
52
|
+
* @param fid 界面标识.
|
|
53
53
|
*/
|
|
54
|
-
getSearchFn: (
|
|
54
|
+
getSearchFn: (fid: string | null | undefined) => IKgSearchOnSearchFn | null;
|
|
55
55
|
}
|
|
56
56
|
export interface IUseKgSearchStoreActions {
|
|
57
57
|
/**
|
|
58
58
|
* 清理数据.
|
|
59
|
-
* @param
|
|
59
|
+
* @param fid 页面标识.
|
|
60
60
|
*/
|
|
61
|
-
dispose(
|
|
61
|
+
dispose(fid: string | null | undefined): void;
|
|
62
62
|
/**
|
|
63
63
|
* 修改查询字段的高级查询操作符的部分属性.
|
|
64
64
|
*
|
|
65
|
-
* @param
|
|
65
|
+
* @param fid 界面标识.
|
|
66
66
|
* @param properties 要修改的部分属性.
|
|
67
67
|
*/
|
|
68
|
-
patchDynamicQueryOperatorModel(
|
|
68
|
+
patchDynamicQueryOperatorModel(fid: string | null | undefined, properties?: Record<string, any> | null): Promise<void>;
|
|
69
69
|
/**
|
|
70
70
|
* 修改查询字段的表单数据的部分属性.
|
|
71
71
|
*
|
|
72
|
-
* @param
|
|
72
|
+
* @param fid 界面标识.
|
|
73
73
|
* @param properties 要修改的部分属性.
|
|
74
74
|
*/
|
|
75
|
-
patchModel(
|
|
76
|
-
setDynamicQueryOperatorModel(
|
|
75
|
+
patchModel(fid: string | null | undefined, properties?: Record<string, any> | null): Promise<void>;
|
|
76
|
+
setDynamicQueryOperatorModel(fid: string | null | undefined, model?: Record<string, any> | null): void;
|
|
77
77
|
/**
|
|
78
78
|
* 设置表单数据.
|
|
79
|
-
* @param
|
|
79
|
+
* @param fid 界面标识.
|
|
80
80
|
* @param model 表单数据.
|
|
81
81
|
*/
|
|
82
|
-
setFormModel(
|
|
82
|
+
setFormModel(fid: string | null | undefined, model?: Record<string, any> | null): void;
|
|
83
83
|
/**
|
|
84
84
|
* 设置是否就绪.
|
|
85
|
-
* @param
|
|
85
|
+
* @param fid 界面标识.
|
|
86
86
|
* @param ready 是否就绪.
|
|
87
87
|
*/
|
|
88
|
-
setIsReady(
|
|
88
|
+
setIsReady(fid: string | null | undefined, ready?: boolean): void;
|
|
89
89
|
/**
|
|
90
90
|
* 设置重置方法.
|
|
91
|
-
* @param
|
|
91
|
+
* @param fid 界面标识.
|
|
92
92
|
* @param fn 重置方法.
|
|
93
93
|
*/
|
|
94
|
-
setResetFn(
|
|
94
|
+
setResetFn(fid: string | null | undefined, fn?: IKgSearchOnResetFn | null): void;
|
|
95
95
|
/**
|
|
96
96
|
* 设置查询方法.
|
|
97
|
-
* @param
|
|
97
|
+
* @param fid 界面标识.
|
|
98
98
|
* @param fn 查询方法.
|
|
99
99
|
*/
|
|
100
|
-
setSearchFn(
|
|
100
|
+
setSearchFn(fid: string | null | undefined, fn?: IKgSearchOnSearchFn | null): void;
|
|
101
101
|
}
|
|
102
102
|
export declare const useKgSearchStore: KgStoreDefinition<IUseKgSearchStoreGetters, IUseKgSearchStoreActions>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ExtractPropTypes } from 'vue';
|
|
2
|
+
import './KgSimulator.css';
|
|
3
|
+
import './KgSimulator.icons';
|
|
4
|
+
export declare const getProps: () => any;
|
|
5
|
+
export declare type IKgSimulatorCanvasTitleProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
6
|
+
/**
|
|
7
|
+
* 模拟器--画布--标题.
|
|
8
|
+
*/
|
|
9
|
+
export declare const KgSimulatorCanvasTitle: 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>, {} | {
|
|
10
|
+
[x: string]: any;
|
|
11
|
+
}>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ExtractPropTypes } from 'vue';
|
|
2
|
+
import './KgSimulator.css';
|
|
3
|
+
import './KgSimulator.icons';
|
|
4
|
+
export declare const getProps: () => any;
|
|
5
|
+
export declare type IKgSimulatorCanvasProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
6
|
+
/**
|
|
7
|
+
* 模拟器--画布.
|
|
8
|
+
*/
|
|
9
|
+
export declare const KgSimulatorCanvas: 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>, {} | {
|
|
10
|
+
[x: string]: any;
|
|
11
|
+
}>;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { Q } from '@thymine/xunee';
|
|
2
|
+
import { Agent, Creator, Destroyer, JackUpTransferStation, PalletStackerStation, PhotoelectricSensor, Station } from './KgSimulator.model';
|
|
3
|
+
export declare type IUseDraw = {
|
|
4
|
+
/**
|
|
5
|
+
* 绘制环形输送线--绘制代理者.
|
|
6
|
+
*
|
|
7
|
+
* @param param
|
|
8
|
+
* @param param.agent 代理者.
|
|
9
|
+
*/
|
|
10
|
+
$CircularConveyor$DrawAgent(param?: {
|
|
11
|
+
agent: Agent;
|
|
12
|
+
}): Q.Node | null;
|
|
13
|
+
/**
|
|
14
|
+
* 绘制环形输送线--绘制创建者.
|
|
15
|
+
*
|
|
16
|
+
* @param param
|
|
17
|
+
* @param param.creator 创建者.
|
|
18
|
+
*/
|
|
19
|
+
$CircularConveyor$DrawCreator(param?: {
|
|
20
|
+
creator: Creator;
|
|
21
|
+
}): Q.Node | null;
|
|
22
|
+
/**
|
|
23
|
+
* 绘制环形输送线--绘制叠盘机.
|
|
24
|
+
*
|
|
25
|
+
* @param param
|
|
26
|
+
* @param param.dpj 叠盘机.
|
|
27
|
+
*/
|
|
28
|
+
$CircularConveyor$DrawDPJ(param?: {
|
|
29
|
+
dpj: PalletStackerStation;
|
|
30
|
+
}): Q.Node | null;
|
|
31
|
+
/**
|
|
32
|
+
* 绘制环形输送线--绘制顶升移载机.
|
|
33
|
+
*
|
|
34
|
+
* @param param
|
|
35
|
+
* @param param.dsyzj 顶升移载机.
|
|
36
|
+
*/
|
|
37
|
+
$CircularConveyor$DrawDSYZJ(param?: {
|
|
38
|
+
dsyzj: JackUpTransferStation;
|
|
39
|
+
}): Q.Node | null;
|
|
40
|
+
/**
|
|
41
|
+
* 绘制环形输送线--绘制销毁者.
|
|
42
|
+
*
|
|
43
|
+
* @param param
|
|
44
|
+
* @param param.destroyer 销毁者.
|
|
45
|
+
*/
|
|
46
|
+
$CircularConveyor$DrawDestroyer(param?: {
|
|
47
|
+
destroyer: Destroyer;
|
|
48
|
+
}): Q.Node | null;
|
|
49
|
+
/**
|
|
50
|
+
* 绘制环形输送线--绘制光电传感器.
|
|
51
|
+
*
|
|
52
|
+
* @param param
|
|
53
|
+
* @param param.gdcgq 光电传感器.
|
|
54
|
+
*/
|
|
55
|
+
$CircularConveyor$DrawGDCGQ(param?: {
|
|
56
|
+
gdcgq: PhotoelectricSensor;
|
|
57
|
+
}): Q.Node | null;
|
|
58
|
+
/**
|
|
59
|
+
* 绘制环形输送线--绘制普通输送机.
|
|
60
|
+
*
|
|
61
|
+
* @param param
|
|
62
|
+
* @param param.ptssj 普通输送机.
|
|
63
|
+
*/
|
|
64
|
+
$CircularConveyor$DrawPTSSJ(param?: {
|
|
65
|
+
ptssj: Station;
|
|
66
|
+
}): Q.Node | null;
|
|
67
|
+
/**
|
|
68
|
+
* 绘制图形.
|
|
69
|
+
*
|
|
70
|
+
* @param param
|
|
71
|
+
* @param param.isZoomToOverview 是否纵览比例, 默认为 false.
|
|
72
|
+
*/
|
|
73
|
+
draw(param?: {
|
|
74
|
+
isZoomToOverview?: boolean;
|
|
75
|
+
}): void;
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* 钩子: 绘制.
|
|
79
|
+
*/
|
|
80
|
+
export declare function useDraw(): IUseDraw;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { ExtractPropTypes, PropType } from 'vue';
|
|
2
|
+
export declare const getProps: () => {
|
|
3
|
+
/**
|
|
4
|
+
* 是否打开弹窗.
|
|
5
|
+
*/
|
|
6
|
+
kgIsVisible: {
|
|
7
|
+
type: PropType<boolean>;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
'onUpdate:kgIsVisible': PropType<(value: boolean) => void>;
|
|
11
|
+
};
|
|
12
|
+
export declare type KgSimulatorMenuSceneCreateCircularConveyorProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
13
|
+
/**
|
|
14
|
+
* 模拟器--菜单--场景--新建--环线输送线.
|
|
15
|
+
*/
|
|
16
|
+
export declare const KgSimulatorMenuSceneCreateCircularConveyor: import("vue").DefineComponent<{
|
|
17
|
+
/**
|
|
18
|
+
* 是否打开弹窗.
|
|
19
|
+
*/
|
|
20
|
+
kgIsVisible: {
|
|
21
|
+
type: PropType<boolean>;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
'onUpdate:kgIsVisible': PropType<(value: boolean) => void>;
|
|
25
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
26
|
+
/**
|
|
27
|
+
* 是否打开弹窗.
|
|
28
|
+
*/
|
|
29
|
+
kgIsVisible: {
|
|
30
|
+
type: PropType<boolean>;
|
|
31
|
+
default: boolean;
|
|
32
|
+
};
|
|
33
|
+
'onUpdate:kgIsVisible': PropType<(value: boolean) => void>;
|
|
34
|
+
}>>, {
|
|
35
|
+
kgIsVisible: boolean;
|
|
36
|
+
}>;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { ExtractPropTypes, PropType } from 'vue';
|
|
2
|
+
export declare const getProps: () => {
|
|
3
|
+
/**
|
|
4
|
+
* 是否打开弹窗.
|
|
5
|
+
*/
|
|
6
|
+
kgIsVisible: {
|
|
7
|
+
type: PropType<boolean>;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
'onUpdate:kgIsVisible': PropType<(value: boolean) => void>;
|
|
11
|
+
};
|
|
12
|
+
export declare type KgSimulatorMenuSceneOpenCircularConveyorProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
13
|
+
/**
|
|
14
|
+
* 模拟器--菜单--场景--打开--环线输送线.
|
|
15
|
+
*/
|
|
16
|
+
export declare const KgSimulatorMenuSceneOpenCircularConveyor: import("vue").DefineComponent<{
|
|
17
|
+
/**
|
|
18
|
+
* 是否打开弹窗.
|
|
19
|
+
*/
|
|
20
|
+
kgIsVisible: {
|
|
21
|
+
type: PropType<boolean>;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
'onUpdate:kgIsVisible': PropType<(value: boolean) => void>;
|
|
25
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
26
|
+
/**
|
|
27
|
+
* 是否打开弹窗.
|
|
28
|
+
*/
|
|
29
|
+
kgIsVisible: {
|
|
30
|
+
type: PropType<boolean>;
|
|
31
|
+
default: boolean;
|
|
32
|
+
};
|
|
33
|
+
'onUpdate:kgIsVisible': PropType<(value: boolean) => void>;
|
|
34
|
+
}>>, {
|
|
35
|
+
kgIsVisible: boolean;
|
|
36
|
+
}>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 模拟器--菜单.
|
|
3
|
+
*/
|
|
4
|
+
export declare const KgSimulatorMenu: import("vue").DefineComponent<{}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 模拟器--面板--预制组件.
|
|
3
|
+
*/
|
|
4
|
+
export declare const KgSimulatorPanelPrefab: import("vue").DefineComponent<{}, () => JSX.Element | null, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 模拟器--面板--属性.
|
|
3
|
+
*/
|
|
4
|
+
export declare const KgSimulatorPanelProperty: import("vue").DefineComponent<{}, () => JSX.Element | null, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 模拟器--面板--场景.
|
|
3
|
+
*/
|
|
4
|
+
export declare const KgSimulatorPanelScene: import("vue").DefineComponent<{}, () => JSX.Element | null, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { ExtractPropTypes, PropType } from 'vue';
|
|
2
|
+
import { IPanelPlacement } from './KgSimulator.model';
|
|
3
|
+
export declare const getProps: () => {
|
|
4
|
+
/**
|
|
5
|
+
* 样式类名.
|
|
6
|
+
*/
|
|
7
|
+
kgClass: {
|
|
8
|
+
type: PropType<Record<string, boolean>>;
|
|
9
|
+
default: () => {};
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* 是否打开.
|
|
13
|
+
*/
|
|
14
|
+
kgIsOpen: {
|
|
15
|
+
type: PropType<boolean>;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* 位置.
|
|
19
|
+
*/
|
|
20
|
+
kgPlacement: {
|
|
21
|
+
type: PropType<IPanelPlacement>;
|
|
22
|
+
required: boolean;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* 标题.
|
|
26
|
+
*/
|
|
27
|
+
kgTitle: {
|
|
28
|
+
type: PropType<string>;
|
|
29
|
+
required: boolean;
|
|
30
|
+
};
|
|
31
|
+
'onUpdate:kgIsOpen': PropType<(value: boolean) => void>;
|
|
32
|
+
};
|
|
33
|
+
export declare type KgSimulatorPanelProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
34
|
+
/**
|
|
35
|
+
* 模拟器--面板--预制组件.
|
|
36
|
+
*/
|
|
37
|
+
export declare const KgSimulatorPanel: import("vue").DefineComponent<{
|
|
38
|
+
/**
|
|
39
|
+
* 样式类名.
|
|
40
|
+
*/
|
|
41
|
+
kgClass: {
|
|
42
|
+
type: PropType<Record<string, boolean>>;
|
|
43
|
+
default: () => {};
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* 是否打开.
|
|
47
|
+
*/
|
|
48
|
+
kgIsOpen: {
|
|
49
|
+
type: PropType<boolean>;
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* 位置.
|
|
53
|
+
*/
|
|
54
|
+
kgPlacement: {
|
|
55
|
+
type: PropType<IPanelPlacement>;
|
|
56
|
+
required: boolean;
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* 标题.
|
|
60
|
+
*/
|
|
61
|
+
kgTitle: {
|
|
62
|
+
type: PropType<string>;
|
|
63
|
+
required: boolean;
|
|
64
|
+
};
|
|
65
|
+
'onUpdate:kgIsOpen': PropType<(value: boolean) => void>;
|
|
66
|
+
}, () => JSX.Element | null, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
67
|
+
/**
|
|
68
|
+
* 样式类名.
|
|
69
|
+
*/
|
|
70
|
+
kgClass: {
|
|
71
|
+
type: PropType<Record<string, boolean>>;
|
|
72
|
+
default: () => {};
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* 是否打开.
|
|
76
|
+
*/
|
|
77
|
+
kgIsOpen: {
|
|
78
|
+
type: PropType<boolean>;
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* 位置.
|
|
82
|
+
*/
|
|
83
|
+
kgPlacement: {
|
|
84
|
+
type: PropType<IPanelPlacement>;
|
|
85
|
+
required: boolean;
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* 标题.
|
|
89
|
+
*/
|
|
90
|
+
kgTitle: {
|
|
91
|
+
type: PropType<string>;
|
|
92
|
+
required: boolean;
|
|
93
|
+
};
|
|
94
|
+
'onUpdate:kgIsOpen': PropType<(value: boolean) => void>;
|
|
95
|
+
}>>, {
|
|
96
|
+
kgClass: Record<string, boolean>;
|
|
97
|
+
}>;
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { ExtractPropTypes, PropType } from 'vue';
|
|
2
|
+
export declare const getProps: () => {
|
|
3
|
+
/**
|
|
4
|
+
* 图标.
|
|
5
|
+
*/
|
|
6
|
+
kgIcon: {
|
|
7
|
+
type: PropType<string>;
|
|
8
|
+
required: boolean;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* 图标宽度.
|
|
12
|
+
*
|
|
13
|
+
* @default 24
|
|
14
|
+
*/
|
|
15
|
+
kgIconWidth: {
|
|
16
|
+
type: PropType<number>;
|
|
17
|
+
default: number;
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* 名称.
|
|
21
|
+
*/
|
|
22
|
+
kgName: {
|
|
23
|
+
type: PropType<string>;
|
|
24
|
+
required: boolean;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* 预制组件类型.
|
|
28
|
+
*
|
|
29
|
+
* @see NODE_KEY
|
|
30
|
+
*/
|
|
31
|
+
kgType: {
|
|
32
|
+
type: PropType<string>;
|
|
33
|
+
required: boolean;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
export declare type KgSimulatorPrefabProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
37
|
+
/**
|
|
38
|
+
* 模拟器--预制组件.
|
|
39
|
+
*/
|
|
40
|
+
export declare const KgSimulatorPrefab: import("vue").DefineComponent<{
|
|
41
|
+
/**
|
|
42
|
+
* 图标.
|
|
43
|
+
*/
|
|
44
|
+
kgIcon: {
|
|
45
|
+
type: PropType<string>;
|
|
46
|
+
required: boolean;
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* 图标宽度.
|
|
50
|
+
*
|
|
51
|
+
* @default 24
|
|
52
|
+
*/
|
|
53
|
+
kgIconWidth: {
|
|
54
|
+
type: PropType<number>;
|
|
55
|
+
default: number;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* 名称.
|
|
59
|
+
*/
|
|
60
|
+
kgName: {
|
|
61
|
+
type: PropType<string>;
|
|
62
|
+
required: boolean;
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* 预制组件类型.
|
|
66
|
+
*
|
|
67
|
+
* @see NODE_KEY
|
|
68
|
+
*/
|
|
69
|
+
kgType: {
|
|
70
|
+
type: PropType<string>;
|
|
71
|
+
required: boolean;
|
|
72
|
+
};
|
|
73
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
74
|
+
/**
|
|
75
|
+
* 图标.
|
|
76
|
+
*/
|
|
77
|
+
kgIcon: {
|
|
78
|
+
type: PropType<string>;
|
|
79
|
+
required: boolean;
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* 图标宽度.
|
|
83
|
+
*
|
|
84
|
+
* @default 24
|
|
85
|
+
*/
|
|
86
|
+
kgIconWidth: {
|
|
87
|
+
type: PropType<number>;
|
|
88
|
+
default: number;
|
|
89
|
+
};
|
|
90
|
+
/**
|
|
91
|
+
* 名称.
|
|
92
|
+
*/
|
|
93
|
+
kgName: {
|
|
94
|
+
type: PropType<string>;
|
|
95
|
+
required: boolean;
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* 预制组件类型.
|
|
99
|
+
*
|
|
100
|
+
* @see NODE_KEY
|
|
101
|
+
*/
|
|
102
|
+
kgType: {
|
|
103
|
+
type: PropType<string>;
|
|
104
|
+
required: boolean;
|
|
105
|
+
};
|
|
106
|
+
}>>, {
|
|
107
|
+
kgIconWidth: number;
|
|
108
|
+
}>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ExtractPropTypes } from 'vue';
|
|
2
|
+
export declare const getProps: () => any;
|
|
3
|
+
export declare type KgSimulatorToolbarButtonPrefabProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
4
|
+
/**
|
|
5
|
+
* 模拟器--工具按钮--预制组件.
|
|
6
|
+
*/
|
|
7
|
+
export declare const KgSimulatorToolbarButtonPrefab: import("vue").DefineComponent<any, () => JSX.Element | null, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<any>, {} | {
|
|
8
|
+
[x: string]: any;
|
|
9
|
+
}>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ExtractPropTypes } from 'vue';
|
|
2
|
+
export declare const getProps: () => any;
|
|
3
|
+
export declare type KgSimulatorToolbarButtonPropertyProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
4
|
+
/**
|
|
5
|
+
* 模拟器--工具按钮--属性.
|
|
6
|
+
*/
|
|
7
|
+
export declare const KgSimulatorToolbarButtonProperty: import("vue").DefineComponent<any, () => JSX.Element | null, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<any>, {} | {
|
|
8
|
+
[x: string]: any;
|
|
9
|
+
}>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ExtractPropTypes } from 'vue';
|
|
2
|
+
export declare const getProps: () => any;
|
|
3
|
+
export declare type KgSimulatorToolbarButtonSceneProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
4
|
+
/**
|
|
5
|
+
* 模拟器--工具按钮--场景.
|
|
6
|
+
*/
|
|
7
|
+
export declare const KgSimulatorToolbarButtonScene: import("vue").DefineComponent<any, () => JSX.Element | null, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<any>, {} | {
|
|
8
|
+
[x: string]: any;
|
|
9
|
+
}>;
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { ExtractPropTypes, PropType } from 'vue';
|
|
2
|
+
import { IToolbarPlacement } from './KgSimulator.model';
|
|
3
|
+
export declare const getProps: () => {
|
|
4
|
+
/**
|
|
5
|
+
* 图标.
|
|
6
|
+
*/
|
|
7
|
+
kgIcon: {
|
|
8
|
+
type: PropType<string>;
|
|
9
|
+
required: boolean;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* 是否打开.
|
|
13
|
+
*/
|
|
14
|
+
kgIsOpen: {
|
|
15
|
+
type: PropType<boolean>;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* 是否显示.
|
|
19
|
+
*/
|
|
20
|
+
kgIsVisible: {
|
|
21
|
+
type: PropType<boolean>;
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* 位置.
|
|
25
|
+
*/
|
|
26
|
+
kgPlacement: {
|
|
27
|
+
type: PropType<IToolbarPlacement>;
|
|
28
|
+
required: boolean;
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* 标题.
|
|
32
|
+
*/
|
|
33
|
+
kgTitle: {
|
|
34
|
+
type: PropType<string>;
|
|
35
|
+
required: boolean;
|
|
36
|
+
};
|
|
37
|
+
'onUpdate:kgIsOpen': PropType<(value: boolean) => void>;
|
|
38
|
+
};
|
|
39
|
+
export declare type KgSimulatorToolbarButtonProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
40
|
+
/**
|
|
41
|
+
* 模拟器--工具按钮.
|
|
42
|
+
*/
|
|
43
|
+
export declare const KgSimulatorToolbarButton: import("vue").DefineComponent<{
|
|
44
|
+
/**
|
|
45
|
+
* 图标.
|
|
46
|
+
*/
|
|
47
|
+
kgIcon: {
|
|
48
|
+
type: PropType<string>;
|
|
49
|
+
required: boolean;
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* 是否打开.
|
|
53
|
+
*/
|
|
54
|
+
kgIsOpen: {
|
|
55
|
+
type: PropType<boolean>;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* 是否显示.
|
|
59
|
+
*/
|
|
60
|
+
kgIsVisible: {
|
|
61
|
+
type: PropType<boolean>;
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* 位置.
|
|
65
|
+
*/
|
|
66
|
+
kgPlacement: {
|
|
67
|
+
type: PropType<IToolbarPlacement>;
|
|
68
|
+
required: boolean;
|
|
69
|
+
};
|
|
70
|
+
/**
|
|
71
|
+
* 标题.
|
|
72
|
+
*/
|
|
73
|
+
kgTitle: {
|
|
74
|
+
type: PropType<string>;
|
|
75
|
+
required: boolean;
|
|
76
|
+
};
|
|
77
|
+
'onUpdate:kgIsOpen': PropType<(value: boolean) => void>;
|
|
78
|
+
}, () => JSX.Element | null, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
79
|
+
/**
|
|
80
|
+
* 图标.
|
|
81
|
+
*/
|
|
82
|
+
kgIcon: {
|
|
83
|
+
type: PropType<string>;
|
|
84
|
+
required: boolean;
|
|
85
|
+
};
|
|
86
|
+
/**
|
|
87
|
+
* 是否打开.
|
|
88
|
+
*/
|
|
89
|
+
kgIsOpen: {
|
|
90
|
+
type: PropType<boolean>;
|
|
91
|
+
};
|
|
92
|
+
/**
|
|
93
|
+
* 是否显示.
|
|
94
|
+
*/
|
|
95
|
+
kgIsVisible: {
|
|
96
|
+
type: PropType<boolean>;
|
|
97
|
+
};
|
|
98
|
+
/**
|
|
99
|
+
* 位置.
|
|
100
|
+
*/
|
|
101
|
+
kgPlacement: {
|
|
102
|
+
type: PropType<IToolbarPlacement>;
|
|
103
|
+
required: boolean;
|
|
104
|
+
};
|
|
105
|
+
/**
|
|
106
|
+
* 标题.
|
|
107
|
+
*/
|
|
108
|
+
kgTitle: {
|
|
109
|
+
type: PropType<string>;
|
|
110
|
+
required: boolean;
|
|
111
|
+
};
|
|
112
|
+
'onUpdate:kgIsOpen': PropType<(value: boolean) => void>;
|
|
113
|
+
}>>, {}>;
|