@keymanapp/kmc-kmn 17.0.256-alpha → 17.0.258-alpha
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/build/src/compiler/compiler.d.ts +93 -95
- package/build/src/compiler/compiler.d.ts.map +1 -1
- package/build/src/compiler/kmn-compiler-messages.d.ts +234 -236
- package/build/src/compiler/kmn-compiler-messages.d.ts.map +1 -1
- package/build/src/compiler/kmn-compiler-messages.js +24 -2
- package/build/src/compiler/kmn-compiler-messages.js.map +1 -1
- package/build/src/import/kmcmplib/wasm-host.d.ts +3 -5
- package/build/src/import/kmcmplib/wasm-host.d.ts.map +1 -1
- package/build/src/import/kmcmplib/wasm-host.wasm +0 -0
- package/build/src/kmw-compiler/compiler-globals.d.ts +20 -22
- package/build/src/kmw-compiler/compiler-globals.d.ts.map +1 -1
- package/build/src/kmw-compiler/constants.d.ts +17 -19
- package/build/src/kmw-compiler/constants.d.ts.map +1 -1
- package/build/src/kmw-compiler/javascript-strings.d.ts +33 -35
- package/build/src/kmw-compiler/javascript-strings.d.ts.map +1 -1
- package/build/src/kmw-compiler/keymanweb-key-codes.d.ts +23 -25
- package/build/src/kmw-compiler/keymanweb-key-codes.d.ts.map +1 -1
- package/build/src/kmw-compiler/keymanweb-key-codes.js +17 -2
- package/build/src/kmw-compiler/keymanweb-key-codes.js.map +1 -1
- package/build/src/kmw-compiler/kmw-compiler-messages.d.ts +105 -107
- package/build/src/kmw-compiler/kmw-compiler-messages.d.ts.map +1 -1
- package/build/src/kmw-compiler/kmw-compiler.d.ts +14 -16
- package/build/src/kmw-compiler/kmw-compiler.d.ts.map +1 -1
- package/build/src/kmw-compiler/util.d.ts +75 -77
- package/build/src/kmw-compiler/util.d.ts.map +1 -1
- package/build/src/kmw-compiler/validate-layout-file.d.ts +8 -10
- package/build/src/kmw-compiler/validate-layout-file.d.ts.map +1 -1
- package/build/src/kmw-compiler/visual-keyboard-compiler.d.ts +3 -5
- package/build/src/kmw-compiler/visual-keyboard-compiler.d.ts.map +1 -1
- package/build/src/main.d.ts +4 -6
- package/build/src/main.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -1,77 +1,75 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
export declare function
|
|
72
|
-
export declare function
|
|
73
|
-
export declare function
|
|
74
|
-
export declare function
|
|
75
|
-
|
|
76
|
-
//# debugId=d86a1174-8390-5fd3-84c7-da5b7e3909e9
|
|
77
|
-
//# sourceMappingURL=util.d.ts.map
|
|
1
|
+
import { KMX } from "@keymanapp/common-types";
|
|
2
|
+
/**
|
|
3
|
+
* Verifies that value is an item in the enumeration.
|
|
4
|
+
*/
|
|
5
|
+
export declare function isValidEnumValue<T extends {
|
|
6
|
+
[key: number]: string | number;
|
|
7
|
+
}>(enu: T, value: string): boolean;
|
|
8
|
+
export interface TSentinelRecord {
|
|
9
|
+
IsSentinel: boolean;
|
|
10
|
+
Code?: number;
|
|
11
|
+
Any?: {
|
|
12
|
+
StoreIndex: number;
|
|
13
|
+
Store: KMX.STORE;
|
|
14
|
+
};
|
|
15
|
+
Index?: {
|
|
16
|
+
StoreIndex: number;
|
|
17
|
+
Store: KMX.STORE;
|
|
18
|
+
Index: number;
|
|
19
|
+
};
|
|
20
|
+
DeadKey?: {
|
|
21
|
+
DeadKey: number;
|
|
22
|
+
};
|
|
23
|
+
Use?: {
|
|
24
|
+
GroupIndex: number;
|
|
25
|
+
Group: KMX.GROUP;
|
|
26
|
+
};
|
|
27
|
+
Call?: {
|
|
28
|
+
StoreIndex: number;
|
|
29
|
+
Store: KMX.STORE;
|
|
30
|
+
};
|
|
31
|
+
ContextEx?: {
|
|
32
|
+
Index: number;
|
|
33
|
+
};
|
|
34
|
+
IfOpt?: {
|
|
35
|
+
StoreIndex1: number;
|
|
36
|
+
Store1: KMX.STORE;
|
|
37
|
+
StoreIndex2: number;
|
|
38
|
+
Store2: KMX.STORE;
|
|
39
|
+
IsNot: number;
|
|
40
|
+
};
|
|
41
|
+
IfSystemStore?: {
|
|
42
|
+
dwSystemID: number;
|
|
43
|
+
SystemStore: KMX.STORE;
|
|
44
|
+
StoreIndex: number;
|
|
45
|
+
Store: KMX.STORE;
|
|
46
|
+
IsNot: number;
|
|
47
|
+
};
|
|
48
|
+
SetOpt?: {
|
|
49
|
+
StoreIndex1: number;
|
|
50
|
+
Store1: KMX.STORE;
|
|
51
|
+
StoreIndex2: number;
|
|
52
|
+
Store2: KMX.STORE;
|
|
53
|
+
};
|
|
54
|
+
SetSystemStore?: {
|
|
55
|
+
dwSystemID: number;
|
|
56
|
+
SystemStore: KMX.STORE;
|
|
57
|
+
StoreIndex: number;
|
|
58
|
+
Store: KMX.STORE;
|
|
59
|
+
};
|
|
60
|
+
ResetOpt?: {
|
|
61
|
+
StoreIndex: number;
|
|
62
|
+
Store: KMX.STORE;
|
|
63
|
+
};
|
|
64
|
+
SaveOpt?: {
|
|
65
|
+
StoreIndex: number;
|
|
66
|
+
Store: KMX.STORE;
|
|
67
|
+
};
|
|
68
|
+
ChrVal?: number;
|
|
69
|
+
}
|
|
70
|
+
export declare function ExpandSentinel(fk: KMX.KEYBOARD, pwsz: string, x: number): TSentinelRecord;
|
|
71
|
+
export declare function GetSuppChar(p: string, x: number): number;
|
|
72
|
+
export declare function incxstr(p: string, x: number): number;
|
|
73
|
+
export declare function xstrlen(p: string): number;
|
|
74
|
+
export declare function xstrlen_printing(p: string): number;
|
|
75
|
+
//# sourceMappingURL=util.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"
|
|
1
|
+
{"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../../src/kmw-compiler/util.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
export
|
|
8
|
-
|
|
9
|
-
//# debugId=cdba0833-e0df-5a3f-aef3-9a4ee3a41c08
|
|
10
|
-
//# sourceMappingURL=validate-layout-file.d.ts.map
|
|
1
|
+
import { KMX, Osk } from "@keymanapp/common-types";
|
|
2
|
+
interface VLFOutput {
|
|
3
|
+
output: string;
|
|
4
|
+
result: boolean;
|
|
5
|
+
}
|
|
6
|
+
export declare function ValidateLayoutFile(fk: KMX.KEYBOARD, FDebug: boolean, sLayoutFile: string, sVKDictionary: string, displayMap: Osk.PuaMap): VLFOutput;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=validate-layout-file.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"
|
|
1
|
+
{"version":3,"file":"validate-layout-file.d.ts","sourceRoot":"","sources":["../../../src/kmw-compiler/validate-layout-file.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,GAAG,EAA6D,MAAM,yBAAyB,CAAC;AAQ9G,UAAU,SAAS;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,OAAO,CAAC;CACjB;AA+MD,wBAAgB,kBAAkB,CAAC,EAAE,EAAE,GAAG,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,UAAU,EAAE,GAAG,CAAC,MAAM,GAAG,SAAS,CAuGnJ"}
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
//# debugId=62a67657-72d7-5f2e-bc20-00420759e178
|
|
5
|
-
//# sourceMappingURL=visual-keyboard-compiler.d.ts.map
|
|
1
|
+
import { VisualKeyboard } from "@keymanapp/common-types";
|
|
2
|
+
export declare function VisualKeyboardFromFile(visualKeyboard: VisualKeyboard.VisualKeyboard, debug: boolean): string;
|
|
3
|
+
//# sourceMappingURL=visual-keyboard-compiler.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"
|
|
1
|
+
{"version":3,"file":"visual-keyboard-compiler.d.ts","sourceRoot":"","sources":["../../../src/kmw-compiler/visual-keyboard-compiler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAgB,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAKvE,wBAAgB,sBAAsB,CAAC,cAAc,EAAE,cAAc,CAAC,cAAc,EAAE,KAAK,EAAE,OAAO,GAAG,MAAM,CAK5G"}
|
package/build/src/main.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
4
|
-
|
|
5
|
-
//# debugId=d961d71c-fec1-570d-bba1-af5442fa2bde
|
|
6
|
-
//# sourceMappingURL=main.d.ts.map
|
|
1
|
+
export { KmnCompiler } from './compiler/compiler.js';
|
|
2
|
+
export { KmnCompilerMessages, CompilerMessages } from './compiler/kmn-compiler-messages.js';
|
|
3
|
+
export { KmwCompilerMessages } from './kmw-compiler/kmw-compiler-messages.js';
|
|
4
|
+
//# sourceMappingURL=main.d.ts.map
|
package/build/src/main.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../src/main.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,mBAAmB,EAAE,gBAAgB,EAAE,MAAM,qCAAqC,CAAC;AAC5F,OAAO,EAAE,mBAAmB,EAAE,MAAM,yCAAyC,CAAC"}
|
package/package.json
CHANGED
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
"url": "https://github.com/keymanapp/keyman/issues"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@keymanapp/keyman-version": "17.0.
|
|
30
|
-
"@keymanapp/kmc-kmn": "17.0.
|
|
29
|
+
"@keymanapp/keyman-version": "17.0.258-alpha",
|
|
30
|
+
"@keymanapp/kmc-kmn": "17.0.258-alpha"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@keymanapp/developer-test-helpers": "17.0.
|
|
33
|
+
"@keymanapp/developer-test-helpers": "17.0.258-alpha",
|
|
34
34
|
"@types/chai": "^4.1.7",
|
|
35
35
|
"@types/mocha": "^5.2.7",
|
|
36
36
|
"@types/node": "^20.4.1",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"type": "git",
|
|
68
68
|
"url": "git+https://github.com/keymanapp/keyman.git"
|
|
69
69
|
},
|
|
70
|
-
"version": "17.0.
|
|
70
|
+
"version": "17.0.258-alpha"
|
|
71
71
|
}
|