@magic-xpa/utils 4.1000.0-dev4100.33 → 4.1000.0-dev4100.331
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/Base64.mjs +30 -31
- 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 +40 -40
- package/fesm2015/magic-xpa-utils.mjs.map +1 -1
- package/fesm2020/magic-xpa-utils.mjs +40 -40
- package/fesm2020/magic-xpa-utils.mjs.map +1 -1
- package/package.json +4 -4
- package/src/Base64.d.ts +3 -7
- package/src/InternalInterface.d.ts +1 -0
- package/magic-xpa-utils.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-xpa/utils",
|
|
3
|
-
"version": "4.1000.0-dev4100.
|
|
3
|
+
"version": "4.1000.0-dev4100.331",
|
|
4
4
|
"description": "magic utils package",
|
|
5
5
|
"license": "SEE LICENSE IN EULA.pdf",
|
|
6
6
|
"dependencies": {
|
|
@@ -8,20 +8,20 @@
|
|
|
8
8
|
"tslib": "^2.3.0"
|
|
9
9
|
},
|
|
10
10
|
"peerDependencies": {
|
|
11
|
-
"@magic-xpa/mscorelib": "4.1000.0-dev4100.
|
|
11
|
+
"@magic-xpa/mscorelib": "4.1000.0-dev4100.331"
|
|
12
12
|
},
|
|
13
13
|
"module": "fesm2015/magic-xpa-utils.mjs",
|
|
14
14
|
"es2020": "fesm2020/magic-xpa-utils.mjs",
|
|
15
15
|
"esm2020": "esm2020/magic-xpa-utils.mjs",
|
|
16
16
|
"fesm2020": "fesm2020/magic-xpa-utils.mjs",
|
|
17
17
|
"fesm2015": "fesm2015/magic-xpa-utils.mjs",
|
|
18
|
-
"typings": "
|
|
18
|
+
"typings": "index.d.ts",
|
|
19
19
|
"exports": {
|
|
20
20
|
"./package.json": {
|
|
21
21
|
"default": "./package.json"
|
|
22
22
|
},
|
|
23
23
|
".": {
|
|
24
|
-
"types": "./
|
|
24
|
+
"types": "./index.d.ts",
|
|
25
25
|
"esm2020": "./esm2020/magic-xpa-utils.mjs",
|
|
26
26
|
"es2020": "./fesm2020/magic-xpa-utils.mjs",
|
|
27
27
|
"es2015": "./fesm2015/magic-xpa-utils.mjs",
|
package/src/Base64.d.ts
CHANGED
|
@@ -2,18 +2,14 @@ import { Encoding } from "@magic-xpa/mscorelib";
|
|
|
2
2
|
export declare class Base64 {
|
|
3
3
|
private static _base64EncMap;
|
|
4
4
|
private static _base64DecMap;
|
|
5
|
-
static encode(str: string
|
|
5
|
+
static encode(str: string): string;
|
|
6
6
|
static encode(str: string, isUseEnvCharset: boolean, encoding: Encoding): string;
|
|
7
|
-
static encode(data: Uint8Array): Uint8Array;
|
|
8
|
-
private static encode_0;
|
|
9
7
|
private static encode_1;
|
|
10
|
-
private static
|
|
8
|
+
private static encodeBytes;
|
|
11
9
|
static decode(str: string): string;
|
|
12
10
|
static decode(str: string, encoding: Encoding): string;
|
|
13
|
-
static decode(data: Uint8Array): Uint8Array;
|
|
14
|
-
private static decode_0;
|
|
15
11
|
private static decode_1;
|
|
16
|
-
private static
|
|
12
|
+
private static decodeBytes;
|
|
17
13
|
static decodeToHex(str: string): string;
|
|
18
14
|
static decodeToByte(str: string): Uint8Array;
|
|
19
15
|
private static initializeEncMap;
|
|
@@ -299,6 +299,7 @@ export declare class InternalInterface {
|
|
|
299
299
|
static readonly MG_ACT_CONTEXT_TERMINATION: number;
|
|
300
300
|
static readonly MG_ACT_CONTEXT_TIMEOUT_RESET: number;
|
|
301
301
|
static readonly MG_ACT_CONTEXT_REMOVE: number;
|
|
302
|
+
static readonly MG_ACT_DUMP_ENVIRONMENT: number;
|
|
302
303
|
static readonly MG_ACT_TOT_CNT: number;
|
|
303
304
|
static readonly MG_ACT_TASK_PREFIX: number;
|
|
304
305
|
static readonly MG_ACT_TASK_SUFFIX: number;
|
package/magic-xpa-utils.d.ts
DELETED