@keymanapp/common-types 19.0.269-alpha → 19.0.271-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/src/lexical-model-types.d.ts +35 -16
- package/build/src/lexical-model-types.d.ts.map +1 -1
- package/build/src/schema-validators.d.ts +1 -0
- package/build/src/schema-validators.d.ts.map +1 -1
- package/build/src/schema-validators.js +4 -2
- package/build/src/schema-validators.js.map +1 -1
- package/build/src/schemas/keylayout.schema.d.ts +218 -0
- package/build/src/schemas/keylayout.schema.d.ts.map +1 -0
- package/build/src/schemas/keylayout.schema.js +244 -0
- package/build/src/schemas/keylayout.schema.js.map +1 -0
- package/build/src/schemas/keylayout.schema.validator.d.mts +3 -0
- package/build/src/schemas/keylayout.schema.validator.d.mts.map +1 -0
- package/build/src/schemas/keylayout.schema.validator.mjs +1016 -0
- package/build/src/schemas/keylayout.schema.validator.mjs.map +1 -0
- package/package.json +3 -3
|
@@ -237,9 +237,14 @@ export interface LexicalModel {
|
|
|
237
237
|
*/
|
|
238
238
|
export interface Transform {
|
|
239
239
|
/**
|
|
240
|
-
* Facilitates use of unique identifiers for tracking the
|
|
241
|
-
*
|
|
242
|
-
*
|
|
240
|
+
* Facilitates use of unique identifiers for tracking data about the context
|
|
241
|
+
* transition to which the Transform belongs. More than one Transform may
|
|
242
|
+
* hold the same `id` if they are alternate interpretations of the same
|
|
243
|
+
* transition event - say, the resulting effects of neighbor keys that may
|
|
244
|
+
* have been missed due to "fat fingering".
|
|
245
|
+
*
|
|
246
|
+
* Also note that the Transform reference cannot be preserved across WebWorker
|
|
247
|
+
* boundaries, but this ID may.
|
|
243
248
|
*
|
|
244
249
|
* This is *separate* from any LMLayer-internal identification values.
|
|
245
250
|
*/
|
|
@@ -267,12 +272,6 @@ export interface Transform {
|
|
|
267
272
|
* A concrete suggestion
|
|
268
273
|
*/
|
|
269
274
|
export interface Suggestion {
|
|
270
|
-
/**
|
|
271
|
-
* Indicates the externally-supplied id of the Transform that prompted
|
|
272
|
-
* the Suggestion. Automatically handled by the LMLayer; models should
|
|
273
|
-
* not handle this field.
|
|
274
|
-
*/
|
|
275
|
-
transformId?: number;
|
|
276
275
|
/**
|
|
277
276
|
* A unique identifier for the Suggestion itself, not shared with any others -
|
|
278
277
|
* even for Suggestions sourced from the same Transform.
|
|
@@ -281,10 +280,16 @@ export interface Suggestion {
|
|
|
281
280
|
*/
|
|
282
281
|
id?: number;
|
|
283
282
|
/**
|
|
284
|
-
*
|
|
285
|
-
*
|
|
283
|
+
* Specifies the edits needed to correct and extend the currently-edited word
|
|
284
|
+
* (within the text buffer) to match the suggested word from the lexicon.
|
|
285
|
+
* Note that this transform should be applied BEFORE the instigating transform, if any.
|
|
286
286
|
*/
|
|
287
287
|
readonly transform: Transform;
|
|
288
|
+
/**
|
|
289
|
+
* Applies extra language-appropriate whitespace and/or punctuation after the main
|
|
290
|
+
* Suggestion body as specified by the source LexicalModel.
|
|
291
|
+
*/
|
|
292
|
+
appendedTransform?: Transform;
|
|
288
293
|
/**
|
|
289
294
|
* A string to display the suggestion to the typist.
|
|
290
295
|
* This should aid the typist understand what the transform
|
|
@@ -472,14 +477,28 @@ export interface Configuration {
|
|
|
472
477
|
/** deprecated; use `leftContextCodePoints` instead! */
|
|
473
478
|
rightContextCodeUnits?: number;
|
|
474
479
|
/**
|
|
475
|
-
*
|
|
476
|
-
* wordbreaking purposes. (
|
|
477
|
-
* or actual wordbreak characters.)
|
|
480
|
+
* Specifies behaviors related to transforms that the active model appends
|
|
481
|
+
* to Suggestions for wordbreaking purposes. (The Transforms need not apply
|
|
482
|
+
* whitespace or actual wordbreak characters.)
|
|
478
483
|
*
|
|
479
484
|
* If not specified, this will be auto-detected based on the model's
|
|
480
|
-
* punctuation properties (if they exist).
|
|
485
|
+
* punctuation properties (if they exist). If left null/undefined, the model
|
|
486
|
+
* does not append wordbreaking transforms to Suggestions.
|
|
481
487
|
*/
|
|
482
|
-
|
|
488
|
+
appendsWordbreaks?: {
|
|
489
|
+
/**
|
|
490
|
+
* Specifies strings that, when input, always act as word-boundaries on the
|
|
491
|
+
* input - both when typed after a manually-applied suggestion (replacing
|
|
492
|
+
* appended whitespace) and when typed with an auto-selected suggestion
|
|
493
|
+
* available (thus accepting it directly, as with whitespace).
|
|
494
|
+
*
|
|
495
|
+
* This is designed to allow language-appropriate punctuation marks to
|
|
496
|
+
* automatically remove whitespace (or other wordbreak characters) as
|
|
497
|
+
* appropriate, and to auto-accept for inputs that clearly signal intent
|
|
498
|
+
* to end the current word, both in order to improve user UX with autocorrect.
|
|
499
|
+
*/
|
|
500
|
+
breakingMarks?: string[];
|
|
501
|
+
};
|
|
483
502
|
}
|
|
484
503
|
/****************************** Word breaking ******************************/
|
|
485
504
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lexical-model-types.d.ts","sourceRoot":"","sources":["../../src/lexical-model-types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,8EAA8E;AAE9E,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,OAAO,CAAC;AAEvD;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG;IAChC;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;;;OAIG;IACH,CAAC,EAAE,MAAM,CAAC;CACX,CAAA;AAED;;;GAGG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACH,QAAQ,IAAI,SAAS,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,gBAAgB,CAAA;KAAC,CAAC,CAAC;IAEzE;;;;;;;;;;;OAWG;IACH,KAAK,CAAC,IAAI,EAAE,MAAM,GAAG,gBAAgB,GAAG,SAAS,CAAC;IAElD;;;;;;;;;;;;;;;;;;;OAmBG;IACH,OAAO,EAAE,mBAAmB,EAAE,CAAC;IAG/B;;;OAGG;IACH,CAAC,EAAE,MAAM,CAAC;CACX;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B;;;;;;;;;;;;OAYG;IACH,SAAS,CAAC,YAAY,EAAE,YAAY,GAAG,aAAa,CAAC;IAErD;;;;;;;;OAQG;IACH,QAAQ,CAAC,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAEtC;;;;;;;;;;;;;OAaG;IACH,WAAW,CAAC,CAAC,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAAA;IAEpD;;;;;;;;;;;;;;;;;;OAkBG;IACH,KAAK,CAAC,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;IAE7B;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,OAAO,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE,OAAO,GAAG,YAAY,CAAC,UAAU,CAAC,CAAC;IAE1E;;;;;OAKG;IACH,QAAQ,CAAC,WAAW,CAAC,EAAE,uBAAuB,CAAC;IAE/C;;;;;;;;;OASG;IACH,WAAW,CAAC,EAAE,oBAAoB,CAAC;IAEnC;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,SAAS,CAAC,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM,CAAC;IAErC;;;;OAIG;IACH,gBAAgB,CAAC,IAAI,gBAAgB,CAAC;CACvC;AAED;;;;GAIG;AACH,MAAM,WAAW,SAAS;IACxB
|
|
1
|
+
{"version":3,"file":"lexical-model-types.d.ts","sourceRoot":"","sources":["../../src/lexical-model-types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema-validators.d.ts","sourceRoot":"","sources":["../../src/schema-validators.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"schema-validators.d.ts","sourceRoot":"","sources":["../../src/schema-validators.ts"],"names":[],"mappings":"AAcA,QAAA,MAAM,gBAAgB;;;;;;;;;;;;CAYrB,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
|
|
@@ -1,9 +1,10 @@
|
|
|
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]="
|
|
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]="16dc26ea-aeb5-5ebd-afa4-64beac322e16")}catch(e){}}();
|
|
3
3
|
import kpj from './schemas/kpj.schema.validator.mjs';
|
|
4
4
|
import kpj90 from './schemas/kpj-9.0.schema.validator.mjs';
|
|
5
5
|
import kvks from './schemas/kvks.schema.validator.mjs';
|
|
6
6
|
import ldmlKeyboard3 from './schemas/ldml-keyboard3.schema.validator.mjs';
|
|
7
|
+
import keylayout from './schemas/keylayout.schema.validator.mjs';
|
|
7
8
|
import ldmlKeyboardTest3 from './schemas/ldml-keyboardtest3.schema.validator.mjs';
|
|
8
9
|
import displayMap from './schemas/displaymap.schema.validator.mjs';
|
|
9
10
|
import touchLayoutClean from './schemas/keyman-touch-layout.clean.spec.validator.mjs';
|
|
@@ -16,6 +17,7 @@ const SchemaValidators = {
|
|
|
16
17
|
kpj,
|
|
17
18
|
kpj90,
|
|
18
19
|
kvks,
|
|
20
|
+
keylayout,
|
|
19
21
|
ldmlKeyboard3,
|
|
20
22
|
ldmlKeyboardTest3,
|
|
21
23
|
displayMap,
|
|
@@ -26,4 +28,4 @@ const SchemaValidators = {
|
|
|
26
28
|
};
|
|
27
29
|
export default SchemaValidators;
|
|
28
30
|
//# sourceMappingURL=schema-validators.js.map
|
|
29
|
-
//# debugId=
|
|
31
|
+
//# debugId=16dc26ea-aeb5-5ebd-afa4-64beac322e16
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema-validators.js","sources":["../../src/schema-validators.ts"],"sourceRoot":"","names":[],"mappings":";;AAAA,OAAO,GAAG,MAAM,oCAAoC,CAAC;AACrD,OAAO,KAAK,MAAM,wCAAwC,CAAC;AAC3D,OAAO,IAAI,MAAM,qCAAqC,CAAC;AACvD,OAAO,aAAa,MAAM,+CAA+C,CAAC;AAC1E,OAAO,iBAAiB,MAAM,mDAAmD,CAAC;AAClF,OAAO,UAAU,MAAM,2CAA2C,CAAC;AACnE,OAAO,gBAAgB,MAAM,wDAAwD,CAAC;AACtF,OAAO,WAAW,MAAM,kDAAkD,CAAC;AAC3E,OAAO,aAAa,MAAM,8CAA8C,CAAC;AACzE,OAAO,GAAG,MAAM,oCAAoC,CAAC;AAErD,iFAAiF;AACjF,uEAAuE;AACvE,MAAM,gBAAgB,GAAG;IACvB,GAAG;IACH,KAAK;IACL,IAAI;IACJ,aAAa;IACb,iBAAiB;IACjB,UAAU;IACV,gBAAgB;IAChB,WAAW;IACX,aAAa;IACb,GAAG;CACJ,CAAC;AAEF,eAAe,gBAAgB,CAAC","debug_id":"
|
|
1
|
+
{"version":3,"file":"schema-validators.js","sources":["../../src/schema-validators.ts"],"sourceRoot":"","names":[],"mappings":";;AAAA,OAAO,GAAG,MAAM,oCAAoC,CAAC;AACrD,OAAO,KAAK,MAAM,wCAAwC,CAAC;AAC3D,OAAO,IAAI,MAAM,qCAAqC,CAAC;AACvD,OAAO,aAAa,MAAM,+CAA+C,CAAC;AAC1E,OAAO,SAAS,MAAM,0CAA0C,CAAC;AACjE,OAAO,iBAAiB,MAAM,mDAAmD,CAAC;AAClF,OAAO,UAAU,MAAM,2CAA2C,CAAC;AACnE,OAAO,gBAAgB,MAAM,wDAAwD,CAAC;AACtF,OAAO,WAAW,MAAM,kDAAkD,CAAC;AAC3E,OAAO,aAAa,MAAM,8CAA8C,CAAC;AACzE,OAAO,GAAG,MAAM,oCAAoC,CAAC;AAErD,iFAAiF;AACjF,uEAAuE;AACvE,MAAM,gBAAgB,GAAG;IACvB,GAAG;IACH,KAAK;IACL,IAAI;IACJ,SAAS;IACT,aAAa;IACb,iBAAiB;IACjB,UAAU;IACV,gBAAgB;IAChB,WAAW;IACX,aAAa;IACb,GAAG;CACJ,CAAC;AAEF,eAAe,gBAAgB,CAAC","debug_id":"16dc26ea-aeb5-5ebd-afa4-64beac322e16"}
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
$schema: string;
|
|
3
|
+
additionalProperties: boolean;
|
|
4
|
+
properties: {
|
|
5
|
+
keyboard: {
|
|
6
|
+
additionalProperties: boolean;
|
|
7
|
+
properties: {
|
|
8
|
+
actions: {
|
|
9
|
+
additionalProperties: boolean;
|
|
10
|
+
properties: {
|
|
11
|
+
action: {
|
|
12
|
+
items: {
|
|
13
|
+
additionalProperties: boolean;
|
|
14
|
+
properties: {
|
|
15
|
+
id: {
|
|
16
|
+
type: string;
|
|
17
|
+
};
|
|
18
|
+
when: {
|
|
19
|
+
items: {
|
|
20
|
+
additionalProperties: boolean;
|
|
21
|
+
properties: {
|
|
22
|
+
next: {
|
|
23
|
+
type: string;
|
|
24
|
+
};
|
|
25
|
+
output: {
|
|
26
|
+
type: string;
|
|
27
|
+
};
|
|
28
|
+
state: {
|
|
29
|
+
type: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
type: string;
|
|
33
|
+
};
|
|
34
|
+
minItems: number;
|
|
35
|
+
type: string;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
required: string[];
|
|
39
|
+
type: string;
|
|
40
|
+
};
|
|
41
|
+
minItems: number;
|
|
42
|
+
type: string;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
required: string[];
|
|
46
|
+
type: string;
|
|
47
|
+
};
|
|
48
|
+
group: {
|
|
49
|
+
type: string;
|
|
50
|
+
};
|
|
51
|
+
id: {
|
|
52
|
+
type: string;
|
|
53
|
+
};
|
|
54
|
+
keyMapSet: {
|
|
55
|
+
items: {
|
|
56
|
+
additionalProperties: boolean;
|
|
57
|
+
properties: {
|
|
58
|
+
id: {
|
|
59
|
+
type: string;
|
|
60
|
+
};
|
|
61
|
+
keyMap: {
|
|
62
|
+
items: {
|
|
63
|
+
additionalProperties: boolean;
|
|
64
|
+
properties: {
|
|
65
|
+
baseIndex: {
|
|
66
|
+
type: string;
|
|
67
|
+
};
|
|
68
|
+
baseMapSet: {
|
|
69
|
+
type: string;
|
|
70
|
+
};
|
|
71
|
+
index: {
|
|
72
|
+
type: string;
|
|
73
|
+
};
|
|
74
|
+
key: {
|
|
75
|
+
items: {
|
|
76
|
+
additionalProperties: boolean;
|
|
77
|
+
properties: {
|
|
78
|
+
action: {
|
|
79
|
+
type: string;
|
|
80
|
+
};
|
|
81
|
+
code: {
|
|
82
|
+
type: string;
|
|
83
|
+
};
|
|
84
|
+
output: {
|
|
85
|
+
type: string;
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
type: string;
|
|
89
|
+
};
|
|
90
|
+
minItems: number;
|
|
91
|
+
type: string;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
required: string[];
|
|
95
|
+
type: string;
|
|
96
|
+
};
|
|
97
|
+
minItems: number;
|
|
98
|
+
type: string;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
required: string[];
|
|
102
|
+
type: string;
|
|
103
|
+
};
|
|
104
|
+
minItems: number;
|
|
105
|
+
type: string;
|
|
106
|
+
};
|
|
107
|
+
layouts: {
|
|
108
|
+
additionalProperties: boolean;
|
|
109
|
+
properties: {
|
|
110
|
+
layout: {
|
|
111
|
+
items: {
|
|
112
|
+
additionalProperties: boolean;
|
|
113
|
+
properties: {
|
|
114
|
+
first: {
|
|
115
|
+
type: string;
|
|
116
|
+
};
|
|
117
|
+
last: {
|
|
118
|
+
type: string;
|
|
119
|
+
};
|
|
120
|
+
mapSet: {
|
|
121
|
+
type: string;
|
|
122
|
+
};
|
|
123
|
+
modifiers: {
|
|
124
|
+
type: string;
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
type: string;
|
|
128
|
+
};
|
|
129
|
+
minItems: number;
|
|
130
|
+
type: string;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
required: string[];
|
|
134
|
+
type: string;
|
|
135
|
+
};
|
|
136
|
+
maxout: {
|
|
137
|
+
type: string;
|
|
138
|
+
};
|
|
139
|
+
modifierMap: {
|
|
140
|
+
items: {
|
|
141
|
+
additionalProperties: boolean;
|
|
142
|
+
properties: {
|
|
143
|
+
defaultIndex: {
|
|
144
|
+
type: string;
|
|
145
|
+
};
|
|
146
|
+
id: {
|
|
147
|
+
type: string;
|
|
148
|
+
};
|
|
149
|
+
keyMapSelect: {
|
|
150
|
+
items: {
|
|
151
|
+
additionalProperties: boolean;
|
|
152
|
+
properties: {
|
|
153
|
+
mapIndex: {
|
|
154
|
+
type: string;
|
|
155
|
+
};
|
|
156
|
+
modifier: {
|
|
157
|
+
items: {
|
|
158
|
+
additionalProperties: boolean;
|
|
159
|
+
properties: {
|
|
160
|
+
keys: {
|
|
161
|
+
type: string;
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
type: string;
|
|
165
|
+
};
|
|
166
|
+
minItems: number;
|
|
167
|
+
type: string;
|
|
168
|
+
};
|
|
169
|
+
};
|
|
170
|
+
required: string[];
|
|
171
|
+
type: string;
|
|
172
|
+
};
|
|
173
|
+
minItems: number;
|
|
174
|
+
type: string;
|
|
175
|
+
};
|
|
176
|
+
};
|
|
177
|
+
required: string[];
|
|
178
|
+
type: string;
|
|
179
|
+
};
|
|
180
|
+
minItems: number;
|
|
181
|
+
type: string;
|
|
182
|
+
};
|
|
183
|
+
name: {
|
|
184
|
+
type: string;
|
|
185
|
+
};
|
|
186
|
+
terminators: {
|
|
187
|
+
additionalProperties: boolean;
|
|
188
|
+
properties: {
|
|
189
|
+
when: {
|
|
190
|
+
items: {
|
|
191
|
+
additionalProperties: boolean;
|
|
192
|
+
properties: {
|
|
193
|
+
output: {
|
|
194
|
+
type: string;
|
|
195
|
+
};
|
|
196
|
+
state: {
|
|
197
|
+
type: string;
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
type: string;
|
|
201
|
+
};
|
|
202
|
+
minItems: number;
|
|
203
|
+
type: string;
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
required: string[];
|
|
207
|
+
type: string;
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
required: string[];
|
|
211
|
+
};
|
|
212
|
+
};
|
|
213
|
+
required: string[];
|
|
214
|
+
title: string;
|
|
215
|
+
type: string;
|
|
216
|
+
};
|
|
217
|
+
export default _default;
|
|
218
|
+
//# sourceMappingURL=keylayout.schema.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"keylayout.schema.d.ts","sourceRoot":"","sources":["../../../src/schemas/keylayout.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAgPC"}
|
|
@@ -0,0 +1,244 @@
|
|
|
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]="2d671db3-9765-554e-b59e-a503e16d1f02")}catch(e){}}();
|
|
3
|
+
export default {
|
|
4
|
+
"$schema": "http://json-schema.org/schema#",
|
|
5
|
+
"additionalProperties": false,
|
|
6
|
+
"properties": {
|
|
7
|
+
"keyboard": {
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"properties": {
|
|
10
|
+
"actions": {
|
|
11
|
+
"additionalProperties": false,
|
|
12
|
+
"properties": {
|
|
13
|
+
"action": {
|
|
14
|
+
"items": {
|
|
15
|
+
"additionalProperties": false,
|
|
16
|
+
"properties": {
|
|
17
|
+
"id": {
|
|
18
|
+
"type": "string"
|
|
19
|
+
},
|
|
20
|
+
"when": {
|
|
21
|
+
"items": {
|
|
22
|
+
"additionalProperties": false,
|
|
23
|
+
"properties": {
|
|
24
|
+
"next": {
|
|
25
|
+
"type": "string"
|
|
26
|
+
},
|
|
27
|
+
"output": {
|
|
28
|
+
"type": "string"
|
|
29
|
+
},
|
|
30
|
+
"state": {
|
|
31
|
+
"type": "string"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"type": "object"
|
|
35
|
+
},
|
|
36
|
+
"minItems": 1,
|
|
37
|
+
"type": "array"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"required": [
|
|
41
|
+
"when"
|
|
42
|
+
],
|
|
43
|
+
"type": "object"
|
|
44
|
+
},
|
|
45
|
+
"minItems": 1,
|
|
46
|
+
"type": "array"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"required": [
|
|
50
|
+
"action"
|
|
51
|
+
],
|
|
52
|
+
"type": "object"
|
|
53
|
+
},
|
|
54
|
+
"group": {
|
|
55
|
+
"type": "string"
|
|
56
|
+
},
|
|
57
|
+
"id": {
|
|
58
|
+
"type": "string"
|
|
59
|
+
},
|
|
60
|
+
"keyMapSet": {
|
|
61
|
+
"items": {
|
|
62
|
+
"additionalProperties": false,
|
|
63
|
+
"properties": {
|
|
64
|
+
"id": {
|
|
65
|
+
"type": "string"
|
|
66
|
+
},
|
|
67
|
+
"keyMap": {
|
|
68
|
+
"items": {
|
|
69
|
+
"additionalProperties": false,
|
|
70
|
+
"properties": {
|
|
71
|
+
"baseIndex": {
|
|
72
|
+
"type": "string"
|
|
73
|
+
},
|
|
74
|
+
"baseMapSet": {
|
|
75
|
+
"type": "string"
|
|
76
|
+
},
|
|
77
|
+
"index": {
|
|
78
|
+
"type": "string"
|
|
79
|
+
},
|
|
80
|
+
"key": {
|
|
81
|
+
"items": {
|
|
82
|
+
"additionalProperties": false,
|
|
83
|
+
"properties": {
|
|
84
|
+
"action": {
|
|
85
|
+
"type": "string"
|
|
86
|
+
},
|
|
87
|
+
"code": {
|
|
88
|
+
"type": "string"
|
|
89
|
+
},
|
|
90
|
+
"output": {
|
|
91
|
+
"type": "string"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"type": "object"
|
|
95
|
+
},
|
|
96
|
+
"minItems": 1,
|
|
97
|
+
"type": "array"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"required": [
|
|
101
|
+
"key"
|
|
102
|
+
],
|
|
103
|
+
"type": "object"
|
|
104
|
+
},
|
|
105
|
+
"minItems": 1,
|
|
106
|
+
"type": "array"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"required": [
|
|
110
|
+
"keyMap"
|
|
111
|
+
],
|
|
112
|
+
"type": "object"
|
|
113
|
+
},
|
|
114
|
+
"minItems": 1,
|
|
115
|
+
"type": "array"
|
|
116
|
+
},
|
|
117
|
+
"layouts": {
|
|
118
|
+
"additionalProperties": false,
|
|
119
|
+
"properties": {
|
|
120
|
+
"layout": {
|
|
121
|
+
"items": {
|
|
122
|
+
"additionalProperties": false,
|
|
123
|
+
"properties": {
|
|
124
|
+
"first": {
|
|
125
|
+
"type": "string"
|
|
126
|
+
},
|
|
127
|
+
"last": {
|
|
128
|
+
"type": "string"
|
|
129
|
+
},
|
|
130
|
+
"mapSet": {
|
|
131
|
+
"type": "string"
|
|
132
|
+
},
|
|
133
|
+
"modifiers": {
|
|
134
|
+
"type": "string"
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
"type": "object"
|
|
138
|
+
},
|
|
139
|
+
"minItems": 1,
|
|
140
|
+
"type": "array"
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
"required": [
|
|
144
|
+
"layout"
|
|
145
|
+
],
|
|
146
|
+
"type": "object"
|
|
147
|
+
},
|
|
148
|
+
"maxout": {
|
|
149
|
+
"type": "string"
|
|
150
|
+
},
|
|
151
|
+
"modifierMap": {
|
|
152
|
+
"items": {
|
|
153
|
+
"additionalProperties": false,
|
|
154
|
+
"properties": {
|
|
155
|
+
"defaultIndex": {
|
|
156
|
+
"type": "string"
|
|
157
|
+
},
|
|
158
|
+
"id": {
|
|
159
|
+
"type": "string"
|
|
160
|
+
},
|
|
161
|
+
"keyMapSelect": {
|
|
162
|
+
"items": {
|
|
163
|
+
"additionalProperties": false,
|
|
164
|
+
"properties": {
|
|
165
|
+
"mapIndex": {
|
|
166
|
+
"type": "string"
|
|
167
|
+
},
|
|
168
|
+
"modifier": {
|
|
169
|
+
"items": {
|
|
170
|
+
"additionalProperties": false,
|
|
171
|
+
"properties": {
|
|
172
|
+
"keys": {
|
|
173
|
+
"type": "string"
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"type": "object"
|
|
177
|
+
},
|
|
178
|
+
"minItems": 1,
|
|
179
|
+
"type": "array"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
"required": [
|
|
183
|
+
"modifier"
|
|
184
|
+
],
|
|
185
|
+
"type": "object"
|
|
186
|
+
},
|
|
187
|
+
"minItems": 1,
|
|
188
|
+
"type": "array"
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"required": [
|
|
192
|
+
"keyMapSelect"
|
|
193
|
+
],
|
|
194
|
+
"type": "object"
|
|
195
|
+
},
|
|
196
|
+
"minItems": 1,
|
|
197
|
+
"type": "array"
|
|
198
|
+
},
|
|
199
|
+
"name": {
|
|
200
|
+
"type": "string"
|
|
201
|
+
},
|
|
202
|
+
"terminators": {
|
|
203
|
+
"additionalProperties": false,
|
|
204
|
+
"properties": {
|
|
205
|
+
"when": {
|
|
206
|
+
"items": {
|
|
207
|
+
"additionalProperties": false,
|
|
208
|
+
"properties": {
|
|
209
|
+
"output": {
|
|
210
|
+
"type": "string"
|
|
211
|
+
},
|
|
212
|
+
"state": {
|
|
213
|
+
"type": "string"
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"type": "object"
|
|
217
|
+
},
|
|
218
|
+
"minItems": 1,
|
|
219
|
+
"type": "array"
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"required": [
|
|
223
|
+
"when"
|
|
224
|
+
],
|
|
225
|
+
"type": "object"
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
"required": [
|
|
229
|
+
"layouts",
|
|
230
|
+
"modifierMap",
|
|
231
|
+
"keyMapSet",
|
|
232
|
+
"actions",
|
|
233
|
+
"terminators"
|
|
234
|
+
]
|
|
235
|
+
}
|
|
236
|
+
},
|
|
237
|
+
"required": [
|
|
238
|
+
"keyboard"
|
|
239
|
+
],
|
|
240
|
+
"title": "C:/Projects/keyman/keyman/resources/standards-data/keylayout/dtd/keylayout.xsd",
|
|
241
|
+
"type": "object"
|
|
242
|
+
};
|
|
243
|
+
//# sourceMappingURL=keylayout.schema.js.map
|
|
244
|
+
//# debugId=2d671db3-9765-554e-b59e-a503e16d1f02
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"keylayout.schema.js","sources":["../../../src/schemas/keylayout.schema.ts"],"sourceRoot":"","names":[],"mappings":";;AAAA,eACA;IACE,SAAS,EAAE,gCAAgC;IAC3C,sBAAsB,EAAE,KAAK;IAC7B,YAAY,EAAE;QACZ,UAAU,EAAE;YACV,sBAAsB,EAAE,KAAK;YAC7B,YAAY,EAAE;gBACZ,SAAS,EAAE;oBACT,sBAAsB,EAAE,KAAK;oBAC7B,YAAY,EAAE;wBACZ,QAAQ,EAAE;4BACR,OAAO,EAAE;gCACP,sBAAsB,EAAE,KAAK;gCAC7B,YAAY,EAAE;oCACZ,IAAI,EAAE;wCACJ,MAAM,EAAE,QAAQ;qCACjB;oCACD,MAAM,EAAE;wCACN,OAAO,EAAE;4CACP,sBAAsB,EAAE,KAAK;4CAC7B,YAAY,EAAE;gDACZ,MAAM,EAAE;oDACN,MAAM,EAAE,QAAQ;iDACjB;gDACD,QAAQ,EAAE;oDACR,MAAM,EAAE,QAAQ;iDACjB;gDACD,OAAO,EAAE;oDACP,MAAM,EAAE,QAAQ;iDACjB;6CACF;4CACD,MAAM,EAAE,QAAQ;yCACjB;wCACD,UAAU,EAAE,CAAC;wCACb,MAAM,EAAE,OAAO;qCAChB;iCACF;gCACD,UAAU,EAAE;oCACV,MAAM;iCACP;gCACD,MAAM,EAAE,QAAQ;6BACjB;4BACD,UAAU,EAAE,CAAC;4BACb,MAAM,EAAE,OAAO;yBAChB;qBACF;oBACD,UAAU,EAAE;wBACV,QAAQ;qBACT;oBACD,MAAM,EAAE,QAAQ;iBACjB;gBACD,OAAO,EAAE;oBACP,MAAM,EAAE,QAAQ;iBACjB;gBACD,IAAI,EAAE;oBACJ,MAAM,EAAE,QAAQ;iBACjB;gBACD,WAAW,EAAE;oBACX,OAAO,EAAE;wBACP,sBAAsB,EAAE,KAAK;wBAC7B,YAAY,EAAE;4BACZ,IAAI,EAAE;gCACJ,MAAM,EAAE,QAAQ;6BACjB;4BACD,QAAQ,EAAE;gCACR,OAAO,EAAE;oCACP,sBAAsB,EAAE,KAAK;oCAC7B,YAAY,EAAE;wCACZ,WAAW,EAAE;4CACX,MAAM,EAAE,QAAQ;yCACjB;wCACD,YAAY,EAAE;4CACZ,MAAM,EAAE,QAAQ;yCACjB;wCACD,OAAO,EAAE;4CACP,MAAM,EAAE,QAAQ;yCACjB;wCACD,KAAK,EAAE;4CACL,OAAO,EAAE;gDACP,sBAAsB,EAAE,KAAK;gDAC7B,YAAY,EAAE;oDACZ,QAAQ,EAAE;wDACR,MAAM,EAAE,QAAQ;qDACjB;oDACD,MAAM,EAAE;wDACN,MAAM,EAAE,QAAQ;qDACjB;oDACD,QAAQ,EAAE;wDACR,MAAM,EAAE,QAAQ;qDACjB;iDACF;gDACD,MAAM,EAAE,QAAQ;6CACjB;4CACD,UAAU,EAAE,CAAC;4CACb,MAAM,EAAE,OAAO;yCAChB;qCACF;oCACD,UAAU,EAAE;wCACV,KAAK;qCACN;oCACD,MAAM,EAAE,QAAQ;iCACjB;gCACD,UAAU,EAAE,CAAC;gCACb,MAAM,EAAE,OAAO;6BAChB;yBACF;wBACD,UAAU,EAAE;4BACV,QAAQ;yBACT;wBACD,MAAM,EAAE,QAAQ;qBACjB;oBACD,UAAU,EAAE,CAAC;oBACb,MAAM,EAAE,OAAO;iBAChB;gBACD,SAAS,EAAE;oBACT,sBAAsB,EAAE,KAAK;oBAC7B,YAAY,EAAE;wBACZ,QAAQ,EAAE;4BACR,OAAO,EAAE;gCACP,sBAAsB,EAAE,KAAK;gCAC7B,YAAY,EAAE;oCACZ,OAAO,EAAE;wCACP,MAAM,EAAE,QAAQ;qCACjB;oCACD,MAAM,EAAE;wCACN,MAAM,EAAE,QAAQ;qCACjB;oCACD,QAAQ,EAAE;wCACR,MAAM,EAAE,QAAQ;qCACjB;oCACD,WAAW,EAAE;wCACX,MAAM,EAAE,QAAQ;qCACjB;iCACF;gCACD,MAAM,EAAE,QAAQ;6BACjB;4BACD,UAAU,EAAE,CAAC;4BACb,MAAM,EAAE,OAAO;yBAChB;qBACF;oBACD,UAAU,EAAE;wBACV,QAAQ;qBACT;oBACD,MAAM,EAAE,QAAQ;iBACjB;gBACD,QAAQ,EAAE;oBACR,MAAM,EAAE,QAAQ;iBACjB;gBACD,aAAa,EAAE;oBACb,OAAO,EAAE;wBACP,sBAAsB,EAAE,KAAK;wBAC7B,YAAY,EAAE;4BACZ,cAAc,EAAE;gCACd,MAAM,EAAE,QAAQ;6BACjB;4BACD,IAAI,EAAE;gCACJ,MAAM,EAAE,QAAQ;6BACjB;4BACD,cAAc,EAAE;gCACd,OAAO,EAAE;oCACP,sBAAsB,EAAE,KAAK;oCAC7B,YAAY,EAAE;wCACZ,UAAU,EAAE;4CACV,MAAM,EAAE,QAAQ;yCACjB;wCACD,UAAU,EAAE;4CACV,OAAO,EAAE;gDACP,sBAAsB,EAAE,KAAK;gDAC7B,YAAY,EAAE;oDACZ,MAAM,EAAE;wDACN,MAAM,EAAE,QAAQ;qDACjB;iDACF;gDACD,MAAM,EAAE,QAAQ;6CACjB;4CACD,UAAU,EAAE,CAAC;4CACb,MAAM,EAAE,OAAO;yCAChB;qCACF;oCACD,UAAU,EAAE;wCACV,UAAU;qCACX;oCACD,MAAM,EAAE,QAAQ;iCACjB;gCACD,UAAU,EAAE,CAAC;gCACb,MAAM,EAAE,OAAO;6BAChB;yBACF;wBACD,UAAU,EAAE;4BACV,cAAc;yBACf;wBACD,MAAM,EAAE,QAAQ;qBACjB;oBACD,UAAU,EAAE,CAAC;oBACb,MAAM,EAAE,OAAO;iBAChB;gBACD,MAAM,EAAE;oBACN,MAAM,EAAE,QAAQ;iBACjB;gBACD,aAAa,EAAE;oBACb,sBAAsB,EAAE,KAAK;oBAC7B,YAAY,EAAE;wBACZ,MAAM,EAAE;4BACN,OAAO,EAAE;gCACP,sBAAsB,EAAE,KAAK;gCAC7B,YAAY,EAAE;oCACZ,QAAQ,EAAE;wCACR,MAAM,EAAE,QAAQ;qCACjB;oCACD,OAAO,EAAE;wCACP,MAAM,EAAE,QAAQ;qCACjB;iCACF;gCACD,MAAM,EAAE,QAAQ;6BACjB;4BACD,UAAU,EAAE,CAAC;4BACb,MAAM,EAAE,OAAO;yBAChB;qBACF;oBACD,UAAU,EAAE;wBACV,MAAM;qBACP;oBACD,MAAM,EAAE,QAAQ;iBACjB;aACF;YACD,UAAU,EAAE;gBACV,SAAS;gBACT,aAAa;gBACb,WAAW;gBACX,SAAS;gBACT,aAAa;aACd;SACF;KACF;IACD,UAAU,EAAE;QACV,UAAU;KACX;IACD,OAAO,EAAE,gFAAgF;IACzF,MAAM,EAAE,QAAQ;CACjB,CAAA","debug_id":"2d671db3-9765-554e-b59e-a503e16d1f02"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"keylayout.schema.validator.d.mts","sourceRoot":"","sources":["../../../src/schemas/keylayout.schema.validator.mjs"],"names":[],"mappings":""}
|