custom-electron-titlebar 4.2.7 → 4.4.0

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 (77) hide show
  1. package/README.md +43 -19
  2. package/index.d.mts +684 -0
  3. package/index.d.ts +684 -3
  4. package/index.js +5225 -175
  5. package/index.js.map +1 -0
  6. package/index.mjs +5227 -0
  7. package/index.mjs.map +1 -0
  8. package/main/index.d.mts +21 -0
  9. package/main/index.d.ts +21 -3
  10. package/main/index.js +793 -175
  11. package/main/index.js.map +1 -0
  12. package/main/index.mjs +785 -0
  13. package/main/index.mjs.map +1 -0
  14. package/package.json +56 -33
  15. package/theme/base.css +425 -0
  16. package/theme/mac.css +0 -0
  17. package/theme/win.css +0 -0
  18. package/base/browser/browser.d.ts +0 -26
  19. package/base/browser/browser.js +0 -317
  20. package/base/browser/event.d.ts +0 -12
  21. package/base/browser/event.js +0 -215
  22. package/base/browser/keyboardEvent.d.ts +0 -38
  23. package/base/browser/keyboardEvent.js +0 -464
  24. package/base/browser/mouseEvent.d.ts +0 -61
  25. package/base/browser/mouseEvent.js +0 -327
  26. package/base/browser/touch.d.ts +0 -39
  27. package/base/browser/touch.js +0 -454
  28. package/base/common/arrays.d.ts +0 -10
  29. package/base/common/arrays.js +0 -210
  30. package/base/common/async.d.ts +0 -35
  31. package/base/common/async.js +0 -280
  32. package/base/common/charCode.d.ts +0 -405
  33. package/base/common/charCode.js +0 -9
  34. package/base/common/color.d.ts +0 -159
  35. package/base/common/color.js +0 -708
  36. package/base/common/decorators.d.ts +0 -6
  37. package/base/common/decorators.js +0 -300
  38. package/base/common/dom.d.ts +0 -221
  39. package/base/common/dom.js +0 -1478
  40. package/base/common/event.d.ts +0 -213
  41. package/base/common/event.js +0 -804
  42. package/base/common/iterator.d.ts +0 -69
  43. package/base/common/iterator.js +0 -381
  44. package/base/common/keyCodes.d.ts +0 -478
  45. package/base/common/keyCodes.js +0 -479
  46. package/base/common/lifecycle.d.ts +0 -17
  47. package/base/common/lifecycle.js +0 -258
  48. package/base/common/linkedList.d.ts +0 -17
  49. package/base/common/linkedList.js +0 -319
  50. package/base/common/platform.d.ts +0 -36
  51. package/base/common/platform.js +0 -314
  52. package/base/common/strings.d.ts +0 -23
  53. package/base/common/strings.js +0 -273
  54. package/consts.d.ts +0 -58
  55. package/consts.js +0 -317
  56. package/main/attach-titlebar-to-window.d.ts +0 -3
  57. package/main/attach-titlebar-to-window.js +0 -210
  58. package/main/setup-titlebar.d.ts +0 -2
  59. package/main/setup-titlebar.js +0 -255
  60. package/menubar/index.d.ts +0 -86
  61. package/menubar/index.js +0 -1121
  62. package/menubar/menu/index.d.ts +0 -46
  63. package/menubar/menu/index.js +0 -566
  64. package/menubar/menu/item.d.ts +0 -67
  65. package/menubar/menu/item.js +0 -575
  66. package/menubar/menu/separator.d.ts +0 -11
  67. package/menubar/menu/separator.js +0 -213
  68. package/menubar/menu/submenu.d.ts +0 -32
  69. package/menubar/menu/submenu.js +0 -372
  70. package/menubar/menubar-options.d.ts +0 -47
  71. package/menubar/menubar-options.js +0 -9
  72. package/titlebar/index.d.ts +0 -104
  73. package/titlebar/index.js +0 -696
  74. package/titlebar/options.d.ts +0 -84
  75. package/titlebar/options.js +0 -9
  76. package/titlebar/themebar.d.ts +0 -20
  77. package/titlebar/themebar.js +0 -267
@@ -1,280 +0,0 @@
1
- "use strict";
2
-
3
- /* ---------------------------------------------------------------------------------------------
4
- * Copyright (c) Microsoft Corporation. All rights reserved.
5
- * Licensed under the MIT License. See License.txt in the project root for license information.
6
- *-------------------------------------------------------------------------------------------- */
7
- Object.defineProperty(exports, "__esModule", {
8
- value: true
9
- });
10
- exports.RunOnceScheduler = exports.TimeoutTimer = void 0;
11
- const lifecycle_1 = require("../common/lifecycle");
12
- class TimeoutTimer extends _get__("lifecycle_1").Disposable {
13
- constructor(runner, timeout) {
14
- super();
15
- this._token = -1;
16
- if (typeof runner === 'function' && typeof timeout === 'number') {
17
- this.setIfNotSet(runner, timeout);
18
- }
19
- }
20
- dispose() {
21
- this.cancel();
22
- super.dispose();
23
- }
24
- cancel() {
25
- if (this._token !== -1) {
26
- clearTimeout(this._token);
27
- this._token = -1;
28
- }
29
- }
30
- cancelAndSet(runner, timeout) {
31
- this.cancel();
32
- this._token = setTimeout(() => {
33
- this._token = -1;
34
- runner();
35
- }, timeout);
36
- }
37
- setIfNotSet(runner, timeout) {
38
- if (this._token !== -1) {
39
- // timer is already set
40
- return;
41
- }
42
- this._token = setTimeout(() => {
43
- this._token = -1;
44
- runner();
45
- }, timeout);
46
- }
47
- }
48
- exports.TimeoutTimer = _get__("TimeoutTimer");
49
- class RunOnceScheduler {
50
- constructor(runner, timeout) {
51
- this.timeoutToken = -1;
52
- this.runner = runner;
53
- this.timeout = timeout;
54
- this.timeoutHandler = this.onTimeout.bind(this);
55
- }
56
- /**
57
- * Dispose RunOnceScheduler
58
- */
59
- dispose() {
60
- this.cancel();
61
- this.runner = null;
62
- }
63
- /**
64
- * Cancel current scheduled runner (if any).
65
- */
66
- cancel() {
67
- if (this.isScheduled()) {
68
- clearTimeout(this.timeoutToken);
69
- this.timeoutToken = -1;
70
- }
71
- }
72
- /**
73
- * Cancel previous runner (if any) & schedule a new runner.
74
- */
75
- schedule(delay = this.timeout) {
76
- this.cancel();
77
- this.timeoutToken = setTimeout(this.timeoutHandler, delay);
78
- }
79
- /**
80
- * Returns true if scheduled.
81
- */
82
- isScheduled() {
83
- return this.timeoutToken !== -1;
84
- }
85
- onTimeout() {
86
- this.timeoutToken = -1;
87
- if (this.runner) {
88
- this.doRun();
89
- }
90
- }
91
- doRun() {
92
- if (this.runner) {
93
- this.runner();
94
- }
95
- }
96
- }
97
- exports.RunOnceScheduler = _get__("RunOnceScheduler");
98
- function _getGlobalObject() {
99
- try {
100
- if (!!global) {
101
- return global;
102
- }
103
- } catch (e) {
104
- try {
105
- if (!!window) {
106
- return window;
107
- }
108
- } catch (e) {
109
- return this;
110
- }
111
- }
112
- }
113
- ;
114
- var _RewireModuleId__ = null;
115
- function _getRewireModuleId__() {
116
- if (_RewireModuleId__ === null) {
117
- let globalVariable = _getGlobalObject();
118
- if (!globalVariable.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__) {
119
- globalVariable.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__ = 0;
120
- }
121
- _RewireModuleId__ = __$$GLOBAL_REWIRE_NEXT_MODULE_ID__++;
122
- }
123
- return _RewireModuleId__;
124
- }
125
- function _getRewireRegistry__() {
126
- let theGlobalVariable = _getGlobalObject();
127
- if (!theGlobalVariable.__$$GLOBAL_REWIRE_REGISTRY__) {
128
- theGlobalVariable.__$$GLOBAL_REWIRE_REGISTRY__ = Object.create(null);
129
- }
130
- return theGlobalVariable.__$$GLOBAL_REWIRE_REGISTRY__;
131
- }
132
- function _getRewiredData__() {
133
- let moduleId = _getRewireModuleId__();
134
- let registry = _getRewireRegistry__();
135
- let rewireData = registry[moduleId];
136
- if (!rewireData) {
137
- registry[moduleId] = Object.create(null);
138
- rewireData = registry[moduleId];
139
- }
140
- return rewireData;
141
- }
142
- (function registerResetAll() {
143
- let theGlobalVariable = _getGlobalObject();
144
- if (!theGlobalVariable['__rewire_reset_all__']) {
145
- theGlobalVariable['__rewire_reset_all__'] = function () {
146
- theGlobalVariable.__$$GLOBAL_REWIRE_REGISTRY__ = Object.create(null);
147
- };
148
- }
149
- })();
150
- var INTENTIONAL_UNDEFINED = '__INTENTIONAL_UNDEFINED__';
151
- let _RewireAPI__ = {};
152
- (function () {
153
- function addPropertyToAPIObject(name, value) {
154
- Object.defineProperty(_RewireAPI__, name, {
155
- value: value,
156
- enumerable: false,
157
- configurable: true
158
- });
159
- }
160
- addPropertyToAPIObject('__get__', _get__);
161
- addPropertyToAPIObject('__GetDependency__', _get__);
162
- addPropertyToAPIObject('__Rewire__', _set__);
163
- addPropertyToAPIObject('__set__', _set__);
164
- addPropertyToAPIObject('__reset__', _reset__);
165
- addPropertyToAPIObject('__ResetDependency__', _reset__);
166
- addPropertyToAPIObject('__with__', _with__);
167
- })();
168
- function _get__(variableName) {
169
- let rewireData = _getRewiredData__();
170
- if (rewireData[variableName] === undefined) {
171
- return _get_original__(variableName);
172
- } else {
173
- var value = rewireData[variableName];
174
- if (value === INTENTIONAL_UNDEFINED) {
175
- return undefined;
176
- } else {
177
- return value;
178
- }
179
- }
180
- }
181
- function _get_original__(variableName) {
182
- switch (variableName) {
183
- case "lifecycle_1":
184
- return lifecycle_1;
185
- case "TimeoutTimer":
186
- return TimeoutTimer;
187
- case "RunOnceScheduler":
188
- return RunOnceScheduler;
189
- }
190
- return undefined;
191
- }
192
- function _assign__(variableName, value) {
193
- let rewireData = _getRewiredData__();
194
- if (rewireData[variableName] === undefined) {
195
- return _set_original__(variableName, value);
196
- } else {
197
- return rewireData[variableName] = value;
198
- }
199
- }
200
- function _set_original__(variableName, _value) {
201
- switch (variableName) {}
202
- return undefined;
203
- }
204
- function _update_operation__(operation, variableName, prefix) {
205
- var oldValue = _get__(variableName);
206
- var newValue = operation === '++' ? oldValue + 1 : oldValue - 1;
207
- _assign__(variableName, newValue);
208
- return prefix ? newValue : oldValue;
209
- }
210
- function _set__(variableName, value) {
211
- let rewireData = _getRewiredData__();
212
- if (typeof variableName === 'object') {
213
- Object.keys(variableName).forEach(function (name) {
214
- rewireData[name] = variableName[name];
215
- });
216
- return function () {
217
- Object.keys(variableName).forEach(function (name) {
218
- _reset__(variableName);
219
- });
220
- };
221
- } else {
222
- if (value === undefined) {
223
- rewireData[variableName] = INTENTIONAL_UNDEFINED;
224
- } else {
225
- rewireData[variableName] = value;
226
- }
227
- return function () {
228
- _reset__(variableName);
229
- };
230
- }
231
- }
232
- function _reset__(variableName) {
233
- let rewireData = _getRewiredData__();
234
- delete rewireData[variableName];
235
- if (Object.keys(rewireData).length == 0) {
236
- delete _getRewireRegistry__()[_getRewireModuleId__];
237
- }
238
- ;
239
- }
240
- function _with__(object) {
241
- let rewireData = _getRewiredData__();
242
- var rewiredVariableNames = Object.keys(object);
243
- var previousValues = {};
244
- function reset() {
245
- rewiredVariableNames.forEach(function (variableName) {
246
- rewireData[variableName] = previousValues[variableName];
247
- });
248
- }
249
- return function (callback) {
250
- rewiredVariableNames.forEach(function (variableName) {
251
- previousValues[variableName] = rewireData[variableName];
252
- rewireData[variableName] = object[variableName];
253
- });
254
- let result = callback();
255
- if (!!result && typeof result.then == 'function') {
256
- result.then(reset).catch(reset);
257
- } else {
258
- reset();
259
- }
260
- return result;
261
- };
262
- }
263
- let _typeOfOriginalExport = typeof module.exports;
264
- function addNonEnumerableProperty(name, value) {
265
- Object.defineProperty(module.exports, name, {
266
- value: value,
267
- enumerable: false,
268
- configurable: true
269
- });
270
- }
271
- if ((_typeOfOriginalExport === 'object' || _typeOfOriginalExport === 'function') && Object.isExtensible(module.exports)) {
272
- addNonEnumerableProperty('__get__', _get__);
273
- addNonEnumerableProperty('__GetDependency__', _get__);
274
- addNonEnumerableProperty('__Rewire__', _set__);
275
- addNonEnumerableProperty('__set__', _set__);
276
- addNonEnumerableProperty('__reset__', _reset__);
277
- addNonEnumerableProperty('__ResetDependency__', _reset__);
278
- addNonEnumerableProperty('__with__', _with__);
279
- addNonEnumerableProperty('__RewireAPI__', _RewireAPI__);
280
- }
@@ -1,405 +0,0 @@
1
- /**
2
- * An inlined enum containing useful character codes (to be used with String.charCodeAt).
3
- * Please leave the const keyword such that it gets inlined when compiled to JavaScript!
4
- */
5
- export declare const enum CharCode {
6
- Null = 0,
7
- /**
8
- * The `\b` character.
9
- */
10
- Backspace = 8,
11
- /**
12
- * The `\t` character.
13
- */
14
- Tab = 9,
15
- /**
16
- * The `\n` character.
17
- */
18
- LineFeed = 10,
19
- /**
20
- * The `\r` character.
21
- */
22
- CarriageReturn = 13,
23
- Space = 32,
24
- /**
25
- * The `!` character.
26
- */
27
- ExclamationMark = 33,
28
- /**
29
- * The `"` character.
30
- */
31
- DoubleQuote = 34,
32
- /**
33
- * The `#` character.
34
- */
35
- Hash = 35,
36
- /**
37
- * The `$` character.
38
- */
39
- DollarSign = 36,
40
- /**
41
- * The `%` character.
42
- */
43
- PercentSign = 37,
44
- /**
45
- * The `&` character.
46
- */
47
- Ampersand = 38,
48
- /**
49
- * The `'` character.
50
- */
51
- SingleQuote = 39,
52
- /**
53
- * The `(` character.
54
- */
55
- OpenParen = 40,
56
- /**
57
- * The `)` character.
58
- */
59
- CloseParen = 41,
60
- /**
61
- * The `*` character.
62
- */
63
- Asterisk = 42,
64
- /**
65
- * The `+` character.
66
- */
67
- Plus = 43,
68
- /**
69
- * The `,` character.
70
- */
71
- Comma = 44,
72
- /**
73
- * The `-` character.
74
- */
75
- Dash = 45,
76
- /**
77
- * The `.` character.
78
- */
79
- Period = 46,
80
- /**
81
- * The `/` character.
82
- */
83
- Slash = 47,
84
- Digit0 = 48,
85
- Digit1 = 49,
86
- Digit2 = 50,
87
- Digit3 = 51,
88
- Digit4 = 52,
89
- Digit5 = 53,
90
- Digit6 = 54,
91
- Digit7 = 55,
92
- Digit8 = 56,
93
- Digit9 = 57,
94
- /**
95
- * The `:` character.
96
- */
97
- Colon = 58,
98
- /**
99
- * The `;` character.
100
- */
101
- Semicolon = 59,
102
- /**
103
- * The `<` character.
104
- */
105
- LessThan = 60,
106
- /**
107
- * The `=` character.
108
- */
109
- Equals = 61,
110
- /**
111
- * The `>` character.
112
- */
113
- GreaterThan = 62,
114
- /**
115
- * The `?` character.
116
- */
117
- QuestionMark = 63,
118
- /**
119
- * The `@` character.
120
- */
121
- AtSign = 64,
122
- A = 65,
123
- B = 66,
124
- C = 67,
125
- D = 68,
126
- E = 69,
127
- F = 70,
128
- G = 71,
129
- H = 72,
130
- I = 73,
131
- J = 74,
132
- K = 75,
133
- L = 76,
134
- M = 77,
135
- N = 78,
136
- O = 79,
137
- P = 80,
138
- Q = 81,
139
- R = 82,
140
- S = 83,
141
- T = 84,
142
- U = 85,
143
- V = 86,
144
- W = 87,
145
- X = 88,
146
- Y = 89,
147
- Z = 90,
148
- /**
149
- * The `[` character.
150
- */
151
- OpenSquareBracket = 91,
152
- /**
153
- * The `\` character.
154
- */
155
- Backslash = 92,
156
- /**
157
- * The `]` character.
158
- */
159
- CloseSquareBracket = 93,
160
- /**
161
- * The `^` character.
162
- */
163
- Caret = 94,
164
- /**
165
- * The `_` character.
166
- */
167
- Underline = 95,
168
- /**
169
- * The ``(`)`` character.
170
- */
171
- BackTick = 96,
172
- a = 97,
173
- b = 98,
174
- c = 99,
175
- d = 100,
176
- e = 101,
177
- f = 102,
178
- g = 103,
179
- h = 104,
180
- i = 105,
181
- j = 106,
182
- k = 107,
183
- l = 108,
184
- m = 109,
185
- n = 110,
186
- o = 111,
187
- p = 112,
188
- q = 113,
189
- r = 114,
190
- s = 115,
191
- t = 116,
192
- u = 117,
193
- v = 118,
194
- w = 119,
195
- x = 120,
196
- y = 121,
197
- z = 122,
198
- /**
199
- * The `{` character.
200
- */
201
- OpenCurlyBrace = 123,
202
- /**
203
- * The `|` character.
204
- */
205
- Pipe = 124,
206
- /**
207
- * The `}` character.
208
- */
209
- CloseCurlyBrace = 125,
210
- /**
211
- * The `~` character.
212
- */
213
- Tilde = 126,
214
- U_Combining_Grave_Accent = 768,
215
- U_Combining_Acute_Accent = 769,
216
- U_Combining_Circumflex_Accent = 770,
217
- U_Combining_Tilde = 771,
218
- U_Combining_Macron = 772,
219
- U_Combining_Overline = 773,
220
- U_Combining_Breve = 774,
221
- U_Combining_Dot_Above = 775,
222
- U_Combining_Diaeresis = 776,
223
- U_Combining_Hook_Above = 777,
224
- U_Combining_Ring_Above = 778,
225
- U_Combining_Double_Acute_Accent = 779,
226
- U_Combining_Caron = 780,
227
- U_Combining_Vertical_Line_Above = 781,
228
- U_Combining_Double_Vertical_Line_Above = 782,
229
- U_Combining_Double_Grave_Accent = 783,
230
- U_Combining_Candrabindu = 784,
231
- U_Combining_Inverted_Breve = 785,
232
- U_Combining_Turned_Comma_Above = 786,
233
- U_Combining_Comma_Above = 787,
234
- U_Combining_Reversed_Comma_Above = 788,
235
- U_Combining_Comma_Above_Right = 789,
236
- U_Combining_Grave_Accent_Below = 790,
237
- U_Combining_Acute_Accent_Below = 791,
238
- U_Combining_Left_Tack_Below = 792,
239
- U_Combining_Right_Tack_Below = 793,
240
- U_Combining_Left_Angle_Above = 794,
241
- U_Combining_Horn = 795,
242
- U_Combining_Left_Half_Ring_Below = 796,
243
- U_Combining_Up_Tack_Below = 797,
244
- U_Combining_Down_Tack_Below = 798,
245
- U_Combining_Plus_Sign_Below = 799,
246
- U_Combining_Minus_Sign_Below = 800,
247
- U_Combining_Palatalized_Hook_Below = 801,
248
- U_Combining_Retroflex_Hook_Below = 802,
249
- U_Combining_Dot_Below = 803,
250
- U_Combining_Diaeresis_Below = 804,
251
- U_Combining_Ring_Below = 805,
252
- U_Combining_Comma_Below = 806,
253
- U_Combining_Cedilla = 807,
254
- U_Combining_Ogonek = 808,
255
- U_Combining_Vertical_Line_Below = 809,
256
- U_Combining_Bridge_Below = 810,
257
- U_Combining_Inverted_Double_Arch_Below = 811,
258
- U_Combining_Caron_Below = 812,
259
- U_Combining_Circumflex_Accent_Below = 813,
260
- U_Combining_Breve_Below = 814,
261
- U_Combining_Inverted_Breve_Below = 815,
262
- U_Combining_Tilde_Below = 816,
263
- U_Combining_Macron_Below = 817,
264
- U_Combining_Low_Line = 818,
265
- U_Combining_Double_Low_Line = 819,
266
- U_Combining_Tilde_Overlay = 820,
267
- U_Combining_Short_Stroke_Overlay = 821,
268
- U_Combining_Long_Stroke_Overlay = 822,
269
- U_Combining_Short_Solidus_Overlay = 823,
270
- U_Combining_Long_Solidus_Overlay = 824,
271
- U_Combining_Right_Half_Ring_Below = 825,
272
- U_Combining_Inverted_Bridge_Below = 826,
273
- U_Combining_Square_Below = 827,
274
- U_Combining_Seagull_Below = 828,
275
- U_Combining_X_Above = 829,
276
- U_Combining_Vertical_Tilde = 830,
277
- U_Combining_Double_Overline = 831,
278
- U_Combining_Grave_Tone_Mark = 832,
279
- U_Combining_Acute_Tone_Mark = 833,
280
- U_Combining_Greek_Perispomeni = 834,
281
- U_Combining_Greek_Koronis = 835,
282
- U_Combining_Greek_Dialytika_Tonos = 836,
283
- U_Combining_Greek_Ypogegrammeni = 837,
284
- U_Combining_Bridge_Above = 838,
285
- U_Combining_Equals_Sign_Below = 839,
286
- U_Combining_Double_Vertical_Line_Below = 840,
287
- U_Combining_Left_Angle_Below = 841,
288
- U_Combining_Not_Tilde_Above = 842,
289
- U_Combining_Homothetic_Above = 843,
290
- U_Combining_Almost_Equal_To_Above = 844,
291
- U_Combining_Left_Right_Arrow_Below = 845,
292
- U_Combining_Upwards_Arrow_Below = 846,
293
- U_Combining_Grapheme_Joiner = 847,
294
- U_Combining_Right_Arrowhead_Above = 848,
295
- U_Combining_Left_Half_Ring_Above = 849,
296
- U_Combining_Fermata = 850,
297
- U_Combining_X_Below = 851,
298
- U_Combining_Left_Arrowhead_Below = 852,
299
- U_Combining_Right_Arrowhead_Below = 853,
300
- U_Combining_Right_Arrowhead_And_Up_Arrowhead_Below = 854,
301
- U_Combining_Right_Half_Ring_Above = 855,
302
- U_Combining_Dot_Above_Right = 856,
303
- U_Combining_Asterisk_Below = 857,
304
- U_Combining_Double_Ring_Below = 858,
305
- U_Combining_Zigzag_Above = 859,
306
- U_Combining_Double_Breve_Below = 860,
307
- U_Combining_Double_Breve = 861,
308
- U_Combining_Double_Macron = 862,
309
- U_Combining_Double_Macron_Below = 863,
310
- U_Combining_Double_Tilde = 864,
311
- U_Combining_Double_Inverted_Breve = 865,
312
- U_Combining_Double_Rightwards_Arrow_Below = 866,
313
- U_Combining_Latin_Small_Letter_A = 867,
314
- U_Combining_Latin_Small_Letter_E = 868,
315
- U_Combining_Latin_Small_Letter_I = 869,
316
- U_Combining_Latin_Small_Letter_O = 870,
317
- U_Combining_Latin_Small_Letter_U = 871,
318
- U_Combining_Latin_Small_Letter_C = 872,
319
- U_Combining_Latin_Small_Letter_D = 873,
320
- U_Combining_Latin_Small_Letter_H = 874,
321
- U_Combining_Latin_Small_Letter_M = 875,
322
- U_Combining_Latin_Small_Letter_R = 876,
323
- U_Combining_Latin_Small_Letter_T = 877,
324
- U_Combining_Latin_Small_Letter_V = 878,
325
- U_Combining_Latin_Small_Letter_X = 879,
326
- /**
327
- * Unicode Character 'LINE SEPARATOR' (U+2028)
328
- * http://www.fileformat.info/info/unicode/char/2028/index.htm
329
- */
330
- LINE_SEPARATOR_2028 = 8232,
331
- U_CIRCUMFLEX = 94,
332
- U_GRAVE_ACCENT = 96,
333
- U_DIAERESIS = 168,
334
- U_MACRON = 175,
335
- U_ACUTE_ACCENT = 180,
336
- U_CEDILLA = 184,
337
- U_MODIFIER_LETTER_LEFT_ARROWHEAD = 706,
338
- U_MODIFIER_LETTER_RIGHT_ARROWHEAD = 707,
339
- U_MODIFIER_LETTER_UP_ARROWHEAD = 708,
340
- U_MODIFIER_LETTER_DOWN_ARROWHEAD = 709,
341
- U_MODIFIER_LETTER_CENTRED_RIGHT_HALF_RING = 722,
342
- U_MODIFIER_LETTER_CENTRED_LEFT_HALF_RING = 723,
343
- U_MODIFIER_LETTER_UP_TACK = 724,
344
- U_MODIFIER_LETTER_DOWN_TACK = 725,
345
- U_MODIFIER_LETTER_PLUS_SIGN = 726,
346
- U_MODIFIER_LETTER_MINUS_SIGN = 727,
347
- U_BREVE = 728,
348
- U_DOT_ABOVE = 729,
349
- U_RING_ABOVE = 730,
350
- U_OGONEK = 731,
351
- U_SMALL_TILDE = 732,
352
- U_DOUBLE_ACUTE_ACCENT = 733,
353
- U_MODIFIER_LETTER_RHOTIC_HOOK = 734,
354
- U_MODIFIER_LETTER_CROSS_ACCENT = 735,
355
- U_MODIFIER_LETTER_EXTRA_HIGH_TONE_BAR = 741,
356
- U_MODIFIER_LETTER_HIGH_TONE_BAR = 742,
357
- U_MODIFIER_LETTER_MID_TONE_BAR = 743,
358
- U_MODIFIER_LETTER_LOW_TONE_BAR = 744,
359
- U_MODIFIER_LETTER_EXTRA_LOW_TONE_BAR = 745,
360
- U_MODIFIER_LETTER_YIN_DEPARTING_TONE_MARK = 746,
361
- U_MODIFIER_LETTER_YANG_DEPARTING_TONE_MARK = 747,
362
- U_MODIFIER_LETTER_UNASPIRATED = 749,
363
- U_MODIFIER_LETTER_LOW_DOWN_ARROWHEAD = 751,
364
- U_MODIFIER_LETTER_LOW_UP_ARROWHEAD = 752,
365
- U_MODIFIER_LETTER_LOW_LEFT_ARROWHEAD = 753,
366
- U_MODIFIER_LETTER_LOW_RIGHT_ARROWHEAD = 754,
367
- U_MODIFIER_LETTER_LOW_RING = 755,
368
- U_MODIFIER_LETTER_MIDDLE_GRAVE_ACCENT = 756,
369
- U_MODIFIER_LETTER_MIDDLE_DOUBLE_GRAVE_ACCENT = 757,
370
- U_MODIFIER_LETTER_MIDDLE_DOUBLE_ACUTE_ACCENT = 758,
371
- U_MODIFIER_LETTER_LOW_TILDE = 759,
372
- U_MODIFIER_LETTER_RAISED_COLON = 760,
373
- U_MODIFIER_LETTER_BEGIN_HIGH_TONE = 761,
374
- U_MODIFIER_LETTER_END_HIGH_TONE = 762,
375
- U_MODIFIER_LETTER_BEGIN_LOW_TONE = 763,
376
- U_MODIFIER_LETTER_END_LOW_TONE = 764,
377
- U_MODIFIER_LETTER_SHELF = 765,
378
- U_MODIFIER_LETTER_OPEN_SHELF = 766,
379
- U_MODIFIER_LETTER_LOW_LEFT_ARROW = 767,
380
- U_GREEK_LOWER_NUMERAL_SIGN = 885,
381
- U_GREEK_TONOS = 900,
382
- U_GREEK_DIALYTIKA_TONOS = 901,
383
- U_GREEK_KORONIS = 8125,
384
- U_GREEK_PSILI = 8127,
385
- U_GREEK_PERISPOMENI = 8128,
386
- U_GREEK_DIALYTIKA_AND_PERISPOMENI = 8129,
387
- U_GREEK_PSILI_AND_VARIA = 8141,
388
- U_GREEK_PSILI_AND_OXIA = 8142,
389
- U_GREEK_PSILI_AND_PERISPOMENI = 8143,
390
- U_GREEK_DASIA_AND_VARIA = 8157,
391
- U_GREEK_DASIA_AND_OXIA = 8158,
392
- U_GREEK_DASIA_AND_PERISPOMENI = 8159,
393
- U_GREEK_DIALYTIKA_AND_VARIA = 8173,
394
- U_GREEK_DIALYTIKA_AND_OXIA = 8174,
395
- U_GREEK_VARIA = 8175,
396
- U_GREEK_OXIA = 8189,
397
- U_GREEK_DASIA = 8190,
398
- U_OVERLINE = 8254,
399
- /**
400
- * UTF-8 BOM
401
- * Unicode Character 'ZERO WIDTH NO-BREAK SPACE' (U+FEFF)
402
- * http://www.fileformat.info/info/unicode/char/feff/index.htm
403
- */
404
- UTF8_BOM = 65279
405
- }
@@ -1,9 +0,0 @@
1
- "use strict";
2
-
3
- /* ---------------------------------------------------------------------------------------------
4
- * Copyright (c) Microsoft Corporation. All rights reserved.
5
- * Licensed under the MIT License. See License.txt in the project root for license information.
6
- *-------------------------------------------------------------------------------------------- */
7
- Object.defineProperty(exports, "__esModule", {
8
- value: true
9
- });