@oinone/kunlun-vue-admin-base 6.4.9 → 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 +17 -4
- 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
|
@@ -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
|
}
|