@oinone/kunlun-vue-admin-base 6.4.8 → 6.4.10
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 +19 -6
- package/dist/oinone-kunlun-vue-admin-base.scss +1 -1
- package/dist/types/src/field/eip/index.d.ts +1 -0
- package/package.json +8 -8
- package/src/field/eip/index.ts +2 -0
- package/src/field/eip/style/eip-global.scss +17 -0
- package/src/field/form/string/expression/condition/conditionBaseControlWidget.ts +7 -3
- package/src/main.ts +5 -0
- package/src/view/application-screen/import-and-export-element/AppTreeMenuTableWidget.ts +6 -1
- package/src/view/popup/PopupWidget.ts +2 -2
|
@@ -1287,7 +1287,7 @@ class PopupWidget extends ActiveRecordsWidget {
|
|
|
1287
1287
|
if (this.submitCallChaining) {
|
|
1288
1288
|
result = ((_a = (yield this.submitCallChaining.syncCall())) === null || _a === void 0 ? void 0 : _a.records) || [];
|
|
1289
1289
|
}
|
|
1290
|
-
let finalShowRecords = this.activeRecords || [];
|
|
1290
|
+
let finalShowRecords = deepClone(this.activeRecords) || [];
|
|
1291
1291
|
const viewAction = this.action;
|
|
1292
1292
|
if (viewAction) {
|
|
1293
1293
|
const { model, resModel } = viewAction;
|
|
@@ -1302,7 +1302,7 @@ class PopupWidget extends ActiveRecordsWidget {
|
|
|
1302
1302
|
break;
|
|
1303
1303
|
}
|
|
1304
1304
|
case PopupSubmitType.all: {
|
|
1305
|
-
const result = this.dataSource || [];
|
|
1305
|
+
const result = deepClone(this.dataSource) || [];
|
|
1306
1306
|
finalParameters = {
|
|
1307
1307
|
showRecords: result,
|
|
1308
1308
|
submitRecords: result
|
|
@@ -52104,9 +52104,14 @@ class ConditionBaseControlWidget extends ExpressionAbstractWidget {
|
|
|
52104
52104
|
this.setExpressionItemList(!(valueList === null || valueList === void 0 ? void 0 : valueList.length) ? [createDefaultExpressionItem(this.type)] : valueList);
|
|
52105
52105
|
this.sourceCode = this.value;
|
|
52106
52106
|
const list = valueList || [];
|
|
52107
|
-
if (
|
|
52108
|
-
|
|
52109
|
-
|
|
52107
|
+
if (this.sourceCode) {
|
|
52108
|
+
if (list.length) {
|
|
52109
|
+
const valueList = list[0].valueList || [];
|
|
52110
|
+
if (!valueList.some((v) => v.value)) {
|
|
52111
|
+
this.hasChangeSourceCode = true;
|
|
52112
|
+
}
|
|
52113
|
+
}
|
|
52114
|
+
else {
|
|
52110
52115
|
this.hasChangeSourceCode = true;
|
|
52111
52116
|
}
|
|
52112
52117
|
}
|
|
@@ -96689,7 +96694,12 @@ AppGraphTableWidget = __decorate([
|
|
|
96689
96694
|
SPI.ClassFactory(BaseElementWidget.Token({
|
|
96690
96695
|
viewType: ViewType.Table,
|
|
96691
96696
|
widget: ['table', 'Table'],
|
|
96692
|
-
model: [
|
|
96697
|
+
model: [
|
|
96698
|
+
'dmeta.DataDesignerItemMetaExport',
|
|
96699
|
+
'dmeta.EipDesignerConnectorAppMetaExport',
|
|
96700
|
+
'dmeta.EipDesignerConnectorDBMetaExport',
|
|
96701
|
+
'dmeta.EipDesignerConnectorFileMetaExport'
|
|
96702
|
+
]
|
|
96693
96703
|
}))
|
|
96694
96704
|
], AppGraphTableWidget);
|
|
96695
96705
|
|
|
@@ -109232,6 +109242,9 @@ let VueFrameworkInitializeService = class VueFrameworkInitializeService {
|
|
|
109232
109242
|
after(props) {
|
|
109233
109243
|
maskInstall();
|
|
109234
109244
|
install$1();
|
|
109245
|
+
CurrentLanguage.getIsoCode().then((isoCode) => {
|
|
109246
|
+
moment.locale(isoCode);
|
|
109247
|
+
});
|
|
109235
109248
|
const app = RuntimeContextManager.createOrReplace().frameworkInstance;
|
|
109236
109249
|
app.mount('#app');
|
|
109237
109250
|
}
|