@keymanapp/common-types 18.0.123-alpha → 18.0.126-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.
@@ -0,0 +1,173 @@
1
+ import { TouchLayoutPlatform as LayoutFormFactorSpec } from './keyman-touch-layout/keyman-touch-layout-file.js';
2
+ export type ComplexKeyboardStore = (string | {
3
+ t: 'd';
4
+ d: number;
5
+ } | {
6
+ ['t']: 'b';
7
+ })[];
8
+ type KeyEventStub = {};
9
+ type OutputTargetStub = {};
10
+ export interface EncodedVisualKeyboard {
11
+ /** Represents CSS font styling to use for VisualKeyboard text */
12
+ F: string;
13
+ /** Should there be a 102nd key? */
14
+ K102?: boolean;
15
+ /**
16
+ * Keyboard Layer Specification: an object-based map of layer name to the keycaps for its
17
+ * 65 keys. The 65 keys are ordered from left to right, then top to bottom.
18
+ *
19
+ * The key ID corresponding to each index of the array is specified within `Codes.dfltCodes`.
20
+ * Entries corresponding to `K_*` in `Codes.dfltCodes` are reserved for future use.
21
+ */
22
+ KLS?: {
23
+ [layerName: string]: string[];
24
+ };
25
+ /**
26
+ * @deprecated
27
+ * The older form for data in KLS - defines keycaps for 'default' keys, then 'shift' keys,
28
+ * in a single concatenated array.
29
+ */
30
+ BK?: string[];
31
+ }
32
+ export type LayoutSpec = {
33
+ "desktop"?: LayoutFormFactorSpec;
34
+ "phone"?: LayoutFormFactorSpec;
35
+ "tablet"?: LayoutFormFactorSpec;
36
+ };
37
+ export type KeyboardObject = {
38
+ /**
39
+ * group-start: the function triggering processing for the keyboard's
40
+ * "Unicode" start group, corresponding to `begin Unicode > use(_____)` in
41
+ * Keyman keyboard language.
42
+ * @param outputTarget The context to which the keystroke applies
43
+ * @param keystroke The full, pre-processed keystroke triggering
44
+ * keyboard-rule application.
45
+ */
46
+ gs(outputTarget: OutputTargetStub, keystroke: KeyEventStub): boolean;
47
+ /**
48
+ * group-newcontext: the function triggering processing for the keyboard's
49
+ * "NewContext" start group, corresponding to `begin NewContext > use(_____)`
50
+ * in Keyman keyboard language.
51
+ * @param outputTarget The new context to be used with future keystrokes
52
+ * @param keystroke A 'null' `KeyEvent` providing current modifier + state information.
53
+ */
54
+ gn?(outputTarget: OutputTargetStub, keystroke: KeyEventStub): boolean;
55
+ /**
56
+ * group-postkeystroke: the function triggering processing for the keyboard's
57
+ * "PostKeystroke" start group, corresponding to `begin PostKeystroke >
58
+ * use(_____)` in Keyman keyboard language.
59
+ * @param outputTarget The context altered by a recent keystroke. As a
60
+ * precondition, all changes due to `gs` / `begin Unicode` should already be
61
+ * applied.
62
+ * @param keystroke A 'null' `KeyEvent` providing current modifier + state information.
63
+ */
64
+ gpk?(outputTarget: OutputTargetStub, keystroke: KeyEventStub): boolean;
65
+ /**
66
+ * Keyboard ID: the uniquely-identifying name for this keyboard. Includes the standard
67
+ * `Keyboard_` prefix. May be 'namespaced' with a prefix corresponding to a package name
68
+ * within app/webview.
69
+ */
70
+ KI: string;
71
+ /**
72
+ * Keyboard Name: the human-readable name of the keyboard.
73
+ */
74
+ KN: string;
75
+ /**
76
+ * Encoded data usable to construct a desktop/hardware-oriented on-screen keyboard.
77
+ */
78
+ KV: EncodedVisualKeyboard;
79
+ /**
80
+ * Keyboard Language Code: set within select keyboards.
81
+ *
82
+ * Currently, it's only used to determine the need for CJK-picker support. Is missing
83
+ * in most compiled keyboards.
84
+ */
85
+ KLC?: string;
86
+ /**
87
+ * @deprecated
88
+ * Keyboard Language Code: set within select keyboards.
89
+ *
90
+ * Currently, it's only used to determine the need for CJK-picker support.
91
+ * Is (probably) an older name of KLC with the identical purpose. Is missing
92
+ * in most compiled keyboards.
93
+ */
94
+ LanguageCode?: string;
95
+ /**
96
+ * Keyboard CSS: provides the definition for custom keyboard style sheets
97
+ */
98
+ KCSS?: string;
99
+ /**
100
+ * Keyboard is RTL: a simple flag noting if the keyboard's script is RTL.
101
+ */
102
+ KRTL?: boolean;
103
+ /**
104
+ * Keyboard Modifier BitMask: a set of bitflags indicating which modifiers
105
+ * the keyboard's rules utilize. See also: `ModifierKeyConstants`.
106
+ */
107
+ KMBM?: number;
108
+ /**
109
+ * Keyboard Supplementary plane: set to 1 if the keyboard uses non-BMP Unicode
110
+ * characters.
111
+ */
112
+ KS?: number;
113
+ /**
114
+ * Keyman Visual Keyboard Layout: defines the touch-layout definitions used for
115
+ * 'phone' and 'tablet' form-factors.
116
+ */
117
+ KVKL?: LayoutSpec;
118
+ /**
119
+ * Keyboard is Mnemonic: set to 1 if the keyboard uses a mnemonic layout.
120
+ */
121
+ KM?: number;
122
+ /**
123
+ * KeyBoard VERsion: the version of this keyboard.
124
+ */
125
+ KBVER?: string;
126
+ /**
127
+ * Keyman VERsion: the version of Keyman Developer used to compile this keyboard.
128
+ */
129
+ KVER?: string;
130
+ /**
131
+ * Keyman Variable Stores: an array of the names of all variable stores used by the
132
+ * keyboard.
133
+ */
134
+ KVS?: (`s${number}`)[];
135
+ /**
136
+ * Keyboard Help: HTML help text, as specified by either the &kmw_helptext or &kmw_helpfile system stores.
137
+ *
138
+ * Reference: https://help.keyman.com/developer/language/reference/kmw_helptext,
139
+ * https://help.keyman.com/developer/language/reference/kmw_helpfile
140
+ */
141
+ KH?: string;
142
+ /**
143
+ * Keyboard Virtual Key Dictionary: the Developer-compiled, minified dictionary of virtual-key codes
144
+ */
145
+ KVKD?: string;
146
+ /**
147
+ * Keyboard Display Underlying: set to 1 if the desktop form of the keyboard
148
+ * should show the US QWERTY underlying keycaps. These may also appear on
149
+ * touch layouts if set and no touch-layout information is available.
150
+ */
151
+ KDU?: number;
152
+ /**
153
+ * Keyboard Help File: Embedded JS script designed for use with a keyboard's
154
+ * HTML help text. Always defined within the file referenced by &kmw_embedjs
155
+ * in a keyboard's source, though that file may also contain _other_ script
156
+ * definitions as well. (`KHF` must be explicitly defined within that file.)
157
+ * @param e Will be provided with the root element (a <div>) of the On-Screen Keyboard.
158
+ * @returns
159
+ */
160
+ KHF?: (e: any) => string;
161
+ /**
162
+ * Keyboard Notify Shift: Provided by CJK-picker keyboards to properly
163
+ * interface them with Keyman Engine for Web.
164
+ * @param {number} _PCommand event code (16,17,18) or 0; 16-18
165
+ * correspond to modifier codes when pressed, while 0 corresponds to loss of focus
166
+ * @param {Object} _PTarget target element
167
+ * @param {number} _PData 1 or 0
168
+ * @returns
169
+ */
170
+ KNS?: (_PCommand: number, _PTarget: OutputTargetStub, _PData: number) => void;
171
+ } & Record<`s${number}`, string>;
172
+ export {};
173
+ //# sourceMappingURL=keyboard-object.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"keyboard-object.d.ts","sourceRoot":"","sources":["../../src/keyboard-object.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,mBAAmB,IAAI,oBAAoB,EAAE,MAAM,mDAAmD,CAAC;AAEhH,MAAM,MAAM,oBAAoB,GAAG,CAAC,MAAM,GAAG;IAAE,CAAC,EAAE,GAAG,CAAC;IAAC,CAAC,EAAE,MAAM,CAAA;CAAE,GAAG;IAAE,CAAC,GAAG,CAAC,EAAE,GAAG,CAAA;CAAE,CAAC,EAAE,CAAC;AAGvF,KAAK,YAAY,GAAG,EAAE,CAAC;AAGvB,KAAK,gBAAgB,GAAG,EAAE,CAAC;AAE3B,MAAM,WAAW,qBAAqB;IACpC,iEAAiE;IACjE,CAAC,EAAE,MAAM,CAAC;IACV,mCAAmC;IACnC,IAAI,CAAC,EAAE,OAAO,CAAC;IACf;;;;;;OAMG;IACH,GAAG,CAAC,EAAE;QAAE,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;KAAE,CAAC;IACxC;;;;OAIG;IACH,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC;CACf;AAED,MAAM,MAAM,UAAU,GAAG;IACvB,SAAS,CAAC,EAAE,oBAAoB,CAAC;IACjC,OAAO,CAAC,EAAE,oBAAoB,CAAC;IAC/B,QAAQ,CAAC,EAAE,oBAAoB,CAAA;CAChC,CAAA;AAED,MAAM,MAAM,cAAc,GAAG;IAC3B;;;;;;;OAOG;IACH,EAAE,CAAC,YAAY,EAAE,gBAAgB,EAAE,SAAS,EAAE,YAAY,GAAG,OAAO,CAAC;IAErE;;;;;;OAMG;IACH,EAAE,CAAC,CAAC,YAAY,EAAE,gBAAgB,EAAE,SAAS,EAAE,YAAY,GAAG,OAAO,CAAC;IAEtE;;;;;;;;OAQG;IACH,GAAG,CAAC,CAAC,YAAY,EAAE,gBAAgB,EAAE,SAAS,EAAE,YAAY,GAAG,OAAO,CAAC;IAEvE;;;;OAIG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,EAAE,EAAE,qBAAqB,CAAC;IAC1B;;;;;OAKG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;;;;;;OAOG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;IACf;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ;;;OAGG;IACH,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,GAAG,CAAC,EAAE,CAAC,IAAI,MAAM,EAAE,CAAC,EAAE,CAAC;IACvB;;;;;OAKG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;;;;;;OAOG;IACH,GAAG,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,KAAK,MAAM,CAAC;IAEzB;;;;;;;;OAQG;IACH,GAAG,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;CAC/E,GAAG,MAAM,CAAC,IAAI,MAAM,EAAE,EAAE,MAAM,CAAC,CAAA"}
@@ -0,0 +1,5 @@
1
+
2
+ !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]="e025831a-be7c-539c-bc7b-c96a15dfa583")}catch(e){}}();
3
+ export {};
4
+ //# sourceMappingURL=keyboard-object.js.map
5
+ //# debugId=e025831a-be7c-539c-bc7b-c96a15dfa583
@@ -0,0 +1 @@
1
+ {"version":3,"file":"keyboard-object.js","sources":["../../src/keyboard-object.ts"],"sourceRoot":"","names":[],"mappings":"","debug_id":"e025831a-be7c-539c-bc7b-c96a15dfa583"}
@@ -20,4 +20,5 @@ export { UnicodeSetParser, UnicodeSet } from './ldml-keyboard/unicodeset-parser-
20
20
  export { VariableParser, MarkerParser } from './ldml-keyboard/pattern-parser.js';
21
21
  export { ElementString } from './kmx/kmx-plus/element-string.js';
22
22
  export { USVString, CasingForm, CasingFunction, TextWithProbability, LexiconTraversal, LexicalModel, LexicalModelPunctuation, Transform, Suggestion, Reversion, Keep, SuggestionTag, Context, Distribution, Outcome, WithOutcome, ProbabilityMass, Configuration, Capabilities, WordBreakingFunction, Span } from './lexical-model-types.js';
23
+ export * as KeymanWebKeyboard from './keyboard-object.js';
23
24
  //# sourceMappingURL=main.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../src/main.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,GAAG,MAAM,cAAc,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAC7E,OAAO,KAAK,aAAa,MAAM,yBAAyB,CAAC;AAEzD,OAAO,KAAK,cAAc,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACpE,OAAO,KAAK,OAAO,MAAM,mBAAmB,CAAC;AAG7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AACtE,OAAO,KAAK,SAAS,MAAM,mCAAmC,CAAC;AAC/D,OAAO,EAAE,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAE1E,OAAO,KAAK,WAAW,MAAM,mDAAmD,CAAC;AAEjF,OAAO,KAAK,WAAW,MAAM,4BAA4B,CAAC;AAE1D,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AACpE,OAAO,KAAK,IAAI,MAAM,gBAAgB,CAAC;AAEvC,OAAO,KAAK,eAAe,MAAM,sBAAsB,CAAC;AAExD,OAAO,KAAK,OAAO,MAAM,cAAc,CAAC;AACxC,OAAO,KAAK,gBAAgB,MAAM,wBAAwB,CAAC;AAE3D,OAAO,KAAK,OAAO,MAAM,4BAA4B,CAAC;AAEtD,OAAO,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,0CAA0C,CAAC;AACxF,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjF,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AAEjE,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,cAAc,EAAE,mBAAmB,EAAE,gBAAgB,EAAE,YAAY,EAAE,uBAAuB,EAAE,SAAS,EAAE,UAAU,EAAE,SAAS,EAAE,IAAI,EAAE,aAAa,EAAE,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,aAAa,EAAE,YAAY,EAAE,oBAAoB,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAC"}
1
+ {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../src/main.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,GAAG,MAAM,cAAc,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAC7E,OAAO,KAAK,aAAa,MAAM,yBAAyB,CAAC;AAEzD,OAAO,KAAK,cAAc,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACpE,OAAO,KAAK,OAAO,MAAM,mBAAmB,CAAC;AAG7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AACtE,OAAO,KAAK,SAAS,MAAM,mCAAmC,CAAC;AAC/D,OAAO,EAAE,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAE1E,OAAO,KAAK,WAAW,MAAM,mDAAmD,CAAC;AAEjF,OAAO,KAAK,WAAW,MAAM,4BAA4B,CAAC;AAE1D,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AACpE,OAAO,KAAK,IAAI,MAAM,gBAAgB,CAAC;AAEvC,OAAO,KAAK,eAAe,MAAM,sBAAsB,CAAC;AAExD,OAAO,KAAK,OAAO,MAAM,cAAc,CAAC;AACxC,OAAO,KAAK,gBAAgB,MAAM,wBAAwB,CAAC;AAE3D,OAAO,KAAK,OAAO,MAAM,4BAA4B,CAAC;AAEtD,OAAO,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,0CAA0C,CAAC;AACxF,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjF,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AAEjE,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,cAAc,EAAE,mBAAmB,EAAE,gBAAgB,EAAE,YAAY,EAAE,uBAAuB,EAAE,SAAS,EAAE,UAAU,EAAE,SAAS,EAAE,IAAI,EAAE,aAAa,EAAE,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,aAAa,EAAE,YAAY,EAAE,oBAAoB,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAC;AAE7U,OAAO,KAAK,iBAAiB,MAAM,sBAAsB,CAAC"}
package/build/src/main.js CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
- !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]="e8b94503-5141-557e-948c-0b00d0582d8a")}catch(e){}}();
2
+ !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]="605ce5ad-9e2b-568d-95d5-79c3f227d26a")}catch(e){}}();
3
3
  export * as KMX from './kmx/kmx.js';
4
4
  export { KmxFileReader, KmxFileReaderError } from './kmx/kmx-file-reader.js';
5
5
  export * as KeymanTargets from './kmx/keyman-targets.js';
@@ -22,5 +22,6 @@ export * as KMXPlus from './kmx/kmx-plus/kmx-plus.js';
22
22
  export { UnicodeSet } from './ldml-keyboard/unicodeset-parser-api.js';
23
23
  export { VariableParser, MarkerParser } from './ldml-keyboard/pattern-parser.js';
24
24
  export { ElementString } from './kmx/kmx-plus/element-string.js';
25
+ export * as KeymanWebKeyboard from './keyboard-object.js';
25
26
  //# sourceMappingURL=main.js.map
26
- //# debugId=e8b94503-5141-557e-948c-0b00d0582d8a
27
+ //# debugId=605ce5ad-9e2b-568d-95d5-79c3f227d26a
@@ -1 +1 @@
1
- {"version":3,"file":"main.js","sources":["../../src/main.ts"],"sourceRoot":"","names":[],"mappings":";;AAAA,OAAO,KAAK,GAAG,MAAM,cAAc,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAC7E,OAAO,KAAK,aAAa,MAAM,yBAAyB,CAAC;AAEzD,OAAO,KAAK,cAAc,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACpE,OAAO,KAAK,OAAO,MAAM,mBAAmB,CAAC;AAG7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AACtE,OAAO,KAAK,SAAS,MAAM,mCAAmC,CAAC;AAC/D,OAAO,EAAE,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAE1E,OAAO,KAAK,WAAW,MAAM,mDAAmD,CAAC;AAEjF,OAAO,KAAK,WAAW,MAAM,4BAA4B,CAAC;AAE1D,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AACpE,OAAO,KAAK,IAAI,MAAM,gBAAgB,CAAC;AAEvC,OAAO,KAAK,eAAe,MAAM,sBAAsB,CAAC;AAExD,OAAO,KAAK,OAAO,MAAM,cAAc,CAAC;AACxC,OAAO,KAAK,gBAAgB,MAAM,wBAAwB,CAAC;AAE3D,OAAO,KAAK,OAAO,MAAM,4BAA4B,CAAC;AACtD,gDAAgD;AAChD,OAAO,EAAoB,UAAU,EAAE,MAAM,0CAA0C,CAAC;AACxF,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjF,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC","debug_id":"e8b94503-5141-557e-948c-0b00d0582d8a"}
1
+ {"version":3,"file":"main.js","sources":["../../src/main.ts"],"sourceRoot":"","names":[],"mappings":";;AAAA,OAAO,KAAK,GAAG,MAAM,cAAc,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAC7E,OAAO,KAAK,aAAa,MAAM,yBAAyB,CAAC;AAEzD,OAAO,KAAK,cAAc,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACpE,OAAO,KAAK,OAAO,MAAM,mBAAmB,CAAC;AAG7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AACtE,OAAO,KAAK,SAAS,MAAM,mCAAmC,CAAC;AAC/D,OAAO,EAAE,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAE1E,OAAO,KAAK,WAAW,MAAM,mDAAmD,CAAC;AAEjF,OAAO,KAAK,WAAW,MAAM,4BAA4B,CAAC;AAE1D,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AACpE,OAAO,KAAK,IAAI,MAAM,gBAAgB,CAAC;AAEvC,OAAO,KAAK,eAAe,MAAM,sBAAsB,CAAC;AAExD,OAAO,KAAK,OAAO,MAAM,cAAc,CAAC;AACxC,OAAO,KAAK,gBAAgB,MAAM,wBAAwB,CAAC;AAE3D,OAAO,KAAK,OAAO,MAAM,4BAA4B,CAAC;AACtD,gDAAgD;AAChD,OAAO,EAAoB,UAAU,EAAE,MAAM,0CAA0C,CAAC;AACxF,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjF,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AAIjE,OAAO,KAAK,iBAAiB,MAAM,sBAAsB,CAAC","debug_id":"605ce5ad-9e2b-568d-95d5-79c3f227d26a"}
package/package.json CHANGED
@@ -31,8 +31,8 @@
31
31
  "url": "https://github.com/keymanapp/keyman/issues"
32
32
  },
33
33
  "dependencies": {
34
- "@keymanapp/ldml-keyboard-constants": "18.0.123-alpha",
35
- "@keymanapp/keyman-version": "18.0.123-alpha",
34
+ "@keymanapp/ldml-keyboard-constants": "18.0.126-alpha",
35
+ "@keymanapp/keyman-version": "18.0.126-alpha",
36
36
  "restructure": "3.0.1"
37
37
  },
38
38
  "devDependencies": {
@@ -81,5 +81,5 @@
81
81
  ]
82
82
  },
83
83
  "sideEffects": false,
84
- "version": "18.0.123-alpha"
84
+ "version": "18.0.126-alpha"
85
85
  }