vona-core 5.1.31 → 5.1.32
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/index.js
CHANGED
|
@@ -873,22 +873,26 @@ class BeanBaseSimple extends BeanSimple {
|
|
|
873
873
|
}
|
|
874
874
|
}
|
|
875
875
|
|
|
876
|
-
|
|
876
|
+
// import type { IModuleLocaleText } from './resource/locale/type.ts';
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
// const SymbolText = Symbol('SymbolText');
|
|
877
880
|
const SymbolLogger = Symbol('SymbolLogger');
|
|
878
881
|
const SymbolLoggerChildren = Symbol('SymbolLoggerChildren');
|
|
879
882
|
class BeanBase extends BeanBaseSimple {
|
|
880
883
|
constructor(...args) {
|
|
881
884
|
super(...args);
|
|
882
|
-
|
|
885
|
+
// private [SymbolText]: IModuleLocaleText;
|
|
883
886
|
this[SymbolLogger] = {};
|
|
884
887
|
this[SymbolLoggerChildren] = {};
|
|
885
888
|
}
|
|
886
|
-
get $text() {
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
}
|
|
889
|
+
// protected get $text(): IModuleLocaleText {
|
|
890
|
+
// if (!this[SymbolText]) {
|
|
891
|
+
// this[SymbolText] = this.app.meta.locale.createLocaleText(this[SymbolModuleBelong]);
|
|
892
|
+
// }
|
|
893
|
+
// return this[SymbolText];
|
|
894
|
+
// }
|
|
895
|
+
|
|
892
896
|
get $logger() {
|
|
893
897
|
return this.$loggerClient('default');
|
|
894
898
|
}
|