@keymanapp/common-types 18.0.101-alpha → 18.0.103-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/keyman-touch-layout/keyman-touch-layout-file.d.ts +51 -0
- package/build/src/keyman-touch-layout/keyman-touch-layout-file.d.ts.map +1 -1
- package/build/src/keyman-touch-layout/keyman-touch-layout-file.js +3 -2
- package/build/src/keyman-touch-layout/keyman-touch-layout-file.js.map +1 -1
- package/package.json +3 -3
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* On screen keyboard description consisting of specific layouts for tablet, phone,
|
|
3
|
+
* and desktop. Despite its name, this format is used for both touch layouts and
|
|
4
|
+
* hardware-style layouts.
|
|
5
|
+
*/
|
|
1
6
|
export interface TouchLayoutFile {
|
|
2
7
|
tablet?: TouchLayoutPlatform;
|
|
3
8
|
phone?: TouchLayoutPlatform;
|
|
@@ -6,6 +11,7 @@ export interface TouchLayoutFile {
|
|
|
6
11
|
export type TouchLayoutFont = string;
|
|
7
12
|
export type TouchLayoutFontSize = string;
|
|
8
13
|
export type TouchLayoutDefaultHint = "none" | "dot" | "longpress" | "multitap" | "flick" | "flick-n" | "flick-ne" | "flick-e" | "flick-se" | "flick-s" | "flick-sw" | "flick-w" | "flick-nw";
|
|
14
|
+
/** touch layout specification for a specific platform like phone or tablet */
|
|
9
15
|
export interface TouchLayoutPlatform {
|
|
10
16
|
font?: TouchLayoutFont;
|
|
11
17
|
fontsize?: TouchLayoutFontSize;
|
|
@@ -14,11 +20,13 @@ export interface TouchLayoutPlatform {
|
|
|
14
20
|
defaultHint: TouchLayoutDefaultHint;
|
|
15
21
|
}
|
|
16
22
|
export type TouchLayoutLayerId = string;
|
|
23
|
+
/** a layer with rows of keys on a touch layout */
|
|
17
24
|
export interface TouchLayoutLayer {
|
|
18
25
|
id: TouchLayoutLayerId;
|
|
19
26
|
row: TouchLayoutRow[];
|
|
20
27
|
}
|
|
21
28
|
export type TouchLayoutRowId = number;
|
|
29
|
+
/** a row of keys on a touch layout */
|
|
22
30
|
export interface TouchLayoutRow {
|
|
23
31
|
id: TouchLayoutRowId;
|
|
24
32
|
key: TouchLayoutKey[];
|
|
@@ -30,21 +38,39 @@ export type TouchLayoutKeyId = `${Key_Type}_${Key_Id}`;
|
|
|
30
38
|
* Denotes private-use identifiers that should be considered 'reserved'.
|
|
31
39
|
*/
|
|
32
40
|
export declare const PRIVATE_USE_IDS: readonly ["T_*_MT_SHIFT_TO_SHIFT", "T_*_MT_SHIFT_TO_CAPS", "T_*_MT_SHIFT_TO_DEFAULT"];
|
|
41
|
+
/** defines a key on a touch layout */
|
|
33
42
|
export interface TouchLayoutKey {
|
|
43
|
+
/** key id: used to find key in VKDictionary, or a standard key from the K_ enumeration */
|
|
34
44
|
id?: TouchLayoutKeyId;
|
|
45
|
+
/** text to display on key cap */
|
|
35
46
|
text?: string;
|
|
47
|
+
/**
|
|
48
|
+
* the modifier combination (not layer) that should be used in key events,
|
|
49
|
+
* for this key, overriding the layer that the key is a part of.
|
|
50
|
+
*/
|
|
36
51
|
layer?: TouchLayoutLayerId;
|
|
52
|
+
/** the next layer to switch to after this key is pressed */
|
|
37
53
|
nextlayer?: TouchLayoutLayerId;
|
|
54
|
+
/** font */
|
|
38
55
|
font?: TouchLayoutFont;
|
|
56
|
+
/** fontsize */
|
|
39
57
|
fontsize?: TouchLayoutFontSize;
|
|
58
|
+
/** the type of key */
|
|
40
59
|
sp?: TouchLayoutKeySp;
|
|
60
|
+
/** padding */
|
|
41
61
|
pad?: TouchLayoutKeyPad;
|
|
62
|
+
/** width of the key */
|
|
42
63
|
width?: TouchLayoutKeyWidth;
|
|
64
|
+
/** longpress keys, also known as subkeys */
|
|
43
65
|
sk?: TouchLayoutSubKey[];
|
|
66
|
+
/** flicks */
|
|
44
67
|
flick?: TouchLayoutFlick;
|
|
68
|
+
/** multitaps */
|
|
45
69
|
multitap?: TouchLayoutSubKey[];
|
|
70
|
+
/** hint e.g. for longpress */
|
|
46
71
|
hint?: string;
|
|
47
72
|
}
|
|
73
|
+
/** key type like regular key, framekeys, deadkeys, blank, etc. */
|
|
48
74
|
export declare const enum TouchLayoutKeySp {
|
|
49
75
|
normal = 0,
|
|
50
76
|
/** A 'frame' key, such as Shift or Enter, which is styled accordingly; uses
|
|
@@ -68,28 +94,53 @@ export declare const enum TouchLayoutKeySp {
|
|
|
68
94
|
/** Renders the key only as a gap or spacer, blocks any interaction */
|
|
69
95
|
spacer = 10
|
|
70
96
|
}
|
|
97
|
+
/** padding for a key */
|
|
71
98
|
export type TouchLayoutKeyPad = number;
|
|
99
|
+
/** width of a key */
|
|
72
100
|
export type TouchLayoutKeyWidth = number;
|
|
101
|
+
/** defines a subkey */
|
|
73
102
|
export interface TouchLayoutSubKey {
|
|
103
|
+
/** key id: used to find key in VKDictionary, or a standard key from the K_ enumeration */
|
|
74
104
|
id: TouchLayoutKeyId;
|
|
105
|
+
/** text to display on key cap */
|
|
75
106
|
text?: string;
|
|
107
|
+
/**
|
|
108
|
+
* the modifier combination (not layer) that should be used in key events,
|
|
109
|
+
* for this key, overriding the layer that the key is a part of.
|
|
110
|
+
*/
|
|
76
111
|
layer?: TouchLayoutLayerId;
|
|
112
|
+
/** the next layer to switch to after this key is pressed */
|
|
77
113
|
nextlayer?: TouchLayoutLayerId;
|
|
114
|
+
/** font */
|
|
78
115
|
font?: TouchLayoutFont;
|
|
116
|
+
/** fontsize */
|
|
79
117
|
fontsize?: TouchLayoutFontSize;
|
|
118
|
+
/** the type of key */
|
|
80
119
|
sp?: TouchLayoutKeySp;
|
|
120
|
+
/** padding */
|
|
81
121
|
pad?: TouchLayoutKeyPad;
|
|
122
|
+
/** width of the key */
|
|
82
123
|
width?: TouchLayoutKeyWidth;
|
|
124
|
+
/** use this subkey if no other selected */
|
|
83
125
|
default?: boolean;
|
|
84
126
|
}
|
|
127
|
+
/** defines all possible flicks for a key */
|
|
85
128
|
export interface TouchLayoutFlick {
|
|
129
|
+
/** flick up (north) */
|
|
86
130
|
n?: TouchLayoutSubKey;
|
|
131
|
+
/** flick down (south) */
|
|
87
132
|
s?: TouchLayoutSubKey;
|
|
133
|
+
/** flick right (east) */
|
|
88
134
|
e?: TouchLayoutSubKey;
|
|
135
|
+
/** flick left (west) */
|
|
89
136
|
w?: TouchLayoutSubKey;
|
|
137
|
+
/** flick up-right (north-east) */
|
|
90
138
|
ne?: TouchLayoutSubKey;
|
|
139
|
+
/** flick up-left (north-west) */
|
|
91
140
|
nw?: TouchLayoutSubKey;
|
|
141
|
+
/** flick down-right (south-east) */
|
|
92
142
|
se?: TouchLayoutSubKey;
|
|
143
|
+
/** flick down-left (south-west) */
|
|
93
144
|
sw?: TouchLayoutSubKey;
|
|
94
145
|
}
|
|
95
146
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"keyman-touch-layout-file.d.ts","sourceRoot":"","sources":["../../../src/keyman-touch-layout/keyman-touch-layout-file.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"keyman-touch-layout-file.d.ts","sourceRoot":"","sources":["../../../src/keyman-touch-layout/keyman-touch-layout-file.ts"],"names":[],"mappings":"AASA;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC9B,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAC7B,KAAK,CAAC,EAAE,mBAAmB,CAAC;IAC5B,OAAO,CAAC,EAAE,mBAAmB,CAAC;CAC/B;AAED,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC;AACrC,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAC;AACzC,MAAM,MAAM,sBAAsB,GAAG,MAAM,GAAC,KAAK,GAAC,WAAW,GAAC,UAAU,GAAC,OAAO,GAAC,SAAS,GAAC,UAAU,GAAC,SAAS,GAAC,UAAU,GAAC,SAAS,GAAC,UAAU,GAAC,SAAS,GAAC,UAAU,CAAC;AAErK,8EAA8E;AAC9E,MAAM,WAAW,mBAAmB;IAClC,IAAI,CAAC,EAAE,eAAe,CAAC;IACvB,QAAQ,CAAC,EAAE,mBAAmB,CAAC;IAC/B,KAAK,EAAE,gBAAgB,EAAE,CAAC;IAC1B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,WAAW,EAAE,sBAAsB,CAAC;CACrC;AAED,MAAM,MAAM,kBAAkB,GAAG,MAAM,CAAC;AAExC,kDAAkD;AAClD,MAAM,WAAW,gBAAgB;IAC/B,EAAE,EAAE,kBAAkB,CAAC;IACvB,GAAG,EAAE,cAAc,EAAE,CAAC;CACvB;AAED,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC;AAEtC,sCAAsC;AACtC,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,gBAAgB,CAAC;IACrB,GAAG,EAAE,cAAc,EAAE,CAAC;CACvB;AAED,KAAK,QAAQ,GAAG,GAAG,GAAC,GAAG,GAAC,GAAG,GAAC,GAAG,GAAC,GAAG,GAAC,GAAG,CAAC;AACxC,KAAK,MAAM,GAAG,MAAM,CAAC;AAErB,MAAM,MAAM,gBAAgB,GAAG,GAAG,QAAQ,IAAI,MAAM,EAAE,CAAC;AAEvD;;GAEG;AACH,eAAO,MAAM,eAAe,uFAQlB,CAAC;AAOX,sCAAsC;AACtC,MAAM,WAAW,cAAc;IAC7B,0FAA0F;IAC1F,EAAE,CAAC,EAAE,gBAAgB,CAAC;IACtB,iCAAiC;IACjC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;QAGI;IACJ,KAAK,CAAC,EAAE,kBAAkB,CAAC;IAC3B,4DAA4D;IAC5D,SAAS,CAAC,EAAE,kBAAkB,CAAC;IAC/B,WAAW;IACX,IAAI,CAAC,EAAE,eAAe,CAAC;IACvB,eAAe;IACf,QAAQ,CAAC,EAAE,mBAAmB,CAAC;IAC/B,sBAAsB;IACtB,EAAE,CAAC,EAAE,gBAAgB,CAAC;IACtB,cAAc;IACd,GAAG,CAAC,EAAE,iBAAiB,CAAC;IACxB,uBAAuB;IACvB,KAAK,CAAC,EAAE,mBAAmB,CAAC;IAC5B,4CAA4C;IAC5C,EAAE,CAAC,EAAE,iBAAiB,EAAE,CAAC;IACzB,aAAa;IACb,KAAK,CAAC,EAAE,gBAAgB,CAAC;IACzB,gBAAgB;IAChB,QAAQ,CAAC,EAAE,iBAAiB,EAAE,CAAC;IAC/B,8BAA8B;IAC9B,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,kEAAkE;AAClE,0BAAkB,gBAAgB;IAChC,MAAM,IAAE;IACR;+CAC2C;IAC3C,OAAO,IAAE;IACT;;2DAEuD;IACvD,aAAa,IAAE;IACf;wDACoD;IACpD,aAAa,IAAE;IACf;yDACqD;IACrD,mBAAmB,IAAE;IACrB;qBACiB;IACjB,OAAO,IAAE;IACT,wEAAwE;IACxE,KAAK,IAAE;IACP,sEAAsE;IACtE,MAAM,KAAG;CACV;AAED,wBAAwB;AACxB,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC;AACvC,qBAAqB;AACrB,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAC;AAEzC,uBAAuB;AACvB,MAAM,WAAW,iBAAiB;IAChC,0FAA0F;IAC1F,EAAE,EAAE,gBAAgB,CAAC;IACrB,iCAAiC;IACjC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;QAGI;IACJ,KAAK,CAAC,EAAE,kBAAkB,CAAC;IAC3B,4DAA4D;IAC5D,SAAS,CAAC,EAAE,kBAAkB,CAAC;IAC/B,WAAW;IACX,IAAI,CAAC,EAAE,eAAe,CAAC;IACvB,eAAe;IACf,QAAQ,CAAC,EAAE,mBAAmB,CAAC;IAC/B,sBAAsB;IACtB,EAAE,CAAC,EAAE,gBAAgB,CAAC;IACtB,cAAc;IACd,GAAG,CAAC,EAAE,iBAAiB,CAAC;IACxB,uBAAuB;IACvB,KAAK,CAAC,EAAE,mBAAmB,CAAC;IAC5B,2CAA2C;IAC3C,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,4CAA4C;AAC5C,MAAM,WAAW,gBAAgB;IAC/B,uBAAuB;IACvB,CAAC,CAAC,EAAE,iBAAiB,CAAC;IACtB,yBAAyB;IACzB,CAAC,CAAC,EAAE,iBAAiB,CAAC;IACtB,yBAAyB;IACzB,CAAC,CAAC,EAAE,iBAAiB,CAAC;IACtB,wBAAwB;IACxB,CAAC,CAAC,EAAE,iBAAiB,CAAC;IACtB,kCAAkC;IAClC,EAAE,CAAC,EAAE,iBAAiB,CAAC;IACvB,iCAAiC;IACjC,EAAE,CAAC,EAAE,iBAAiB,CAAC;IACvB,oCAAoC;IACpC,EAAE,CAAC,EAAE,iBAAiB,CAAC;IACvB,mCAAmC;IACnC,EAAE,CAAC,EAAE,iBAAiB,CAAC;CACxB"}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
// writing
|
|
8
8
|
//
|
|
9
9
|
|
|
10
|
-
!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]="
|
|
10
|
+
!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]="662034ef-5ecf-5cf7-9ee6-d61678568f90")}catch(e){}}();
|
|
11
11
|
;
|
|
12
12
|
;
|
|
13
13
|
;
|
|
@@ -25,6 +25,7 @@ export const PRIVATE_USE_IDS = [
|
|
|
25
25
|
'T_*_MT_SHIFT_TO_DEFAULT'
|
|
26
26
|
];
|
|
27
27
|
;
|
|
28
|
+
/** key type like regular key, framekeys, deadkeys, blank, etc. */
|
|
28
29
|
export var TouchLayoutKeySp;
|
|
29
30
|
(function (TouchLayoutKeySp) {
|
|
30
31
|
TouchLayoutKeySp[TouchLayoutKeySp["normal"] = 0] = "normal";
|
|
@@ -53,4 +54,4 @@ export var TouchLayoutKeySp;
|
|
|
53
54
|
;
|
|
54
55
|
;
|
|
55
56
|
//# sourceMappingURL=keyman-touch-layout-file.js.map
|
|
56
|
-
//# debugId=
|
|
57
|
+
//# debugId=662034ef-5ecf-5cf7-9ee6-d61678568f90
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"keyman-touch-layout-file.js","sources":["../../../src/keyman-touch-layout/keyman-touch-layout-file.ts"],"sourceRoot":"","names":[],"mappings":"AAAA,EAAE;AACF,mCAAmC;AACnC,EAAE;AACF,gFAAgF;AAChF,cAAc;AACd,8EAA8E;AAC9E,UAAU;AACV,EAAE;;;
|
|
1
|
+
{"version":3,"file":"keyman-touch-layout-file.js","sources":["../../../src/keyman-touch-layout/keyman-touch-layout-file.ts"],"sourceRoot":"","names":[],"mappings":"AAAA,EAAE;AACF,mCAAmC;AACnC,EAAE;AACF,gFAAgF;AAChF,cAAc;AACd,8EAA8E;AAC9E,UAAU;AACV,EAAE;;;AAWD,CAAC;AAaD,CAAC;AAQD,CAAC;AAQD,CAAC;AAOF;;GAEG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B;;;OAGG;IACH,uBAAuB;IACvB,sBAAsB;IACtB,yBAAyB;CACjB,CAAC;AAsCV,CAAC;AAEF,kEAAkE;AAClE,MAAM,CAAN,IAAkB,gBAsBjB;AAtBD,WAAkB,gBAAgB;IAChC,2DAAQ,CAAA;IACR;+CAC2C;IAC3C,6DAAS,CAAA;IACT;;2DAEuD;IACvD,yEAAe,CAAA;IACf;wDACoD;IACpD,yEAAe,CAAA;IACf;yDACqD;IACrD,qFAAqB,CAAA;IACrB;qBACiB;IACjB,6DAAS,CAAA;IACT,wEAAwE;IACxE,yDAAO,CAAA;IACP,sEAAsE;IACtE,4DAAS,CAAA;AACX,CAAC,EAtBiB,gBAAgB,KAAhB,gBAAgB,QAsBjC;AAAA,CAAC;AAgCD,CAAC;AAoBD,CAAC","debug_id":"662034ef-5ecf-5cf7-9ee6-d61678568f90"}
|
package/package.json
CHANGED
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"url": "https://github.com/keymanapp/keyman/issues"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@keymanapp/ldml-keyboard-constants": "18.0.
|
|
33
|
-
"@keymanapp/keyman-version": "18.0.
|
|
32
|
+
"@keymanapp/ldml-keyboard-constants": "18.0.103-alpha",
|
|
33
|
+
"@keymanapp/keyman-version": "18.0.103-alpha",
|
|
34
34
|
"restructure": "3.0.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
]
|
|
79
79
|
},
|
|
80
80
|
"sideEffects": false,
|
|
81
|
-
"version": "18.0.
|
|
81
|
+
"version": "18.0.103-alpha"
|
|
82
82
|
}
|