@kengic/vue 0.30.1-beta.23 → 0.30.1-beta.24
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 +5927 -5725
- package/dist/src/component/KgCanvas/KgCanvas.event.d.ts +3 -2
- package/dist/src/component/KgCanvas/KgCanvas.service.d.ts +4 -4
- package/dist/src/component/KgForm.Item/KgForm.Item.d.ts +35 -35
- package/dist/src/component/KgForm.Item/KgForm.Item.model.d.ts +30 -30
- package/dist/src/component/KgForm.Item/components/KgForm.Item.Checkbox.d.ts +36 -36
- package/dist/src/component/KgForm.Item/components/KgForm.Item.CheckboxGroup.d.ts +36 -34
- 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 +38 -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 -34
- package/dist/src/component/KgForm.Item/components/KgForm.Item.Select.d.ts +35 -37
- 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/KgSimulator/KgSimulator.service.d.ts +1 -3
- package/dist/src/const/const.model.d.ts +2 -6
- package/dist/src/const/form-id.const.d.ts +4 -0
- package/package.json +1 -1
|
@@ -88,9 +88,7 @@ export declare const KG: {
|
|
|
88
88
|
}>>>;
|
|
89
89
|
};
|
|
90
90
|
kgIsEditable: {
|
|
91
|
-
type: import("vue").PropType<boolean>;
|
|
92
|
-
* 画布.
|
|
93
|
-
*/
|
|
91
|
+
type: import("vue").PropType<boolean>;
|
|
94
92
|
default: boolean;
|
|
95
93
|
};
|
|
96
94
|
kgIsEnableOverview: {
|
|
@@ -444,9 +442,7 @@ export declare const KG_CONST: {
|
|
|
444
442
|
}>>>;
|
|
445
443
|
};
|
|
446
444
|
kgIsEditable: {
|
|
447
|
-
type: import("vue").PropType<boolean>;
|
|
448
|
-
* 画布.
|
|
449
|
-
*/
|
|
445
|
+
type: import("vue").PropType<boolean>;
|
|
450
446
|
default: boolean;
|
|
451
447
|
};
|
|
452
448
|
kgIsEnableOverview: {
|
|
@@ -31,6 +31,10 @@ export declare const FORM_IDS: {
|
|
|
31
31
|
* 模拟器--菜单--场景--打开--环线输送线.
|
|
32
32
|
*/
|
|
33
33
|
KG_SIMULATOR__MENU__SCENE__OPEN__CIRCULAR_CONVEYOR: string;
|
|
34
|
+
/**
|
|
35
|
+
* 模拟器--面板--属性.
|
|
36
|
+
*/
|
|
37
|
+
KG_SIMULATOR__PANEL__PROPERTY: string;
|
|
34
38
|
KG_SQL_CLIENT__RESULT_TAB: string;
|
|
35
39
|
/**
|
|
36
40
|
* 变量配置弹窗:按钮:按钮管理.
|
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.24",
|
|
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",
|