@oinone/kunlun-vue-admin-base 6.3.2 → 6.3.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/oinone-kunlun-vue-admin-base.css +1 -1
- package/dist/oinone-kunlun-vue-admin-base.esm.js +1 -1
- package/dist/oinone-kunlun-vue-admin-base.scss +1 -1
- package/dist/types/src/field/transfer/FormTransferFieldWidget.d.ts +1 -1
- package/package.json +8 -8
- package/src/field/transfer/FormTransferFieldWidget.ts +2 -2
|
@@ -24,7 +24,7 @@ export declare class FormTransferFieldWidget extends FormM2MFieldSelectWidget {
|
|
|
24
24
|
submit(submitValue: SubmitValue): Promise<Record<string, unknown> | undefined>;
|
|
25
25
|
protected queryPage<T = Record<string, unknown>>(option: IQueryPageOption, variables?: ObjectValue, context?: ObjectValue): Promise<QueryPageResult<T>>;
|
|
26
26
|
protected generatorFullOptions(content: any): ActiveRecord[];
|
|
27
|
-
protected originOptions:
|
|
27
|
+
protected originOptions: ActiveRecord[];
|
|
28
28
|
protected insertOptions(options: any, back?: boolean): void;
|
|
29
29
|
protected backfillSelectedValues(): void;
|
|
30
30
|
protected get leftColumns(): any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oinone/kunlun-vue-admin-base",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.3",
|
|
4
4
|
"main": "index.ts",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"prebuild": "rimraf dist",
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
"doc": "typedoc --out docs src/index.ts"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@oinone/kunlun-vue-admin-layout": "6.3.
|
|
18
|
-
"@oinone/kunlun-vue-router": "6.3.
|
|
19
|
-
"@oinone/kunlun-vue-ui": "6.3.
|
|
20
|
-
"@oinone/kunlun-vue-ui-antd": "6.3.
|
|
21
|
-
"@oinone/kunlun-vue-ui-common": "6.3.
|
|
22
|
-
"@oinone/kunlun-vue-ui-el": "6.3.
|
|
23
|
-
"@oinone/kunlun-vue-widget": "6.3.
|
|
17
|
+
"@oinone/kunlun-vue-admin-layout": "6.3.3",
|
|
18
|
+
"@oinone/kunlun-vue-router": "6.3.3",
|
|
19
|
+
"@oinone/kunlun-vue-ui": "6.3.3",
|
|
20
|
+
"@oinone/kunlun-vue-ui-antd": "6.3.3",
|
|
21
|
+
"@oinone/kunlun-vue-ui-common": "6.3.3",
|
|
22
|
+
"@oinone/kunlun-vue-ui-el": "6.3.3",
|
|
23
|
+
"@oinone/kunlun-vue-widget": "6.3.3",
|
|
24
24
|
"@wangeditor/editor": "5.1.23",
|
|
25
25
|
"@wangeditor/editor-for-vue": "5.1.11",
|
|
26
26
|
"@wangeditor/plugin-upload-attachment": "1.1.0",
|
|
@@ -218,7 +218,7 @@ export class FormTransferFieldWidget extends FormM2MFieldSelectWidget {
|
|
|
218
218
|
return options;
|
|
219
219
|
}
|
|
220
220
|
|
|
221
|
-
protected originOptions = [];
|
|
221
|
+
protected originOptions: ActiveRecord[] = [];
|
|
222
222
|
|
|
223
223
|
protected insertOptions(options, back = false) {
|
|
224
224
|
if (!options?.length) {
|
|
@@ -233,7 +233,7 @@ export class FormTransferFieldWidget extends FormM2MFieldSelectWidget {
|
|
|
233
233
|
});
|
|
234
234
|
this.options = this.generatorFullOptions(finalOptions);
|
|
235
235
|
if (!back) {
|
|
236
|
-
this.originOptions = options;
|
|
236
|
+
this.originOptions = this.generatorFullOptions(options);
|
|
237
237
|
}
|
|
238
238
|
}
|
|
239
239
|
|