@keymanapp/kmc-ldml 17.0.256-alpha → 17.0.257-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 (41) hide show
  1. package/build/src/compiler/compiler.d.ts +63 -65
  2. package/build/src/compiler/compiler.d.ts.map +1 -1
  3. package/build/src/compiler/compiler.js +8 -8
  4. package/build/src/compiler/compiler.js.map +1 -1
  5. package/build/src/compiler/disp.d.ts +12 -14
  6. package/build/src/compiler/disp.d.ts.map +1 -1
  7. package/build/src/compiler/empty-compiler.d.ts +38 -40
  8. package/build/src/compiler/empty-compiler.d.ts.map +1 -1
  9. package/build/src/compiler/keymanweb-compiler.d.ts +14 -16
  10. package/build/src/compiler/keymanweb-compiler.d.ts.map +1 -1
  11. package/build/src/compiler/keys.d.ts +52 -54
  12. package/build/src/compiler/keys.d.ts.map +1 -1
  13. package/build/src/compiler/layr.d.ts +10 -12
  14. package/build/src/compiler/layr.d.ts.map +1 -1
  15. package/build/src/compiler/ldml-compiler-options.d.ts +8 -10
  16. package/build/src/compiler/ldml-compiler-options.d.ts.map +1 -1
  17. package/build/src/compiler/loca.d.ts +16 -18
  18. package/build/src/compiler/loca.d.ts.map +1 -1
  19. package/build/src/compiler/marker-tracker.d.ts +34 -36
  20. package/build/src/compiler/marker-tracker.d.ts.map +1 -1
  21. package/build/src/compiler/messages.d.ts +150 -152
  22. package/build/src/compiler/messages.d.ts.map +1 -1
  23. package/build/src/compiler/meta.d.ts +12 -14
  24. package/build/src/compiler/meta.d.ts.map +1 -1
  25. package/build/src/compiler/metadata-compiler.d.ts +13 -15
  26. package/build/src/compiler/metadata-compiler.d.ts.map +1 -1
  27. package/build/src/compiler/section-compiler.d.ts +36 -38
  28. package/build/src/compiler/section-compiler.d.ts.map +1 -1
  29. package/build/src/compiler/touch-layout-compiler.d.ts +8 -10
  30. package/build/src/compiler/touch-layout-compiler.d.ts.map +1 -1
  31. package/build/src/compiler/tran.d.ts +37 -39
  32. package/build/src/compiler/tran.d.ts.map +1 -1
  33. package/build/src/compiler/vars.d.ts +22 -24
  34. package/build/src/compiler/vars.d.ts.map +1 -1
  35. package/build/src/compiler/visual-keyboard-compiler.d.ts +9 -11
  36. package/build/src/compiler/visual-keyboard-compiler.d.ts.map +1 -1
  37. package/build/src/main.d.ts +9 -11
  38. package/build/src/main.d.ts.map +1 -1
  39. package/build/src/util/util.d.ts +50 -52
  40. package/build/src/util/util.d.ts.map +1 -1
  41. package/package.json +5 -5
@@ -1,65 +1,63 @@
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]="748696f3-4961-5ab4-a508-8db167afcaa1")}catch(e){}}();
2
- import { LDMLKeyboard, KMXPlus, CompilerCallbacks, LDMLKeyboardTestDataXMLSourceFile, UnicodeSetParser, KeymanCompiler, KeymanCompilerResult, KeymanCompilerArtifacts, KeymanCompilerArtifactOptional } from '@keymanapp/common-types';
3
- import { LdmlCompilerOptions } from './ldml-compiler-options.js';
4
- import { BkspCompiler, TranCompiler } from './tran.js';
5
- import { DispCompiler } from './disp.js';
6
- import { KeysCompiler } from './keys.js';
7
- import { LayrCompiler } from './layr.js';
8
- import { LocaCompiler } from './loca.js';
9
- import { MetaCompiler } from './meta.js';
10
- import { VarsCompiler } from './vars.js';
11
- import { StrsCompiler } from './empty-compiler.js';
12
- import LDMLKeyboardXMLSourceFile = LDMLKeyboard.LDMLKeyboardXMLSourceFile;
13
- export declare const SECTION_COMPILERS: (typeof TranCompiler | typeof BkspCompiler | typeof DispCompiler | typeof KeysCompiler | typeof LayrCompiler | typeof LocaCompiler | typeof MetaCompiler | typeof VarsCompiler | typeof StrsCompiler)[];
14
- export interface LdmlKeyboardCompilerArtifacts extends KeymanCompilerArtifacts {
15
- kmx?: KeymanCompilerArtifactOptional;
16
- kvk?: KeymanCompilerArtifactOptional;
17
- js?: KeymanCompilerArtifactOptional;
18
- }
19
- export interface LdmlKeyboardCompilerResult extends KeymanCompilerResult {
20
- artifacts: LdmlKeyboardCompilerArtifacts;
21
- }
22
- export declare class LdmlKeyboardCompiler implements KeymanCompiler {
23
- private callbacks;
24
- private options;
25
- private usetparser?;
26
- init(callbacks: CompilerCallbacks, options: LdmlCompilerOptions): Promise<boolean>;
27
- run(inputFilename: string, outputFilename?: string): Promise<LdmlKeyboardCompilerResult>;
28
- write(artifacts: LdmlKeyboardCompilerArtifacts): Promise<boolean>;
29
- /**
30
- * Construct or return a UnicodeSetParser, aka KmnCompiler
31
- * @returns the held UnicodeSetParser
32
- */
33
- getUsetParser(): Promise<UnicodeSetParser>;
34
- private buildSections;
35
- /**
36
- * Loads a LDML Keyboard xml file and compiles into in-memory xml
37
- * structures.
38
- * @param filename input filename, will use callback to load from disk
39
- * @returns the source file, or null if invalid
40
- */
41
- load(filename: string): LDMLKeyboardXMLSourceFile | null;
42
- /**
43
- * Loads a LDML Keyboard test data xml file and compiles into in-memory xml
44
- * structures.
45
- * @param filename input filename, will use callback to load from disk
46
- * @returns the source file, or null if invalid
47
- */
48
- loadTestData(filename: string): LDMLKeyboardTestDataXMLSourceFile | null;
49
- /**
50
- * Validates that the LDML keyboard source file and lints. Actually just
51
- * compiles the keyboard and returns `true` if everything is good...
52
- * @param source
53
- * @returns true if the file validates
54
- */
55
- validate(source: LDMLKeyboardXMLSourceFile): Promise<boolean>;
56
- /**
57
- * Transforms in-memory LDML keyboard xml file to an intermediate
58
- * representation of a .kmx file.
59
- * @param source in-memory representation of LDML keyboard xml file
60
- * @returns KMXPlusFile intermediate file
61
- */
62
- compile(source: LDMLKeyboardXMLSourceFile, postValidate?: boolean): Promise<KMXPlus.KMXPlusFile>;
63
- }
64
- //# debugId=748696f3-4961-5ab4-a508-8db167afcaa1
65
- //# sourceMappingURL=compiler.d.ts.map
1
+ import { LDMLKeyboard, KMXPlus, CompilerCallbacks, LDMLKeyboardTestDataXMLSourceFile, UnicodeSetParser, KeymanCompiler, KeymanCompilerResult, KeymanCompilerArtifacts, KeymanCompilerArtifactOptional } from '@keymanapp/common-types';
2
+ import { LdmlCompilerOptions } from './ldml-compiler-options.js';
3
+ import { BkspCompiler, TranCompiler } from './tran.js';
4
+ import { DispCompiler } from './disp.js';
5
+ import { KeysCompiler } from './keys.js';
6
+ import { LayrCompiler } from './layr.js';
7
+ import { LocaCompiler } from './loca.js';
8
+ import { MetaCompiler } from './meta.js';
9
+ import { VarsCompiler } from './vars.js';
10
+ import { StrsCompiler } from './empty-compiler.js';
11
+ import LDMLKeyboardXMLSourceFile = LDMLKeyboard.LDMLKeyboardXMLSourceFile;
12
+ export declare const SECTION_COMPILERS: (typeof TranCompiler | typeof BkspCompiler | typeof DispCompiler | typeof KeysCompiler | typeof LayrCompiler | typeof LocaCompiler | typeof MetaCompiler | typeof VarsCompiler | typeof StrsCompiler)[];
13
+ export interface LdmlKeyboardCompilerArtifacts extends KeymanCompilerArtifacts {
14
+ kmx?: KeymanCompilerArtifactOptional;
15
+ kvk?: KeymanCompilerArtifactOptional;
16
+ js?: KeymanCompilerArtifactOptional;
17
+ }
18
+ export interface LdmlKeyboardCompilerResult extends KeymanCompilerResult {
19
+ artifacts: LdmlKeyboardCompilerArtifacts;
20
+ }
21
+ export declare class LdmlKeyboardCompiler implements KeymanCompiler {
22
+ private callbacks;
23
+ private options;
24
+ private usetparser?;
25
+ init(callbacks: CompilerCallbacks, options: LdmlCompilerOptions): Promise<boolean>;
26
+ run(inputFilename: string, outputFilename?: string): Promise<LdmlKeyboardCompilerResult>;
27
+ write(artifacts: LdmlKeyboardCompilerArtifacts): Promise<boolean>;
28
+ /**
29
+ * Construct or return a UnicodeSetParser, aka KmnCompiler
30
+ * @returns the held UnicodeSetParser
31
+ */
32
+ getUsetParser(): Promise<UnicodeSetParser>;
33
+ private buildSections;
34
+ /**
35
+ * Loads a LDML Keyboard xml file and compiles into in-memory xml
36
+ * structures.
37
+ * @param filename input filename, will use callback to load from disk
38
+ * @returns the source file, or null if invalid
39
+ */
40
+ load(filename: string): LDMLKeyboardXMLSourceFile | null;
41
+ /**
42
+ * Loads a LDML Keyboard test data xml file and compiles into in-memory xml
43
+ * structures.
44
+ * @param filename input filename, will use callback to load from disk
45
+ * @returns the source file, or null if invalid
46
+ */
47
+ loadTestData(filename: string): LDMLKeyboardTestDataXMLSourceFile | null;
48
+ /**
49
+ * Validates that the LDML keyboard source file and lints. Actually just
50
+ * compiles the keyboard and returns `true` if everything is good...
51
+ * @param source
52
+ * @returns true if the file validates
53
+ */
54
+ validate(source: LDMLKeyboardXMLSourceFile): Promise<boolean>;
55
+ /**
56
+ * Transforms in-memory LDML keyboard xml file to an intermediate
57
+ * representation of a .kmx file.
58
+ * @param source in-memory representation of LDML keyboard xml file
59
+ * @returns KMXPlusFile intermediate file
60
+ */
61
+ compile(source: LDMLKeyboardXMLSourceFile, postValidate?: boolean): Promise<KMXPlus.KMXPlusFile>;
62
+ }
63
+ //# sourceMappingURL=compiler.d.ts.map
@@ -1 +1 @@
1
- {"debug_id":"748696f3-4961-5ab4-a508-8db167afcaa1","file":"compiler.d.ts","mappings":";AAAA,OAAO,EAAmC,YAAY,EAAE,OAAO,EAAE,iBAAiB,EAAE,iCAAiC,EAAE,gBAAgB,EAAE,cAAc,EAAE,oBAAoB,EAAE,uBAAuB,EAAqD,8BAA8B,EAAE,MAAM,yBAAyB,CAAC;AAC3T,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAEjE,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,YAAY,EAA4C,MAAM,qBAAqB,CAAC;AAG7F,OAAO,yBAAyB,GAAG,YAAY,CAAC,yBAAyB,CAAC;AAS1E,eAAO,MAAM,iBAAiB,yMAkB7B,CAAC;AAEF,MAAM,WAAW,6BAA8B,SAAQ,uBAAuB;IAC5E,GAAG,CAAC,EAAE,8BAA8B,CAAC;IACrC,GAAG,CAAC,EAAE,8BAA8B,CAAC;IACrC,EAAE,CAAC,EAAE,8BAA8B,CAAC;CACrC;AAED,MAAM,WAAW,0BAA2B,SAAQ,oBAAoB;IACtE,SAAS,EAAE,6BAA6B,CAAC;CAC1C;AAED,qBAAa,oBAAqB,YAAW,cAAc;IACzD,OAAO,CAAC,SAAS,CAAoB;IACrC,OAAO,CAAC,OAAO,CAAsB;IAGrC,OAAO,CAAC,UAAU,CAAC,CAA+B;IAE5C,IAAI,CAAC,SAAS,EAAE,iBAAiB,EAAE,OAAO,EAAE,mBAAmB,GAAG,OAAO,CAAC,OAAO,CAAC;IAMlF,GAAG,CAAC,aAAa,EAAE,MAAM,EAAE,cAAc,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,0BAA0B,CAAC;IAkDxF,KAAK,CAAC,SAAS,EAAE,6BAA6B,GAAG,OAAO,CAAC,OAAO,CAAC;IAgBvE;;;OAGG;IACG,aAAa,IAAK,OAAO,CAAC,gBAAgB,CAAC;IAejD,OAAO,CAAC,aAAa;IAIrB;;;;;OAKG;IACI,IAAI,CAAC,QAAQ,EAAE,MAAM,GAAG,yBAAyB,GAAG,IAAI;IA2B/D;;;;;OAKG;IACM,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,iCAAiC,GAAG,IAAI;IA4BjF;;;;;OAKG;IACU,QAAQ,CAAC,MAAM,EAAE,yBAAyB,GAAG,OAAO,CAAC,OAAO,CAAC;IAI1E;;;;;OAKG;IACU,OAAO,CAAC,MAAM,EAAE,yBAAyB,EAAE,YAAY,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC;CAwE9G","names":[],"sourceRoot":"","sources":["../../../src/compiler/compiler.ts"],"version":3}
1
+ {"version":3,"file":"compiler.d.ts","sourceRoot":"","sources":["../../../src/compiler/compiler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmC,YAAY,EAAE,OAAO,EAAE,iBAAiB,EAAE,iCAAiC,EAAE,gBAAgB,EAAE,cAAc,EAAE,oBAAoB,EAAE,uBAAuB,EAAqD,8BAA8B,EAAE,MAAM,yBAAyB,CAAC;AAC3T,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAEjE,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,YAAY,EAA4C,MAAM,qBAAqB,CAAC;AAG7F,OAAO,yBAAyB,GAAG,YAAY,CAAC,yBAAyB,CAAC;AAS1E,eAAO,MAAM,iBAAiB,yMAkB7B,CAAC;AAEF,MAAM,WAAW,6BAA8B,SAAQ,uBAAuB;IAC5E,GAAG,CAAC,EAAE,8BAA8B,CAAC;IACrC,GAAG,CAAC,EAAE,8BAA8B,CAAC;IACrC,EAAE,CAAC,EAAE,8BAA8B,CAAC;CACrC;AAED,MAAM,WAAW,0BAA2B,SAAQ,oBAAoB;IACtE,SAAS,EAAE,6BAA6B,CAAC;CAC1C;AAED,qBAAa,oBAAqB,YAAW,cAAc;IACzD,OAAO,CAAC,SAAS,CAAoB;IACrC,OAAO,CAAC,OAAO,CAAsB;IAGrC,OAAO,CAAC,UAAU,CAAC,CAA+B;IAE5C,IAAI,CAAC,SAAS,EAAE,iBAAiB,EAAE,OAAO,EAAE,mBAAmB,GAAG,OAAO,CAAC,OAAO,CAAC;IAMlF,GAAG,CAAC,aAAa,EAAE,MAAM,EAAE,cAAc,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,0BAA0B,CAAC;IAmDxF,KAAK,CAAC,SAAS,EAAE,6BAA6B,GAAG,OAAO,CAAC,OAAO,CAAC;IAgBvE;;;OAGG;IACG,aAAa,IAAK,OAAO,CAAC,gBAAgB,CAAC;IAejD,OAAO,CAAC,aAAa;IAIrB;;;;;OAKG;IACI,IAAI,CAAC,QAAQ,EAAE,MAAM,GAAG,yBAAyB,GAAG,IAAI;IA2B/D;;;;;OAKG;IACM,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,iCAAiC,GAAG,IAAI;IA4BjF;;;;;OAKG;IACU,QAAQ,CAAC,MAAM,EAAE,yBAAyB,GAAG,OAAO,CAAC,OAAO,CAAC;IAI1E;;;;;OAKG;IACU,OAAO,CAAC,MAAM,EAAE,yBAAyB,EAAE,YAAY,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC;CAwE9G"}
@@ -1,4 +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]="f74e7926-f874-5e7f-9c6e-b0892e15395a")}catch(e){}}();
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]="fded656a-da89-579a-b0f2-f241628bb381")}catch(e){}}();
2
2
  import { LDMLKeyboardXMLSourceFileReader, KMXPlus, defaultCompilerOptions, KMXBuilder, KvkFileWriter } from '@keymanapp/common-types';
3
3
  import { CompilerMessages } from './messages.js';
4
4
  import { BkspCompiler, TranCompiler } from './tran.js';
@@ -14,7 +14,7 @@ import { constants } from '@keymanapp/ldml-keyboard-constants';
14
14
  import { KmnCompiler } from '@keymanapp/kmc-kmn';
15
15
  import { KMXPlusMetadataCompiler } from './metadata-compiler.js';
16
16
  import { LdmlKeyboardVisualKeyboardCompiler } from './visual-keyboard-compiler.js';
17
- import { LdmlKeyboardKeymanWebCompiler } from './keymanweb-compiler.js';
17
+ //KMW17.0: import { LdmlKeyboardKeymanWebCompiler } from './keymanweb-compiler.js';
18
18
  export const SECTION_COMPILERS = [
19
19
  // These are in dependency order.
20
20
  // First the former 'global' sections
@@ -73,16 +73,16 @@ export class LdmlKeyboardCompiler {
73
73
  // const tlcompiler = new kmc.TouchLayoutCompiler();
74
74
  // const tl = tlcompiler.compile(source);
75
75
  // const tlwriter = new TouchLayoutFileWriter();
76
- const kmwcompiler = new LdmlKeyboardKeymanWebCompiler(this.callbacks, compilerOptions);
77
- const kmw_string = kmwcompiler.compile(inputFilename, source);
78
- const encoder = new TextEncoder();
79
- const kmw_binary = encoder.encode(kmw_string);
76
+ //KMW17.0: const kmwcompiler = new LdmlKeyboardKeymanWebCompiler(this.callbacks, compilerOptions);
77
+ //KMW17.0: const kmw_string = kmwcompiler.compile(inputFilename, source);
78
+ //KMW17.0: const encoder = new TextEncoder();
79
+ //KMW17.0: const kmw_binary = encoder.encode(kmw_string);
80
80
  outputFilename = outputFilename ?? inputFilename.replace(/\.xml$/, '.kmx');
81
81
  return {
82
82
  artifacts: {
83
83
  kmx: { data: kmx_binary, filename: outputFilename },
84
84
  kvk: { data: kvk_binary, filename: outputFilename.replace(/\.kmx$/, '.kvk') },
85
- js: { data: kmw_binary, filename: outputFilename.replace(/\.kmx$/, '.js') },
85
+ //KMW17.0: js: { data: kmw_binary, filename: outputFilename.replace(/\.kmx$/, '.js') },
86
86
  }
87
87
  };
88
88
  }
@@ -267,5 +267,5 @@ export class LdmlKeyboardCompiler {
267
267
  return passed ? kmx : null;
268
268
  }
269
269
  }
270
- //# debugId=f74e7926-f874-5e7f-9c6e-b0892e15395a
270
+ //# debugId=fded656a-da89-579a-b0f2-f241628bb381
271
271
  //# sourceMappingURL=compiler.js.map
@@ -1 +1 @@
1
- {"debug_id":"f74e7926-f874-5e7f-9c6e-b0892e15395a","file":"compiler.js","mappings":"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","names":[],"sourceRoot":"","sources":["../../../src/compiler/compiler.ts"],"version":3}
1
+ {"debug_id":"fded656a-da89-579a-b0f2-f241628bb381","file":"compiler.js","mappings":"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","names":[],"sourceRoot":"","sources":["../../../src/compiler/compiler.ts"],"version":3}
@@ -1,14 +1,12 @@
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]="d452d22b-c1f9-580b-9aac-93956b96cd3a")}catch(e){}}();
2
- import { KMXPlus, LDMLKeyboard } from '@keymanapp/common-types';
3
- import { SectionCompiler } from "./section-compiler.js";
4
- import DependencySections = KMXPlus.DependencySections;
5
- import Disp = KMXPlus.Disp;
6
- import { MarkerTracker } from "./marker-tracker.js";
7
- export declare class DispCompiler extends SectionCompiler {
8
- static validateMarkers(keyboard: LDMLKeyboard.LKKeyboard, mt: MarkerTracker): boolean;
9
- get id(): import("@keymanapp/ldml-keyboard-constants").SectionIdent;
10
- validate(): boolean;
11
- compile(sections: DependencySections): Disp;
12
- }
13
- //# debugId=d452d22b-c1f9-580b-9aac-93956b96cd3a
14
- //# sourceMappingURL=disp.d.ts.map
1
+ import { KMXPlus, LDMLKeyboard } from '@keymanapp/common-types';
2
+ import { SectionCompiler } from "./section-compiler.js";
3
+ import DependencySections = KMXPlus.DependencySections;
4
+ import Disp = KMXPlus.Disp;
5
+ import { MarkerTracker } from "./marker-tracker.js";
6
+ export declare class DispCompiler extends SectionCompiler {
7
+ static validateMarkers(keyboard: LDMLKeyboard.LKKeyboard, mt: MarkerTracker): boolean;
8
+ get id(): import("@keymanapp/ldml-keyboard-constants").SectionIdent;
9
+ validate(): boolean;
10
+ compile(sections: DependencySections): Disp;
11
+ }
12
+ //# sourceMappingURL=disp.d.ts.map
@@ -1 +1 @@
1
- {"debug_id":"d452d22b-c1f9-580b-9aac-93956b96cd3a","file":"disp.d.ts","mappings":";AACA,OAAO,EAAE,OAAO,EAAE,YAAY,EAAgB,MAAM,yBAAyB,CAAC;AAG9E,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAExD,OAAO,kBAAkB,GAAG,OAAO,CAAC,kBAAkB,CAAC;AACvD,OAAO,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;AAE3B,OAAO,EAAE,aAAa,EAAa,MAAM,qBAAqB,CAAC;AAE/D,qBAAa,YAAa,SAAQ,eAAe;IAC/C,MAAM,CAAC,eAAe,CAAC,QAAQ,EAAE,YAAY,CAAC,UAAU,EAAE,EAAE,EAAG,aAAa,GAAG,OAAO;IAOtF,IAAW,EAAE,8DAEZ;IAEM,QAAQ,IAAI,OAAO;IAgCnB,OAAO,CAAC,QAAQ,EAAE,kBAAkB,GAAG,IAAI;CAiCnD","names":[],"sourceRoot":"","sources":["../../../src/compiler/disp.ts"],"version":3}
1
+ {"version":3,"file":"disp.d.ts","sourceRoot":"","sources":["../../../src/compiler/disp.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,YAAY,EAAgB,MAAM,yBAAyB,CAAC;AAG9E,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAExD,OAAO,kBAAkB,GAAG,OAAO,CAAC,kBAAkB,CAAC;AACvD,OAAO,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;AAE3B,OAAO,EAAE,aAAa,EAAa,MAAM,qBAAqB,CAAC;AAE/D,qBAAa,YAAa,SAAQ,eAAe;IAC/C,MAAM,CAAC,eAAe,CAAC,QAAQ,EAAE,YAAY,CAAC,UAAU,EAAE,EAAE,EAAG,aAAa,GAAG,OAAO;IAOtF,IAAW,EAAE,8DAEZ;IAEM,QAAQ,IAAI,OAAO;IAgCnB,OAAO,CAAC,QAAQ,EAAE,kBAAkB,GAAG,IAAI;CAiCnD"}
@@ -1,40 +1,38 @@
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]="437bee69-293c-5e24-a100-baa8a9cb38b9")}catch(e){}}();
2
- import { SectionIdent } from '@keymanapp/ldml-keyboard-constants';
3
- import { SectionCompiler } from "./section-compiler.js";
4
- import { LDMLKeyboard, KMXPlus, CompilerCallbacks } from "@keymanapp/common-types";
5
- import { VarsCompiler } from './vars.js';
6
- /**
7
- * Compiler for typrs that don't actually consume input XML
8
- */
9
- export declare abstract class EmptyCompiler extends SectionCompiler {
10
- private _id;
11
- constructor(id: SectionIdent, source: LDMLKeyboard.LDMLKeyboardXMLSourceFile, callbacks: CompilerCallbacks);
12
- get id(): SectionIdent;
13
- get dependencies(): Set<SectionIdent>;
14
- }
15
- export declare class StrsCompiler extends EmptyCompiler {
16
- constructor(source: LDMLKeyboard.LDMLKeyboardXMLSourceFile, callbacks: CompilerCallbacks);
17
- compile(sections: KMXPlus.DependencySections): KMXPlus.Section;
18
- postValidate(section?: KMXPlus.Section): boolean;
19
- }
20
- export declare class ElemCompiler extends EmptyCompiler {
21
- constructor(source: LDMLKeyboard.LDMLKeyboardXMLSourceFile, callbacks: CompilerCallbacks);
22
- compile(sections: KMXPlus.DependencySections): KMXPlus.Section;
23
- get dependencies(): Set<SectionIdent>;
24
- }
25
- export declare class ListCompiler extends EmptyCompiler {
26
- constructor(source: LDMLKeyboard.LDMLKeyboardXMLSourceFile, callbacks: CompilerCallbacks);
27
- compile(sections: KMXPlus.DependencySections): KMXPlus.Section;
28
- get dependencies(): Set<SectionIdent>;
29
- }
30
- export declare class UsetCompiler extends EmptyCompiler {
31
- constructor(source: LDMLKeyboard.LDMLKeyboardXMLSourceFile, callbacks: CompilerCallbacks);
32
- compile(sections: KMXPlus.DependencySections): KMXPlus.Section;
33
- get dependencies(): Set<SectionIdent>;
34
- }
35
- /**
36
- * For test use. The top compilers.
37
- */
38
- export declare const BASIC_DEPENDENCIES: (typeof VarsCompiler | typeof StrsCompiler)[];
39
- //# debugId=437bee69-293c-5e24-a100-baa8a9cb38b9
40
- //# sourceMappingURL=empty-compiler.d.ts.map
1
+ import { SectionIdent } from '@keymanapp/ldml-keyboard-constants';
2
+ import { SectionCompiler } from "./section-compiler.js";
3
+ import { LDMLKeyboard, KMXPlus, CompilerCallbacks } from "@keymanapp/common-types";
4
+ import { VarsCompiler } from './vars.js';
5
+ /**
6
+ * Compiler for typrs that don't actually consume input XML
7
+ */
8
+ export declare abstract class EmptyCompiler extends SectionCompiler {
9
+ private _id;
10
+ constructor(id: SectionIdent, source: LDMLKeyboard.LDMLKeyboardXMLSourceFile, callbacks: CompilerCallbacks);
11
+ get id(): SectionIdent;
12
+ get dependencies(): Set<SectionIdent>;
13
+ }
14
+ export declare class StrsCompiler extends EmptyCompiler {
15
+ constructor(source: LDMLKeyboard.LDMLKeyboardXMLSourceFile, callbacks: CompilerCallbacks);
16
+ compile(sections: KMXPlus.DependencySections): KMXPlus.Section;
17
+ postValidate(section?: KMXPlus.Section): boolean;
18
+ }
19
+ export declare class ElemCompiler extends EmptyCompiler {
20
+ constructor(source: LDMLKeyboard.LDMLKeyboardXMLSourceFile, callbacks: CompilerCallbacks);
21
+ compile(sections: KMXPlus.DependencySections): KMXPlus.Section;
22
+ get dependencies(): Set<SectionIdent>;
23
+ }
24
+ export declare class ListCompiler extends EmptyCompiler {
25
+ constructor(source: LDMLKeyboard.LDMLKeyboardXMLSourceFile, callbacks: CompilerCallbacks);
26
+ compile(sections: KMXPlus.DependencySections): KMXPlus.Section;
27
+ get dependencies(): Set<SectionIdent>;
28
+ }
29
+ export declare class UsetCompiler extends EmptyCompiler {
30
+ constructor(source: LDMLKeyboard.LDMLKeyboardXMLSourceFile, callbacks: CompilerCallbacks);
31
+ compile(sections: KMXPlus.DependencySections): KMXPlus.Section;
32
+ get dependencies(): Set<SectionIdent>;
33
+ }
34
+ /**
35
+ * For test use. The top compilers.
36
+ */
37
+ export declare const BASIC_DEPENDENCIES: (typeof VarsCompiler | typeof StrsCompiler)[];
38
+ //# sourceMappingURL=empty-compiler.d.ts.map
@@ -1 +1 @@
1
- {"debug_id":"437bee69-293c-5e24-a100-baa8a9cb38b9","file":"empty-compiler.d.ts","mappings":";AAAA,OAAO,EAAE,YAAY,EAAa,MAAM,oCAAoC,CAAC;AAC7E,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,iBAAiB,EAAsB,MAAM,yBAAyB,CAAC;AACvG,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAGzC;;GAEG;AACH,8BAAsB,aAAc,SAAQ,eAAe;IACzD,OAAO,CAAC,GAAG,CAAe;gBACd,EAAE,EAAE,YAAY,EAAE,MAAM,EAAE,YAAY,CAAC,yBAAyB,EAAE,SAAS,EAAE,iBAAiB;IAK1G,IAAW,EAAE,IAAI,YAAY,CAE5B;IACD,IAAW,YAAY,IAAI,GAAG,CAAC,YAAY,CAAC,CAE3C;CACF;AAED,qBAAa,YAAa,SAAQ,aAAa;gBACjC,MAAM,EAAE,YAAY,CAAC,yBAAyB,EAAE,SAAS,EAAE,iBAAiB;IAGjF,OAAO,CAAC,QAAQ,EAAE,OAAO,CAAC,kBAAkB,GAAG,OAAO,CAAC,OAAO;IAG9D,YAAY,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC,OAAO,GAAG,OAAO;CA6CxD;AAED,qBAAa,YAAa,SAAQ,aAAa;gBACjC,MAAM,EAAE,YAAY,CAAC,yBAAyB,EAAE,SAAS,EAAE,iBAAiB;IAGjF,OAAO,CAAC,QAAQ,EAAE,OAAO,CAAC,kBAAkB,GAAG,OAAO,CAAC,OAAO;IAGrE,IAAW,YAAY,IAAI,GAAG,CAAC,YAAY,CAAC,CAG3C;CACF;AAED,qBAAa,YAAa,SAAQ,aAAa;gBACjC,MAAM,EAAE,YAAY,CAAC,yBAAyB,EAAE,SAAS,EAAE,iBAAiB;IAGjF,OAAO,CAAC,QAAQ,EAAE,OAAO,CAAC,kBAAkB,GAAG,OAAO,CAAC,OAAO;IAGrE,IAAW,YAAY,IAAI,GAAG,CAAC,YAAY,CAAC,CAG3C;CACF;AAED,qBAAa,YAAa,SAAQ,aAAa;gBACjC,MAAM,EAAE,YAAY,CAAC,yBAAyB,EAAE,SAAS,EAAE,iBAAiB;IAGjF,OAAO,CAAC,QAAQ,EAAE,OAAO,CAAC,kBAAkB,GAAG,OAAO,CAAC,OAAO;IAGrE,IAAW,YAAY,IAAI,GAAG,CAAC,YAAY,CAAC,CAG3C;CACF;AAED;;GAEG;AACH,eAAO,MAAM,kBAAkB,+CAA6D,CAAC","names":[],"sourceRoot":"","sources":["../../../src/compiler/empty-compiler.ts"],"version":3}
1
+ {"version":3,"file":"empty-compiler.d.ts","sourceRoot":"","sources":["../../../src/compiler/empty-compiler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAa,MAAM,oCAAoC,CAAC;AAC7E,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,iBAAiB,EAAsB,MAAM,yBAAyB,CAAC;AACvG,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAGzC;;GAEG;AACH,8BAAsB,aAAc,SAAQ,eAAe;IACzD,OAAO,CAAC,GAAG,CAAe;gBACd,EAAE,EAAE,YAAY,EAAE,MAAM,EAAE,YAAY,CAAC,yBAAyB,EAAE,SAAS,EAAE,iBAAiB;IAK1G,IAAW,EAAE,IAAI,YAAY,CAE5B;IACD,IAAW,YAAY,IAAI,GAAG,CAAC,YAAY,CAAC,CAE3C;CACF;AAED,qBAAa,YAAa,SAAQ,aAAa;gBACjC,MAAM,EAAE,YAAY,CAAC,yBAAyB,EAAE,SAAS,EAAE,iBAAiB;IAGjF,OAAO,CAAC,QAAQ,EAAE,OAAO,CAAC,kBAAkB,GAAG,OAAO,CAAC,OAAO;IAG9D,YAAY,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC,OAAO,GAAG,OAAO;CA6CxD;AAED,qBAAa,YAAa,SAAQ,aAAa;gBACjC,MAAM,EAAE,YAAY,CAAC,yBAAyB,EAAE,SAAS,EAAE,iBAAiB;IAGjF,OAAO,CAAC,QAAQ,EAAE,OAAO,CAAC,kBAAkB,GAAG,OAAO,CAAC,OAAO;IAGrE,IAAW,YAAY,IAAI,GAAG,CAAC,YAAY,CAAC,CAG3C;CACF;AAED,qBAAa,YAAa,SAAQ,aAAa;gBACjC,MAAM,EAAE,YAAY,CAAC,yBAAyB,EAAE,SAAS,EAAE,iBAAiB;IAGjF,OAAO,CAAC,QAAQ,EAAE,OAAO,CAAC,kBAAkB,GAAG,OAAO,CAAC,OAAO;IAGrE,IAAW,YAAY,IAAI,GAAG,CAAC,YAAY,CAAC,CAG3C;CACF;AAED,qBAAa,YAAa,SAAQ,aAAa;gBACjC,MAAM,EAAE,YAAY,CAAC,yBAAyB,EAAE,SAAS,EAAE,iBAAiB;IAGjF,OAAO,CAAC,QAAQ,EAAE,OAAO,CAAC,kBAAkB,GAAG,OAAO,CAAC,OAAO;IAGrE,IAAW,YAAY,IAAI,GAAG,CAAC,YAAY,CAAC,CAG3C;CACF;AAED;;GAEG;AACH,eAAO,MAAM,kBAAkB,+CAA6D,CAAC"}
@@ -1,16 +1,14 @@
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]="78f76bc1-8138-58eb-a1cb-61af5b41c772")}catch(e){}}();
2
- import { CompilerCallbacks, LDMLKeyboard } from "@keymanapp/common-types";
3
- import { LdmlCompilerOptions } from "./ldml-compiler-options.js";
4
- export declare class LdmlKeyboardKeymanWebCompiler {
5
- private callbacks;
6
- private readonly options;
7
- private readonly nl;
8
- private readonly tab;
9
- constructor(callbacks: CompilerCallbacks, options?: LdmlCompilerOptions);
10
- compileVisualKeyboard(source: LDMLKeyboard.LDMLKeyboardXMLSourceFile): string;
11
- compileTouchLayout(source: LDMLKeyboard.LDMLKeyboardXMLSourceFile): string;
12
- private cleanName;
13
- compile(name: string, source: LDMLKeyboard.LDMLKeyboardXMLSourceFile): string;
14
- }
15
- //# debugId=78f76bc1-8138-58eb-a1cb-61af5b41c772
16
- //# sourceMappingURL=keymanweb-compiler.d.ts.map
1
+ import { CompilerCallbacks, LDMLKeyboard } from "@keymanapp/common-types";
2
+ import { LdmlCompilerOptions } from "./ldml-compiler-options.js";
3
+ export declare class LdmlKeyboardKeymanWebCompiler {
4
+ private callbacks;
5
+ private readonly options;
6
+ private readonly nl;
7
+ private readonly tab;
8
+ constructor(callbacks: CompilerCallbacks, options?: LdmlCompilerOptions);
9
+ compileVisualKeyboard(source: LDMLKeyboard.LDMLKeyboardXMLSourceFile): string;
10
+ compileTouchLayout(source: LDMLKeyboard.LDMLKeyboardXMLSourceFile): string;
11
+ private cleanName;
12
+ compile(name: string, source: LDMLKeyboard.LDMLKeyboardXMLSourceFile): string;
13
+ }
14
+ //# sourceMappingURL=keymanweb-compiler.d.ts.map
@@ -1 +1 @@
1
- {"debug_id":"78f76bc1-8138-58eb-a1cb-61af5b41c772","file":"keymanweb-compiler.d.ts","mappings":";AAAA,OAAO,EAAE,iBAAiB,EAAkB,YAAY,EAA0C,MAAM,yBAAyB,CAAC;AAClI,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAMjE,qBAAa,6BAA6B;IAI5B,OAAO,CAAC,SAAS;IAH7B,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAsB;IAC9C,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAS;IAC5B,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAS;gBACT,SAAS,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,mBAAmB;IAMxE,qBAAqB,CAAC,MAAM,EAAE,YAAY,CAAC,yBAAyB;IAgBpE,kBAAkB,CAAC,MAAM,EAAE,YAAY,CAAC,yBAAyB;IAOxE,OAAO,CAAC,SAAS;IAcV,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,YAAY,CAAC,yBAAyB,GAAG,MAAM;CA0DrF","names":[],"sourceRoot":"","sources":["../../../src/compiler/keymanweb-compiler.ts"],"version":3}
1
+ {"version":3,"file":"keymanweb-compiler.d.ts","sourceRoot":"","sources":["../../../src/compiler/keymanweb-compiler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAkB,YAAY,EAA0C,MAAM,yBAAyB,CAAC;AAClI,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAMjE,qBAAa,6BAA6B;IAI5B,OAAO,CAAC,SAAS;IAH7B,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAsB;IAC9C,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAS;IAC5B,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAS;gBACT,SAAS,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,mBAAmB;IAMxE,qBAAqB,CAAC,MAAM,EAAE,YAAY,CAAC,yBAAyB;IAgBpE,kBAAkB,CAAC,MAAM,EAAE,YAAY,CAAC,yBAAyB;IAOxE,OAAO,CAAC,SAAS;IAcV,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,YAAY,CAAC,yBAAyB,GAAG,MAAM;CA0DrF"}
@@ -1,54 +1,52 @@
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]="2a4e2dd8-d094-58e9-b4e1-bd2f724399a3")}catch(e){}}();
2
- import { LDMLKeyboard, KMXPlus, Constants } from '@keymanapp/common-types';
3
- import { SectionCompiler } from "./section-compiler.js";
4
- import DependencySections = KMXPlus.DependencySections;
5
- import Keys = KMXPlus.Keys;
6
- import KeysKeys = KMXPlus.KeysKeys;
7
- import { MarkerTracker } from './marker-tracker.js';
8
- export declare class KeysCompiler extends SectionCompiler {
9
- static validateMarkers(keyboard: LDMLKeyboard.LKKeyboard, mt: MarkerTracker): boolean;
10
- get id(): import("@keymanapp/ldml-keyboard-constants").SectionIdent;
11
- /**
12
- *
13
- * @returns just the non-touch layers.
14
- */
15
- hardwareLayers(): LDMLKeyboard.LKLayers[];
16
- validate(): boolean;
17
- static addKeysFromFlicks(usedFlicks: Set<string>, flickHash: Map<string, LDMLKeyboard.LKFlick>, usedKeys: Set<string>): void;
18
- private getFlicks;
19
- /** a set with all key ids used in all layers */
20
- private getLayerKeyIds;
21
- /** the entire keybag (used or unused) as a hash */
22
- private getKeyBag;
23
- compile(sections: DependencySections): Keys;
24
- /** list of reserved keys, for tests */
25
- static readonly reserved_keys: string[];
26
- /** count of reserved keys, for tests */
27
- static readonly reserved_count: number;
28
- /** load up all reserved keys */
29
- getReservedKeys(sections: KMXPlus.DependencySections): Map<String, KeysKeys>;
30
- static addUsedGestureKeys(layerKeyIds: string[], keyBag: Map<string, LDMLKeyboard.LKKey>, usedKeys: Set<string>): void;
31
- /**
32
- *
33
- * @param keyBag the keybag as a hash
34
- * @param layerKeyIds list of keys from the layer, to extract used flicks
35
- * @param usedKeys will be populated with keys used in the flick
36
- */
37
- loadFlicks(sections: DependencySections, sect: Keys, keyBag: Map<string, LDMLKeyboard.LKKey>, layerKeyIds: string[], usedKeys: Set<string>): void;
38
- static getUsedFlicks(layerKeyIds: string[], keyBag: Map<string, LDMLKeyboard.LKKey>): Set<string>;
39
- loadKeys(sections: DependencySections, sect: Keys, keyBag: Map<string, LDMLKeyboard.LKKey>, layerKeyIds: string[], usedKeys: Set<string>): void;
40
- private getKeymapFromForm;
41
- static getKeymapFromForms(forms: LDMLKeyboard.LKForm[], hardware: string, badScans?: Set<number>): Constants.KeyMap;
42
- static getKeymapFromScancodes(ldmlForm: LDMLKeyboard.LKForm, badScans?: Set<number>): Constants.KeyMap;
43
- /**
44
- * Validate for purpose of kmap
45
- * @param hardware the 'form' parameter
46
- * @param layer
47
- * @param keyHash the keybag's hash
48
- * @returns true if valid
49
- */
50
- private validateHardwareLayerForKmap;
51
- private compileHardwareLayerToKmap;
52
- }
53
- //# debugId=2a4e2dd8-d094-58e9-b4e1-bd2f724399a3
54
- //# sourceMappingURL=keys.d.ts.map
1
+ import { LDMLKeyboard, KMXPlus, Constants } from '@keymanapp/common-types';
2
+ import { SectionCompiler } from "./section-compiler.js";
3
+ import DependencySections = KMXPlus.DependencySections;
4
+ import Keys = KMXPlus.Keys;
5
+ import KeysKeys = KMXPlus.KeysKeys;
6
+ import { MarkerTracker } from './marker-tracker.js';
7
+ export declare class KeysCompiler extends SectionCompiler {
8
+ static validateMarkers(keyboard: LDMLKeyboard.LKKeyboard, mt: MarkerTracker): boolean;
9
+ get id(): import("@keymanapp/ldml-keyboard-constants").SectionIdent;
10
+ /**
11
+ *
12
+ * @returns just the non-touch layers.
13
+ */
14
+ hardwareLayers(): LDMLKeyboard.LKLayers[];
15
+ validate(): boolean;
16
+ static addKeysFromFlicks(usedFlicks: Set<string>, flickHash: Map<string, LDMLKeyboard.LKFlick>, usedKeys: Set<string>): void;
17
+ private getFlicks;
18
+ /** a set with all key ids used in all layers */
19
+ private getLayerKeyIds;
20
+ /** the entire keybag (used or unused) as a hash */
21
+ private getKeyBag;
22
+ compile(sections: DependencySections): Keys;
23
+ /** list of reserved keys, for tests */
24
+ static readonly reserved_keys: string[];
25
+ /** count of reserved keys, for tests */
26
+ static readonly reserved_count: number;
27
+ /** load up all reserved keys */
28
+ getReservedKeys(sections: KMXPlus.DependencySections): Map<String, KeysKeys>;
29
+ static addUsedGestureKeys(layerKeyIds: string[], keyBag: Map<string, LDMLKeyboard.LKKey>, usedKeys: Set<string>): void;
30
+ /**
31
+ *
32
+ * @param keyBag the keybag as a hash
33
+ * @param layerKeyIds list of keys from the layer, to extract used flicks
34
+ * @param usedKeys will be populated with keys used in the flick
35
+ */
36
+ loadFlicks(sections: DependencySections, sect: Keys, keyBag: Map<string, LDMLKeyboard.LKKey>, layerKeyIds: string[], usedKeys: Set<string>): void;
37
+ static getUsedFlicks(layerKeyIds: string[], keyBag: Map<string, LDMLKeyboard.LKKey>): Set<string>;
38
+ loadKeys(sections: DependencySections, sect: Keys, keyBag: Map<string, LDMLKeyboard.LKKey>, layerKeyIds: string[], usedKeys: Set<string>): void;
39
+ private getKeymapFromForm;
40
+ static getKeymapFromForms(forms: LDMLKeyboard.LKForm[], hardware: string, badScans?: Set<number>): Constants.KeyMap;
41
+ static getKeymapFromScancodes(ldmlForm: LDMLKeyboard.LKForm, badScans?: Set<number>): Constants.KeyMap;
42
+ /**
43
+ * Validate for purpose of kmap
44
+ * @param hardware the 'form' parameter
45
+ * @param layer
46
+ * @param keyHash the keybag's hash
47
+ * @returns true if valid
48
+ */
49
+ private validateHardwareLayerForKmap;
50
+ private compileHardwareLayerToKmap;
51
+ }
52
+ //# sourceMappingURL=keys.d.ts.map
@@ -1 +1 @@
1
- {"debug_id":"2a4e2dd8-d094-58e9-b4e1-bd2f724399a3","file":"keys.d.ts","mappings":";AACA,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,SAAS,EAAgB,MAAM,yBAAyB,CAAC;AAEzF,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAExD,OAAO,kBAAkB,GAAG,OAAO,CAAC,kBAAkB,CAAC;AACvD,OAAO,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;AAC3B,OAAO,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;AAInC,OAAO,EAAE,aAAa,EAAa,MAAM,qBAAqB,CAAC;AAM/D,qBAAa,YAAa,SAAQ,eAAe;IAC/C,MAAM,CAAC,eAAe,CACpB,QAAQ,EAAE,YAAY,CAAC,UAAU,EACjC,EAAE,EAAE,aAAa,GAChB,OAAO;IAuBV,IAAW,EAAE,8DAEZ;IAED;;;OAGG;IACI,cAAc;IAId,QAAQ;IA8Ef,MAAM,CAAC,iBAAiB,CAAC,UAAU,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,GAAG,CAAC,MAAM,EAAE,YAAY,CAAC,OAAO,CAAC,EAAE,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC;IASrH,OAAO,CAAC,SAAS;IAIjB,gDAAgD;IAChD,OAAO,CAAC,cAAc;IAItB,mDAAmD;IACnD,OAAO,CAAC,SAAS;IAKV,OAAO,CAAC,QAAQ,EAAE,kBAAkB,GAAG,IAAI;IAmDlD,uCAAuC;IACvC,gBAAuB,aAAa,WAAoB;IACxD,wCAAwC;IACxC,gBAAuB,cAAc,SAAqC;IAE1E,gCAAgC;IAChC,eAAe,CAAC,QAAQ,EAAE,OAAO,CAAC,kBAAkB,GAAI,GAAG,CAAC,MAAM,EAAE,QAAQ,CAAC;IA2B7E,MAAM,CAAC,kBAAkB,CAAC,WAAW,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,YAAY,CAAC,KAAK,CAAC,EAAE,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC;IAU/G;;;;;OAKG;IACI,UAAU,CAAC,QAAQ,EAAE,kBAAkB,EAAE,IAAI,EAAE,IAAI,EACxD,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,YAAY,CAAC,KAAK,CAAC,EAAE,WAAW,EAAE,MAAM,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC;IAkCvF,MAAM,CAAC,aAAa,CAAC,WAAW,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,YAAY,CAAC,KAAK,CAAC;IAU5E,QAAQ,CAAC,QAAQ,EAAE,kBAAkB,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,YAAY,CAAC,KAAK,CAAC,EAC/F,WAAW,EAAE,MAAM,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC;IA2D9C,OAAO,CAAC,iBAAiB;WAIX,kBAAkB,CAAC,KAAK,EAAE,YAAY,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,MAAM;WAS5G,sBAAsB,CAAC,QAAQ,EAAE,YAAY,CAAC,MAAM,EAAE,QAAQ,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC;IAO1F;;;;;;OAMG;IACH,OAAO,CAAC,4BAA4B;IAoFpC,OAAO,CAAC,0BAA0B;CAyCnC","names":[],"sourceRoot":"","sources":["../../../src/compiler/keys.ts"],"version":3}
1
+ {"version":3,"file":"keys.d.ts","sourceRoot":"","sources":["../../../src/compiler/keys.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,SAAS,EAAgB,MAAM,yBAAyB,CAAC;AAEzF,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAExD,OAAO,kBAAkB,GAAG,OAAO,CAAC,kBAAkB,CAAC;AACvD,OAAO,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;AAC3B,OAAO,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;AAInC,OAAO,EAAE,aAAa,EAAa,MAAM,qBAAqB,CAAC;AAM/D,qBAAa,YAAa,SAAQ,eAAe;IAC/C,MAAM,CAAC,eAAe,CACpB,QAAQ,EAAE,YAAY,CAAC,UAAU,EACjC,EAAE,EAAE,aAAa,GAChB,OAAO;IAuBV,IAAW,EAAE,8DAEZ;IAED;;;OAGG;IACI,cAAc;IAId,QAAQ;IA8Ef,MAAM,CAAC,iBAAiB,CAAC,UAAU,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,GAAG,CAAC,MAAM,EAAE,YAAY,CAAC,OAAO,CAAC,EAAE,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC;IASrH,OAAO,CAAC,SAAS;IAIjB,gDAAgD;IAChD,OAAO,CAAC,cAAc;IAItB,mDAAmD;IACnD,OAAO,CAAC,SAAS;IAKV,OAAO,CAAC,QAAQ,EAAE,kBAAkB,GAAG,IAAI;IAmDlD,uCAAuC;IACvC,gBAAuB,aAAa,WAAoB;IACxD,wCAAwC;IACxC,gBAAuB,cAAc,SAAqC;IAE1E,gCAAgC;IAChC,eAAe,CAAC,QAAQ,EAAE,OAAO,CAAC,kBAAkB,GAAI,GAAG,CAAC,MAAM,EAAE,QAAQ,CAAC;IA2B7E,MAAM,CAAC,kBAAkB,CAAC,WAAW,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,YAAY,CAAC,KAAK,CAAC,EAAE,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC;IAU/G;;;;;OAKG;IACI,UAAU,CAAC,QAAQ,EAAE,kBAAkB,EAAE,IAAI,EAAE,IAAI,EACxD,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,YAAY,CAAC,KAAK,CAAC,EAAE,WAAW,EAAE,MAAM,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC;IAkCvF,MAAM,CAAC,aAAa,CAAC,WAAW,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,YAAY,CAAC,KAAK,CAAC;IAU5E,QAAQ,CAAC,QAAQ,EAAE,kBAAkB,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,YAAY,CAAC,KAAK,CAAC,EAC/F,WAAW,EAAE,MAAM,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC;IA2D9C,OAAO,CAAC,iBAAiB;WAIX,kBAAkB,CAAC,KAAK,EAAE,YAAY,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,MAAM;WAS5G,sBAAsB,CAAC,QAAQ,EAAE,YAAY,CAAC,MAAM,EAAE,QAAQ,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC;IAO1F;;;;;;OAMG;IACH,OAAO,CAAC,4BAA4B;IAoFpC,OAAO,CAAC,0BAA0B;CAyCnC"}
@@ -1,12 +1,10 @@
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]="9f413bdb-0119-5ef9-8195-81d5def4ffdb")}catch(e){}}();
2
- import { KMXPlus } from '@keymanapp/common-types';
3
- import { SectionCompiler } from "./section-compiler.js";
4
- import DependencySections = KMXPlus.DependencySections;
5
- import Layr = KMXPlus.Layr;
6
- export declare class LayrCompiler extends SectionCompiler {
7
- get id(): import("@keymanapp/ldml-keyboard-constants").SectionIdent;
8
- validate(): boolean;
9
- compile(sections: DependencySections): Layr;
10
- }
11
- //# debugId=9f413bdb-0119-5ef9-8195-81d5def4ffdb
12
- //# sourceMappingURL=layr.d.ts.map
1
+ import { KMXPlus } from '@keymanapp/common-types';
2
+ import { SectionCompiler } from "./section-compiler.js";
3
+ import DependencySections = KMXPlus.DependencySections;
4
+ import Layr = KMXPlus.Layr;
5
+ export declare class LayrCompiler extends SectionCompiler {
6
+ get id(): import("@keymanapp/ldml-keyboard-constants").SectionIdent;
7
+ validate(): boolean;
8
+ compile(sections: DependencySections): Layr;
9
+ }
10
+ //# sourceMappingURL=layr.d.ts.map
@@ -1 +1 @@
1
- {"debug_id":"9f413bdb-0119-5ef9-8195-81d5def4ffdb","file":"layr.d.ts","mappings":";AACA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAElD,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAIxD,OAAO,kBAAkB,GAAG,OAAO,CAAC,kBAAkB,CAAC;AACvD,OAAO,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;AAK3B,qBAAa,YAAa,SAAQ,eAAe;IAE/C,IAAW,EAAE,8DAEZ;IAEM,QAAQ;IAqCR,OAAO,CAAC,QAAQ,EAAE,kBAAkB,GAAG,IAAI;CA2BnD","names":[],"sourceRoot":"","sources":["../../../src/compiler/layr.ts"],"version":3}
1
+ {"version":3,"file":"layr.d.ts","sourceRoot":"","sources":["../../../src/compiler/layr.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAElD,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAIxD,OAAO,kBAAkB,GAAG,OAAO,CAAC,kBAAkB,CAAC;AACvD,OAAO,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;AAK3B,qBAAa,YAAa,SAAQ,eAAe;IAE/C,IAAW,EAAE,8DAEZ;IAEM,QAAQ;IAqCR,OAAO,CAAC,QAAQ,EAAE,kBAAkB,GAAG,IAAI;CA2BnD"}
@@ -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]="5997e503-3d44-5f75-822e-33295488ea3b")}catch(e){}}();
2
- import { CompilerOptions, LDMLKeyboardXMLSourceFileReaderOptions } from "@keymanapp/common-types";
3
- export interface LdmlCompilerOptions extends CompilerOptions {
4
- /**
5
- * Paths and other options required for reading .xml files
6
- */
7
- readerOptions: LDMLKeyboardXMLSourceFileReaderOptions;
8
- }
9
- //# debugId=5997e503-3d44-5f75-822e-33295488ea3b
10
- //# sourceMappingURL=ldml-compiler-options.d.ts.map
1
+ import { CompilerOptions, LDMLKeyboardXMLSourceFileReaderOptions } from "@keymanapp/common-types";
2
+ export interface LdmlCompilerOptions extends CompilerOptions {
3
+ /**
4
+ * Paths and other options required for reading .xml files
5
+ */
6
+ readerOptions: LDMLKeyboardXMLSourceFileReaderOptions;
7
+ }
8
+ //# sourceMappingURL=ldml-compiler-options.d.ts.map
@@ -1 +1 @@
1
- {"debug_id":"5997e503-3d44-5f75-822e-33295488ea3b","file":"ldml-compiler-options.d.ts","mappings":";AAAA,OAAO,EAAE,eAAe,EAAE,sCAAsC,EAAE,MAAM,yBAAyB,CAAC;AAElG,MAAM,WAAW,mBAAoB,SAAQ,eAAe;IAC1D;;OAEG;IACH,aAAa,EAAE,sCAAsC,CAAC;CACvD","names":[],"sourceRoot":"","sources":["../../../src/compiler/ldml-compiler-options.ts"],"version":3}
1
+ {"version":3,"file":"ldml-compiler-options.d.ts","sourceRoot":"","sources":["../../../src/compiler/ldml-compiler-options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,sCAAsC,EAAE,MAAM,yBAAyB,CAAC;AAElG,MAAM,WAAW,mBAAoB,SAAQ,eAAe;IAC1D;;OAEG;IACH,aAAa,EAAE,sCAAsC,CAAC;CACvD"}