@das-fed/ui 6.4.0-dev.83 → 6.4.0-dev.84
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/package.json +5 -5
- package/packages/components/alert/index.d.ts +9 -9
- package/packages/components/alert/src/index.vue.d.ts +1 -1
- package/packages/components/autocomplete/index.d.ts +9 -9
- package/packages/components/autocomplete/src/index.vue.d.ts +1 -1
- package/packages/components/text-tooltip/index.js +414 -414
- package/packages/components/text-tooltip/index.js.gz +0 -0
- package/packages/components/tooltip/index.d.ts +11 -2
- package/packages/components/tooltip/index.js +9 -7
- package/packages/components/tooltip/index.js.gz +0 -0
- package/packages/components/tooltip/src/index.vue.d.ts +1 -0
- package/packages/components/tooltip/src/type.d.ts +15 -2
- package/packages/components/tooltip/style.css +1 -1
- package/packages/components/tooltip/style.css.gz +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@das-fed/ui",
|
|
3
|
-
"version": "6.4.0-dev.
|
|
3
|
+
"version": "6.4.0-dev.84",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@antv/x6-plugin-snapline": "^2.1.7",
|
|
27
27
|
"@antv/x6-plugin-transform": "^2.1.8",
|
|
28
28
|
"@antv/x6-vue-shape": "^2.1.2",
|
|
29
|
-
"@das-fed/cli": "6.4.0-dev.
|
|
29
|
+
"@das-fed/cli": "6.4.0-dev.84",
|
|
30
30
|
"@element-plus/icons-vue": "^2.3.1",
|
|
31
31
|
"@types/lodash": "^4.14.194",
|
|
32
32
|
"@types/lodash-es": "^4.17.9",
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"vue-tsc": "^2.0.29"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@das-fed/ui": "6.4.0-dev.
|
|
60
|
-
"@das-fed/utils": "6.4.0-dev.
|
|
61
|
-
"@das-fed/web": "6.4.0-dev.
|
|
59
|
+
"@das-fed/ui": "6.4.0-dev.84",
|
|
60
|
+
"@das-fed/utils": "6.4.0-dev.84",
|
|
61
|
+
"@das-fed/web": "6.4.0-dev.84",
|
|
62
62
|
"@wangeditor/editor": "^5.1.23",
|
|
63
63
|
"@wangeditor/editor-for-vue": "^5.1.12",
|
|
64
64
|
"@wangeditor/plugin-upload-attachment": "^1.1.0",
|
|
@@ -23,8 +23,8 @@ declare const DasAlertRef: () => import("vue").Ref<({
|
|
|
23
23
|
$emit: (event: string, ...args: any[]) => void;
|
|
24
24
|
$el: any;
|
|
25
25
|
$options: import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
26
|
-
left: string | number;
|
|
27
26
|
top: string | number;
|
|
27
|
+
left: string | number;
|
|
28
28
|
banner: boolean;
|
|
29
29
|
delayOffTime: number;
|
|
30
30
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
@@ -48,11 +48,11 @@ declare const DasAlertRef: () => import("vue").Ref<({
|
|
|
48
48
|
$nextTick: typeof import("vue").nextTick;
|
|
49
49
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
50
50
|
} & Readonly<{
|
|
51
|
-
left: string | number;
|
|
52
51
|
top: string | number;
|
|
52
|
+
left: string | number;
|
|
53
53
|
banner: boolean;
|
|
54
54
|
delayOffTime: number;
|
|
55
|
-
}> & Omit<Readonly<import("./src/type.js").Props> & Readonly<{}>, "
|
|
55
|
+
}> & Omit<Readonly<import("./src/type.js").Props> & Readonly<{}>, "top" | "left" | "banner" | "delayOffTime"> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
56
56
|
$slots: {
|
|
57
57
|
description?(_: {}): any;
|
|
58
58
|
icon?(_: {}): any;
|
|
@@ -85,8 +85,8 @@ declare const DasAlertRef: () => import("vue").Ref<({
|
|
|
85
85
|
$emit: (event: string, ...args: any[]) => void;
|
|
86
86
|
$el: any;
|
|
87
87
|
$options: import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
88
|
-
left: string | number;
|
|
89
88
|
top: string | number;
|
|
89
|
+
left: string | number;
|
|
90
90
|
banner: boolean;
|
|
91
91
|
delayOffTime: number;
|
|
92
92
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
@@ -110,11 +110,11 @@ declare const DasAlertRef: () => import("vue").Ref<({
|
|
|
110
110
|
$nextTick: typeof import("vue").nextTick;
|
|
111
111
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
112
112
|
} & Readonly<{
|
|
113
|
-
left: string | number;
|
|
114
113
|
top: string | number;
|
|
114
|
+
left: string | number;
|
|
115
115
|
banner: boolean;
|
|
116
116
|
delayOffTime: number;
|
|
117
|
-
}> & Omit<Readonly<import("./src/type.js").Props> & Readonly<{}>, "
|
|
117
|
+
}> & Omit<Readonly<import("./src/type.js").Props> & Readonly<{}>, "top" | "left" | "banner" | "delayOffTime"> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
118
118
|
$slots: {
|
|
119
119
|
description?(_: {}): any;
|
|
120
120
|
icon?(_: {}): any;
|
|
@@ -126,8 +126,8 @@ declare const DasAlertRef: () => import("vue").Ref<({
|
|
|
126
126
|
}) | null>;
|
|
127
127
|
declare const DasAlert: import("@das-fed/utils").SFCWithInstall<{
|
|
128
128
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("./src/type.js").Props> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
129
|
-
left: string | number;
|
|
130
129
|
top: string | number;
|
|
130
|
+
left: string | number;
|
|
131
131
|
banner: boolean;
|
|
132
132
|
delayOffTime: number;
|
|
133
133
|
}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
@@ -138,8 +138,8 @@ declare const DasAlert: import("@das-fed/utils").SFCWithInstall<{
|
|
|
138
138
|
M: {};
|
|
139
139
|
Defaults: {};
|
|
140
140
|
}, Readonly<import("./src/type.js").Props> & Readonly<{}>, {}, {}, {}, {}, {
|
|
141
|
-
left: string | number;
|
|
142
141
|
top: string | number;
|
|
142
|
+
left: string | number;
|
|
143
143
|
banner: boolean;
|
|
144
144
|
delayOffTime: number;
|
|
145
145
|
}>;
|
|
@@ -147,8 +147,8 @@ declare const DasAlert: import("@das-fed/utils").SFCWithInstall<{
|
|
|
147
147
|
__isTeleport?: never;
|
|
148
148
|
__isSuspense?: never;
|
|
149
149
|
} & import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
150
|
-
left: string | number;
|
|
151
150
|
top: string | number;
|
|
151
|
+
left: string | number;
|
|
152
152
|
banner: boolean;
|
|
153
153
|
delayOffTime: number;
|
|
154
154
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import 'ant-design-vue/es/alert/style/css';
|
|
2
2
|
import type { Props } from './type';
|
|
3
3
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
4
|
-
left: string | number;
|
|
5
4
|
top: string | number;
|
|
5
|
+
left: string | number;
|
|
6
6
|
banner: boolean;
|
|
7
7
|
delayOffTime: number;
|
|
8
8
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
@@ -55,8 +55,8 @@ declare const DasAutocompleteRef: () => import("vue").Ref<({
|
|
|
55
55
|
size: "default" | "table";
|
|
56
56
|
mode: "tree" | "list";
|
|
57
57
|
modelValue: string;
|
|
58
|
-
offset: number;
|
|
59
58
|
placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end";
|
|
59
|
+
offset: number;
|
|
60
60
|
popperOptions: Record<string, any>;
|
|
61
61
|
width: number | string;
|
|
62
62
|
isView: boolean;
|
|
@@ -90,8 +90,8 @@ declare const DasAutocompleteRef: () => import("vue").Ref<({
|
|
|
90
90
|
size: "default" | "table";
|
|
91
91
|
mode: "tree" | "list";
|
|
92
92
|
modelValue: string;
|
|
93
|
-
offset: number;
|
|
94
93
|
placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end";
|
|
94
|
+
offset: number;
|
|
95
95
|
popperOptions: Record<string, any>;
|
|
96
96
|
width: number | string;
|
|
97
97
|
isView: boolean;
|
|
@@ -107,7 +107,7 @@ declare const DasAutocompleteRef: () => import("vue").Ref<({
|
|
|
107
107
|
onChange?: ((val: string) => any) | undefined;
|
|
108
108
|
"onUpdate:path"?: ((val: any) => any) | undefined;
|
|
109
109
|
"onNode-click"?: ((val: any) => any) | undefined;
|
|
110
|
-
}>, "size" | "mode" | "modelValue" | "
|
|
110
|
+
}>, "size" | "mode" | "modelValue" | "placement" | "offset" | "popperOptions" | "width" | "isView" | "options" | "showFullPath" | "fieldNames" | "maxCount" | "treeOptions" | "showInputDom"> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
111
111
|
$slots: Partial<Record<NonNullable<string | number>, (_: {}) => any>>;
|
|
112
112
|
}) | null, ({
|
|
113
113
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -165,8 +165,8 @@ declare const DasAutocompleteRef: () => import("vue").Ref<({
|
|
|
165
165
|
size: "default" | "table";
|
|
166
166
|
mode: "tree" | "list";
|
|
167
167
|
modelValue: string;
|
|
168
|
-
offset: number;
|
|
169
168
|
placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end";
|
|
169
|
+
offset: number;
|
|
170
170
|
popperOptions: Record<string, any>;
|
|
171
171
|
width: number | string;
|
|
172
172
|
isView: boolean;
|
|
@@ -200,8 +200,8 @@ declare const DasAutocompleteRef: () => import("vue").Ref<({
|
|
|
200
200
|
size: "default" | "table";
|
|
201
201
|
mode: "tree" | "list";
|
|
202
202
|
modelValue: string;
|
|
203
|
-
offset: number;
|
|
204
203
|
placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end";
|
|
204
|
+
offset: number;
|
|
205
205
|
popperOptions: Record<string, any>;
|
|
206
206
|
width: number | string;
|
|
207
207
|
isView: boolean;
|
|
@@ -217,7 +217,7 @@ declare const DasAutocompleteRef: () => import("vue").Ref<({
|
|
|
217
217
|
onChange?: ((val: string) => any) | undefined;
|
|
218
218
|
"onUpdate:path"?: ((val: any) => any) | undefined;
|
|
219
219
|
"onNode-click"?: ((val: any) => any) | undefined;
|
|
220
|
-
}>, "size" | "mode" | "modelValue" | "
|
|
220
|
+
}>, "size" | "mode" | "modelValue" | "placement" | "offset" | "popperOptions" | "width" | "isView" | "options" | "showFullPath" | "fieldNames" | "maxCount" | "treeOptions" | "showInputDom"> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
221
221
|
$slots: Partial<Record<NonNullable<string | number>, (_: {}) => any>>;
|
|
222
222
|
}) | null>;
|
|
223
223
|
declare const DasAutocomplete: import("@das-fed/utils").SFCWithInstall<{
|
|
@@ -237,8 +237,8 @@ declare const DasAutocomplete: import("@das-fed/utils").SFCWithInstall<{
|
|
|
237
237
|
size: "default" | "table";
|
|
238
238
|
mode: "tree" | "list";
|
|
239
239
|
modelValue: string;
|
|
240
|
-
offset: number;
|
|
241
240
|
placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end";
|
|
241
|
+
offset: number;
|
|
242
242
|
popperOptions: Record<string, any>;
|
|
243
243
|
width: number | string;
|
|
244
244
|
isView: boolean;
|
|
@@ -265,8 +265,8 @@ declare const DasAutocomplete: import("@das-fed/utils").SFCWithInstall<{
|
|
|
265
265
|
size: "default" | "table";
|
|
266
266
|
mode: "tree" | "list";
|
|
267
267
|
modelValue: string;
|
|
268
|
-
offset: number;
|
|
269
268
|
placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end";
|
|
269
|
+
offset: number;
|
|
270
270
|
popperOptions: Record<string, any>;
|
|
271
271
|
width: number | string;
|
|
272
272
|
isView: boolean;
|
|
@@ -296,8 +296,8 @@ declare const DasAutocomplete: import("@das-fed/utils").SFCWithInstall<{
|
|
|
296
296
|
size: "default" | "table";
|
|
297
297
|
mode: "tree" | "list";
|
|
298
298
|
modelValue: string;
|
|
299
|
-
offset: number;
|
|
300
299
|
placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end";
|
|
300
|
+
offset: number;
|
|
301
301
|
popperOptions: Record<string, any>;
|
|
302
302
|
width: number | string;
|
|
303
303
|
isView: boolean;
|
|
@@ -3357,8 +3357,8 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
3357
3357
|
size: "default" | "table";
|
|
3358
3358
|
mode: "tree" | "list";
|
|
3359
3359
|
modelValue: string;
|
|
3360
|
-
offset: number;
|
|
3361
3360
|
placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end";
|
|
3361
|
+
offset: number;
|
|
3362
3362
|
popperOptions: Record<string, any>;
|
|
3363
3363
|
width: number | string;
|
|
3364
3364
|
isView: boolean;
|