custom-electron-titlebar 4.2.8 → 4.4.1

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 (74) hide show
  1. package/README.md +32 -12
  2. package/index.d.mts +684 -0
  3. package/index.d.ts +684 -3
  4. package/index.js +5207 -175
  5. package/index.js.map +1 -0
  6. package/index.mjs +5219 -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 +40 -32
  15. package/base/browser/browser.d.ts +0 -26
  16. package/base/browser/browser.js +0 -317
  17. package/base/browser/event.d.ts +0 -12
  18. package/base/browser/event.js +0 -215
  19. package/base/browser/keyboardEvent.d.ts +0 -38
  20. package/base/browser/keyboardEvent.js +0 -462
  21. package/base/browser/mouseEvent.d.ts +0 -61
  22. package/base/browser/mouseEvent.js +0 -327
  23. package/base/browser/touch.d.ts +0 -39
  24. package/base/browser/touch.js +0 -454
  25. package/base/common/arrays.d.ts +0 -10
  26. package/base/common/arrays.js +0 -210
  27. package/base/common/async.d.ts +0 -35
  28. package/base/common/async.js +0 -280
  29. package/base/common/charCode.d.ts +0 -405
  30. package/base/common/charCode.js +0 -9
  31. package/base/common/color.d.ts +0 -159
  32. package/base/common/color.js +0 -708
  33. package/base/common/decorators.d.ts +0 -6
  34. package/base/common/decorators.js +0 -300
  35. package/base/common/dom.d.ts +0 -221
  36. package/base/common/dom.js +0 -1476
  37. package/base/common/event.d.ts +0 -213
  38. package/base/common/event.js +0 -804
  39. package/base/common/iterator.d.ts +0 -69
  40. package/base/common/iterator.js +0 -380
  41. package/base/common/keyCodes.d.ts +0 -478
  42. package/base/common/keyCodes.js +0 -477
  43. package/base/common/lifecycle.d.ts +0 -17
  44. package/base/common/lifecycle.js +0 -258
  45. package/base/common/linkedList.d.ts +0 -17
  46. package/base/common/linkedList.js +0 -319
  47. package/base/common/platform.d.ts +0 -36
  48. package/base/common/platform.js +0 -314
  49. package/base/common/strings.d.ts +0 -23
  50. package/base/common/strings.js +0 -273
  51. package/consts.d.ts +0 -58
  52. package/consts.js +0 -317
  53. package/main/attach-titlebar-to-window.d.ts +0 -3
  54. package/main/attach-titlebar-to-window.js +0 -210
  55. package/main/setup-titlebar.d.ts +0 -2
  56. package/main/setup-titlebar.js +0 -255
  57. package/menubar/index.d.ts +0 -86
  58. package/menubar/index.js +0 -1119
  59. package/menubar/menu/index.d.ts +0 -46
  60. package/menubar/menu/index.js +0 -565
  61. package/menubar/menu/item.d.ts +0 -67
  62. package/menubar/menu/item.js +0 -575
  63. package/menubar/menu/separator.d.ts +0 -11
  64. package/menubar/menu/separator.js +0 -213
  65. package/menubar/menu/submenu.d.ts +0 -32
  66. package/menubar/menu/submenu.js +0 -372
  67. package/menubar/menubar-options.d.ts +0 -47
  68. package/menubar/menubar-options.js +0 -9
  69. package/titlebar/index.d.ts +0 -105
  70. package/titlebar/index.js +0 -703
  71. package/titlebar/options.d.ts +0 -89
  72. package/titlebar/options.js +0 -9
  73. package/titlebar/themebar.d.ts +0 -20
  74. 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,// U+0300 Combining Grave Accent
215
- U_Combining_Acute_Accent = 769,// U+0301 Combining Acute Accent
216
- U_Combining_Circumflex_Accent = 770,// U+0302 Combining Circumflex Accent
217
- U_Combining_Tilde = 771,// U+0303 Combining Tilde
218
- U_Combining_Macron = 772,// U+0304 Combining Macron
219
- U_Combining_Overline = 773,// U+0305 Combining Overline
220
- U_Combining_Breve = 774,// U+0306 Combining Breve
221
- U_Combining_Dot_Above = 775,// U+0307 Combining Dot Above
222
- U_Combining_Diaeresis = 776,// U+0308 Combining Diaeresis
223
- U_Combining_Hook_Above = 777,// U+0309 Combining Hook Above
224
- U_Combining_Ring_Above = 778,// U+030A Combining Ring Above
225
- U_Combining_Double_Acute_Accent = 779,// U+030B Combining Double Acute Accent
226
- U_Combining_Caron = 780,// U+030C Combining Caron
227
- U_Combining_Vertical_Line_Above = 781,// U+030D Combining Vertical Line Above
228
- U_Combining_Double_Vertical_Line_Above = 782,// U+030E Combining Double Vertical Line Above
229
- U_Combining_Double_Grave_Accent = 783,// U+030F Combining Double Grave Accent
230
- U_Combining_Candrabindu = 784,// U+0310 Combining Candrabindu
231
- U_Combining_Inverted_Breve = 785,// U+0311 Combining Inverted Breve
232
- U_Combining_Turned_Comma_Above = 786,// U+0312 Combining Turned Comma Above
233
- U_Combining_Comma_Above = 787,// U+0313 Combining Comma Above
234
- U_Combining_Reversed_Comma_Above = 788,// U+0314 Combining Reversed Comma Above
235
- U_Combining_Comma_Above_Right = 789,// U+0315 Combining Comma Above Right
236
- U_Combining_Grave_Accent_Below = 790,// U+0316 Combining Grave Accent Below
237
- U_Combining_Acute_Accent_Below = 791,// U+0317 Combining Acute Accent Below
238
- U_Combining_Left_Tack_Below = 792,// U+0318 Combining Left Tack Below
239
- U_Combining_Right_Tack_Below = 793,// U+0319 Combining Right Tack Below
240
- U_Combining_Left_Angle_Above = 794,// U+031A Combining Left Angle Above
241
- U_Combining_Horn = 795,// U+031B Combining Horn
242
- U_Combining_Left_Half_Ring_Below = 796,// U+031C Combining Left Half Ring Below
243
- U_Combining_Up_Tack_Below = 797,// U+031D Combining Up Tack Below
244
- U_Combining_Down_Tack_Below = 798,// U+031E Combining Down Tack Below
245
- U_Combining_Plus_Sign_Below = 799,// U+031F Combining Plus Sign Below
246
- U_Combining_Minus_Sign_Below = 800,// U+0320 Combining Minus Sign Below
247
- U_Combining_Palatalized_Hook_Below = 801,// U+0321 Combining Palatalized Hook Below
248
- U_Combining_Retroflex_Hook_Below = 802,// U+0322 Combining Retroflex Hook Below
249
- U_Combining_Dot_Below = 803,// U+0323 Combining Dot Below
250
- U_Combining_Diaeresis_Below = 804,// U+0324 Combining Diaeresis Below
251
- U_Combining_Ring_Below = 805,// U+0325 Combining Ring Below
252
- U_Combining_Comma_Below = 806,// U+0326 Combining Comma Below
253
- U_Combining_Cedilla = 807,// U+0327 Combining Cedilla
254
- U_Combining_Ogonek = 808,// U+0328 Combining Ogonek
255
- U_Combining_Vertical_Line_Below = 809,// U+0329 Combining Vertical Line Below
256
- U_Combining_Bridge_Below = 810,// U+032A Combining Bridge Below
257
- U_Combining_Inverted_Double_Arch_Below = 811,// U+032B Combining Inverted Double Arch Below
258
- U_Combining_Caron_Below = 812,// U+032C Combining Caron Below
259
- U_Combining_Circumflex_Accent_Below = 813,// U+032D Combining Circumflex Accent Below
260
- U_Combining_Breve_Below = 814,// U+032E Combining Breve Below
261
- U_Combining_Inverted_Breve_Below = 815,// U+032F Combining Inverted Breve Below
262
- U_Combining_Tilde_Below = 816,// U+0330 Combining Tilde Below
263
- U_Combining_Macron_Below = 817,// U+0331 Combining Macron Below
264
- U_Combining_Low_Line = 818,// U+0332 Combining Low Line
265
- U_Combining_Double_Low_Line = 819,// U+0333 Combining Double Low Line
266
- U_Combining_Tilde_Overlay = 820,// U+0334 Combining Tilde Overlay
267
- U_Combining_Short_Stroke_Overlay = 821,// U+0335 Combining Short Stroke Overlay
268
- U_Combining_Long_Stroke_Overlay = 822,// U+0336 Combining Long Stroke Overlay
269
- U_Combining_Short_Solidus_Overlay = 823,// U+0337 Combining Short Solidus Overlay
270
- U_Combining_Long_Solidus_Overlay = 824,// U+0338 Combining Long Solidus Overlay
271
- U_Combining_Right_Half_Ring_Below = 825,// U+0339 Combining Right Half Ring Below
272
- U_Combining_Inverted_Bridge_Below = 826,// U+033A Combining Inverted Bridge Below
273
- U_Combining_Square_Below = 827,// U+033B Combining Square Below
274
- U_Combining_Seagull_Below = 828,// U+033C Combining Seagull Below
275
- U_Combining_X_Above = 829,// U+033D Combining X Above
276
- U_Combining_Vertical_Tilde = 830,// U+033E Combining Vertical Tilde
277
- U_Combining_Double_Overline = 831,// U+033F Combining Double Overline
278
- U_Combining_Grave_Tone_Mark = 832,// U+0340 Combining Grave Tone Mark
279
- U_Combining_Acute_Tone_Mark = 833,// U+0341 Combining Acute Tone Mark
280
- U_Combining_Greek_Perispomeni = 834,// U+0342 Combining Greek Perispomeni
281
- U_Combining_Greek_Koronis = 835,// U+0343 Combining Greek Koronis
282
- U_Combining_Greek_Dialytika_Tonos = 836,// U+0344 Combining Greek Dialytika Tonos
283
- U_Combining_Greek_Ypogegrammeni = 837,// U+0345 Combining Greek Ypogegrammeni
284
- U_Combining_Bridge_Above = 838,// U+0346 Combining Bridge Above
285
- U_Combining_Equals_Sign_Below = 839,// U+0347 Combining Equals Sign Below
286
- U_Combining_Double_Vertical_Line_Below = 840,// U+0348 Combining Double Vertical Line Below
287
- U_Combining_Left_Angle_Below = 841,// U+0349 Combining Left Angle Below
288
- U_Combining_Not_Tilde_Above = 842,// U+034A Combining Not Tilde Above
289
- U_Combining_Homothetic_Above = 843,// U+034B Combining Homothetic Above
290
- U_Combining_Almost_Equal_To_Above = 844,// U+034C Combining Almost Equal To Above
291
- U_Combining_Left_Right_Arrow_Below = 845,// U+034D Combining Left Right Arrow Below
292
- U_Combining_Upwards_Arrow_Below = 846,// U+034E Combining Upwards Arrow Below
293
- U_Combining_Grapheme_Joiner = 847,// U+034F Combining Grapheme Joiner
294
- U_Combining_Right_Arrowhead_Above = 848,// U+0350 Combining Right Arrowhead Above
295
- U_Combining_Left_Half_Ring_Above = 849,// U+0351 Combining Left Half Ring Above
296
- U_Combining_Fermata = 850,// U+0352 Combining Fermata
297
- U_Combining_X_Below = 851,// U+0353 Combining X Below
298
- U_Combining_Left_Arrowhead_Below = 852,// U+0354 Combining Left Arrowhead Below
299
- U_Combining_Right_Arrowhead_Below = 853,// U+0355 Combining Right Arrowhead Below
300
- U_Combining_Right_Arrowhead_And_Up_Arrowhead_Below = 854,// U+0356 Combining Right Arrowhead And Up Arrowhead Below
301
- U_Combining_Right_Half_Ring_Above = 855,// U+0357 Combining Right Half Ring Above
302
- U_Combining_Dot_Above_Right = 856,// U+0358 Combining Dot Above Right
303
- U_Combining_Asterisk_Below = 857,// U+0359 Combining Asterisk Below
304
- U_Combining_Double_Ring_Below = 858,// U+035A Combining Double Ring Below
305
- U_Combining_Zigzag_Above = 859,// U+035B Combining Zigzag Above
306
- U_Combining_Double_Breve_Below = 860,// U+035C Combining Double Breve Below
307
- U_Combining_Double_Breve = 861,// U+035D Combining Double Breve
308
- U_Combining_Double_Macron = 862,// U+035E Combining Double Macron
309
- U_Combining_Double_Macron_Below = 863,// U+035F Combining Double Macron Below
310
- U_Combining_Double_Tilde = 864,// U+0360 Combining Double Tilde
311
- U_Combining_Double_Inverted_Breve = 865,// U+0361 Combining Double Inverted Breve
312
- U_Combining_Double_Rightwards_Arrow_Below = 866,// U+0362 Combining Double Rightwards Arrow Below
313
- U_Combining_Latin_Small_Letter_A = 867,// U+0363 Combining Latin Small Letter A
314
- U_Combining_Latin_Small_Letter_E = 868,// U+0364 Combining Latin Small Letter E
315
- U_Combining_Latin_Small_Letter_I = 869,// U+0365 Combining Latin Small Letter I
316
- U_Combining_Latin_Small_Letter_O = 870,// U+0366 Combining Latin Small Letter O
317
- U_Combining_Latin_Small_Letter_U = 871,// U+0367 Combining Latin Small Letter U
318
- U_Combining_Latin_Small_Letter_C = 872,// U+0368 Combining Latin Small Letter C
319
- U_Combining_Latin_Small_Letter_D = 873,// U+0369 Combining Latin Small Letter D
320
- U_Combining_Latin_Small_Letter_H = 874,// U+036A Combining Latin Small Letter H
321
- U_Combining_Latin_Small_Letter_M = 875,// U+036B Combining Latin Small Letter M
322
- U_Combining_Latin_Small_Letter_R = 876,// U+036C Combining Latin Small Letter R
323
- U_Combining_Latin_Small_Letter_T = 877,// U+036D Combining Latin Small Letter T
324
- U_Combining_Latin_Small_Letter_V = 878,// U+036E Combining Latin Small Letter V
325
- U_Combining_Latin_Small_Letter_X = 879,// U+036F Combining Latin Small Letter X
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,// U+005E CIRCUMFLEX
332
- U_GRAVE_ACCENT = 96,// U+0060 GRAVE ACCENT
333
- U_DIAERESIS = 168,// U+00A8 DIAERESIS
334
- U_MACRON = 175,// U+00AF MACRON
335
- U_ACUTE_ACCENT = 180,// U+00B4 ACUTE ACCENT
336
- U_CEDILLA = 184,// U+00B8 CEDILLA
337
- U_MODIFIER_LETTER_LEFT_ARROWHEAD = 706,// U+02C2 MODIFIER LETTER LEFT ARROWHEAD
338
- U_MODIFIER_LETTER_RIGHT_ARROWHEAD = 707,// U+02C3 MODIFIER LETTER RIGHT ARROWHEAD
339
- U_MODIFIER_LETTER_UP_ARROWHEAD = 708,// U+02C4 MODIFIER LETTER UP ARROWHEAD
340
- U_MODIFIER_LETTER_DOWN_ARROWHEAD = 709,// U+02C5 MODIFIER LETTER DOWN ARROWHEAD
341
- U_MODIFIER_LETTER_CENTRED_RIGHT_HALF_RING = 722,// U+02D2 MODIFIER LETTER CENTRED RIGHT HALF RING
342
- U_MODIFIER_LETTER_CENTRED_LEFT_HALF_RING = 723,// U+02D3 MODIFIER LETTER CENTRED LEFT HALF RING
343
- U_MODIFIER_LETTER_UP_TACK = 724,// U+02D4 MODIFIER LETTER UP TACK
344
- U_MODIFIER_LETTER_DOWN_TACK = 725,// U+02D5 MODIFIER LETTER DOWN TACK
345
- U_MODIFIER_LETTER_PLUS_SIGN = 726,// U+02D6 MODIFIER LETTER PLUS SIGN
346
- U_MODIFIER_LETTER_MINUS_SIGN = 727,// U+02D7 MODIFIER LETTER MINUS SIGN
347
- U_BREVE = 728,// U+02D8 BREVE
348
- U_DOT_ABOVE = 729,// U+02D9 DOT ABOVE
349
- U_RING_ABOVE = 730,// U+02DA RING ABOVE
350
- U_OGONEK = 731,// U+02DB OGONEK
351
- U_SMALL_TILDE = 732,// U+02DC SMALL TILDE
352
- U_DOUBLE_ACUTE_ACCENT = 733,// U+02DD DOUBLE ACUTE ACCENT
353
- U_MODIFIER_LETTER_RHOTIC_HOOK = 734,// U+02DE MODIFIER LETTER RHOTIC HOOK
354
- U_MODIFIER_LETTER_CROSS_ACCENT = 735,// U+02DF MODIFIER LETTER CROSS ACCENT
355
- U_MODIFIER_LETTER_EXTRA_HIGH_TONE_BAR = 741,// U+02E5 MODIFIER LETTER EXTRA-HIGH TONE BAR
356
- U_MODIFIER_LETTER_HIGH_TONE_BAR = 742,// U+02E6 MODIFIER LETTER HIGH TONE BAR
357
- U_MODIFIER_LETTER_MID_TONE_BAR = 743,// U+02E7 MODIFIER LETTER MID TONE BAR
358
- U_MODIFIER_LETTER_LOW_TONE_BAR = 744,// U+02E8 MODIFIER LETTER LOW TONE BAR
359
- U_MODIFIER_LETTER_EXTRA_LOW_TONE_BAR = 745,// U+02E9 MODIFIER LETTER EXTRA-LOW TONE BAR
360
- U_MODIFIER_LETTER_YIN_DEPARTING_TONE_MARK = 746,// U+02EA MODIFIER LETTER YIN DEPARTING TONE MARK
361
- U_MODIFIER_LETTER_YANG_DEPARTING_TONE_MARK = 747,// U+02EB MODIFIER LETTER YANG DEPARTING TONE MARK
362
- U_MODIFIER_LETTER_UNASPIRATED = 749,// U+02ED MODIFIER LETTER UNASPIRATED
363
- U_MODIFIER_LETTER_LOW_DOWN_ARROWHEAD = 751,// U+02EF MODIFIER LETTER LOW DOWN ARROWHEAD
364
- U_MODIFIER_LETTER_LOW_UP_ARROWHEAD = 752,// U+02F0 MODIFIER LETTER LOW UP ARROWHEAD
365
- U_MODIFIER_LETTER_LOW_LEFT_ARROWHEAD = 753,// U+02F1 MODIFIER LETTER LOW LEFT ARROWHEAD
366
- U_MODIFIER_LETTER_LOW_RIGHT_ARROWHEAD = 754,// U+02F2 MODIFIER LETTER LOW RIGHT ARROWHEAD
367
- U_MODIFIER_LETTER_LOW_RING = 755,// U+02F3 MODIFIER LETTER LOW RING
368
- U_MODIFIER_LETTER_MIDDLE_GRAVE_ACCENT = 756,// U+02F4 MODIFIER LETTER MIDDLE GRAVE ACCENT
369
- U_MODIFIER_LETTER_MIDDLE_DOUBLE_GRAVE_ACCENT = 757,// U+02F5 MODIFIER LETTER MIDDLE DOUBLE GRAVE ACCENT
370
- U_MODIFIER_LETTER_MIDDLE_DOUBLE_ACUTE_ACCENT = 758,// U+02F6 MODIFIER LETTER MIDDLE DOUBLE ACUTE ACCENT
371
- U_MODIFIER_LETTER_LOW_TILDE = 759,// U+02F7 MODIFIER LETTER LOW TILDE
372
- U_MODIFIER_LETTER_RAISED_COLON = 760,// U+02F8 MODIFIER LETTER RAISED COLON
373
- U_MODIFIER_LETTER_BEGIN_HIGH_TONE = 761,// U+02F9 MODIFIER LETTER BEGIN HIGH TONE
374
- U_MODIFIER_LETTER_END_HIGH_TONE = 762,// U+02FA MODIFIER LETTER END HIGH TONE
375
- U_MODIFIER_LETTER_BEGIN_LOW_TONE = 763,// U+02FB MODIFIER LETTER BEGIN LOW TONE
376
- U_MODIFIER_LETTER_END_LOW_TONE = 764,// U+02FC MODIFIER LETTER END LOW TONE
377
- U_MODIFIER_LETTER_SHELF = 765,// U+02FD MODIFIER LETTER SHELF
378
- U_MODIFIER_LETTER_OPEN_SHELF = 766,// U+02FE MODIFIER LETTER OPEN SHELF
379
- U_MODIFIER_LETTER_LOW_LEFT_ARROW = 767,// U+02FF MODIFIER LETTER LOW LEFT ARROW
380
- U_GREEK_LOWER_NUMERAL_SIGN = 885,// U+0375 GREEK LOWER NUMERAL SIGN
381
- U_GREEK_TONOS = 900,// U+0384 GREEK TONOS
382
- U_GREEK_DIALYTIKA_TONOS = 901,// U+0385 GREEK DIALYTIKA TONOS
383
- U_GREEK_KORONIS = 8125,// U+1FBD GREEK KORONIS
384
- U_GREEK_PSILI = 8127,// U+1FBF GREEK PSILI
385
- U_GREEK_PERISPOMENI = 8128,// U+1FC0 GREEK PERISPOMENI
386
- U_GREEK_DIALYTIKA_AND_PERISPOMENI = 8129,// U+1FC1 GREEK DIALYTIKA AND PERISPOMENI
387
- U_GREEK_PSILI_AND_VARIA = 8141,// U+1FCD GREEK PSILI AND VARIA
388
- U_GREEK_PSILI_AND_OXIA = 8142,// U+1FCE GREEK PSILI AND OXIA
389
- U_GREEK_PSILI_AND_PERISPOMENI = 8143,// U+1FCF GREEK PSILI AND PERISPOMENI
390
- U_GREEK_DASIA_AND_VARIA = 8157,// U+1FDD GREEK DASIA AND VARIA
391
- U_GREEK_DASIA_AND_OXIA = 8158,// U+1FDE GREEK DASIA AND OXIA
392
- U_GREEK_DASIA_AND_PERISPOMENI = 8159,// U+1FDF GREEK DASIA AND PERISPOMENI
393
- U_GREEK_DIALYTIKA_AND_VARIA = 8173,// U+1FED GREEK DIALYTIKA AND VARIA
394
- U_GREEK_DIALYTIKA_AND_OXIA = 8174,// U+1FEE GREEK DIALYTIKA AND OXIA
395
- U_GREEK_VARIA = 8175,// U+1FEF GREEK VARIA
396
- U_GREEK_OXIA = 8189,// U+1FFD GREEK OXIA
397
- U_GREEK_DASIA = 8190,// U+1FFE GREEK DASIA
398
- U_OVERLINE = 8254,// Unicode Character 'OVERLINE'
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
- });