@das-fed/ui 7.0.4-test.3 → 7.0.5-test.1
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 -6
- package/packages/business-components/currency-page/index.d.ts +1 -3
- package/packages/business-components/currency-page/index.js +35 -40
- package/packages/business-components/currency-page/index.js.gz +0 -0
- package/packages/business-components/currency-page/src/index.vue.d.ts +1 -3
- package/packages/business-components/currency-page/src/type.d.ts +0 -6
- package/packages/business-components/currency-page/style.css +1 -1
- package/packages/components/edit-table/index.d.ts +15 -15
- package/packages/components/edit-table/src/index.vue.d.ts +4 -4
- package/packages/components/image-upload/index.d.ts +0 -1
- package/packages/components/image-upload/index.js +114 -767
- package/packages/components/image-upload/index.js.gz +0 -0
- package/packages/components/image-upload/src/Index.vue.d.ts +0 -1
- package/packages/components/image-upload/src/type.d.ts +0 -3
- package/packages/components/image-upload/style.css +1 -1
- package/packages/components/image-upload/style.css.gz +0 -0
- package/packages/components/image-viewer/index.d.ts +0 -1
- package/packages/components/image-viewer/index.js +434 -1086
- package/packages/components/image-viewer/index.js.gz +0 -0
- package/packages/components/image-viewer/src/Index.vue.d.ts +0 -1
- package/packages/components/image-viewer/src/type.d.ts +0 -3
- package/packages/components/image-viewer/style.css +1 -1
- package/packages/components/image-viewer/style.css.gz +0 -0
- package/packages/components/menu-header/index.d.ts +0 -6
- package/packages/components/menu-header/index.js +31 -26
- package/packages/components/menu-header/index.js.gz +0 -0
- package/packages/components/menu-header/src/Index.vue.d.ts +0 -2
- package/packages/components/menu-header/src/type.d.ts +1 -6
- package/packages/components/menu-header/style.css +1 -1
- package/packages/components/menu-header/style.css.gz +0 -0
- package/packages/components/select-list/index.d.ts +10 -10
- package/packages/components/select-list/src/Index.vue.d.ts +8 -8
- package/packages/components/tree-table/index.js +263 -291
- package/packages/components/tree-table/index.js.gz +0 -0
- package/packages/components/tree-table/src/type.d.ts +1 -1
- package/packages/components/tree-table/style.css +1 -1
- package/packages/components/tree-table/style.css.gz +0 -0
- package/packages/components/image-upload/src/hooks/use-compress-image.d.ts +0 -1
- package/packages/components/image-viewer/src/hooks/use-compress-image.d.ts +0 -1
- package/packages/components/tree-table/src/hooks/use-five.d.ts +0 -4
- package/packages/components/tree-table/src/hooks/use-four.d.ts +0 -4
|
@@ -15,10 +15,10 @@ declare const DasEditTableRef: () => import("vue").Ref<({
|
|
|
15
15
|
readonly cellClassName?: import("element-plus").CellCls;
|
|
16
16
|
readonly selectionRows?: any[] | undefined;
|
|
17
17
|
readonly trigger?: "change" | "blur" | "save" | undefined;
|
|
18
|
-
readonly onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
19
18
|
readonly "onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
20
19
|
readonly onAddRow?: (() => any) | undefined;
|
|
21
20
|
readonly onRemoveRow?: (() => any) | undefined;
|
|
21
|
+
readonly onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
22
22
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
23
23
|
$attrs: {
|
|
24
24
|
[x: string]: unknown;
|
|
@@ -32,13 +32,13 @@ declare const DasEditTableRef: () => import("vue").Ref<({
|
|
|
32
32
|
$root: import("vue").ComponentPublicInstance | null;
|
|
33
33
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
34
34
|
$host: Element | null;
|
|
35
|
-
$emit: ((event: "
|
|
35
|
+
$emit: ((event: "update:selection-rows", selectionRows: any[]) => void) & ((event: "addRow") => void) & ((event: "removeRow") => void) & ((event: "sortEnd", oldData: any[], newData: any[], oldIndex: number, newIndex: number) => void);
|
|
36
36
|
$el: any;
|
|
37
37
|
$options: import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
38
|
-
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
39
38
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
40
39
|
onAddRow?: (() => any) | undefined;
|
|
41
40
|
onRemoveRow?: (() => any) | undefined;
|
|
41
|
+
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
42
42
|
}>, {
|
|
43
43
|
getResultData: () => {}[];
|
|
44
44
|
recover: () => void;
|
|
@@ -58,10 +58,10 @@ declare const DasEditTableRef: () => import("vue").Ref<({
|
|
|
58
58
|
changeRules: (key: string, callback?: (rule: any, checkFn: any) => void) => void;
|
|
59
59
|
removeCellError: (row: any, prop?: string) => void;
|
|
60
60
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
61
|
-
sortEnd: (oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any;
|
|
62
61
|
"update:selection-rows": (selectionRows: any[]) => any;
|
|
63
62
|
addRow: () => any;
|
|
64
63
|
removeRow: () => any;
|
|
64
|
+
sortEnd: (oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any;
|
|
65
65
|
}, string, {
|
|
66
66
|
config: import("./src/type.js").ListConfig[];
|
|
67
67
|
props: {
|
|
@@ -103,10 +103,10 @@ declare const DasEditTableRef: () => import("vue").Ref<({
|
|
|
103
103
|
rowKey: string;
|
|
104
104
|
selectionRows: any[];
|
|
105
105
|
}> & Omit<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
106
|
-
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
107
106
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
108
107
|
onAddRow?: (() => any) | undefined;
|
|
109
108
|
onRemoveRow?: (() => any) | undefined;
|
|
109
|
+
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
110
110
|
}>, "deactivateAll" | "removeErrorByRowKey" | "validateAll" | "clearValidate" | "changeRules" | "validateByRowKey" | "removeCellError" | "getResultData" | "recover" | "recoverByKey" | "insert" | "changeRowValueByKey" | "removeRowByKey" | ("config" | "props" | "data" | "trigger" | "rowKey" | "selectionRows")> & import("vue").ShallowUnwrapRef<{
|
|
111
111
|
getResultData: () => {}[];
|
|
112
112
|
recover: () => void;
|
|
@@ -196,10 +196,10 @@ declare const DasEditTableRef: () => import("vue").Ref<({
|
|
|
196
196
|
readonly cellClassName?: import("element-plus").CellCls;
|
|
197
197
|
readonly selectionRows?: any[] | undefined;
|
|
198
198
|
readonly trigger?: "change" | "blur" | "save" | undefined;
|
|
199
|
-
readonly onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
200
199
|
readonly "onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
201
200
|
readonly onAddRow?: (() => any) | undefined;
|
|
202
201
|
readonly onRemoveRow?: (() => any) | undefined;
|
|
202
|
+
readonly onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
203
203
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
204
204
|
$attrs: {
|
|
205
205
|
[x: string]: unknown;
|
|
@@ -213,13 +213,13 @@ declare const DasEditTableRef: () => import("vue").Ref<({
|
|
|
213
213
|
$root: import("vue").ComponentPublicInstance | null;
|
|
214
214
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
215
215
|
$host: Element | null;
|
|
216
|
-
$emit: ((event: "
|
|
216
|
+
$emit: ((event: "update:selection-rows", selectionRows: any[]) => void) & ((event: "addRow") => void) & ((event: "removeRow") => void) & ((event: "sortEnd", oldData: any[], newData: any[], oldIndex: number, newIndex: number) => void);
|
|
217
217
|
$el: any;
|
|
218
218
|
$options: import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
219
|
-
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
220
219
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
221
220
|
onAddRow?: (() => any) | undefined;
|
|
222
221
|
onRemoveRow?: (() => any) | undefined;
|
|
222
|
+
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
223
223
|
}>, {
|
|
224
224
|
getResultData: () => {}[];
|
|
225
225
|
recover: () => void;
|
|
@@ -239,10 +239,10 @@ declare const DasEditTableRef: () => import("vue").Ref<({
|
|
|
239
239
|
changeRules: (key: string, callback?: (rule: any, checkFn: any) => void) => void;
|
|
240
240
|
removeCellError: (row: any, prop?: string) => void;
|
|
241
241
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
242
|
-
sortEnd: (oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any;
|
|
243
242
|
"update:selection-rows": (selectionRows: any[]) => any;
|
|
244
243
|
addRow: () => any;
|
|
245
244
|
removeRow: () => any;
|
|
245
|
+
sortEnd: (oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any;
|
|
246
246
|
}, string, {
|
|
247
247
|
config: import("./src/type.js").ListConfig[];
|
|
248
248
|
props: {
|
|
@@ -284,10 +284,10 @@ declare const DasEditTableRef: () => import("vue").Ref<({
|
|
|
284
284
|
rowKey: string;
|
|
285
285
|
selectionRows: any[];
|
|
286
286
|
}> & Omit<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
287
|
-
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
288
287
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
289
288
|
onAddRow?: (() => any) | undefined;
|
|
290
289
|
onRemoveRow?: (() => any) | undefined;
|
|
290
|
+
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
291
291
|
}>, "deactivateAll" | "removeErrorByRowKey" | "validateAll" | "clearValidate" | "changeRules" | "validateByRowKey" | "removeCellError" | "getResultData" | "recover" | "recoverByKey" | "insert" | "changeRowValueByKey" | "removeRowByKey" | ("config" | "props" | "data" | "trigger" | "rowKey" | "selectionRows")> & import("vue").ShallowUnwrapRef<{
|
|
292
292
|
getResultData: () => {}[];
|
|
293
293
|
recover: () => void;
|
|
@@ -364,10 +364,10 @@ declare const DasEditTableRef: () => import("vue").Ref<({
|
|
|
364
364
|
}) | null>;
|
|
365
365
|
declare const DasEditTable: import("@das-fed/utils").SFCWithInstall<{
|
|
366
366
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
367
|
-
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
368
367
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
369
368
|
onAddRow?: (() => any) | undefined;
|
|
370
369
|
onRemoveRow?: (() => any) | undefined;
|
|
370
|
+
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
371
371
|
}>, {
|
|
372
372
|
getResultData: () => {}[];
|
|
373
373
|
recover: () => void;
|
|
@@ -387,10 +387,10 @@ declare const DasEditTable: import("@das-fed/utils").SFCWithInstall<{
|
|
|
387
387
|
changeRules: (key: string, callback?: (rule: any, checkFn: any) => void) => void;
|
|
388
388
|
removeCellError: (row: any, prop?: string) => void;
|
|
389
389
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
390
|
-
sortEnd: (oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any;
|
|
391
390
|
"update:selection-rows": (selectionRows: any[]) => any;
|
|
392
391
|
addRow: () => any;
|
|
393
392
|
removeRow: () => any;
|
|
393
|
+
sortEnd: (oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any;
|
|
394
394
|
}, import("vue").PublicProps, {
|
|
395
395
|
config: import("./src/type.js").ListConfig[];
|
|
396
396
|
props: {
|
|
@@ -409,10 +409,10 @@ declare const DasEditTable: import("@das-fed/utils").SFCWithInstall<{
|
|
|
409
409
|
M: {};
|
|
410
410
|
Defaults: {};
|
|
411
411
|
}, Readonly<import("./src/type.js").Props> & Readonly<{
|
|
412
|
-
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
413
412
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
414
413
|
onAddRow?: (() => any) | undefined;
|
|
415
414
|
onRemoveRow?: (() => any) | undefined;
|
|
415
|
+
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
416
416
|
}>, {
|
|
417
417
|
getResultData: () => {}[];
|
|
418
418
|
recover: () => void;
|
|
@@ -446,10 +446,10 @@ declare const DasEditTable: import("@das-fed/utils").SFCWithInstall<{
|
|
|
446
446
|
__isTeleport?: never;
|
|
447
447
|
__isSuspense?: never;
|
|
448
448
|
} & import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
449
|
-
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
450
449
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
451
450
|
onAddRow?: (() => any) | undefined;
|
|
452
451
|
onRemoveRow?: (() => any) | undefined;
|
|
452
|
+
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
453
453
|
}>, {
|
|
454
454
|
getResultData: () => {}[];
|
|
455
455
|
recover: () => void;
|
|
@@ -469,10 +469,10 @@ declare const DasEditTable: import("@das-fed/utils").SFCWithInstall<{
|
|
|
469
469
|
changeRules: (key: string, callback?: (rule: any, checkFn: any) => void) => void;
|
|
470
470
|
removeCellError: (row: any, prop?: string) => void;
|
|
471
471
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
472
|
-
sortEnd: (oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any;
|
|
473
472
|
"update:selection-rows": (selectionRows: any[]) => any;
|
|
474
473
|
addRow: () => any;
|
|
475
474
|
removeRow: () => any;
|
|
475
|
+
sortEnd: (oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any;
|
|
476
476
|
}, string, {
|
|
477
477
|
config: import("./src/type.js").ListConfig[];
|
|
478
478
|
props: {
|
|
@@ -4125,15 +4125,15 @@ declare const __VLS_self: import("vue").DefineComponent<Props, {
|
|
|
4125
4125
|
tableKey: typeof tableKey;
|
|
4126
4126
|
sortEnd: typeof sortEnd;
|
|
4127
4127
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
4128
|
-
sortEnd: (oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any;
|
|
4129
4128
|
"update:selection-rows": (selectionRows: any[]) => any;
|
|
4130
4129
|
addRow: () => any;
|
|
4131
4130
|
removeRow: () => any;
|
|
4131
|
+
sortEnd: (oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any;
|
|
4132
4132
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
4133
|
-
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
4134
4133
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
4135
4134
|
onAddRow?: (() => any) | undefined;
|
|
4136
4135
|
onRemoveRow?: (() => any) | undefined;
|
|
4136
|
+
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
4137
4137
|
}>, {
|
|
4138
4138
|
config: import("./type").ListConfig[];
|
|
4139
4139
|
props: {
|
|
@@ -4178,15 +4178,15 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {
|
|
|
4178
4178
|
/** 清除某一单元格的校验信息 */
|
|
4179
4179
|
removeCellError: (row: any, prop?: string) => void;
|
|
4180
4180
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
4181
|
-
sortEnd: (oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any;
|
|
4182
4181
|
"update:selection-rows": (selectionRows: any[]) => any;
|
|
4183
4182
|
addRow: () => any;
|
|
4184
4183
|
removeRow: () => any;
|
|
4184
|
+
sortEnd: (oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any;
|
|
4185
4185
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
4186
|
-
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
4187
4186
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
4188
4187
|
onAddRow?: (() => any) | undefined;
|
|
4189
4188
|
onRemoveRow?: (() => any) | undefined;
|
|
4189
|
+
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
4190
4190
|
}>, {
|
|
4191
4191
|
config: import("./type").ListConfig[];
|
|
4192
4192
|
props: {
|
|
@@ -12,7 +12,6 @@ declare const DasImageUpload: import("@das-fed/utils").SFCWithInstall<import("vu
|
|
|
12
12
|
errorMessage: string;
|
|
13
13
|
accept: string;
|
|
14
14
|
openFileDialogOnClick: boolean;
|
|
15
|
-
isOverMaxLimitCompressImg: boolean;
|
|
16
15
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>>;
|
|
17
16
|
export { DasImageUpload };
|
|
18
17
|
export default DasImageUpload;
|