@magic-xpa/utils 4.900.0-dev491.7 → 4.901.0-ang15-dev491.310
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/esm2020/src/InternalInterface.mjs +3 -3
- package/esm2020/src/Logger.mjs +5 -5
- package/esm2020/src/UtilImeJpn.mjs +4 -4
- package/fesm2015/magic-xpa-utils.mjs +9 -9
- package/fesm2015/magic-xpa-utils.mjs.map +1 -1
- package/fesm2020/magic-xpa-utils.mjs +9 -9
- package/fesm2020/magic-xpa-utils.mjs.map +1 -1
- package/package.json +4 -4
- package/magic-xpa-utils.d.ts +0 -2
|
@@ -3875,11 +3875,11 @@ var NotifyCollectionChangedAction;
|
|
|
3875
3875
|
})(NotifyCollectionChangedAction || (NotifyCollectionChangedAction = {}));
|
|
3876
3876
|
|
|
3877
3877
|
class InternalInterface {
|
|
3878
|
-
constructor() {
|
|
3879
|
-
}
|
|
3880
3878
|
static BuiltinEvent(eventCode) {
|
|
3881
3879
|
return eventCode >= 1000 || eventCode === InternalInterface.MG_ACT_POST_REFRESH_BY_PARENT;
|
|
3882
3880
|
}
|
|
3881
|
+
constructor() {
|
|
3882
|
+
}
|
|
3883
3883
|
}
|
|
3884
3884
|
InternalInterface.MG_ACT_NONE = 0;
|
|
3885
3885
|
InternalInterface.MG_ACT_CHAR = 1;
|
|
@@ -4262,10 +4262,6 @@ var LogType;
|
|
|
4262
4262
|
LogType[LogType["error"] = 3] = "error";
|
|
4263
4263
|
})(LogType || (LogType = {}));
|
|
4264
4264
|
class Logger {
|
|
4265
|
-
constructor() {
|
|
4266
|
-
this.LogLevel = 0;
|
|
4267
|
-
this.ShouldBeep = false;
|
|
4268
|
-
}
|
|
4269
4265
|
static set Instance(value) {
|
|
4270
4266
|
Logger.instance = value;
|
|
4271
4267
|
}
|
|
@@ -4461,6 +4457,10 @@ class Logger {
|
|
|
4461
4457
|
}
|
|
4462
4458
|
Flush() {
|
|
4463
4459
|
}
|
|
4460
|
+
constructor() {
|
|
4461
|
+
this.LogLevel = 0;
|
|
4462
|
+
this.ShouldBeep = false;
|
|
4463
|
+
}
|
|
4464
4464
|
}
|
|
4465
4465
|
Logger.instance = null;
|
|
4466
4466
|
|
|
@@ -5067,13 +5067,13 @@ UtilDateJpn.StartDayOfGengo = [
|
|
|
5067
5067
|
];
|
|
5068
5068
|
|
|
5069
5069
|
class UtilImeJpn {
|
|
5070
|
+
isValid(imeMode) {
|
|
5071
|
+
return (0 <= imeMode && imeMode <= 9) || imeMode === 15 || imeMode === 10;
|
|
5072
|
+
}
|
|
5070
5073
|
constructor() {
|
|
5071
5074
|
this.ImeAutoOff = false;
|
|
5072
5075
|
this.StrImeRead = null;
|
|
5073
5076
|
}
|
|
5074
|
-
isValid(imeMode) {
|
|
5075
|
-
return (0 <= imeMode && imeMode <= 9) || imeMode === 15 || imeMode === 10;
|
|
5076
|
-
}
|
|
5077
5077
|
}
|
|
5078
5078
|
UtilImeJpn.IME_ZEN_HIRAGANA_ROMAN = 1;
|
|
5079
5079
|
UtilImeJpn.IME_FORCE_OFF = 15;
|