@magic-xpa/utils 4.1000.0-dev4100.109 → 4.1000.0-dev4100.113
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
|
@@ -3874,11 +3874,11 @@ var NotifyCollectionChangedAction;
|
|
|
3874
3874
|
})(NotifyCollectionChangedAction || (NotifyCollectionChangedAction = {}));
|
|
3875
3875
|
|
|
3876
3876
|
class InternalInterface {
|
|
3877
|
-
constructor() {
|
|
3878
|
-
}
|
|
3879
3877
|
static BuiltinEvent(eventCode) {
|
|
3880
3878
|
return eventCode >= 1000 || eventCode === InternalInterface.MG_ACT_POST_REFRESH_BY_PARENT;
|
|
3881
3879
|
}
|
|
3880
|
+
constructor() {
|
|
3881
|
+
}
|
|
3882
3882
|
}
|
|
3883
3883
|
InternalInterface.MG_ACT_NONE = 0;
|
|
3884
3884
|
InternalInterface.MG_ACT_CHAR = 1;
|
|
@@ -4261,10 +4261,6 @@ var LogType;
|
|
|
4261
4261
|
LogType[LogType["error"] = 3] = "error";
|
|
4262
4262
|
})(LogType || (LogType = {}));
|
|
4263
4263
|
class Logger {
|
|
4264
|
-
constructor() {
|
|
4265
|
-
this.LogLevel = 0;
|
|
4266
|
-
this.ShouldBeep = false;
|
|
4267
|
-
}
|
|
4268
4264
|
static set Instance(value) {
|
|
4269
4265
|
Logger.instance = value;
|
|
4270
4266
|
}
|
|
@@ -4460,6 +4456,10 @@ class Logger {
|
|
|
4460
4456
|
}
|
|
4461
4457
|
Flush() {
|
|
4462
4458
|
}
|
|
4459
|
+
constructor() {
|
|
4460
|
+
this.LogLevel = 0;
|
|
4461
|
+
this.ShouldBeep = false;
|
|
4462
|
+
}
|
|
4463
4463
|
}
|
|
4464
4464
|
Logger.instance = null;
|
|
4465
4465
|
|
|
@@ -5066,13 +5066,13 @@ UtilDateJpn.StartDayOfGengo = [
|
|
|
5066
5066
|
];
|
|
5067
5067
|
|
|
5068
5068
|
class UtilImeJpn {
|
|
5069
|
+
isValid(imeMode) {
|
|
5070
|
+
return (0 <= imeMode && imeMode <= 9) || imeMode === 15 || imeMode === 10;
|
|
5071
|
+
}
|
|
5069
5072
|
constructor() {
|
|
5070
5073
|
this.ImeAutoOff = false;
|
|
5071
5074
|
this.StrImeRead = null;
|
|
5072
5075
|
}
|
|
5073
|
-
isValid(imeMode) {
|
|
5074
|
-
return (0 <= imeMode && imeMode <= 9) || imeMode === 15 || imeMode === 10;
|
|
5075
|
-
}
|
|
5076
5076
|
}
|
|
5077
5077
|
UtilImeJpn.IME_ZEN_HIRAGANA_ROMAN = 1;
|
|
5078
5078
|
UtilImeJpn.IME_FORCE_OFF = 15;
|