@magic-xpa/utils 4.1000.0-dev4100.99 → 4.1000.0
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 +5 -4
- package/esm2020/src/Logger.mjs +5 -5
- package/esm2020/src/UtilImeJpn.mjs +4 -4
- package/fesm2015/magic-xpa-utils.mjs +11 -10
- package/fesm2015/magic-xpa-utils.mjs.map +1 -1
- package/fesm2020/magic-xpa-utils.mjs +11 -10
- package/fesm2020/magic-xpa-utils.mjs.map +1 -1
- package/package.json +4 -4
- package/src/InternalInterface.d.ts +1 -0
- 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;
|
|
@@ -4180,7 +4180,8 @@ InternalInterface.MG_ACT_CRELINE_ABOVE = 634;
|
|
|
4180
4180
|
InternalInterface.MG_ACT_CONTEXT_TERMINATION = 635;
|
|
4181
4181
|
InternalInterface.MG_ACT_CONTEXT_TIMEOUT_RESET = 636;
|
|
4182
4182
|
InternalInterface.MG_ACT_CONTEXT_REMOVE = 647;
|
|
4183
|
-
InternalInterface.
|
|
4183
|
+
InternalInterface.MG_ACT_DUMP_ENVIRONMENT = 653;
|
|
4184
|
+
InternalInterface.MG_ACT_TOT_CNT = 654;
|
|
4184
4185
|
InternalInterface.MG_ACT_TASK_PREFIX = 1001;
|
|
4185
4186
|
InternalInterface.MG_ACT_TASK_SUFFIX = 1002;
|
|
4186
4187
|
InternalInterface.MG_ACT_REC_PREFIX = 1003;
|
|
@@ -4261,10 +4262,6 @@ var LogType;
|
|
|
4261
4262
|
LogType[LogType["error"] = 3] = "error";
|
|
4262
4263
|
})(LogType || (LogType = {}));
|
|
4263
4264
|
class Logger {
|
|
4264
|
-
constructor() {
|
|
4265
|
-
this.LogLevel = 0;
|
|
4266
|
-
this.ShouldBeep = false;
|
|
4267
|
-
}
|
|
4268
4265
|
static set Instance(value) {
|
|
4269
4266
|
Logger.instance = value;
|
|
4270
4267
|
}
|
|
@@ -4460,6 +4457,10 @@ class Logger {
|
|
|
4460
4457
|
}
|
|
4461
4458
|
Flush() {
|
|
4462
4459
|
}
|
|
4460
|
+
constructor() {
|
|
4461
|
+
this.LogLevel = 0;
|
|
4462
|
+
this.ShouldBeep = false;
|
|
4463
|
+
}
|
|
4463
4464
|
}
|
|
4464
4465
|
Logger.instance = null;
|
|
4465
4466
|
|
|
@@ -5066,13 +5067,13 @@ UtilDateJpn.StartDayOfGengo = [
|
|
|
5066
5067
|
];
|
|
5067
5068
|
|
|
5068
5069
|
class UtilImeJpn {
|
|
5070
|
+
isValid(imeMode) {
|
|
5071
|
+
return (0 <= imeMode && imeMode <= 9) || imeMode === 15 || imeMode === 10;
|
|
5072
|
+
}
|
|
5069
5073
|
constructor() {
|
|
5070
5074
|
this.ImeAutoOff = false;
|
|
5071
5075
|
this.StrImeRead = null;
|
|
5072
5076
|
}
|
|
5073
|
-
isValid(imeMode) {
|
|
5074
|
-
return (0 <= imeMode && imeMode <= 9) || imeMode === 15 || imeMode === 10;
|
|
5075
|
-
}
|
|
5076
5077
|
}
|
|
5077
5078
|
UtilImeJpn.IME_ZEN_HIRAGANA_ROMAN = 1;
|
|
5078
5079
|
UtilImeJpn.IME_FORCE_OFF = 15;
|