@keymanapp/ldml-keyboard-constants 17.0.154-alpha → 17.0.156-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.
@@ -1,428 +1,432 @@
1
- /**
2
- * Defines the section identifiers and ensures that we include each and every
3
- * one of them in the `sections` block and gives us a type which we can iterate
4
- * through.
5
- */
6
- export type SectionIdent = 'sect' | 'bksp' | 'disp' | 'elem' | 'keys' | 'layr' | 'list' | 'loca' | 'meta' | 'name' | 'strs' | 'tran' | 'uset' | 'vars' | 'vkey';
7
- type SectionMap = {
8
- [id in SectionIdent]: SectionIdent;
9
- };
10
- /**
11
- * Constants for the KMXPlus data format
12
- * These are shared between the data access layer and the compiler.
13
- * Note that the section IDs (section_keys etc.) are 32 bit hex
14
- * values that are designed to appear as text when written in little endian
15
- * format, so 0x7379656b = 'keys'
16
- */
17
- declare class Constants {
18
- /**
19
- * The version of the LDML processor
20
- */
21
- readonly version = "1.0";
22
- /**
23
- * The techpreview CLDR version
24
- */
25
- readonly cldr_version_techpreview = "techpreview";
26
- /**
27
- * The latest CLDR version
28
- */
29
- readonly cldr_version_latest = "techpreview";
30
- /**
31
- * import base
32
- */
33
- readonly cldr_import_base = "cldr";
34
- /**
35
- * implied keys file
36
- */
37
- readonly cldr_implied_keys_import: string;
38
- /**
39
- * Length of a raw section header, in bytes
40
- */
41
- readonly length_header = 8;
42
- /**
43
- * Minimum length of the 'sect' section, not including entries
44
- */
45
- readonly length_sect = 16;
46
- /**
47
- * Length of each item in the 'sect' section variable part
48
- */
49
- readonly length_sect_item = 8;
50
- /**
51
- * Minimum length of the 'bksp' section, not including entries
52
- */
53
- readonly length_bksp = 12;
54
- /**
55
- * Length of each item in the 'bksp' section variable part
56
- */
57
- readonly length_bksp_item = 16;
58
- /**
59
- * bitwise or value for error="fail" in transform
60
- */
61
- readonly bksp_flags_error = 1;
62
- /**
63
- * Minimum length of the 'disp' section, not including entries
64
- */
65
- readonly length_disp = 16;
66
- /**
67
- * Length of each entry in the 'disp' variable part
68
- */
69
- readonly length_disp_item = 8;
70
- /**
71
- * Minimum length of the 'elem' section, not including entries
72
- */
73
- readonly length_elem = 12;
74
- /**
75
- * Length of each elem string in the 'elem' section variable part
76
- */
77
- readonly length_elem_item = 8;
78
- /**
79
- * Length of each element in an elem string
80
- */
81
- readonly length_elem_item_element = 8;
82
- /**
83
- * bitwise or value for type in elem[elemstr][element].flags.
84
- * If bits are 00b, then 'element' is a UTF-32LE codepoint.
85
- * If bits are 01b, then 'element' is a string index.
86
- * If bits are 10b (2), then 'element' is a uset index.
87
- *
88
- * `type = flags & elem_flags_type`
89
- */
90
- readonly elem_flags_type = 3;
91
- readonly elem_flags_type_char = 0;
92
- readonly elem_flags_type_str = 1;
93
- readonly elem_flags_type_uset = 2;
94
- /**
95
- * bitwise or value for tertiary_base in elem[elemstr][element].flags.
96
- * If bit is 1, then tertiary_base is true.
97
- * If bit is 0, then tertiary_base is false.
98
- *
99
- * Used only for `ordr`-type element strings.
100
- *
101
- * `tertiary_base = flags & elem_flags_tertiary_base`
102
- */
103
- readonly elem_flags_tertiary_base = 4;
104
- /**
105
- * bitwise or value for tertiary_base in elem[elemstr][element].flags.
106
- * If bit is 1, then prebase is true.
107
- * If bit is 0, then prebase is false.
108
- *
109
- * Used only for `ordr`-type element strings.
110
- *
111
- * `prebase = flags & elem_flags_prebase`
112
- */
113
- readonly elem_flags_prebase = 8;
114
- /**
115
- * bitwise mask for order in elem[elemstr][element].flags.
116
- *
117
- * Used only for `ordr`-type element strings. 1 byte signed integer.
118
- *
119
- * `order = (flags & elem_flags_order_mask) >> elem_flags_order_bitshift`
120
- */
121
- readonly elem_flags_order_mask = 16711680;
122
- /**
123
- * bit shift for order in elem[elemstr][element].flags.
124
- *
125
- * Used only for `ordr`-type element strings.
126
- *
127
- * `order = (flags & elem_flags_order_mask) >> elem_flags_order_bitshift`
128
- */
129
- readonly elem_flags_order_bitshift = 16;
130
- /**
131
- * bitwise mask for tertiary sort in elem[elemstr][element].flags.
132
- *
133
- * Used only for `ordr`-type element strings. 1 byte signed integer.
134
- *
135
- * `tertiary = (flags & elem_flags_tertiary_mask) >> elem_flags_tertiary_bitshift`
136
- */
137
- readonly elem_flags_tertiary_mask = 4278190080;
138
- /**
139
- * bit shift for tertiary sort in elem[elemstr][element].flags.
140
- *
141
- * Used only for `ordr`-type element strings. 1 byte signed integer.
142
- *
143
- * `order = (flags & elem_flags_tertiary_mask) >> elem_flags_tertiary_bitshift`
144
- */
145
- readonly elem_flags_tertiary_bitshift = 24;
146
- /**
147
- * Minimum length of the 'finl' section, not including entries
148
- */
149
- readonly length_finl = 8;
150
- /**
151
- * Length of each item in the 'finl' section variable part
152
- */
153
- readonly length_finl_item = 16;
154
- /**
155
- * bitwise or value for error="fail" in transform
156
- */
157
- readonly finl_flags_error = 1;
158
- /**
159
- * Constant for no modifiers
160
- */
161
- readonly keys_mod_none = 0;
162
- /**
163
- * bitmask for Left Alt modifier key
164
- */
165
- readonly keys_mod_altL = 4;
166
- /**
167
- * bitmask for Right Alt (AltGr) modifier key
168
- */
169
- readonly keys_mod_altR = 8;
170
- /**
171
- * bitmask for either Alt (Windows) or Option (Apple) modifier keys
172
- */
173
- readonly keys_mod_alt = 64;
174
- /**
175
- * bitmask for Caps modifier key
176
- */
177
- readonly keys_mod_caps = 256;
178
- /**
179
- * bitmask for Left control modifier key
180
- */
181
- readonly keys_mod_ctrlL = 1;
182
- /**
183
- * bitmask for Right control modifier key
184
- */
185
- readonly keys_mod_ctrlR = 2;
186
- /**
187
- * bitmask for either Control modifier key
188
- */
189
- readonly keys_mod_ctrl = 32;
190
- /**
191
- * bitmask for either shift.
192
- */
193
- readonly keys_mod_shift = 16;
194
- /**
195
- * Convenience map for modifiers
196
- */
197
- readonly keys_mod_map: Map<string, number>;
198
- /**
199
- * a mask combining all valid modifier bits
200
- */
201
- readonly keys_mod_all: number;
202
- /**
203
- * Minimum length of the 'keys' section not including variable parts
204
- */
205
- readonly length_keys = 24;
206
- /**
207
- * Length of each item in the 'keys' keys sub-table
208
- */
209
- readonly length_keys_key = 36;
210
- /**
211
- * Length of each item in the 'keys' flick lists sub-table
212
- */
213
- readonly length_keys_flick_list = 12;
214
- /**
215
- * Length of each item in the 'keys' flick elements sub-table
216
- */
217
- readonly length_keys_flick_element = 12;
218
- /**
219
- * Length of each item in the 'keys.kmap' key map subtable
220
- */
221
- readonly length_keys_kmap = 12;
222
- /**
223
- * 0 if to is a char, 1 if it is a string
224
- */
225
- readonly keys_key_flags_extend = 1;
226
- /**
227
- * 1 if the key is a gap
228
- */
229
- readonly keys_key_flags_gap = 2;
230
- /**
231
- * 1 if the key is transform=no
232
- */
233
- readonly keys_key_flags_notransform = 4;
234
- /**
235
- * 0 if to is a char, 1 if it is a string
236
- */
237
- readonly keys_flick_flags_extend = 1;
238
- /**
239
- * Minimum length of the 'layr' section not including variable parts
240
- */
241
- readonly length_layr = 24;
242
- /**
243
- * Length of each layer list in the 'layr' section variable part
244
- */
245
- readonly length_layr_list = 16;
246
- /**
247
- * for the 'hardware' field indicating a touch keyboard, non-hardware
248
- */
249
- readonly layr_list_hardware_touch = 0;
250
- /**
251
- * for the 'hardware' field indicating an abnt2 layout
252
- */
253
- readonly layr_list_hardware_abnt2 = 1;
254
- /**
255
- * for the 'hardware' field indicating an iso layout
256
- */
257
- readonly layr_list_hardware_iso = 2;
258
- /**
259
- * for the 'hardware' field indicating a jis layout
260
- */
261
- readonly layr_list_hardware_jis = 3;
262
- /**
263
- * for the 'hardware' field indicating a us layout
264
- */
265
- readonly layr_list_hardware_us = 4;
266
- /**
267
- * Convenience map of layr_list_hardware field values
268
- */
269
- readonly layr_list_hardware_map: Map<String, number>;
270
- /**
271
- * Length of each layer entry in the 'layr' section variable part
272
- */
273
- readonly length_layr_entry = 16;
274
- /**
275
- * Length of each row entry in the 'layr' section variable part
276
- */
277
- readonly length_layr_row = 8;
278
- /**
279
- * Length of each key entry in the 'layr' section variable part
280
- */
281
- readonly length_layr_key = 4;
282
- /**
283
- * Minimum length of the 'list' section not including variable parts
284
- */
285
- readonly length_list = 16;
286
- /**
287
- * Length of each list item in the 'list' list section variable part
288
- */
289
- readonly length_list_item = 8;
290
- /**
291
- * Length of each list item in the 'list' indices section variable part
292
- */
293
- readonly length_list_index = 4;
294
- /**
295
- * Minimum length of the 'loca' section not including variable parts
296
- */
297
- readonly length_loca = 12;
298
- /**
299
- * Length of each item in the 'loca' section variable part
300
- */
301
- readonly length_loca_item = 4;
302
- /**
303
- * length of the 'meta' section
304
- */
305
- readonly length_meta = 36;
306
- /**
307
- * bitwise or value for fallback=omit in meta.settings
308
- */
309
- readonly meta_settings_fallback_omit = 1;
310
- /**
311
- * bitwise or value for transformFailure=omit in meta.settings
312
- */
313
- readonly meta_settings_transformFailure_omit = 2;
314
- /**
315
- * bitwise or value for transformPartial=hide in meta.settings
316
- */
317
- readonly meta_settings_transformPartial_hide = 4;
318
- /**
319
- * Minimum length of the 'name' section not including variable parts
320
- */
321
- readonly length_name = 12;
322
- /**
323
- * Length of each item in the 'name' section variable part
324
- */
325
- readonly length_name_item = 4;
326
- /**
327
- * Minimum length of the 'strs' section not including variable parts
328
- */
329
- readonly length_strs = 12;
330
- /**
331
- * Length of each item in the 'strs' section variable part
332
- */
333
- readonly length_strs_item = 8;
334
- /**
335
- * Minimum length of the 'tran' section, not including entries
336
- */
337
- readonly length_tran = 20;
338
- /**
339
- * Length of each transform group item
340
- */
341
- readonly length_tran_group = 12;
342
- /**
343
- * Length of each transform item
344
- */
345
- readonly length_tran_transform = 16;
346
- /**
347
- * Length of each reorder subtable item
348
- */
349
- readonly length_tran_reorder = 8;
350
- /**
351
- * bitwise or value for error="fail" in transform
352
- */
353
- readonly tran_flags_error = 1;
354
- /**
355
- * this group is full of transform items
356
- */
357
- readonly tran_group_type_transform = 0;
358
- /**
359
- * this group is full of reorder items
360
- */
361
- readonly tran_group_type_reorder = 1;
362
- /**
363
- * Minimum length of the 'vkey' section not including variable parts
364
- */
365
- readonly length_vkey = 12;
366
- /**
367
- * Length of each item in the 'vkey' section variable part
368
- */
369
- readonly length_vkey_item = 8;
370
- /**
371
- * Minimum length of the 'vars' section not including variable parts
372
- */
373
- readonly length_vars = 16;
374
- /**
375
- * Length of each item in the 'vars' section variable part
376
- */
377
- readonly length_vars_item = 16;
378
- /**
379
- * String variable
380
- */
381
- readonly vars_entry_type_string = 0;
382
- /**
383
- * Set variable
384
- */
385
- readonly vars_entry_type_set = 1;
386
- /**
387
- * unicodeSet variable
388
- */
389
- readonly vars_entry_type_unicodeSet = 2;
390
- readonly length_uset = 16;
391
- /**
392
- * Length of each entry in the uset.usets subtable
393
- */
394
- readonly length_uset_uset = 12;
395
- /**
396
- * Length of each entry in the uset.ranges subtable
397
- */
398
- readonly length_uset_range = 8;
399
- /**
400
- * All section IDs.
401
- */
402
- readonly section: SectionMap;
403
- /**
404
- * Use to convert 4-char string into hex
405
- * @param id section id such as 'sect'
406
- * @returns hex ID such as 0x74636573
407
- */
408
- hex_section_id(id: string): number;
409
- /**
410
- * Use to convert hex into 4-char string
411
- * @param hex section ID such as 0x74636573
412
- * @returns string such as 'sect'
413
- */
414
- str_section_id(hex: number): string;
415
- /** sentinel value indicating a marker follows */
416
- readonly marker_sentinel = 65535;
417
- /** minimum usable marker index */
418
- readonly marker_min_index = 1;
419
- /** index value referring to the 'any' marker match */
420
- readonly marker_any_index = 65535;
421
- /** maximum marker index prior to the 'any' value */
422
- readonly marker_max_index: number;
423
- /** maximum count of markers (not including 'any') */
424
- readonly marker_max_count: number;
425
- }
426
- export declare const constants: Constants;
427
- export {};
428
- //# sourceMappingURL=keyboardprocessor_ldml.d.ts.map
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]="87e8be3a-5e3b-5160-a681-bb1f60e90f5a")}catch(e){}}();
2
+ /**
3
+ * Defines the section identifiers and ensures that we include each and every
4
+ * one of them in the `sections` block and gives us a type which we can iterate
5
+ * through.
6
+ */
7
+ export type SectionIdent = 'sect' | 'bksp' | 'disp' | 'elem' | 'keys' | 'layr' | 'list' | 'loca' | 'meta' | 'name' | 'strs' | 'tran' | 'uset' | 'vars' | 'vkey';
8
+ type SectionMap = {
9
+ [id in SectionIdent]: SectionIdent;
10
+ };
11
+ /**
12
+ * Constants for the KMXPlus data format
13
+ * These are shared between the data access layer and the compiler.
14
+ * Note that the section IDs (section_keys etc.) are 32 bit hex
15
+ * values that are designed to appear as text when written in little endian
16
+ * format, so 0x7379656b = 'keys'
17
+ */
18
+ declare class Constants {
19
+ /**
20
+ * The version of the LDML processor
21
+ */
22
+ readonly version = "1.0";
23
+ /**
24
+ * The techpreview CLDR version
25
+ */
26
+ readonly cldr_version_techpreview = "techpreview";
27
+ /**
28
+ * The latest CLDR version
29
+ */
30
+ readonly cldr_version_latest = "techpreview";
31
+ /**
32
+ * import base
33
+ */
34
+ readonly cldr_import_base = "cldr";
35
+ /**
36
+ * implied keys file
37
+ */
38
+ readonly cldr_implied_keys_import: string;
39
+ /**
40
+ * Length of a raw section header, in bytes
41
+ */
42
+ readonly length_header = 8;
43
+ /**
44
+ * Minimum length of the 'sect' section, not including entries
45
+ */
46
+ readonly length_sect = 16;
47
+ /**
48
+ * Length of each item in the 'sect' section variable part
49
+ */
50
+ readonly length_sect_item = 8;
51
+ /**
52
+ * Minimum length of the 'bksp' section, not including entries
53
+ */
54
+ readonly length_bksp = 12;
55
+ /**
56
+ * Length of each item in the 'bksp' section variable part
57
+ */
58
+ readonly length_bksp_item = 16;
59
+ /**
60
+ * bitwise or value for error="fail" in transform
61
+ */
62
+ readonly bksp_flags_error = 1;
63
+ /**
64
+ * Minimum length of the 'disp' section, not including entries
65
+ */
66
+ readonly length_disp = 16;
67
+ /**
68
+ * Length of each entry in the 'disp' variable part
69
+ */
70
+ readonly length_disp_item = 8;
71
+ /**
72
+ * Minimum length of the 'elem' section, not including entries
73
+ */
74
+ readonly length_elem = 12;
75
+ /**
76
+ * Length of each elem string in the 'elem' section variable part
77
+ */
78
+ readonly length_elem_item = 8;
79
+ /**
80
+ * Length of each element in an elem string
81
+ */
82
+ readonly length_elem_item_element = 8;
83
+ /**
84
+ * bitwise or value for type in elem[elemstr][element].flags.
85
+ * If bits are 00b, then 'element' is a UTF-32LE codepoint.
86
+ * If bits are 01b, then 'element' is a string index.
87
+ * If bits are 10b (2), then 'element' is a uset index.
88
+ *
89
+ * `type = flags & elem_flags_type`
90
+ */
91
+ readonly elem_flags_type = 3;
92
+ readonly elem_flags_type_char = 0;
93
+ readonly elem_flags_type_str = 1;
94
+ readonly elem_flags_type_uset = 2;
95
+ /**
96
+ * bitwise or value for tertiary_base in elem[elemstr][element].flags.
97
+ * If bit is 1, then tertiary_base is true.
98
+ * If bit is 0, then tertiary_base is false.
99
+ *
100
+ * Used only for `ordr`-type element strings.
101
+ *
102
+ * `tertiary_base = flags & elem_flags_tertiary_base`
103
+ */
104
+ readonly elem_flags_tertiary_base = 4;
105
+ /**
106
+ * bitwise or value for tertiary_base in elem[elemstr][element].flags.
107
+ * If bit is 1, then prebase is true.
108
+ * If bit is 0, then prebase is false.
109
+ *
110
+ * Used only for `ordr`-type element strings.
111
+ *
112
+ * `prebase = flags & elem_flags_prebase`
113
+ */
114
+ readonly elem_flags_prebase = 8;
115
+ /**
116
+ * bitwise mask for order in elem[elemstr][element].flags.
117
+ *
118
+ * Used only for `ordr`-type element strings. 1 byte signed integer.
119
+ *
120
+ * `order = (flags & elem_flags_order_mask) >> elem_flags_order_bitshift`
121
+ */
122
+ readonly elem_flags_order_mask = 16711680;
123
+ /**
124
+ * bit shift for order in elem[elemstr][element].flags.
125
+ *
126
+ * Used only for `ordr`-type element strings.
127
+ *
128
+ * `order = (flags & elem_flags_order_mask) >> elem_flags_order_bitshift`
129
+ */
130
+ readonly elem_flags_order_bitshift = 16;
131
+ /**
132
+ * bitwise mask for tertiary sort in elem[elemstr][element].flags.
133
+ *
134
+ * Used only for `ordr`-type element strings. 1 byte signed integer.
135
+ *
136
+ * `tertiary = (flags & elem_flags_tertiary_mask) >> elem_flags_tertiary_bitshift`
137
+ */
138
+ readonly elem_flags_tertiary_mask = 4278190080;
139
+ /**
140
+ * bit shift for tertiary sort in elem[elemstr][element].flags.
141
+ *
142
+ * Used only for `ordr`-type element strings. 1 byte signed integer.
143
+ *
144
+ * `order = (flags & elem_flags_tertiary_mask) >> elem_flags_tertiary_bitshift`
145
+ */
146
+ readonly elem_flags_tertiary_bitshift = 24;
147
+ /**
148
+ * Minimum length of the 'finl' section, not including entries
149
+ */
150
+ readonly length_finl = 8;
151
+ /**
152
+ * Length of each item in the 'finl' section variable part
153
+ */
154
+ readonly length_finl_item = 16;
155
+ /**
156
+ * bitwise or value for error="fail" in transform
157
+ */
158
+ readonly finl_flags_error = 1;
159
+ /**
160
+ * Constant for no modifiers
161
+ */
162
+ readonly keys_mod_none = 0;
163
+ /**
164
+ * bitmask for Left Alt modifier key
165
+ */
166
+ readonly keys_mod_altL = 4;
167
+ /**
168
+ * bitmask for Right Alt (AltGr) modifier key
169
+ */
170
+ readonly keys_mod_altR = 8;
171
+ /**
172
+ * bitmask for either Alt (Windows) or Option (Apple) modifier keys
173
+ */
174
+ readonly keys_mod_alt = 64;
175
+ /**
176
+ * bitmask for Caps modifier key
177
+ */
178
+ readonly keys_mod_caps = 256;
179
+ /**
180
+ * bitmask for Left control modifier key
181
+ */
182
+ readonly keys_mod_ctrlL = 1;
183
+ /**
184
+ * bitmask for Right control modifier key
185
+ */
186
+ readonly keys_mod_ctrlR = 2;
187
+ /**
188
+ * bitmask for either Control modifier key
189
+ */
190
+ readonly keys_mod_ctrl = 32;
191
+ /**
192
+ * bitmask for either shift.
193
+ */
194
+ readonly keys_mod_shift = 16;
195
+ /**
196
+ * Convenience map for modifiers
197
+ */
198
+ readonly keys_mod_map: Map<string, number>;
199
+ /**
200
+ * a mask combining all valid modifier bits
201
+ */
202
+ readonly keys_mod_all: number;
203
+ /**
204
+ * Minimum length of the 'keys' section not including variable parts
205
+ */
206
+ readonly length_keys = 24;
207
+ /**
208
+ * Length of each item in the 'keys' keys sub-table
209
+ */
210
+ readonly length_keys_key = 36;
211
+ /**
212
+ * Length of each item in the 'keys' flick lists sub-table
213
+ */
214
+ readonly length_keys_flick_list = 12;
215
+ /**
216
+ * Length of each item in the 'keys' flick elements sub-table
217
+ */
218
+ readonly length_keys_flick_element = 12;
219
+ /**
220
+ * Length of each item in the 'keys.kmap' key map subtable
221
+ */
222
+ readonly length_keys_kmap = 12;
223
+ /**
224
+ * 0 if to is a char, 1 if it is a string
225
+ */
226
+ readonly keys_key_flags_extend = 1;
227
+ /**
228
+ * 1 if the key is a gap
229
+ */
230
+ readonly keys_key_flags_gap = 2;
231
+ /**
232
+ * 1 if the key is transform=no
233
+ */
234
+ readonly keys_key_flags_notransform = 4;
235
+ /**
236
+ * 0 if to is a char, 1 if it is a string
237
+ */
238
+ readonly keys_flick_flags_extend = 1;
239
+ /**
240
+ * Minimum length of the 'layr' section not including variable parts
241
+ */
242
+ readonly length_layr = 24;
243
+ /**
244
+ * Length of each layer list in the 'layr' section variable part
245
+ */
246
+ readonly length_layr_list = 16;
247
+ /**
248
+ * for the 'hardware' field indicating a touch keyboard, non-hardware
249
+ */
250
+ readonly layr_list_hardware_touch = 0;
251
+ /**
252
+ * for the 'hardware' field indicating an abnt2 layout
253
+ */
254
+ readonly layr_list_hardware_abnt2 = 1;
255
+ /**
256
+ * for the 'hardware' field indicating an iso layout
257
+ */
258
+ readonly layr_list_hardware_iso = 2;
259
+ /**
260
+ * for the 'hardware' field indicating a jis layout
261
+ */
262
+ readonly layr_list_hardware_jis = 3;
263
+ /**
264
+ * for the 'hardware' field indicating a us layout
265
+ */
266
+ readonly layr_list_hardware_us = 4;
267
+ /**
268
+ * Convenience map of layr_list_hardware field values
269
+ */
270
+ readonly layr_list_hardware_map: Map<String, number>;
271
+ /**
272
+ * Length of each layer entry in the 'layr' section variable part
273
+ */
274
+ readonly length_layr_entry = 16;
275
+ /**
276
+ * Length of each row entry in the 'layr' section variable part
277
+ */
278
+ readonly length_layr_row = 8;
279
+ /**
280
+ * Length of each key entry in the 'layr' section variable part
281
+ */
282
+ readonly length_layr_key = 4;
283
+ /**
284
+ * Minimum length of the 'list' section not including variable parts
285
+ */
286
+ readonly length_list = 16;
287
+ /**
288
+ * Length of each list item in the 'list' list section variable part
289
+ */
290
+ readonly length_list_item = 8;
291
+ /**
292
+ * Length of each list item in the 'list' indices section variable part
293
+ */
294
+ readonly length_list_index = 4;
295
+ /**
296
+ * Minimum length of the 'loca' section not including variable parts
297
+ */
298
+ readonly length_loca = 12;
299
+ /**
300
+ * Length of each item in the 'loca' section variable part
301
+ */
302
+ readonly length_loca_item = 4;
303
+ /**
304
+ * length of the 'meta' section
305
+ */
306
+ readonly length_meta = 36;
307
+ /**
308
+ * bitwise or value for fallback=omit in meta.settings
309
+ */
310
+ readonly meta_settings_fallback_omit = 1;
311
+ /**
312
+ * bitwise or value for transformFailure=omit in meta.settings
313
+ */
314
+ readonly meta_settings_transformFailure_omit = 2;
315
+ /**
316
+ * bitwise or value for transformPartial=hide in meta.settings
317
+ */
318
+ readonly meta_settings_transformPartial_hide = 4;
319
+ /**
320
+ * Minimum length of the 'name' section not including variable parts
321
+ */
322
+ readonly length_name = 12;
323
+ /**
324
+ * Length of each item in the 'name' section variable part
325
+ */
326
+ readonly length_name_item = 4;
327
+ /**
328
+ * Minimum length of the 'strs' section not including variable parts
329
+ */
330
+ readonly length_strs = 12;
331
+ /**
332
+ * Length of each item in the 'strs' section variable part
333
+ */
334
+ readonly length_strs_item = 8;
335
+ /**
336
+ * Minimum length of the 'tran' section, not including entries
337
+ */
338
+ readonly length_tran = 20;
339
+ /**
340
+ * Length of each transform group item
341
+ */
342
+ readonly length_tran_group = 12;
343
+ /**
344
+ * Length of each transform item
345
+ */
346
+ readonly length_tran_transform = 16;
347
+ /**
348
+ * Length of each reorder subtable item
349
+ */
350
+ readonly length_tran_reorder = 8;
351
+ /**
352
+ * bitwise or value for error="fail" in transform
353
+ */
354
+ readonly tran_flags_error = 1;
355
+ /**
356
+ * this group is full of transform items
357
+ */
358
+ readonly tran_group_type_transform = 0;
359
+ /**
360
+ * this group is full of reorder items
361
+ */
362
+ readonly tran_group_type_reorder = 1;
363
+ /**
364
+ * Minimum length of the 'vkey' section not including variable parts
365
+ */
366
+ readonly length_vkey = 12;
367
+ /**
368
+ * Length of each item in the 'vkey' section variable part
369
+ */
370
+ readonly length_vkey_item = 8;
371
+ /**
372
+ * Minimum length of the 'vars' section not including variable parts
373
+ */
374
+ readonly length_vars = 16;
375
+ /**
376
+ * Length of each item in the 'vars' section variable part
377
+ */
378
+ readonly length_vars_item = 16;
379
+ /**
380
+ * String variable
381
+ */
382
+ readonly vars_entry_type_string = 0;
383
+ /**
384
+ * Set variable
385
+ */
386
+ readonly vars_entry_type_set = 1;
387
+ /**
388
+ * unicodeSet variable
389
+ */
390
+ readonly vars_entry_type_unicodeSet = 2;
391
+ readonly length_uset = 16;
392
+ /**
393
+ * Length of each entry in the uset.usets subtable
394
+ */
395
+ readonly length_uset_uset = 12;
396
+ /**
397
+ * Length of each entry in the uset.ranges subtable
398
+ */
399
+ readonly length_uset_range = 8;
400
+ /**
401
+ * All section IDs.
402
+ */
403
+ readonly section: SectionMap;
404
+ /**
405
+ * Use to convert 4-char string into hex
406
+ * @param id section id such as 'sect'
407
+ * @returns hex ID such as 0x74636573
408
+ */
409
+ hex_section_id(id: string): number;
410
+ /**
411
+ * Use to convert hex into 4-char string
412
+ * @param hex section ID such as 0x74636573
413
+ * @returns string such as 'sect'
414
+ */
415
+ str_section_id(hex: number): string;
416
+ /** == kmx_file.UC_SENTINEL, always followed by `marker_code`, marker index 0x0001-0xfffe */
417
+ readonly uc_sentinel = 65535;
418
+ /** == kmx_file.CODE_DEADKEY */
419
+ readonly marker_code = 8;
420
+ /** minimum usable marker index */
421
+ readonly marker_min_index = 1;
422
+ /** index value referring to the 'any' marker match */
423
+ readonly marker_any_index = 65534;
424
+ /** maximum marker index prior to the 'any' value */
425
+ readonly marker_max_index: number;
426
+ /** maximum count of markers (not including 'any') */
427
+ readonly marker_max_count: number;
428
+ }
429
+ export declare const constants: Constants;
430
+ export {};
431
+ //# debugId=87e8be3a-5e3b-5160-a681-bb1f60e90f5a
432
+ //# sourceMappingURL=keyboardprocessor_ldml.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"keyboardprocessor_ldml.d.ts","sourceRoot":"","sources":["../keyboardprocessor_ldml.ts"],"names":[],"mappings":"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"}
1
+ {"debug_id":"87e8be3a-5e3b-5160-a681-bb1f60e90f5a","file":"keyboardprocessor_ldml.d.ts","mappings":"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","names":[],"sourceRoot":"","sources":["../keyboardprocessor_ldml.ts"],"version":3}
@@ -487,12 +487,14 @@ var Constants = /** @class */ (function () {
487
487
  vkey: 'vkey'
488
488
  };
489
489
  // ---- marker stuff ----
490
- /** sentinel value indicating a marker follows */
491
- this.marker_sentinel = 0xFFFF;
490
+ /** == kmx_file.UC_SENTINEL, always followed by `marker_code`, marker index 0x0001-0xfffe */
491
+ this.uc_sentinel = 0xFFFF;
492
+ /** == kmx_file.CODE_DEADKEY */
493
+ this.marker_code = 0x0008;
492
494
  /** minimum usable marker index */
493
495
  this.marker_min_index = 0x0001;
494
496
  /** index value referring to the 'any' marker match */
495
- this.marker_any_index = 0xFFFF;
497
+ this.marker_any_index = 0xFFFE;
496
498
  /** maximum marker index prior to the 'any' value */
497
499
  this.marker_max_index = this.marker_any_index - 1;
498
500
  /** maximum count of markers (not including 'any') */
package/package.json CHANGED
@@ -17,5 +17,5 @@
17
17
  "type": "git",
18
18
  "url": "git+https://github.com/keymanapp/keyman.git"
19
19
  },
20
- "version": "17.0.154-alpha"
20
+ "version": "17.0.156-alpha"
21
21
  }