@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.
Files changed (32) hide show
  1. package/build/src/compiler/compiler.d.ts +93 -95
  2. package/build/src/compiler/compiler.d.ts.map +1 -1
  3. package/build/src/compiler/kmn-compiler-messages.d.ts +234 -236
  4. package/build/src/compiler/kmn-compiler-messages.d.ts.map +1 -1
  5. package/build/src/compiler/kmn-compiler-messages.js +24 -2
  6. package/build/src/compiler/kmn-compiler-messages.js.map +1 -1
  7. package/build/src/import/kmcmplib/wasm-host.d.ts +3 -5
  8. package/build/src/import/kmcmplib/wasm-host.d.ts.map +1 -1
  9. package/build/src/import/kmcmplib/wasm-host.wasm +0 -0
  10. package/build/src/kmw-compiler/compiler-globals.d.ts +20 -22
  11. package/build/src/kmw-compiler/compiler-globals.d.ts.map +1 -1
  12. package/build/src/kmw-compiler/constants.d.ts +17 -19
  13. package/build/src/kmw-compiler/constants.d.ts.map +1 -1
  14. package/build/src/kmw-compiler/javascript-strings.d.ts +33 -35
  15. package/build/src/kmw-compiler/javascript-strings.d.ts.map +1 -1
  16. package/build/src/kmw-compiler/keymanweb-key-codes.d.ts +23 -25
  17. package/build/src/kmw-compiler/keymanweb-key-codes.d.ts.map +1 -1
  18. package/build/src/kmw-compiler/keymanweb-key-codes.js +17 -2
  19. package/build/src/kmw-compiler/keymanweb-key-codes.js.map +1 -1
  20. package/build/src/kmw-compiler/kmw-compiler-messages.d.ts +105 -107
  21. package/build/src/kmw-compiler/kmw-compiler-messages.d.ts.map +1 -1
  22. package/build/src/kmw-compiler/kmw-compiler.d.ts +14 -16
  23. package/build/src/kmw-compiler/kmw-compiler.d.ts.map +1 -1
  24. package/build/src/kmw-compiler/util.d.ts +75 -77
  25. package/build/src/kmw-compiler/util.d.ts.map +1 -1
  26. package/build/src/kmw-compiler/validate-layout-file.d.ts +8 -10
  27. package/build/src/kmw-compiler/validate-layout-file.d.ts.map +1 -1
  28. package/build/src/kmw-compiler/visual-keyboard-compiler.d.ts +3 -5
  29. package/build/src/kmw-compiler/visual-keyboard-compiler.d.ts.map +1 -1
  30. package/build/src/main.d.ts +4 -6
  31. package/build/src/main.d.ts.map +1 -1
  32. package/package.json +4 -4
@@ -1,77 +1,75 @@
1
- !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="d86a1174-8390-5fd3-84c7-da5b7e3909e9")}catch(e){}}();
2
- import { KMX } from "@keymanapp/common-types";
3
- /**
4
- * Verifies that value is an item in the enumeration.
5
- */
6
- export declare function isValidEnumValue<T extends {
7
- [key: number]: string | number;
8
- }>(enu: T, value: string): boolean;
9
- export interface TSentinelRecord {
10
- IsSentinel: boolean;
11
- Code?: number;
12
- Any?: {
13
- StoreIndex: number;
14
- Store: KMX.STORE;
15
- };
16
- Index?: {
17
- StoreIndex: number;
18
- Store: KMX.STORE;
19
- Index: number;
20
- };
21
- DeadKey?: {
22
- DeadKey: number;
23
- };
24
- Use?: {
25
- GroupIndex: number;
26
- Group: KMX.GROUP;
27
- };
28
- Call?: {
29
- StoreIndex: number;
30
- Store: KMX.STORE;
31
- };
32
- ContextEx?: {
33
- Index: number;
34
- };
35
- IfOpt?: {
36
- StoreIndex1: number;
37
- Store1: KMX.STORE;
38
- StoreIndex2: number;
39
- Store2: KMX.STORE;
40
- IsNot: number;
41
- };
42
- IfSystemStore?: {
43
- dwSystemID: number;
44
- SystemStore: KMX.STORE;
45
- StoreIndex: number;
46
- Store: KMX.STORE;
47
- IsNot: number;
48
- };
49
- SetOpt?: {
50
- StoreIndex1: number;
51
- Store1: KMX.STORE;
52
- StoreIndex2: number;
53
- Store2: KMX.STORE;
54
- };
55
- SetSystemStore?: {
56
- dwSystemID: number;
57
- SystemStore: KMX.STORE;
58
- StoreIndex: number;
59
- Store: KMX.STORE;
60
- };
61
- ResetOpt?: {
62
- StoreIndex: number;
63
- Store: KMX.STORE;
64
- };
65
- SaveOpt?: {
66
- StoreIndex: number;
67
- Store: KMX.STORE;
68
- };
69
- ChrVal?: number;
70
- }
71
- export declare function ExpandSentinel(fk: KMX.KEYBOARD, pwsz: string, x: number): TSentinelRecord;
72
- export declare function GetSuppChar(p: string, x: number): number;
73
- export declare function incxstr(p: string, x: number): number;
74
- export declare function xstrlen(p: string): number;
75
- export declare function xstrlen_printing(p: string): number;
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
- {"debug_id":"d86a1174-8390-5fd3-84c7-da5b7e3909e9","file":"util.d.ts","mappings":"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","names":[],"sourceRoot":"","sources":["../../../src/kmw-compiler/util.ts"],"version":3}
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
- !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="cdba0833-e0df-5a3f-aef3-9a4ee3a41c08")}catch(e){}}();
2
- import { KMX, Osk } from "@keymanapp/common-types";
3
- interface VLFOutput {
4
- output: string;
5
- result: boolean;
6
- }
7
- export declare function ValidateLayoutFile(fk: KMX.KEYBOARD, FDebug: boolean, sLayoutFile: string, sVKDictionary: string, displayMap: Osk.PuaMap): VLFOutput;
8
- export {};
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
- {"debug_id":"cdba0833-e0df-5a3f-aef3-9a4ee3a41c08","file":"validate-layout-file.d.ts","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","names":[],"sourceRoot":"","sources":["../../../src/kmw-compiler/validate-layout-file.ts"],"version":3}
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
- !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="62a67657-72d7-5f2e-bc20-00420759e178")}catch(e){}}();
2
- import { VisualKeyboard } from "@keymanapp/common-types";
3
- export declare function VisualKeyboardFromFile(visualKeyboard: VisualKeyboard.VisualKeyboard, debug: boolean): string;
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
- {"debug_id":"62a67657-72d7-5f2e-bc20-00420759e178","file":"visual-keyboard-compiler.d.ts","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","names":[],"sourceRoot":"","sources":["../../../src/kmw-compiler/visual-keyboard-compiler.ts"],"version":3}
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"}
@@ -1,6 +1,4 @@
1
- !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="d961d71c-fec1-570d-bba1-af5442fa2bde")}catch(e){}}();
2
- export { KmnCompiler } from './compiler/compiler.js';
3
- export { KmnCompilerMessages, CompilerMessages } from './compiler/kmn-compiler-messages.js';
4
- export { KmwCompilerMessages } from './kmw-compiler/kmw-compiler-messages.js';
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
@@ -1 +1 @@
1
- {"debug_id":"d961d71c-fec1-570d-bba1-af5442fa2bde","file":"main.d.ts","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","names":[],"sourceRoot":"","sources":["../../src/main.ts"],"version":3}
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.256-alpha",
30
- "@keymanapp/kmc-kmn": "17.0.256-alpha"
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.256-alpha",
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.256-alpha"
70
+ "version": "17.0.258-alpha"
71
71
  }