@das-fed/ui 7.0.2-beta.2 → 7.0.2-beta.4
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/edit-table/index.d.ts +15 -15
- package/packages/components/edit-table/src/index.vue.d.ts +4 -4
- package/packages/components/radio-tabs/index.js +1 -1
- package/packages/components/radio-tabs/index.js.gz +0 -0
- package/packages/components/radio-tabs/style.css +1 -1
- package/packages/components/radio-tabs/style.css.gz +0 -0
- package/packages/components/select-list/index.d.ts +13 -13
- package/packages/components/select-list/index.js +377 -390
- package/packages/components/select-list/index.js.gz +0 -0
- package/packages/components/select-list/src/Index.vue.d.ts +11 -12
- package/packages/components/select-list/src/hooks/use-select-list.d.ts +0 -1
- package/packages/components/select-list/src/type.d.ts +1 -1
- package/packages/components/select-list/style.css +1 -1
- package/packages/components/select-list/style.css.gz +0 -0
- package/packages/components/tree/index.js +86 -90
- package/packages/components/tree/index.js.gz +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@das-fed/ui",
|
|
3
|
-
"version": "7.0.2-beta.
|
|
3
|
+
"version": "7.0.2-beta.4",
|
|
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": "7.0.2-beta.
|
|
29
|
+
"@das-fed/cli": "7.0.2-beta.4",
|
|
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": "7.0.2-beta.
|
|
60
|
-
"@das-fed/utils": "7.0.2-beta.
|
|
61
|
-
"@das-fed/web": "7.0.2-beta.
|
|
59
|
+
"@das-fed/ui": "7.0.2-beta.4",
|
|
60
|
+
"@das-fed/utils": "7.0.2-beta.4",
|
|
61
|
+
"@das-fed/web": "7.0.2-beta.4",
|
|
62
62
|
"@types/markdown-it": "^14.1.2",
|
|
63
63
|
"@wangeditor-next/editor": "5.6.31",
|
|
64
64
|
"@wangeditor-next/editor-for-vue": "5.1.14",
|
|
@@ -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: {
|
|
@@ -163,7 +163,7 @@ const H = {
|
|
|
163
163
|
for (const [n, p] of c)
|
|
164
164
|
m[n] = p;
|
|
165
165
|
return m;
|
|
166
|
-
}, X = /* @__PURE__ */ W(V, [["__scopeId", "data-v-
|
|
166
|
+
}, X = /* @__PURE__ */ W(V, [["__scopeId", "data-v-5aa7c656"]]), le = A(X), oe = () => s(null);
|
|
167
167
|
export {
|
|
168
168
|
le as DasRadioTabs,
|
|
169
169
|
oe as DasRadioTabsRef,
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";.das-ui-radio-tabs[data-v-
|
|
1
|
+
@charset "UTF-8";.das-ui-radio-tabs[data-v-5aa7c656]{position:relative}.das-ui-radio-tabs .dimension-box[data-v-5aa7c656]{display:flex;box-sizing:content-box;height:24px}.das-ui-radio-tabs .icon-left[data-v-5aa7c656]{left:-13px;height:24px;display:block;position:absolute;cursor:pointer;display:-moz-box;display:-webkit-box;-moz-box-align:center;-webkit-box-align:center;-moz-box-pack:center;-webkit-box-pack:center}.das-ui-radio-tabs .icon-right[data-v-5aa7c656]{right:-13px;height:24px;display:block;position:absolute;cursor:pointer;display:-moz-box;display:-webkit-box;-moz-box-align:center;-webkit-box-align:center;-moz-box-pack:center;-webkit-box-pack:center}.das-ui-radio-tabs .time-type-item-box[data-v-5aa7c656]{width:100%;display:flex}.das-ui-radio-tabs .time-type-item-box .time-type-item[data-v-5aa7c656]{flex:1;width:25%;font-size:12px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;cursor:pointer;color:#666;border:1px solid #d9d9d9;border-left:none;text-align:center;padding:0 5px;box-sizing:border-box;display:flex;flex-direction:column;justify-content:center}.das-ui-radio-tabs .time-type-item-box .time-type-item[data-v-5aa7c656]:hover:not(.tab_active){color:#5582f3}.das-ui-radio-tabs .time-type-item-box .time-type-item[data-v-5aa7c656]:last-child{border-radius:0 2px 2px 0}.das-ui-radio-tabs .time-type-item-box .time-type-item[data-v-5aa7c656]:first-child{border-radius:2px 0 0 2px;border-left:1px solid #d9d9d9}.das-ui-radio-tabs .time-type-item-box .time-type-item:first-child.tab_active[data-v-5aa7c656]{border-color:#5582f3}.das-ui-radio-tabs .time-type-item-box .tab_active[data-v-5aa7c656]{background-color:#5582f3;border-color:#5582f3;color:#fff}
|
|
Binary file
|
|
@@ -3,22 +3,22 @@ import '@das-fed/ui/packages/global/style';
|
|
|
3
3
|
declare const DasSelectList: import("@das-fed/utils").SFCWithInstall<{
|
|
4
4
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
5
5
|
"onUpdate:modelValue"?: ((value: import("./src/type.js").ItemProps[]) => any) | undefined;
|
|
6
|
+
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
7
|
+
"onItem-remove"?: ((value: import("./src/type.js").ItemProps) => any) | undefined;
|
|
6
8
|
"onUpdate:selectdValue"?: ((value: string | number) => any) | undefined;
|
|
7
9
|
"onSelect-item"?: ((value: import("./src/type.js").ItemProps) => any) | undefined;
|
|
8
|
-
"onItem-remove"?: ((value: import("./src/type.js").ItemProps) => any) | undefined;
|
|
9
10
|
"onRemove-all"?: ((value: import("./src/type.js").ItemProps[]) => any) | undefined;
|
|
10
11
|
"onUpdate:infiniteDisabled"?: ((value: boolean) => any) | undefined;
|
|
11
|
-
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
12
12
|
}>, {
|
|
13
13
|
infiniteLoad: () => void;
|
|
14
14
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
15
15
|
"update:modelValue": (value: import("./src/type.js").ItemProps[]) => any;
|
|
16
|
+
sortEnd: (oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any;
|
|
17
|
+
"item-remove": (value: import("./src/type.js").ItemProps) => any;
|
|
16
18
|
"update:selectdValue": (value: string | number) => any;
|
|
17
19
|
"select-item": (value: import("./src/type.js").ItemProps) => any;
|
|
18
|
-
"item-remove": (value: import("./src/type.js").ItemProps) => any;
|
|
19
20
|
"remove-all": (value: import("./src/type.js").ItemProps[]) => any;
|
|
20
21
|
"update:infiniteDisabled": (value: boolean) => any;
|
|
21
|
-
sortEnd: (oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any;
|
|
22
22
|
}, import("vue").PublicProps, {
|
|
23
23
|
props: any;
|
|
24
24
|
height: string;
|
|
@@ -29,7 +29,7 @@ declare const DasSelectList: import("@das-fed/utils").SFCWithInstall<{
|
|
|
29
29
|
selectdValue: string | number;
|
|
30
30
|
valueKey: string;
|
|
31
31
|
labelKey: string;
|
|
32
|
-
closeable: boolean
|
|
32
|
+
closeable: boolean;
|
|
33
33
|
customTitle: string;
|
|
34
34
|
itemHeight: number;
|
|
35
35
|
infiniteDisabled: boolean;
|
|
@@ -42,12 +42,12 @@ declare const DasSelectList: import("@das-fed/utils").SFCWithInstall<{
|
|
|
42
42
|
Defaults: {};
|
|
43
43
|
}, Readonly<import("./src/type.js").Props> & Readonly<{
|
|
44
44
|
"onUpdate:modelValue"?: ((value: import("./src/type.js").ItemProps[]) => any) | undefined;
|
|
45
|
+
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
46
|
+
"onItem-remove"?: ((value: import("./src/type.js").ItemProps) => any) | undefined;
|
|
45
47
|
"onUpdate:selectdValue"?: ((value: string | number) => any) | undefined;
|
|
46
48
|
"onSelect-item"?: ((value: import("./src/type.js").ItemProps) => any) | undefined;
|
|
47
|
-
"onItem-remove"?: ((value: import("./src/type.js").ItemProps) => any) | undefined;
|
|
48
49
|
"onRemove-all"?: ((value: import("./src/type.js").ItemProps[]) => any) | undefined;
|
|
49
50
|
"onUpdate:infiniteDisabled"?: ((value: boolean) => any) | undefined;
|
|
50
|
-
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
51
51
|
}>, {
|
|
52
52
|
infiniteLoad: () => void;
|
|
53
53
|
}, {}, {}, {}, {
|
|
@@ -60,7 +60,7 @@ declare const DasSelectList: import("@das-fed/utils").SFCWithInstall<{
|
|
|
60
60
|
selectdValue: string | number;
|
|
61
61
|
valueKey: string;
|
|
62
62
|
labelKey: string;
|
|
63
|
-
closeable: boolean
|
|
63
|
+
closeable: boolean;
|
|
64
64
|
customTitle: string;
|
|
65
65
|
itemHeight: number;
|
|
66
66
|
infiniteDisabled: boolean;
|
|
@@ -70,22 +70,22 @@ declare const DasSelectList: import("@das-fed/utils").SFCWithInstall<{
|
|
|
70
70
|
__isSuspense?: never;
|
|
71
71
|
} & import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
72
72
|
"onUpdate:modelValue"?: ((value: import("./src/type.js").ItemProps[]) => any) | undefined;
|
|
73
|
+
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
74
|
+
"onItem-remove"?: ((value: import("./src/type.js").ItemProps) => any) | undefined;
|
|
73
75
|
"onUpdate:selectdValue"?: ((value: string | number) => any) | undefined;
|
|
74
76
|
"onSelect-item"?: ((value: import("./src/type.js").ItemProps) => any) | undefined;
|
|
75
|
-
"onItem-remove"?: ((value: import("./src/type.js").ItemProps) => any) | undefined;
|
|
76
77
|
"onRemove-all"?: ((value: import("./src/type.js").ItemProps[]) => any) | undefined;
|
|
77
78
|
"onUpdate:infiniteDisabled"?: ((value: boolean) => any) | undefined;
|
|
78
|
-
onSortEnd?: ((oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any) | undefined;
|
|
79
79
|
}>, {
|
|
80
80
|
infiniteLoad: () => void;
|
|
81
81
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
82
82
|
"update:modelValue": (value: import("./src/type.js").ItemProps[]) => any;
|
|
83
|
+
sortEnd: (oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any;
|
|
84
|
+
"item-remove": (value: import("./src/type.js").ItemProps) => any;
|
|
83
85
|
"update:selectdValue": (value: string | number) => any;
|
|
84
86
|
"select-item": (value: import("./src/type.js").ItemProps) => any;
|
|
85
|
-
"item-remove": (value: import("./src/type.js").ItemProps) => any;
|
|
86
87
|
"remove-all": (value: import("./src/type.js").ItemProps[]) => any;
|
|
87
88
|
"update:infiniteDisabled": (value: boolean) => any;
|
|
88
|
-
sortEnd: (oldData: any[], newData: any[], oldIndex: number, newIndex: number) => any;
|
|
89
89
|
}, string, {
|
|
90
90
|
props: any;
|
|
91
91
|
height: string;
|
|
@@ -96,7 +96,7 @@ declare const DasSelectList: import("@das-fed/utils").SFCWithInstall<{
|
|
|
96
96
|
selectdValue: string | number;
|
|
97
97
|
valueKey: string;
|
|
98
98
|
labelKey: string;
|
|
99
|
-
closeable: boolean
|
|
99
|
+
closeable: boolean;
|
|
100
100
|
customTitle: string;
|
|
101
101
|
itemHeight: number;
|
|
102
102
|
infiniteDisabled: boolean;
|