@das-fed/ui 7.0.3 → 7.0.4-test.2
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 +6 -5
- package/packages/business-components/ai-panel/{index-BbtDXlR3.js → index-CD2YNg3j.js} +62 -62
- package/packages/business-components/ai-panel/index-CD2YNg3j.js.gz +0 -0
- package/packages/business-components/ai-panel/{index-DcsbACoj.js → index-DWHxqEh3.js} +1 -1
- package/packages/business-components/ai-panel/index-DWHxqEh3.js.gz +0 -0
- package/packages/business-components/ai-panel/index.js +1 -1
- package/packages/business-components/ai-panel/style.css +1 -1
- package/packages/business-components/ai-panel/style.css.gz +0 -0
- package/packages/business-components/currency-page/index.d.ts +3 -1
- package/packages/business-components/currency-page/index.js +40 -35
- package/packages/business-components/currency-page/index.js.gz +0 -0
- package/packages/business-components/currency-page/src/index.vue.d.ts +3 -1
- package/packages/business-components/currency-page/src/type.d.ts +6 -0
- 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 +1 -0
- package/packages/components/image-upload/index.js +767 -114
- package/packages/components/image-upload/index.js.gz +0 -0
- package/packages/components/image-upload/src/Index.vue.d.ts +1 -0
- package/packages/components/image-upload/src/hooks/use-compress-image.d.ts +1 -0
- package/packages/components/image-upload/src/type.d.ts +3 -0
- 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 +1 -0
- package/packages/components/image-viewer/index.js +1086 -434
- package/packages/components/image-viewer/index.js.gz +0 -0
- package/packages/components/image-viewer/src/Index.vue.d.ts +1 -0
- package/packages/components/image-viewer/src/hooks/use-compress-image.d.ts +1 -0
- package/packages/components/image-viewer/src/type.d.ts +3 -0
- 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 +6 -0
- package/packages/components/menu-header/index.js +26 -31
- package/packages/components/menu-header/index.js.gz +0 -0
- package/packages/components/menu-header/src/Index.vue.d.ts +2 -0
- package/packages/components/menu-header/src/type.d.ts +6 -1
- 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 +291 -263
- package/packages/components/tree-table/index.js.gz +0 -0
- package/packages/components/tree-table/src/hooks/use-five.d.ts +4 -0
- package/packages/components/tree-table/src/hooks/use-four.d.ts +4 -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/business-components/ai-panel/index-BbtDXlR3.js.gz +0 -0
- package/packages/business-components/ai-panel/index-DcsbACoj.js.gz +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
.das-currency-page[data-v-
|
|
1
|
+
.das-currency-page[data-v-627c0480]{height:100%;display:flex;justify-content:center;align-items:center}.das-currency-page .content-box[data-v-627c0480]{display:flex;flex-direction:column;justify-content:center;align-items:center}.das-currency-page .content-box .picture[data-v-627c0480]{width:280px;height:160px}.das-currency-page .content-box .status[data-v-627c0480]{padding-top:8px;font-size:30px;color:#212121;font-weight:400}.das-currency-page .content-box .describe[data-v-627c0480]{font-size:16px;color:#212121;padding:8px 0}
|
|
@@ -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;
|
|
18
19
|
readonly "onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
19
20
|
readonly onAddRow?: (() => any) | undefined;
|
|
20
21
|
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: "sortEnd", oldData: any[], newData: any[], oldIndex: number, newIndex: number) => void) & ((event: "update:selection-rows", selectionRows: any[]) => void) & ((event: "addRow") => void) & ((event: "removeRow") => 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;
|
|
38
39
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
39
40
|
onAddRow?: (() => any) | undefined;
|
|
40
41
|
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;
|
|
61
62
|
"update:selection-rows": (selectionRows: any[]) => any;
|
|
62
63
|
addRow: () => any;
|
|
63
64
|
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;
|
|
106
107
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
107
108
|
onAddRow?: (() => any) | undefined;
|
|
108
109
|
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;
|
|
199
200
|
readonly "onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
200
201
|
readonly onAddRow?: (() => any) | undefined;
|
|
201
202
|
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: "sortEnd", oldData: any[], newData: any[], oldIndex: number, newIndex: number) => void) & ((event: "update:selection-rows", selectionRows: any[]) => void) & ((event: "addRow") => void) & ((event: "removeRow") => 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;
|
|
219
220
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
220
221
|
onAddRow?: (() => any) | undefined;
|
|
221
222
|
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;
|
|
242
243
|
"update:selection-rows": (selectionRows: any[]) => any;
|
|
243
244
|
addRow: () => any;
|
|
244
245
|
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;
|
|
287
288
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
288
289
|
onAddRow?: (() => any) | undefined;
|
|
289
290
|
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;
|
|
367
368
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
368
369
|
onAddRow?: (() => any) | undefined;
|
|
369
370
|
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;
|
|
390
391
|
"update:selection-rows": (selectionRows: any[]) => any;
|
|
391
392
|
addRow: () => any;
|
|
392
393
|
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;
|
|
412
413
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
413
414
|
onAddRow?: (() => any) | undefined;
|
|
414
415
|
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;
|
|
449
450
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
450
451
|
onAddRow?: (() => any) | undefined;
|
|
451
452
|
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;
|
|
472
473
|
"update:selection-rows": (selectionRows: any[]) => any;
|
|
473
474
|
addRow: () => any;
|
|
474
475
|
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;
|
|
4128
4129
|
"update:selection-rows": (selectionRows: any[]) => any;
|
|
4129
4130
|
addRow: () => any;
|
|
4130
4131
|
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;
|
|
4133
4134
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
4134
4135
|
onAddRow?: (() => any) | undefined;
|
|
4135
4136
|
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;
|
|
4181
4182
|
"update:selection-rows": (selectionRows: any[]) => any;
|
|
4182
4183
|
addRow: () => any;
|
|
4183
4184
|
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;
|
|
4186
4187
|
"onUpdate:selection-rows"?: ((selectionRows: any[]) => any) | undefined;
|
|
4187
4188
|
onAddRow?: (() => any) | undefined;
|
|
4188
4189
|
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,6 +12,7 @@ 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;
|
|
15
16
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>>;
|
|
16
17
|
export { DasImageUpload };
|
|
17
18
|
export default DasImageUpload;
|