@kengic/vue 0.30.1-beta.31 → 0.30.1-beta.33
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 +34475 -32454
- 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 +3 -3
- package/dist/src/component/KgCanvas/KgCanvas.event.d.ts +19 -3
- package/dist/src/component/KgCanvas/KgCanvas.hooks.d.ts +13 -1
- package/dist/src/component/KgForm/KgForm.d.ts +36 -36
- package/dist/src/component/KgForm/index.d.ts +48 -48
- package/dist/src/component/KgImage/KgImage.d.ts +6 -6
- package/dist/src/component/KgModal/KgModal.d.ts +4 -4
- package/dist/src/component/KgModal02/KgModal02.d.ts +18 -18
- package/dist/src/component/KgSimulator/KgSimulator.model.d.ts +698 -135
- package/dist/src/const/const.model.d.ts +0 -15
- package/dist/src/util/ant-design-vue.d.ts +15 -15
- package/package.json +1 -1
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Q } from '@thymine/xunee';
|
|
2
1
|
import { FormInstance, type TooltipProps } from 'ant-design-vue';
|
|
3
2
|
import { ModalFuncProps } from 'ant-design-vue/lib/modal/Modal';
|
|
4
3
|
import { Pinia, StoreOnActionListener } from 'pinia';
|
|
@@ -67,10 +66,6 @@ export declare const KG: {
|
|
|
67
66
|
* 画布.
|
|
68
67
|
*/
|
|
69
68
|
KG_CANVAS: {
|
|
70
|
-
/**
|
|
71
|
-
* 变量查找编号.
|
|
72
|
-
*/
|
|
73
|
-
GET_GRAPH: InjectionKey<() => Q.Graph>;
|
|
74
69
|
/**
|
|
75
70
|
* 组件参数.
|
|
76
71
|
*/
|
|
@@ -96,9 +91,6 @@ export declare const KG: {
|
|
|
96
91
|
default: boolean;
|
|
97
92
|
};
|
|
98
93
|
kgIsGridBackground: {
|
|
99
|
-
/**
|
|
100
|
-
* 表单.
|
|
101
|
-
*/
|
|
102
94
|
type: import("vue").PropType<boolean>;
|
|
103
95
|
default: boolean;
|
|
104
96
|
};
|
|
@@ -424,10 +416,6 @@ export declare const KG_CONST: {
|
|
|
424
416
|
* 画布.
|
|
425
417
|
*/
|
|
426
418
|
KG_CANVAS: {
|
|
427
|
-
/**
|
|
428
|
-
* 变量查找编号.
|
|
429
|
-
*/
|
|
430
|
-
GET_GRAPH: InjectionKey<() => Q.Graph>;
|
|
431
419
|
/**
|
|
432
420
|
* 组件参数.
|
|
433
421
|
*/
|
|
@@ -453,9 +441,6 @@ export declare const KG_CONST: {
|
|
|
453
441
|
default: boolean;
|
|
454
442
|
};
|
|
455
443
|
kgIsGridBackground: {
|
|
456
|
-
/**
|
|
457
|
-
* 表单.
|
|
458
|
-
*/
|
|
459
444
|
type: import("vue").PropType<boolean>;
|
|
460
445
|
default: boolean;
|
|
461
446
|
};
|
|
@@ -9,11 +9,11 @@ export declare const formProps: () => {
|
|
|
9
9
|
layout: PropType<"inline" | "horizontal" | "vertical">;
|
|
10
10
|
labelCol: {
|
|
11
11
|
type: PropType<Partial<ExtractPropTypes<{
|
|
12
|
-
span: (
|
|
13
|
-
order: (
|
|
14
|
-
offset: (
|
|
15
|
-
push: (
|
|
16
|
-
pull: (
|
|
12
|
+
span: (NumberConstructor | StringConstructor)[];
|
|
13
|
+
order: (NumberConstructor | StringConstructor)[];
|
|
14
|
+
offset: (NumberConstructor | StringConstructor)[];
|
|
15
|
+
push: (NumberConstructor | StringConstructor)[];
|
|
16
|
+
pull: (NumberConstructor | StringConstructor)[];
|
|
17
17
|
xs: {
|
|
18
18
|
type: PropType<string | number | import("ant-design-vue/lib/grid").ColSize>;
|
|
19
19
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
|
@@ -43,16 +43,16 @@ export declare const formProps: () => {
|
|
|
43
43
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
|
44
44
|
};
|
|
45
45
|
prefixCls: StringConstructor;
|
|
46
|
-
flex: (
|
|
46
|
+
flex: (NumberConstructor | StringConstructor)[];
|
|
47
47
|
}>> & HTMLAttributes>;
|
|
48
48
|
};
|
|
49
49
|
wrapperCol: {
|
|
50
50
|
type: PropType<Partial<ExtractPropTypes<{
|
|
51
|
-
span: (
|
|
52
|
-
order: (
|
|
53
|
-
offset: (
|
|
54
|
-
push: (
|
|
55
|
-
pull: (
|
|
51
|
+
span: (NumberConstructor | StringConstructor)[];
|
|
52
|
+
order: (NumberConstructor | StringConstructor)[];
|
|
53
|
+
offset: (NumberConstructor | StringConstructor)[];
|
|
54
|
+
push: (NumberConstructor | StringConstructor)[];
|
|
55
|
+
pull: (NumberConstructor | StringConstructor)[];
|
|
56
56
|
xs: {
|
|
57
57
|
type: PropType<string | number | import("ant-design-vue/lib/grid").ColSize>;
|
|
58
58
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
|
@@ -82,7 +82,7 @@ export declare const formProps: () => {
|
|
|
82
82
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
|
83
83
|
};
|
|
84
84
|
prefixCls: StringConstructor;
|
|
85
|
-
flex: (
|
|
85
|
+
flex: (NumberConstructor | StringConstructor)[];
|
|
86
86
|
}>> & HTMLAttributes>;
|
|
87
87
|
};
|
|
88
88
|
colon: {
|
|
@@ -166,7 +166,7 @@ export declare const modalProps: () => {
|
|
|
166
166
|
type: BooleanConstructor;
|
|
167
167
|
default: undefined;
|
|
168
168
|
};
|
|
169
|
-
width: (
|
|
169
|
+
width: (NumberConstructor | StringConstructor)[];
|
|
170
170
|
footer: PropType<any>;
|
|
171
171
|
okText: PropType<any>;
|
|
172
172
|
okType: PropType<LegacyButtonType>;
|
|
@@ -340,8 +340,8 @@ export declare const imageProps: () => {
|
|
|
340
340
|
type: PropType<(event: Event | string, source?: string, lineno?: number, colno?: number, error?: Error) => any>;
|
|
341
341
|
};
|
|
342
342
|
id: StringConstructor;
|
|
343
|
-
width: (
|
|
344
|
-
height: (
|
|
343
|
+
width: (NumberConstructor | StringConstructor)[];
|
|
344
|
+
height: (NumberConstructor | StringConstructor)[];
|
|
345
345
|
style: StringConstructor;
|
|
346
346
|
};
|
|
347
347
|
export {};
|
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.33",
|
|
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",
|