@a2simcode/dui 0.0.1 → 0.0.3
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/components-dui/drag/index.d.ts +36 -0
- package/dist/components-dui/drag/src/container.vue.d.ts +40 -0
- package/dist/components-dui/drag/src/drag.vue.d.ts +29 -0
- package/dist/components-dui/drag/src/dragFormList.vue.d.ts +16 -0
- package/dist/components-dui/drag/src/dragIndexList.vue.d.ts +16 -0
- package/dist/components-dui/drag/src/eventBus.d.ts +4 -0
- package/dist/components-dui/drag/src/hooks/useDesign.d.ts +11 -0
- package/dist/components-dui/drag/src/hooks/useDrag.d.ts +18 -0
- package/dist/components-dui/drag/src/hooks/useMouseEvent.d.ts +6 -0
- package/dist/components-dui/drag/src/interface.d.ts +80 -0
- package/dist/components-dui/drag/src/tool.vue.d.ts +24 -0
- package/dist/components-dui/draggable/index.d.ts +223 -0
- package/dist/components-dui/draggable/src/draggable.vue.d.ts +131 -0
- package/dist/components-dui/flowDesign/index.d.ts +66 -0
- package/dist/components-dui/flowDesign/src/edge/edgeWithButton.vue.d.ts +22 -0
- package/dist/components-dui/flowDesign/src/flow.vue.d.ts +12 -0
- package/dist/components-dui/flowDesign/src/flowDesign.vue.d.ts +44 -0
- package/dist/components-dui/flowDesign/src/interface.d.ts +108 -0
- package/dist/components-dui/flowDesign/src/node/stepNode.vue.d.ts +10 -0
- package/dist/components-dui/flowDesign/src/nodeMenus.vue.d.ts +12 -0
- package/dist/components-dui/index.d.ts +11 -0
- package/dist/components-dui/inputFlow/index.d.ts +68 -0
- package/dist/components-dui/inputFlow/src/inputFlow.vue.d.ts +60 -0
- package/dist/components-dui/layout/index.d.ts +115 -0
- package/dist/components-dui/layout/src/layout.vue.d.ts +114 -0
- package/dist/components-dui/utils/components.d.ts +8 -0
- package/dist/components-dui/utils/index.d.ts +7 -0
- package/dist/components-dui/utils/number.d.ts +27 -0
- package/dist/dui.css +1 -1
- package/dist/dui.es.js +14127 -57
- package/dist/dui.umd.js +28 -1
- package/package.json +18 -14
- package/dist/button/index.d.ts +0 -51
- package/dist/button/src/button.vue.d.ts +0 -29
- package/dist/button/src/types.d.ts +0 -9
- package/dist/index.d.ts +0 -8
- package/dist/utils/index.d.ts +0 -4
- /package/dist/{vite.config.d.ts → components-dui/vite.config.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a2simcode/dui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "A Vue 3 DUI Component Library - 独立可发布的 DUI 组件子集",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/dui.umd.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"@bwip-js/browser": "^4.8.0",
|
|
35
35
|
"@codemirror/autocomplete": "^6.20.0",
|
|
36
|
-
"@codemirror/commands": "^6.10.
|
|
36
|
+
"@codemirror/commands": "^6.10.2",
|
|
37
37
|
"@codemirror/lang-css": "^6.3.1",
|
|
38
38
|
"@codemirror/lang-html": "^6.4.11",
|
|
39
39
|
"@codemirror/lang-java": "^6.0.2",
|
|
@@ -45,28 +45,32 @@
|
|
|
45
45
|
"@codemirror/lang-xml": "^6.1.0",
|
|
46
46
|
"@codemirror/language": "^6.12.1",
|
|
47
47
|
"@codemirror/state": "^6.5.4",
|
|
48
|
-
"@codemirror/view": "^6.39.
|
|
48
|
+
"@codemirror/view": "^6.39.13",
|
|
49
49
|
"@iconify/vue": "^5.0.0",
|
|
50
|
-
"@visactor/vtable": "^1.
|
|
51
|
-
"@visactor/vtable-editors": "^1.
|
|
52
|
-
"@vueuse/core": "^14.
|
|
50
|
+
"@visactor/vtable": "^1.23.1",
|
|
51
|
+
"@visactor/vtable-editors": "^1.23.1",
|
|
52
|
+
"@vueuse/core": "^14.2.0",
|
|
53
53
|
"async-validator": "^4.2.5",
|
|
54
54
|
"codemirror": "^6.0.2",
|
|
55
|
-
"countup.js": "^2.0
|
|
56
|
-
"crypto-js": "^4.
|
|
55
|
+
"countup.js": "^2.9.0",
|
|
56
|
+
"crypto-js": "^4.2.0",
|
|
57
57
|
"dayjs": "^1.11.19",
|
|
58
58
|
"echarts": "^6.0.0",
|
|
59
|
-
"element-plus": "^2.13.
|
|
60
|
-
"sortablejs": "^1.15.
|
|
61
|
-
"sql-formatter": "^15.
|
|
62
|
-
"vue": "^3.5.
|
|
59
|
+
"element-plus": "^2.13.2",
|
|
60
|
+
"sortablejs": "^1.15.6",
|
|
61
|
+
"sql-formatter": "^15.7.0",
|
|
62
|
+
"vue": "^3.5.27",
|
|
63
63
|
"@wangeditor/editor": "^5.1.23",
|
|
64
|
-
"diagram-js": "^15.
|
|
64
|
+
"diagram-js": "^15.9.0",
|
|
65
65
|
"diagram-js-direct-editing": "^3.3.0",
|
|
66
66
|
"min-dom": "^5.2.0",
|
|
67
67
|
"inherits": "2.0.4",
|
|
68
68
|
"tiny-svg": "^4.1.4",
|
|
69
|
-
"min-dash": "^5.0.0"
|
|
69
|
+
"min-dash": "^5.0.0",
|
|
70
|
+
"@vue-flow/core": "^1.48.2",
|
|
71
|
+
"@vue-flow/background": "^1.3.2",
|
|
72
|
+
"@vue-flow/controls": "^1.1.3",
|
|
73
|
+
"gridstack": "^12.4.2"
|
|
70
74
|
},
|
|
71
75
|
"devDependencies": {
|
|
72
76
|
"@types/codemirror": "^5.60.17",
|
package/dist/button/index.d.ts
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
declare const DuiButton: {
|
|
2
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('..').ButtonProps> & Readonly<{
|
|
3
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
4
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5
|
-
click: (event: MouseEvent) => any;
|
|
6
|
-
}, import('vue').PublicProps, {
|
|
7
|
-
size: "large" | "default" | "small";
|
|
8
|
-
type: "primary" | "default" | "dashed" | "text";
|
|
9
|
-
shape: "default" | "round" | "circle";
|
|
10
|
-
loading: boolean;
|
|
11
|
-
disabled: boolean;
|
|
12
|
-
block: boolean;
|
|
13
|
-
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLButtonElement, import('vue').ComponentProvideOptions, {
|
|
14
|
-
P: {};
|
|
15
|
-
B: {};
|
|
16
|
-
D: {};
|
|
17
|
-
C: {};
|
|
18
|
-
M: {};
|
|
19
|
-
Defaults: {};
|
|
20
|
-
}, Readonly<import('..').ButtonProps> & Readonly<{
|
|
21
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
22
|
-
}>, {}, {}, {}, {}, {
|
|
23
|
-
size: "large" | "default" | "small";
|
|
24
|
-
type: "primary" | "default" | "dashed" | "text";
|
|
25
|
-
shape: "default" | "round" | "circle";
|
|
26
|
-
loading: boolean;
|
|
27
|
-
disabled: boolean;
|
|
28
|
-
block: boolean;
|
|
29
|
-
}>;
|
|
30
|
-
__isFragment?: never;
|
|
31
|
-
__isTeleport?: never;
|
|
32
|
-
__isSuspense?: never;
|
|
33
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('..').ButtonProps> & Readonly<{
|
|
34
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
35
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
36
|
-
click: (event: MouseEvent) => any;
|
|
37
|
-
}, string, {
|
|
38
|
-
size: "large" | "default" | "small";
|
|
39
|
-
type: "primary" | "default" | "dashed" | "text";
|
|
40
|
-
shape: "default" | "round" | "circle";
|
|
41
|
-
loading: boolean;
|
|
42
|
-
disabled: boolean;
|
|
43
|
-
block: boolean;
|
|
44
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
45
|
-
$slots: {
|
|
46
|
-
default?(_: {}): any;
|
|
47
|
-
};
|
|
48
|
-
}) & {
|
|
49
|
-
install: (app: import('vue').App) => void;
|
|
50
|
-
};
|
|
51
|
-
export default DuiButton;
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { ButtonProps } from './types';
|
|
2
|
-
declare function __VLS_template(): {
|
|
3
|
-
attrs: Partial<{}>;
|
|
4
|
-
slots: {
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {};
|
|
8
|
-
rootEl: HTMLButtonElement;
|
|
9
|
-
};
|
|
10
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
-
declare const __VLS_component: import('vue').DefineComponent<ButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
|
-
click: (event: MouseEvent) => any;
|
|
13
|
-
}, string, import('vue').PublicProps, Readonly<ButtonProps> & Readonly<{
|
|
14
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
15
|
-
}>, {
|
|
16
|
-
size: "large" | "default" | "small";
|
|
17
|
-
type: "primary" | "default" | "dashed" | "text";
|
|
18
|
-
shape: "default" | "round" | "circle";
|
|
19
|
-
loading: boolean;
|
|
20
|
-
disabled: boolean;
|
|
21
|
-
block: boolean;
|
|
22
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
23
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
|
-
export default _default;
|
|
25
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
26
|
-
new (): {
|
|
27
|
-
$slots: S;
|
|
28
|
-
};
|
|
29
|
-
};
|
package/dist/index.d.ts
DELETED
package/dist/utils/index.d.ts
DELETED
|
File without changes
|