@magic-xpa/gui 4.1000.0-dev4100.7 → 4.1000.0-dev4100.71
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/management/data/RecordUtils.mjs +4 -4
- package/esm2020/src/management/exp/ExpressionInterface.mjs +2 -1
- package/fesm2015/magic-xpa-gui.mjs +4 -3
- package/fesm2015/magic-xpa-gui.mjs.map +1 -1
- package/fesm2020/magic-xpa-gui.mjs +4 -3
- package/fesm2020/magic-xpa-gui.mjs.map +1 -1
- package/package.json +2 -2
- package/src/management/exp/ExpressionInterface.d.ts +1 -0
|
@@ -7081,7 +7081,7 @@ class RecordUtils {
|
|
|
7081
7081
|
case StorageAttribute.TIME:
|
|
7082
7082
|
itemVal = !toBase64
|
|
7083
7083
|
? itemVal.substr(0, significantNumSize)
|
|
7084
|
-
: Base64.encode(this.byteStreamToString(itemVal.substr(0, significantNumSize))
|
|
7084
|
+
: Base64.encode(this.byteStreamToString(itemVal.substr(0, significantNumSize)));
|
|
7085
7085
|
break;
|
|
7086
7086
|
case StorageAttribute.ALPHA:
|
|
7087
7087
|
case StorageAttribute.UNICODE:
|
|
@@ -7164,7 +7164,7 @@ class RecordUtils {
|
|
|
7164
7164
|
itemVal = itemVal.substr(pos, (fldValLen) - (pos));
|
|
7165
7165
|
itemVal = !toBase64
|
|
7166
7166
|
? StrUtil.stringToHexaDump(itemVal, 4)
|
|
7167
|
-
: Base64.encode(itemVal
|
|
7167
|
+
: Base64.encode(itemVal);
|
|
7168
7168
|
pos = fldValLen;
|
|
7169
7169
|
}
|
|
7170
7170
|
else {
|
|
@@ -7173,7 +7173,7 @@ class RecordUtils {
|
|
|
7173
7173
|
if (!toBase64)
|
|
7174
7174
|
tmpBuf.Append(StrUtil.stringToHexaDump(itemVal.substr(pos, 0x7FFF), 4));
|
|
7175
7175
|
else
|
|
7176
|
-
tmpBuf.Append(Base64.encode(itemVal.substr(pos, 0x7FFF)
|
|
7176
|
+
tmpBuf.Append(Base64.encode(itemVal.substr(pos, 0x7FFF)));
|
|
7177
7177
|
tmpBuf.Append("0000");
|
|
7178
7178
|
pos += 0x7FFF;
|
|
7179
7179
|
}
|
|
@@ -15041,6 +15041,7 @@ ExpressionInterface.EXP_OP_CLIENT_DB_DISCONNECT = 636;
|
|
|
15041
15041
|
ExpressionInterface.EXP_OP_DATAVIEW_TO_DATASOURCE = 637;
|
|
15042
15042
|
ExpressionInterface.EXP_OP_CLIENT_DB_DEL = 638;
|
|
15043
15043
|
ExpressionInterface.EXP_OP_VARDISPLAYNAME = 647;
|
|
15044
|
+
ExpressionInterface.EXP_OP_CONTROL_ITEMS_REFRESH = 649;
|
|
15044
15045
|
ExpressionInterface.EXP_OP_VARCONTROLID = 650;
|
|
15045
15046
|
ExpressionInterface.EXP_OP_CONTROLITEMSLIST = 651;
|
|
15046
15047
|
ExpressionInterface.EXP_OP_CONTROLDISPLAYLIST = 652;
|