@theia/editor 1.45.1 → 1.46.0-next.72

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 (112) hide show
  1. package/README.md +30 -30
  2. package/lib/browser/decorations/editor-decoration-style.d.ts +8 -8
  3. package/lib/browser/decorations/editor-decoration-style.js +36 -36
  4. package/lib/browser/decorations/editor-decoration.d.ts +106 -106
  5. package/lib/browser/decorations/editor-decoration.js +37 -37
  6. package/lib/browser/decorations/editor-decorator.d.ts +6 -6
  7. package/lib/browser/decorations/editor-decorator.js +43 -43
  8. package/lib/browser/decorations/index.d.ts +3 -3
  9. package/lib/browser/decorations/index.js +30 -30
  10. package/lib/browser/diff-navigator.d.ts +9 -10
  11. package/lib/browser/diff-navigator.d.ts.map +1 -1
  12. package/lib/browser/diff-navigator.js +19 -19
  13. package/lib/browser/diff-navigator.js.map +1 -1
  14. package/lib/browser/editor-command.d.ts +102 -102
  15. package/lib/browser/editor-command.js +426 -426
  16. package/lib/browser/editor-contribution.d.ts +26 -26
  17. package/lib/browser/editor-contribution.js +198 -198
  18. package/lib/browser/editor-frontend-module.d.ts +5 -5
  19. package/lib/browser/editor-frontend-module.js +74 -74
  20. package/lib/browser/editor-generated-preference-schema.d.ts +282 -249
  21. package/lib/browser/editor-generated-preference-schema.d.ts.map +1 -1
  22. package/lib/browser/editor-generated-preference-schema.js +2451 -2316
  23. package/lib/browser/editor-generated-preference-schema.js.map +1 -1
  24. package/lib/browser/editor-keybinding.d.ts +5 -5
  25. package/lib/browser/editor-keybinding.js +55 -55
  26. package/lib/browser/editor-linenumber-contribution.d.ts +15 -15
  27. package/lib/browser/editor-linenumber-contribution.d.ts.map +1 -1
  28. package/lib/browser/editor-linenumber-contribution.js +95 -96
  29. package/lib/browser/editor-linenumber-contribution.js.map +1 -1
  30. package/lib/browser/editor-manager.d.ts +115 -115
  31. package/lib/browser/editor-manager.js +428 -428
  32. package/lib/browser/editor-menu.d.ts +48 -48
  33. package/lib/browser/editor-menu.js +210 -210
  34. package/lib/browser/editor-navigation-contribution.d.ts +67 -67
  35. package/lib/browser/editor-navigation-contribution.js +343 -343
  36. package/lib/browser/editor-preferences.d.ts +41 -41
  37. package/lib/browser/editor-preferences.js +176 -176
  38. package/lib/browser/editor-variable-contribution.d.ts +8 -8
  39. package/lib/browser/editor-variable-contribution.js +64 -64
  40. package/lib/browser/editor-widget-factory.d.ts +17 -17
  41. package/lib/browser/editor-widget-factory.js +91 -91
  42. package/lib/browser/editor-widget.d.ts +24 -24
  43. package/lib/browser/editor-widget.d.ts.map +1 -1
  44. package/lib/browser/editor-widget.js +122 -114
  45. package/lib/browser/editor-widget.js.map +1 -1
  46. package/lib/browser/editor.d.ts +295 -293
  47. package/lib/browser/editor.d.ts.map +1 -1
  48. package/lib/browser/editor.js +103 -103
  49. package/lib/browser/editor.js.map +1 -1
  50. package/lib/browser/index.d.ts +10 -10
  51. package/lib/browser/index.js +37 -37
  52. package/lib/browser/language-status/editor-language-status-service.d.ts +77 -77
  53. package/lib/browser/language-status/editor-language-status-service.js +251 -251
  54. package/lib/browser/navigation/navigation-location-service.d.ts +103 -103
  55. package/lib/browser/navigation/navigation-location-service.js +281 -281
  56. package/lib/browser/navigation/navigation-location-service.spec.d.ts +1 -1
  57. package/lib/browser/navigation/navigation-location-service.spec.js +184 -184
  58. package/lib/browser/navigation/navigation-location-similarity.d.ts +15 -15
  59. package/lib/browser/navigation/navigation-location-similarity.js +62 -62
  60. package/lib/browser/navigation/navigation-location-similarity.spec.d.ts +1 -1
  61. package/lib/browser/navigation/navigation-location-similarity.spec.js +32 -32
  62. package/lib/browser/navigation/navigation-location-updater.d.ts +35 -35
  63. package/lib/browser/navigation/navigation-location-updater.js +210 -210
  64. package/lib/browser/navigation/navigation-location-updater.spec.d.ts +1 -1
  65. package/lib/browser/navigation/navigation-location-updater.spec.js +177 -177
  66. package/lib/browser/navigation/navigation-location.d.ts +191 -191
  67. package/lib/browser/navigation/navigation-location.js +300 -300
  68. package/lib/browser/navigation/test/mock-navigation-location-updater.d.ts +15 -15
  69. package/lib/browser/navigation/test/mock-navigation-location-updater.js +38 -38
  70. package/lib/browser/quick-editor-service.d.ts +16 -16
  71. package/lib/browser/quick-editor-service.js +109 -109
  72. package/lib/browser/undo-redo-service.d.ts +23 -23
  73. package/lib/browser/undo-redo-service.js +110 -110
  74. package/lib/common/language-selector.d.ts +13 -13
  75. package/lib/common/language-selector.js +90 -90
  76. package/lib/package.spec.js +25 -25
  77. package/package.json +5 -5
  78. package/src/browser/decorations/editor-decoration-style.ts +41 -41
  79. package/src/browser/decorations/editor-decoration.ts +127 -127
  80. package/src/browser/decorations/editor-decorator.ts +36 -36
  81. package/src/browser/decorations/index.ts +19 -19
  82. package/src/browser/diff-navigator.ts +27 -28
  83. package/src/browser/editor-command.ts +414 -414
  84. package/src/browser/editor-contribution.ts +185 -185
  85. package/src/browser/editor-frontend-module.ts +87 -87
  86. package/src/browser/editor-generated-preference-schema.ts +2707 -2539
  87. package/src/browser/editor-keybinding.ts +55 -55
  88. package/src/browser/editor-linenumber-contribution.ts +88 -89
  89. package/src/browser/editor-manager.ts +442 -442
  90. package/src/browser/editor-menu.ts +224 -224
  91. package/src/browser/editor-navigation-contribution.ts +343 -343
  92. package/src/browser/editor-preferences.ts +226 -226
  93. package/src/browser/editor-variable-contribution.ts +54 -54
  94. package/src/browser/editor-widget-factory.ts +82 -82
  95. package/src/browser/editor-widget.ts +137 -130
  96. package/src/browser/editor.ts +360 -358
  97. package/src/browser/index.ts +26 -26
  98. package/src/browser/language-status/editor-language-status-service.ts +271 -271
  99. package/src/browser/language-status/editor-language-status.css +101 -101
  100. package/src/browser/navigation/navigation-location-service.spec.ts +245 -245
  101. package/src/browser/navigation/navigation-location-service.ts +284 -284
  102. package/src/browser/navigation/navigation-location-similarity.spec.ts +46 -46
  103. package/src/browser/navigation/navigation-location-similarity.ts +58 -58
  104. package/src/browser/navigation/navigation-location-updater.spec.ts +197 -197
  105. package/src/browser/navigation/navigation-location-updater.ts +220 -220
  106. package/src/browser/navigation/navigation-location.ts +418 -418
  107. package/src/browser/navigation/test/mock-navigation-location-updater.ts +41 -41
  108. package/src/browser/quick-editor-service.ts +94 -94
  109. package/src/browser/style/index.css +19 -19
  110. package/src/browser/undo-redo-service.ts +120 -120
  111. package/src/common/language-selector.ts +104 -104
  112. package/src/package.spec.ts +28 -28
@@ -1,250 +1,283 @@
1
- /********************************************************************************
2
- * Copyright (C) 2022 Ericsson and others.
3
- *
4
- * This program and the accompanying materials are made available under the
5
- * terms of the Eclipse Public License v. 2.0 which is available at
6
- * http://www.eclipse.org/legal/epl-2.0.
7
- *
8
- * This Source Code may also be made available under the following Secondary
9
- * Licenses when the conditions for such availability set forth in the Eclipse
10
- * Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
- * with the GNU Classpath Exception which is available at
12
- * https://www.gnu.org/software/classpath/license.html.
13
- *
14
- * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
- ********************************************************************************/
16
- import { PreferenceSchema } from '@theia/core/lib/browser';
17
- /**
18
- * Please do not modify this file by hand. It should be generated automatically
19
- * during a Monaco uplift using the command registered by monaco-editor-preference-extractor.ts
20
- * The only manual work required is fixing preferences with type 'array' or 'object'.
21
- */
22
- export declare const editorGeneratedPreferenceProperties: PreferenceSchema['properties'];
23
- declare type QuickSuggestionValues = boolean | 'on' | 'inline' | 'off';
24
- export interface GeneratedEditorPreferences {
25
- 'editor.tabSize': number;
26
- 'editor.insertSpaces': boolean;
27
- 'editor.detectIndentation': boolean;
28
- 'editor.trimAutoWhitespace': boolean;
29
- 'editor.largeFileOptimizations': boolean;
30
- 'editor.wordBasedSuggestions': boolean;
31
- 'editor.wordBasedSuggestionsMode': 'currentDocument' | 'matchingDocuments' | 'allDocuments';
32
- 'editor.semanticHighlighting.enabled': true | false | 'configuredByTheme';
33
- 'editor.stablePeek': boolean;
34
- 'editor.maxTokenizationLineLength': number;
35
- 'editor.language.brackets': Array<[string, string]> | null | 'null';
36
- 'editor.language.colorizedBracketPairs': Array<[string, string]> | null;
37
- 'diffEditor.maxComputationTime': number;
38
- 'diffEditor.maxFileSize': number;
39
- 'diffEditor.renderSideBySide': boolean;
40
- 'diffEditor.renderMarginRevertIcon': boolean;
41
- 'diffEditor.ignoreTrimWhitespace': boolean;
42
- 'diffEditor.renderIndicators': boolean;
43
- 'diffEditor.codeLens': boolean;
44
- 'diffEditor.wordWrap': 'off' | 'on' | 'inherit';
45
- 'diffEditor.diffAlgorithm': 'smart' | 'experimental';
46
- 'editor.acceptSuggestionOnCommitCharacter': boolean;
47
- 'editor.acceptSuggestionOnEnter': 'on' | 'smart' | 'off';
48
- 'editor.accessibilitySupport': 'auto' | 'on' | 'off';
49
- 'editor.accessibilityPageSize': number;
50
- 'editor.autoClosingBrackets': 'always' | 'languageDefined' | 'beforeWhitespace' | 'never';
51
- 'editor.autoClosingDelete': 'always' | 'auto' | 'never';
52
- 'editor.autoClosingOvertype': 'always' | 'auto' | 'never';
53
- 'editor.autoClosingQuotes': 'always' | 'languageDefined' | 'beforeWhitespace' | 'never';
54
- 'editor.autoIndent': 'none' | 'keep' | 'brackets' | 'advanced' | 'full';
55
- 'editor.autoSurround': 'languageDefined' | 'quotes' | 'brackets' | 'never';
56
- 'editor.bracketPairColorization.enabled': boolean;
57
- 'editor.bracketPairColorization.independentColorPoolPerBracketType': boolean;
58
- 'editor.guides.bracketPairs': true | 'active' | false;
59
- 'editor.guides.bracketPairsHorizontal': true | 'active' | false;
60
- 'editor.guides.highlightActiveBracketPair': boolean;
61
- 'editor.guides.indentation': boolean;
62
- 'editor.guides.highlightActiveIndentation': true | 'always' | false;
63
- 'editor.codeLens': boolean;
64
- 'editor.codeLensFontFamily': string;
65
- 'editor.codeLensFontSize': number;
66
- 'editor.colorDecorators': boolean;
67
- 'editor.columnSelection': boolean;
68
- 'editor.comments.insertSpace': boolean;
69
- 'editor.comments.ignoreEmptyLines': boolean;
70
- 'editor.copyWithSyntaxHighlighting': boolean;
71
- 'editor.cursorBlinking': 'blink' | 'smooth' | 'phase' | 'expand' | 'solid';
72
- 'editor.cursorSmoothCaretAnimation': boolean;
73
- 'editor.cursorStyle': 'line' | 'block' | 'underline' | 'line-thin' | 'block-outline' | 'underline-thin';
74
- 'editor.cursorSurroundingLines': number;
75
- 'editor.cursorSurroundingLinesStyle': 'default' | 'all';
76
- 'editor.cursorWidth': number;
77
- 'editor.dragAndDrop': boolean;
78
- 'editor.dropIntoEditor.enabled': boolean;
79
- 'editor.emptySelectionClipboard': boolean;
80
- 'editor.fastScrollSensitivity': number;
81
- 'editor.find.cursorMoveOnType': boolean;
82
- 'editor.find.seedSearchStringFromSelection': 'never' | 'always' | 'selection';
83
- 'editor.find.autoFindInSelection': 'never' | 'always' | 'multiline';
84
- 'editor.find.addExtraSpaceOnTop': boolean;
85
- 'editor.find.loop': boolean;
86
- 'editor.folding': boolean;
87
- 'editor.foldingStrategy': 'auto' | 'indentation';
88
- 'editor.foldingHighlight': boolean;
89
- 'editor.foldingImportsByDefault': boolean;
90
- 'editor.foldingMaximumRegions': number;
91
- 'editor.unfoldOnClickAfterEndOfLine': boolean;
92
- 'editor.fontFamily': string;
93
- 'editor.fontLigatures': boolean | string;
94
- 'editor.fontSize': number;
95
- 'editor.fontWeight': number | string | 'normal' | 'bold' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900';
96
- 'editor.formatOnPaste': boolean;
97
- 'editor.formatOnType': boolean;
98
- 'editor.glyphMargin': boolean;
99
- 'editor.gotoLocation.multiple': null;
100
- 'editor.gotoLocation.multipleDefinitions': 'peek' | 'gotoAndPeek' | 'goto';
101
- 'editor.gotoLocation.multipleTypeDefinitions': 'peek' | 'gotoAndPeek' | 'goto';
102
- 'editor.gotoLocation.multipleDeclarations': 'peek' | 'gotoAndPeek' | 'goto';
103
- 'editor.gotoLocation.multipleImplementations': 'peek' | 'gotoAndPeek' | 'goto';
104
- 'editor.gotoLocation.multipleReferences': 'peek' | 'gotoAndPeek' | 'goto';
105
- 'editor.gotoLocation.alternativeDefinitionCommand': '' | 'editor.action.referenceSearch.trigger' | 'editor.action.goToReferences' | 'editor.action.peekImplementation' | 'editor.action.goToImplementation' | 'editor.action.peekTypeDefinition' | 'editor.action.goToTypeDefinition' | 'editor.action.peekDeclaration' | 'editor.action.revealDeclaration' | 'editor.action.peekDefinition' | 'editor.action.revealDefinitionAside' | 'editor.action.revealDefinition';
106
- 'editor.gotoLocation.alternativeTypeDefinitionCommand': '' | 'editor.action.referenceSearch.trigger' | 'editor.action.goToReferences' | 'editor.action.peekImplementation' | 'editor.action.goToImplementation' | 'editor.action.peekTypeDefinition' | 'editor.action.goToTypeDefinition' | 'editor.action.peekDeclaration' | 'editor.action.revealDeclaration' | 'editor.action.peekDefinition' | 'editor.action.revealDefinitionAside' | 'editor.action.revealDefinition';
107
- 'editor.gotoLocation.alternativeDeclarationCommand': '' | 'editor.action.referenceSearch.trigger' | 'editor.action.goToReferences' | 'editor.action.peekImplementation' | 'editor.action.goToImplementation' | 'editor.action.peekTypeDefinition' | 'editor.action.goToTypeDefinition' | 'editor.action.peekDeclaration' | 'editor.action.revealDeclaration' | 'editor.action.peekDefinition' | 'editor.action.revealDefinitionAside' | 'editor.action.revealDefinition';
108
- 'editor.gotoLocation.alternativeImplementationCommand': '' | 'editor.action.referenceSearch.trigger' | 'editor.action.goToReferences' | 'editor.action.peekImplementation' | 'editor.action.goToImplementation' | 'editor.action.peekTypeDefinition' | 'editor.action.goToTypeDefinition' | 'editor.action.peekDeclaration' | 'editor.action.revealDeclaration' | 'editor.action.peekDefinition' | 'editor.action.revealDefinitionAside' | 'editor.action.revealDefinition';
109
- 'editor.gotoLocation.alternativeReferenceCommand': '' | 'editor.action.referenceSearch.trigger' | 'editor.action.goToReferences' | 'editor.action.peekImplementation' | 'editor.action.goToImplementation' | 'editor.action.peekTypeDefinition' | 'editor.action.goToTypeDefinition' | 'editor.action.peekDeclaration' | 'editor.action.revealDeclaration' | 'editor.action.peekDefinition' | 'editor.action.revealDefinitionAside' | 'editor.action.revealDefinition';
110
- 'editor.hideCursorInOverviewRuler': boolean;
111
- 'editor.hover.enabled': boolean;
112
- 'editor.hover.delay': number;
113
- 'editor.hover.sticky': boolean;
114
- 'editor.hover.above': boolean;
115
- 'editor.inlineSuggest.enabled': boolean;
116
- 'editor.letterSpacing': number;
117
- 'editor.lightbulb.enabled': boolean;
118
- 'editor.lineHeight': number;
119
- 'editor.lineNumbers': 'off' | 'on' | 'relative' | 'interval';
120
- 'editor.linkedEditing': boolean;
121
- 'editor.links': boolean;
122
- 'editor.matchBrackets': 'always' | 'near' | 'never';
123
- 'editor.minimap.enabled': boolean;
124
- 'editor.minimap.autohide': boolean;
125
- 'editor.minimap.size': 'proportional' | 'fill' | 'fit';
126
- 'editor.minimap.side': 'left' | 'right';
127
- 'editor.minimap.showSlider': 'always' | 'mouseover';
128
- 'editor.minimap.scale': '1' | '2' | '3';
129
- 'editor.minimap.renderCharacters': boolean;
130
- 'editor.minimap.maxColumn': number;
131
- 'editor.mouseWheelScrollSensitivity': number;
132
- 'editor.mouseWheelZoom': boolean;
133
- 'editor.multiCursorMergeOverlapping': boolean;
134
- 'editor.multiCursorModifier': 'ctrlCmd' | 'alt';
135
- 'editor.multiCursorPaste': 'spread' | 'full';
136
- 'editor.occurrencesHighlight': boolean;
137
- 'editor.overviewRulerBorder': boolean;
138
- 'editor.padding.top': number;
139
- 'editor.padding.bottom': number;
140
- 'editor.parameterHints.enabled': boolean;
141
- 'editor.parameterHints.cycle': boolean;
142
- 'editor.peekWidgetDefaultFocus': 'tree' | 'editor';
143
- 'editor.definitionLinkOpensInPeek': boolean;
144
- 'editor.quickSuggestions': boolean | {
145
- other?: QuickSuggestionValues;
146
- comments?: QuickSuggestionValues;
147
- strings?: QuickSuggestionValues;
148
- };
149
- 'editor.quickSuggestionsDelay': number;
150
- 'editor.renameOnType': boolean;
151
- 'editor.renderControlCharacters': boolean;
152
- 'editor.renderFinalNewline': boolean;
153
- 'editor.renderLineHighlight': 'none' | 'gutter' | 'line' | 'all';
154
- 'editor.renderLineHighlightOnlyWhenFocus': boolean;
155
- 'editor.renderWhitespace': 'none' | 'boundary' | 'selection' | 'trailing' | 'all';
156
- 'editor.roundedSelection': boolean;
157
- 'editor.rulers': Array<number | {
158
- column: number;
159
- color: string;
160
- }>;
161
- 'editor.scrollbar.vertical': 'auto' | 'visible' | 'hidden';
162
- 'editor.scrollbar.horizontal': 'auto' | 'visible' | 'hidden';
163
- 'editor.scrollbar.verticalScrollbarSize': number;
164
- 'editor.scrollbar.horizontalScrollbarSize': number;
165
- 'editor.scrollbar.scrollByPage': boolean;
166
- 'editor.scrollBeyondLastColumn': number;
167
- 'editor.scrollBeyondLastLine': boolean;
168
- 'editor.scrollPredominantAxis': boolean;
169
- 'editor.selectionClipboard': boolean;
170
- 'editor.selectionHighlight': boolean;
171
- 'editor.showFoldingControls': 'always' | 'never' | 'mouseover';
172
- 'editor.showUnused': boolean;
173
- 'editor.snippetSuggestions': 'top' | 'bottom' | 'inline' | 'none';
174
- 'editor.smartSelect.selectLeadingAndTrailingWhitespace': boolean;
175
- 'editor.smoothScrolling': boolean;
176
- 'editor.stickyScroll.enabled': boolean;
177
- 'editor.stickyScroll.maxLineCount': number;
178
- 'editor.stickyTabStops': boolean;
179
- 'editor.suggest.insertMode': 'insert' | 'replace';
180
- 'editor.suggest.filterGraceful': boolean;
181
- 'editor.suggest.localityBonus': boolean;
182
- 'editor.suggest.shareSuggestSelections': boolean;
183
- 'editor.suggest.snippetsPreventQuickSuggestions': boolean;
184
- 'editor.suggest.showIcons': boolean;
185
- 'editor.suggest.showStatusBar': boolean;
186
- 'editor.suggest.preview': boolean;
187
- 'editor.suggest.showInlineDetails': boolean;
188
- 'editor.suggest.maxVisibleSuggestions': number;
189
- 'editor.suggest.filteredTypes': Record<string, boolean>;
190
- 'editor.suggest.showMethods': boolean;
191
- 'editor.suggest.showFunctions': boolean;
192
- 'editor.suggest.showConstructors': boolean;
193
- 'editor.suggest.showDeprecated': boolean;
194
- 'editor.suggest.matchOnWordStartOnly': boolean;
195
- 'editor.suggest.showFields': boolean;
196
- 'editor.suggest.showVariables': boolean;
197
- 'editor.suggest.showClasses': boolean;
198
- 'editor.suggest.showStructs': boolean;
199
- 'editor.suggest.showInterfaces': boolean;
200
- 'editor.suggest.showModules': boolean;
201
- 'editor.suggest.showProperties': boolean;
202
- 'editor.suggest.showEvents': boolean;
203
- 'editor.suggest.showOperators': boolean;
204
- 'editor.suggest.showUnits': boolean;
205
- 'editor.suggest.showValues': boolean;
206
- 'editor.suggest.showConstants': boolean;
207
- 'editor.suggest.showEnums': boolean;
208
- 'editor.suggest.showEnumMembers': boolean;
209
- 'editor.suggest.showKeywords': boolean;
210
- 'editor.suggest.showWords': boolean;
211
- 'editor.suggest.showColors': boolean;
212
- 'editor.suggest.showFiles': boolean;
213
- 'editor.suggest.showReferences': boolean;
214
- 'editor.suggest.showCustomcolors': boolean;
215
- 'editor.suggest.showFolders': boolean;
216
- 'editor.suggest.showTypeParameters': boolean;
217
- 'editor.suggest.showSnippets': boolean;
218
- 'editor.suggest.showUsers': boolean;
219
- 'editor.suggest.showIssues': boolean;
220
- 'editor.suggestFontSize': number;
221
- 'editor.suggestLineHeight': number;
222
- 'editor.suggestOnTriggerCharacters': boolean;
223
- 'editor.suggestSelection': 'first' | 'recentlyUsed' | 'recentlyUsedByPrefix';
224
- 'editor.tabCompletion': 'on' | 'off' | 'onlySnippets';
225
- 'editor.unicodeHighlight.nonBasicASCII': true | false | 'inUntrustedWorkspace';
226
- 'editor.unicodeHighlight.invisibleCharacters': boolean;
227
- 'editor.unicodeHighlight.ambiguousCharacters': boolean;
228
- 'editor.unicodeHighlight.includeComments': true | false | 'inUntrustedWorkspace';
229
- 'editor.unicodeHighlight.includeStrings': true | false | 'inUntrustedWorkspace';
230
- 'editor.unicodeHighlight.allowedCharacters': Record<string, boolean>;
231
- 'editor.unicodeHighlight.allowedLocales': Record<string, boolean>;
232
- 'editor.unusualLineTerminators': 'auto' | 'off' | 'prompt';
233
- 'editor.useTabStops': boolean;
234
- 'editor.wordSeparators': string;
235
- 'editor.wordWrap': 'off' | 'on' | 'wordWrapColumn' | 'bounded';
236
- 'editor.wordWrapColumn': number;
237
- 'editor.wrappingIndent': 'none' | 'same' | 'indent' | 'deepIndent';
238
- 'editor.wrappingStrategy': 'simple' | 'advanced';
239
- 'editor.showDeprecated': boolean;
240
- 'editor.inlayHints.enabled': 'on' | 'onUnlessPressed' | 'offUnlessPressed' | 'off';
241
- 'editor.inlayHints.fontSize': number;
242
- 'editor.inlayHints.fontFamily': string;
243
- 'editor.inlayHints.padding': boolean;
244
- 'editor.codeActionWidget.showHeaders': boolean;
245
- 'editor.experimental.pasteActions.enabled': boolean;
246
- 'editor.rename.enablePreview': boolean;
247
- 'editor.find.globalFindClipboard': boolean;
248
- }
249
- export {};
1
+ /********************************************************************************
2
+ * Copyright (C) 2022 Ericsson and others.
3
+ *
4
+ * This program and the accompanying materials are made available under the
5
+ * terms of the Eclipse Public License v. 2.0 which is available at
6
+ * http://www.eclipse.org/legal/epl-2.0.
7
+ *
8
+ * This Source Code may also be made available under the following Secondary
9
+ * Licenses when the conditions for such availability set forth in the Eclipse
10
+ * Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
+ * with the GNU Classpath Exception which is available at
12
+ * https://www.gnu.org/software/classpath/license.html.
13
+ *
14
+ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
+ ********************************************************************************/
16
+ import { PreferenceSchema } from '@theia/core/lib/browser';
17
+ /**
18
+ * Please do not modify this file by hand. It should be generated automatically
19
+ * during a Monaco uplift using the command registered by monaco-editor-preference-extractor.ts
20
+ * The only manual work required is fixing preferences with type 'array' or 'object'.
21
+ */
22
+ export declare const editorGeneratedPreferenceProperties: PreferenceSchema['properties'];
23
+ declare type QuickSuggestionValues = boolean | 'on' | 'inline' | 'off';
24
+ export interface GeneratedEditorPreferences {
25
+ 'editor.tabSize': number;
26
+ 'editor.indentSize': 'tabSize' | number;
27
+ 'editor.insertSpaces': boolean;
28
+ 'editor.detectIndentation': boolean;
29
+ 'editor.trimAutoWhitespace': boolean;
30
+ 'editor.largeFileOptimizations': boolean;
31
+ 'editor.wordBasedSuggestions': boolean;
32
+ 'editor.wordBasedSuggestionsMode': 'currentDocument' | 'matchingDocuments' | 'allDocuments';
33
+ 'editor.semanticHighlighting.enabled': true | false | 'configuredByTheme';
34
+ 'editor.stablePeek': boolean;
35
+ 'editor.maxTokenizationLineLength': number;
36
+ 'editor.experimental.asyncTokenization': boolean;
37
+ 'editor.experimental.asyncTokenizationLogging': boolean;
38
+ 'editor.experimental.asyncTokenizationVerification': boolean;
39
+ 'editor.language.brackets': Array<[string, string]> | null | 'null';
40
+ 'editor.language.colorizedBracketPairs': Array<[string, string]> | null;
41
+ 'diffEditor.maxComputationTime': number;
42
+ 'diffEditor.maxFileSize': number;
43
+ 'diffEditor.renderSideBySide': boolean;
44
+ 'diffEditor.renderSideBySideInlineBreakpoint': number;
45
+ 'diffEditor.useInlineViewWhenSpaceIsLimited': boolean;
46
+ 'diffEditor.renderMarginRevertIcon': boolean;
47
+ 'diffEditor.ignoreTrimWhitespace': boolean;
48
+ 'diffEditor.renderIndicators': boolean;
49
+ 'diffEditor.codeLens': boolean;
50
+ 'diffEditor.wordWrap': 'off' | 'on' | 'inherit';
51
+ 'diffEditor.diffAlgorithm': 'legacy' | 'advanced';
52
+ 'diffEditor.hideUnchangedRegions.enabled': boolean;
53
+ 'diffEditor.hideUnchangedRegions.revealLineCount': number;
54
+ 'diffEditor.hideUnchangedRegions.minimumLineCount': number;
55
+ 'diffEditor.hideUnchangedRegions.contextLineCount': number;
56
+ 'diffEditor.experimental.showMoves': boolean;
57
+ 'diffEditor.experimental.showEmptyDecorations': boolean;
58
+ 'editor.acceptSuggestionOnCommitCharacter': boolean;
59
+ 'editor.acceptSuggestionOnEnter': 'on' | 'smart' | 'off';
60
+ 'editor.accessibilitySupport': 'auto' | 'on' | 'off';
61
+ 'editor.accessibilityPageSize': number;
62
+ 'editor.autoClosingBrackets': 'always' | 'languageDefined' | 'beforeWhitespace' | 'never';
63
+ 'editor.autoClosingComments': 'always' | 'languageDefined' | 'beforeWhitespace' | 'never';
64
+ 'editor.screenReaderAnnounceInlineSuggestion': boolean;
65
+ 'editor.autoClosingDelete': 'always' | 'auto' | 'never';
66
+ 'editor.autoClosingOvertype': 'always' | 'auto' | 'never';
67
+ 'editor.autoClosingQuotes': 'always' | 'languageDefined' | 'beforeWhitespace' | 'never';
68
+ 'editor.autoIndent': 'none' | 'keep' | 'brackets' | 'advanced' | 'full';
69
+ 'editor.autoSurround': 'languageDefined' | 'quotes' | 'brackets' | 'never';
70
+ 'editor.bracketPairColorization.enabled': boolean;
71
+ 'editor.bracketPairColorization.independentColorPoolPerBracketType': boolean;
72
+ 'editor.guides.bracketPairs': true | 'active' | false;
73
+ 'editor.guides.bracketPairsHorizontal': true | 'active' | false;
74
+ 'editor.guides.highlightActiveBracketPair': boolean;
75
+ 'editor.guides.indentation': boolean;
76
+ 'editor.guides.highlightActiveIndentation': true | 'always' | false;
77
+ 'editor.codeLens': boolean;
78
+ 'editor.codeLensFontFamily': string;
79
+ 'editor.codeLensFontSize': number;
80
+ 'editor.colorDecorators': boolean;
81
+ 'editor.colorDecoratorsLimit': number;
82
+ 'editor.columnSelection': boolean;
83
+ 'editor.comments.insertSpace': boolean;
84
+ 'editor.comments.ignoreEmptyLines': boolean;
85
+ 'editor.copyWithSyntaxHighlighting': boolean;
86
+ 'editor.cursorBlinking': 'blink' | 'smooth' | 'phase' | 'expand' | 'solid';
87
+ 'editor.cursorSmoothCaretAnimation': 'off' | 'explicit' | 'on';
88
+ 'editor.cursorStyle': 'line' | 'block' | 'underline' | 'line-thin' | 'block-outline' | 'underline-thin';
89
+ 'editor.cursorSurroundingLines': number;
90
+ 'editor.cursorSurroundingLinesStyle': 'default' | 'all';
91
+ 'editor.cursorWidth': number;
92
+ 'editor.dragAndDrop': boolean;
93
+ 'editor.dropIntoEditor.enabled': boolean;
94
+ 'editor.dropIntoEditor.showDropSelector': 'afterDrop' | 'never';
95
+ 'editor.emptySelectionClipboard': boolean;
96
+ 'editor.experimentalWhitespaceRendering': 'svg' | 'font' | 'off';
97
+ 'editor.fastScrollSensitivity': number;
98
+ 'editor.find.cursorMoveOnType': boolean;
99
+ 'editor.find.seedSearchStringFromSelection': 'never' | 'always' | 'selection';
100
+ 'editor.find.autoFindInSelection': 'never' | 'always' | 'multiline';
101
+ 'editor.find.addExtraSpaceOnTop': boolean;
102
+ 'editor.find.loop': boolean;
103
+ 'editor.folding': boolean;
104
+ 'editor.foldingStrategy': 'auto' | 'indentation';
105
+ 'editor.foldingHighlight': boolean;
106
+ 'editor.foldingImportsByDefault': boolean;
107
+ 'editor.foldingMaximumRegions': number;
108
+ 'editor.unfoldOnClickAfterEndOfLine': boolean;
109
+ 'editor.fontFamily': string;
110
+ 'editor.fontLigatures': boolean | string;
111
+ 'editor.fontSize': number;
112
+ 'editor.fontWeight': number | string | 'normal' | 'bold' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900';
113
+ 'editor.formatOnPaste': boolean;
114
+ 'editor.formatOnType': boolean;
115
+ 'editor.glyphMargin': boolean;
116
+ 'editor.gotoLocation.multiple': null;
117
+ 'editor.gotoLocation.multipleDefinitions': 'peek' | 'gotoAndPeek' | 'goto';
118
+ 'editor.gotoLocation.multipleTypeDefinitions': 'peek' | 'gotoAndPeek' | 'goto';
119
+ 'editor.gotoLocation.multipleDeclarations': 'peek' | 'gotoAndPeek' | 'goto';
120
+ 'editor.gotoLocation.multipleImplementations': 'peek' | 'gotoAndPeek' | 'goto';
121
+ 'editor.gotoLocation.multipleReferences': 'peek' | 'gotoAndPeek' | 'goto';
122
+ 'editor.gotoLocation.alternativeDefinitionCommand': '' | 'editor.action.referenceSearch.trigger' | 'editor.action.goToReferences' | 'editor.action.peekImplementation' | 'editor.action.goToImplementation' | 'editor.action.peekTypeDefinition' | 'editor.action.goToTypeDefinition' | 'editor.action.peekDeclaration' | 'editor.action.revealDeclaration' | 'editor.action.peekDefinition' | 'editor.action.revealDefinitionAside' | 'editor.action.revealDefinition';
123
+ 'editor.gotoLocation.alternativeTypeDefinitionCommand': '' | 'editor.action.referenceSearch.trigger' | 'editor.action.goToReferences' | 'editor.action.peekImplementation' | 'editor.action.goToImplementation' | 'editor.action.peekTypeDefinition' | 'editor.action.goToTypeDefinition' | 'editor.action.peekDeclaration' | 'editor.action.revealDeclaration' | 'editor.action.peekDefinition' | 'editor.action.revealDefinitionAside' | 'editor.action.revealDefinition';
124
+ 'editor.gotoLocation.alternativeDeclarationCommand': '' | 'editor.action.referenceSearch.trigger' | 'editor.action.goToReferences' | 'editor.action.peekImplementation' | 'editor.action.goToImplementation' | 'editor.action.peekTypeDefinition' | 'editor.action.goToTypeDefinition' | 'editor.action.peekDeclaration' | 'editor.action.revealDeclaration' | 'editor.action.peekDefinition' | 'editor.action.revealDefinitionAside' | 'editor.action.revealDefinition';
125
+ 'editor.gotoLocation.alternativeImplementationCommand': '' | 'editor.action.referenceSearch.trigger' | 'editor.action.goToReferences' | 'editor.action.peekImplementation' | 'editor.action.goToImplementation' | 'editor.action.peekTypeDefinition' | 'editor.action.goToTypeDefinition' | 'editor.action.peekDeclaration' | 'editor.action.revealDeclaration' | 'editor.action.peekDefinition' | 'editor.action.revealDefinitionAside' | 'editor.action.revealDefinition';
126
+ 'editor.gotoLocation.alternativeReferenceCommand': '' | 'editor.action.referenceSearch.trigger' | 'editor.action.goToReferences' | 'editor.action.peekImplementation' | 'editor.action.goToImplementation' | 'editor.action.peekTypeDefinition' | 'editor.action.goToTypeDefinition' | 'editor.action.peekDeclaration' | 'editor.action.revealDeclaration' | 'editor.action.peekDefinition' | 'editor.action.revealDefinitionAside' | 'editor.action.revealDefinition';
127
+ 'editor.hideCursorInOverviewRuler': boolean;
128
+ 'editor.hover.enabled': boolean;
129
+ 'editor.hover.delay': number;
130
+ 'editor.hover.sticky': boolean;
131
+ 'editor.hover.hidingDelay': number;
132
+ 'editor.hover.above': boolean;
133
+ 'editor.inlineSuggest.enabled': boolean;
134
+ 'editor.inlineSuggest.showToolbar': 'always' | 'onHover';
135
+ 'editor.inlineSuggest.suppressSuggestions': boolean;
136
+ 'editor.letterSpacing': number;
137
+ 'editor.lightbulb.enabled': boolean;
138
+ 'editor.lineHeight': number;
139
+ 'editor.lineNumbers': 'off' | 'on' | 'relative' | 'interval';
140
+ 'editor.linkedEditing': boolean;
141
+ 'editor.links': boolean;
142
+ 'editor.matchBrackets': 'always' | 'near' | 'never';
143
+ 'editor.minimap.enabled': boolean;
144
+ 'editor.minimap.autohide': boolean;
145
+ 'editor.minimap.size': 'proportional' | 'fill' | 'fit';
146
+ 'editor.minimap.side': 'left' | 'right';
147
+ 'editor.minimap.showSlider': 'always' | 'mouseover';
148
+ 'editor.minimap.scale': '1' | '2' | '3';
149
+ 'editor.minimap.renderCharacters': boolean;
150
+ 'editor.minimap.maxColumn': number;
151
+ 'editor.mouseWheelScrollSensitivity': number;
152
+ 'editor.mouseWheelZoom': boolean;
153
+ 'editor.multiCursorMergeOverlapping': boolean;
154
+ 'editor.multiCursorModifier': 'ctrlCmd' | 'alt';
155
+ 'editor.multiCursorPaste': 'spread' | 'full';
156
+ 'editor.multiCursorLimit': number;
157
+ 'editor.occurrencesHighlight': boolean;
158
+ 'editor.overviewRulerBorder': boolean;
159
+ 'editor.padding.top': number;
160
+ 'editor.padding.bottom': number;
161
+ 'editor.pasteAs.enabled': boolean;
162
+ 'editor.pasteAs.showPasteSelector': 'afterPaste' | 'never';
163
+ 'editor.parameterHints.enabled': boolean;
164
+ 'editor.parameterHints.cycle': boolean;
165
+ 'editor.peekWidgetDefaultFocus': 'tree' | 'editor';
166
+ 'editor.definitionLinkOpensInPeek': boolean;
167
+ 'editor.quickSuggestions': boolean | {
168
+ other?: QuickSuggestionValues;
169
+ comments?: QuickSuggestionValues;
170
+ strings?: QuickSuggestionValues;
171
+ };
172
+ 'editor.quickSuggestionsDelay': number;
173
+ 'editor.renameOnType': boolean;
174
+ 'editor.renderControlCharacters': boolean;
175
+ 'editor.renderFinalNewline': 'off' | 'on' | 'dimmed';
176
+ 'editor.renderLineHighlight': 'none' | 'gutter' | 'line' | 'all';
177
+ 'editor.renderLineHighlightOnlyWhenFocus': boolean;
178
+ 'editor.renderWhitespace': 'none' | 'boundary' | 'selection' | 'trailing' | 'all';
179
+ 'editor.roundedSelection': boolean;
180
+ 'editor.rulers': Array<number | {
181
+ column: number;
182
+ color: string;
183
+ }>;
184
+ 'editor.scrollbar.vertical': 'auto' | 'visible' | 'hidden';
185
+ 'editor.scrollbar.horizontal': 'auto' | 'visible' | 'hidden';
186
+ 'editor.scrollbar.verticalScrollbarSize': number;
187
+ 'editor.scrollbar.horizontalScrollbarSize': number;
188
+ 'editor.scrollbar.scrollByPage': boolean;
189
+ 'editor.scrollBeyondLastColumn': number;
190
+ 'editor.scrollBeyondLastLine': boolean;
191
+ 'editor.scrollPredominantAxis': boolean;
192
+ 'editor.selectionHighlight': boolean;
193
+ 'editor.showFoldingControls': 'always' | 'never' | 'mouseover';
194
+ 'editor.showUnused': boolean;
195
+ 'editor.snippetSuggestions': 'top' | 'bottom' | 'inline' | 'none';
196
+ 'editor.smartSelect.selectLeadingAndTrailingWhitespace': boolean;
197
+ 'editor.smartSelect.selectSubwords': boolean;
198
+ 'editor.smoothScrolling': boolean;
199
+ 'editor.stickyScroll.enabled': boolean;
200
+ 'editor.stickyScroll.maxLineCount': number;
201
+ 'editor.stickyScroll.defaultModel': 'outlineModel' | 'foldingProviderModel' | 'indentationModel';
202
+ 'editor.stickyScroll.scrollWithEditor': boolean;
203
+ 'editor.stickyTabStops': boolean;
204
+ 'editor.suggest.insertMode': 'insert' | 'replace';
205
+ 'editor.suggest.filterGraceful': boolean;
206
+ 'editor.suggest.localityBonus': boolean;
207
+ 'editor.suggest.shareSuggestSelections': boolean;
208
+ 'editor.suggest.selectionMode': 'always' | 'never' | 'whenTriggerCharacter' | 'whenQuickSuggestion';
209
+ 'editor.suggest.snippetsPreventQuickSuggestions': boolean;
210
+ 'editor.suggest.showIcons': boolean;
211
+ 'editor.suggest.showStatusBar': boolean;
212
+ 'editor.suggest.preview': boolean;
213
+ 'editor.suggest.showInlineDetails': boolean;
214
+ 'editor.suggest.maxVisibleSuggestions': number;
215
+ 'editor.suggest.filteredTypes': Record<string, boolean>;
216
+ 'editor.suggest.showMethods': boolean;
217
+ 'editor.suggest.showFunctions': boolean;
218
+ 'editor.suggest.showConstructors': boolean;
219
+ 'editor.suggest.showDeprecated': boolean;
220
+ 'editor.suggest.matchOnWordStartOnly': boolean;
221
+ 'editor.suggest.showFields': boolean;
222
+ 'editor.suggest.showVariables': boolean;
223
+ 'editor.suggest.showClasses': boolean;
224
+ 'editor.suggest.showStructs': boolean;
225
+ 'editor.suggest.showInterfaces': boolean;
226
+ 'editor.suggest.showModules': boolean;
227
+ 'editor.suggest.showProperties': boolean;
228
+ 'editor.suggest.showEvents': boolean;
229
+ 'editor.suggest.showOperators': boolean;
230
+ 'editor.suggest.showUnits': boolean;
231
+ 'editor.suggest.showValues': boolean;
232
+ 'editor.suggest.showConstants': boolean;
233
+ 'editor.suggest.showEnums': boolean;
234
+ 'editor.suggest.showEnumMembers': boolean;
235
+ 'editor.suggest.showKeywords': boolean;
236
+ 'editor.suggest.showWords': boolean;
237
+ 'editor.suggest.showColors': boolean;
238
+ 'editor.suggest.showFiles': boolean;
239
+ 'editor.suggest.showReferences': boolean;
240
+ 'editor.suggest.showCustomcolors': boolean;
241
+ 'editor.suggest.showFolders': boolean;
242
+ 'editor.suggest.showTypeParameters': boolean;
243
+ 'editor.suggest.showSnippets': boolean;
244
+ 'editor.suggest.showUsers': boolean;
245
+ 'editor.suggest.showIssues': boolean;
246
+ 'editor.suggestFontSize': number;
247
+ 'editor.suggestLineHeight': number;
248
+ 'editor.suggestOnTriggerCharacters': boolean;
249
+ 'editor.suggestSelection': 'first' | 'recentlyUsed' | 'recentlyUsedByPrefix';
250
+ 'editor.tabCompletion': 'on' | 'off' | 'onlySnippets';
251
+ 'editor.unicodeHighlight.nonBasicASCII': true | false | 'inUntrustedWorkspace';
252
+ 'editor.unicodeHighlight.invisibleCharacters': boolean;
253
+ 'editor.unicodeHighlight.ambiguousCharacters': boolean;
254
+ 'editor.unicodeHighlight.includeComments': true | false | 'inUntrustedWorkspace';
255
+ 'editor.unicodeHighlight.includeStrings': true | false | 'inUntrustedWorkspace';
256
+ 'editor.unicodeHighlight.allowedCharacters': Record<string, boolean>;
257
+ 'editor.unicodeHighlight.allowedLocales': Record<string, boolean>;
258
+ 'editor.unusualLineTerminators': 'auto' | 'off' | 'prompt';
259
+ 'editor.useTabStops': boolean;
260
+ 'editor.wordBreak': 'normal' | 'keepAll';
261
+ 'editor.wordSeparators': string;
262
+ 'editor.wordWrap': 'off' | 'on' | 'wordWrapColumn' | 'bounded';
263
+ 'editor.wordWrapColumn': number;
264
+ 'editor.wrappingIndent': 'none' | 'same' | 'indent' | 'deepIndent';
265
+ 'editor.wrappingStrategy': 'simple' | 'advanced';
266
+ 'editor.showDeprecated': boolean;
267
+ 'editor.inlayHints.enabled': 'on' | 'onUnlessPressed' | 'offUnlessPressed' | 'off';
268
+ 'editor.inlayHints.fontSize': number;
269
+ 'editor.inlayHints.fontFamily': string;
270
+ 'editor.inlayHints.padding': boolean;
271
+ 'editor.tabFocusMode': boolean;
272
+ 'editor.defaultColorDecorators': boolean;
273
+ 'editor.colorDecoratorsActivatedOn': 'clickAndHover' | 'hover' | 'click';
274
+ 'editor.inlineCompletionsAccessibilityVerbose': boolean;
275
+ 'editor.codeActionWidget.showHeaders': boolean;
276
+ 'editor.codeActionWidget.includeNearbyQuickfixes': boolean;
277
+ 'editor.experimental.dropIntoEditor.defaultProvider': null;
278
+ 'editor.rename.enablePreview': boolean;
279
+ 'editor.find.globalFindClipboard': boolean;
280
+ 'editor.selectionClipboard': boolean;
281
+ }
282
+ export {};
250
283
  //# sourceMappingURL=editor-generated-preference-schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"editor-generated-preference-schema.d.ts","sourceRoot":"","sources":["../../src/browser/editor-generated-preference-schema.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"editor-generated-preference-schema.d.ts","sourceRoot":"","sources":["../../src/browser/editor-generated-preference-schema.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;kFAckF;AAGlF,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAI3D;;;;GAIG;AAEH,eAAO,MAAM,mCAAmC,EAAE,gBAAgB,CAAC,YAAY,CAy3E9E,CAAC;AAEF,aAAK,qBAAqB,GAAG,OAAO,GAAG,IAAI,GAAG,QAAQ,GAAG,KAAK,CAAC;AAE/D,MAAM,WAAW,0BAA0B;IACvC,gBAAgB,EAAE,MAAM,CAAC;IACzB,mBAAmB,EAAE,SAAS,GAAG,MAAM,CAAC;IACxC,qBAAqB,EAAE,OAAO,CAAC;IAC/B,0BAA0B,EAAE,OAAO,CAAC;IACpC,2BAA2B,EAAE,OAAO,CAAC;IACrC,+BAA+B,EAAE,OAAO,CAAC;IACzC,6BAA6B,EAAE,OAAO,CAAC;IACvC,iCAAiC,EAAE,iBAAiB,GAAG,mBAAmB,GAAG,cAAc,CAAC;IAC5F,qCAAqC,EAAE,IAAI,GAAG,KAAK,GAAG,mBAAmB,CAAC;IAC1E,mBAAmB,EAAE,OAAO,CAAC;IAC7B,kCAAkC,EAAE,MAAM,CAAC;IAC3C,uCAAuC,EAAE,OAAO,CAAC;IACjD,8CAA8C,EAAE,OAAO,CAAC;IACxD,mDAAmD,EAAE,OAAO,CAAC;IAC7D,0BAA0B,EAAE,KAAK,CAAC,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,GAAG,IAAI,GAAG,MAAM,CAAC;IACpE,uCAAuC,EAAE,KAAK,CAAC,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC;IACxE,+BAA+B,EAAE,MAAM,CAAC;IACxC,wBAAwB,EAAE,MAAM,CAAC;IACjC,6BAA6B,EAAE,OAAO,CAAC;IACvC,6CAA6C,EAAE,MAAM,CAAC;IACtD,4CAA4C,EAAE,OAAO,CAAC;IACtD,mCAAmC,EAAE,OAAO,CAAC;IAC7C,iCAAiC,EAAE,OAAO,CAAC;IAC3C,6BAA6B,EAAE,OAAO,CAAC;IACvC,qBAAqB,EAAE,OAAO,CAAC;IAC/B,qBAAqB,EAAE,KAAK,GAAG,IAAI,GAAG,SAAS,CAAC;IAChD,0BAA0B,EAAE,QAAQ,GAAG,UAAU,CAAC;IAClD,yCAAyC,EAAE,OAAO,CAAC;IACnD,iDAAiD,EAAE,MAAM,CAAC;IAC1D,kDAAkD,EAAE,MAAM,CAAC;IAC3D,kDAAkD,EAAE,MAAM,CAAC;IAC3D,mCAAmC,EAAE,OAAO,CAAC;IAC7C,8CAA8C,EAAE,OAAO,CAAC;IACxD,0CAA0C,EAAE,OAAO,CAAC;IACpD,gCAAgC,EAAE,IAAI,GAAG,OAAO,GAAG,KAAK,CAAC;IACzD,6BAA6B,EAAE,MAAM,GAAG,IAAI,GAAG,KAAK,CAAC;IACrD,8BAA8B,EAAE,MAAM,CAAC;IACvC,4BAA4B,EAAE,QAAQ,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,OAAO,CAAC;IAC1F,4BAA4B,EAAE,QAAQ,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,OAAO,CAAC;IAC1F,6CAA6C,EAAE,OAAO,CAAC;IACvD,0BAA0B,EAAE,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC;IACxD,4BAA4B,EAAE,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC;IAC1D,0BAA0B,EAAE,QAAQ,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,OAAO,CAAC;IACxF,mBAAmB,EAAE,MAAM,GAAG,MAAM,GAAG,UAAU,GAAG,UAAU,GAAG,MAAM,CAAC;IACxE,qBAAqB,EAAE,iBAAiB,GAAG,QAAQ,GAAG,UAAU,GAAG,OAAO,CAAC;IAC3E,wCAAwC,EAAE,OAAO,CAAC;IAClD,mEAAmE,EAAE,OAAO,CAAC;IAC7E,4BAA4B,EAAE,IAAI,GAAG,QAAQ,GAAG,KAAK,CAAC;IACtD,sCAAsC,EAAE,IAAI,GAAG,QAAQ,GAAG,KAAK,CAAC;IAChE,0CAA0C,EAAE,OAAO,CAAC;IACpD,2BAA2B,EAAE,OAAO,CAAC;IACrC,0CAA0C,EAAE,IAAI,GAAG,QAAQ,GAAG,KAAK,CAAC;IACpE,iBAAiB,EAAE,OAAO,CAAC;IAC3B,2BAA2B,EAAE,MAAM,CAAC;IACpC,yBAAyB,EAAE,MAAM,CAAC;IAClC,wBAAwB,EAAE,OAAO,CAAC;IAClC,6BAA6B,EAAE,MAAM,CAAC;IACtC,wBAAwB,EAAE,OAAO,CAAC;IAClC,6BAA6B,EAAE,OAAO,CAAC;IACvC,kCAAkC,EAAE,OAAO,CAAC;IAC5C,mCAAmC,EAAE,OAAO,CAAC;IAC7C,uBAAuB,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;IAC3E,mCAAmC,EAAE,KAAK,GAAG,UAAU,GAAG,IAAI,CAAC;IAC/D,oBAAoB,EAAE,MAAM,GAAG,OAAO,GAAG,WAAW,GAAG,WAAW,GAAG,eAAe,GAAG,gBAAgB,CAAC;IACxG,+BAA+B,EAAE,MAAM,CAAC;IACxC,oCAAoC,EAAE,SAAS,GAAG,KAAK,CAAC;IACxD,oBAAoB,EAAE,MAAM,CAAC;IAC7B,oBAAoB,EAAE,OAAO,CAAC;IAC9B,+BAA+B,EAAE,OAAO,CAAC;IACzC,wCAAwC,EAAE,WAAW,GAAG,OAAO,CAAC;IAChE,gCAAgC,EAAE,OAAO,CAAC;IAC1C,wCAAwC,EAAE,KAAK,GAAG,MAAM,GAAG,KAAK,CAAC;IACjE,8BAA8B,EAAE,MAAM,CAAC;IACvC,8BAA8B,EAAE,OAAO,CAAC;IACxC,2CAA2C,EAAE,OAAO,GAAG,QAAQ,GAAG,WAAW,CAAC;IAC9E,iCAAiC,EAAE,OAAO,GAAG,QAAQ,GAAG,WAAW,CAAC;IACpE,gCAAgC,EAAE,OAAO,CAAC;IAC1C,kBAAkB,EAAE,OAAO,CAAC;IAC5B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,wBAAwB,EAAE,MAAM,GAAG,aAAa,CAAC;IACjD,yBAAyB,EAAE,OAAO,CAAC;IACnC,gCAAgC,EAAE,OAAO,CAAC;IAC1C,8BAA8B,EAAE,MAAM,CAAC;IACvC,oCAAoC,EAAE,OAAO,CAAC;IAC9C,mBAAmB,EAAE,MAAM,CAAC;IAC5B,sBAAsB,EAAE,OAAO,GAAG,MAAM,CAAC;IACzC,iBAAiB,EAAE,MAAM,CAAC;IAC1B,mBAAmB,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC;IACjI,sBAAsB,EAAE,OAAO,CAAC;IAChC,qBAAqB,EAAE,OAAO,CAAC;IAC/B,oBAAoB,EAAE,OAAO,CAAC;IAC9B,8BAA8B,EAAE,IAAI,CAAC;IACrC,yCAAyC,EAAE,MAAM,GAAG,aAAa,GAAG,MAAM,CAAC;IAC3E,6CAA6C,EAAE,MAAM,GAAG,aAAa,GAAG,MAAM,CAAC;IAC/E,0CAA0C,EAAE,MAAM,GAAG,aAAa,GAAG,MAAM,CAAC;IAC5E,6CAA6C,EAAE,MAAM,GAAG,aAAa,GAAG,MAAM,CAAC;IAC/E,wCAAwC,EAAE,MAAM,GAAG,aAAa,GAAG,MAAM,CAAC;IAC1E,kDAAkD,EAAE,EAAE,GAAG,uCAAuC,GAAG,8BAA8B,GAAG,kCAAkC,GAAG,kCAAkC,GAAG,kCAAkC,GAAG,kCAAkC,GAAG,+BAA+B,GAAG,iCAAiC,GAAG,8BAA8B,GAAG,qCAAqC,GAAG,gCAAgC,CAAC;IACxc,sDAAsD,EAAE,EAAE,GAAG,uCAAuC,GAAG,8BAA8B,GAAG,kCAAkC,GAAG,kCAAkC,GAAG,kCAAkC,GAAG,kCAAkC,GAAG,+BAA+B,GAAG,iCAAiC,GAAG,8BAA8B,GAAG,qCAAqC,GAAG,gCAAgC,CAAC;IAC5c,mDAAmD,EAAE,EAAE,GAAG,uCAAuC,GAAG,8BAA8B,GAAG,kCAAkC,GAAG,kCAAkC,GAAG,kCAAkC,GAAG,kCAAkC,GAAG,+BAA+B,GAAG,iCAAiC,GAAG,8BAA8B,GAAG,qCAAqC,GAAG,gCAAgC,CAAC;IACzc,sDAAsD,EAAE,EAAE,GAAG,uCAAuC,GAAG,8BAA8B,GAAG,kCAAkC,GAAG,kCAAkC,GAAG,kCAAkC,GAAG,kCAAkC,GAAG,+BAA+B,GAAG,iCAAiC,GAAG,8BAA8B,GAAG,qCAAqC,GAAG,gCAAgC,CAAC;IAC5c,iDAAiD,EAAE,EAAE,GAAG,uCAAuC,GAAG,8BAA8B,GAAG,kCAAkC,GAAG,kCAAkC,GAAG,kCAAkC,GAAG,kCAAkC,GAAG,+BAA+B,GAAG,iCAAiC,GAAG,8BAA8B,GAAG,qCAAqC,GAAG,gCAAgC,CAAC;IACvc,kCAAkC,EAAE,OAAO,CAAC;IAC5C,sBAAsB,EAAE,OAAO,CAAC;IAChC,oBAAoB,EAAE,MAAM,CAAC;IAC7B,qBAAqB,EAAE,OAAO,CAAC;IAC/B,0BAA0B,EAAE,MAAM,CAAC;IACnC,oBAAoB,EAAE,OAAO,CAAC;IAC9B,8BAA8B,EAAE,OAAO,CAAC;IACxC,kCAAkC,EAAE,QAAQ,GAAG,SAAS,CAAC;IACzD,0CAA0C,EAAE,OAAO,CAAC;IACpD,sBAAsB,EAAE,MAAM,CAAC;IAC/B,0BAA0B,EAAE,OAAO,CAAC;IACpC,mBAAmB,EAAE,MAAM,CAAC;IAC5B,oBAAoB,EAAE,KAAK,GAAG,IAAI,GAAG,UAAU,GAAG,UAAU,CAAC;IAC7D,sBAAsB,EAAE,OAAO,CAAC;IAChC,cAAc,EAAE,OAAO,CAAC;IACxB,sBAAsB,EAAE,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC;IACpD,wBAAwB,EAAE,OAAO,CAAC;IAClC,yBAAyB,EAAE,OAAO,CAAC;IACnC,qBAAqB,EAAE,cAAc,GAAG,MAAM,GAAG,KAAK,CAAC;IACvD,qBAAqB,EAAE,MAAM,GAAG,OAAO,CAAC;IACxC,2BAA2B,EAAE,QAAQ,GAAG,WAAW,CAAC;IACpD,sBAAsB,EAAE,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;IACxC,iCAAiC,EAAE,OAAO,CAAC;IAC3C,0BAA0B,EAAE,MAAM,CAAC;IACnC,oCAAoC,EAAE,MAAM,CAAC;IAC7C,uBAAuB,EAAE,OAAO,CAAC;IACjC,oCAAoC,EAAE,OAAO,CAAC;IAC9C,4BAA4B,EAAE,SAAS,GAAG,KAAK,CAAC;IAChD,yBAAyB,EAAE,QAAQ,GAAG,MAAM,CAAC;IAC7C,yBAAyB,EAAE,MAAM,CAAC;IAClC,6BAA6B,EAAE,OAAO,CAAC;IACvC,4BAA4B,EAAE,OAAO,CAAC;IACtC,oBAAoB,EAAE,MAAM,CAAC;IAC7B,uBAAuB,EAAE,MAAM,CAAC;IAChC,wBAAwB,EAAE,OAAO,CAAC;IAClC,kCAAkC,EAAE,YAAY,GAAG,OAAO,CAAC;IAC3D,+BAA+B,EAAE,OAAO,CAAC;IACzC,6BAA6B,EAAE,OAAO,CAAC;IACvC,+BAA+B,EAAE,MAAM,GAAG,QAAQ,CAAC;IACnD,kCAAkC,EAAE,OAAO,CAAC;IAC5C,yBAAyB,EAAE,OAAO,GAAG;QAAE,KAAK,CAAC,EAAE,qBAAqB,CAAC;QAAC,QAAQ,CAAC,EAAE,qBAAqB,CAAC;QAAC,OAAO,CAAC,EAAE,qBAAqB,CAAA;KAAE,CAAC;IAC1I,8BAA8B,EAAE,MAAM,CAAC;IACvC,qBAAqB,EAAE,OAAO,CAAC;IAC/B,gCAAgC,EAAE,OAAO,CAAC;IAC1C,2BAA2B,EAAE,KAAK,GAAG,IAAI,GAAG,QAAQ,CAAC;IACrD,4BAA4B,EAAE,MAAM,GAAG,QAAQ,GAAG,MAAM,GAAG,KAAK,CAAC;IACjE,yCAAyC,EAAE,OAAO,CAAC;IACnD,yBAAyB,EAAE,MAAM,GAAG,UAAU,GAAG,WAAW,GAAG,UAAU,GAAG,KAAK,CAAC;IAClF,yBAAyB,EAAE,OAAO,CAAC;IACnC,eAAe,EAAE,KAAK,CAAC,MAAM,GAAG;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACnE,2BAA2B,EAAE,MAAM,GAAG,SAAS,GAAG,QAAQ,CAAC;IAC3D,6BAA6B,EAAE,MAAM,GAAG,SAAS,GAAG,QAAQ,CAAC;IAC7D,wCAAwC,EAAE,MAAM,CAAC;IACjD,0CAA0C,EAAE,MAAM,CAAC;IACnD,+BAA+B,EAAE,OAAO,CAAC;IACzC,+BAA+B,EAAE,MAAM,CAAC;IACxC,6BAA6B,EAAE,OAAO,CAAC;IACvC,8BAA8B,EAAE,OAAO,CAAC;IACxC,2BAA2B,EAAE,OAAO,CAAC;IACrC,4BAA4B,EAAE,QAAQ,GAAG,OAAO,GAAG,WAAW,CAAC;IAC/D,mBAAmB,EAAE,OAAO,CAAC;IAC7B,2BAA2B,EAAE,KAAK,GAAG,QAAQ,GAAG,QAAQ,GAAG,MAAM,CAAC;IAClE,uDAAuD,EAAE,OAAO,CAAC;IACjE,mCAAmC,EAAE,OAAO,CAAC;IAC7C,wBAAwB,EAAE,OAAO,CAAC;IAClC,6BAA6B,EAAE,OAAO,CAAC;IACvC,kCAAkC,EAAE,MAAM,CAAC;IAC3C,kCAAkC,EAAE,cAAc,GAAG,sBAAsB,GAAG,kBAAkB,CAAC;IACjG,sCAAsC,EAAE,OAAO,CAAC;IAChD,uBAAuB,EAAE,OAAO,CAAC;IACjC,2BAA2B,EAAE,QAAQ,GAAG,SAAS,CAAC;IAClD,+BAA+B,EAAE,OAAO,CAAC;IACzC,8BAA8B,EAAE,OAAO,CAAC;IACxC,uCAAuC,EAAE,OAAO,CAAC;IACjD,8BAA8B,EAAE,QAAQ,GAAG,OAAO,GAAG,sBAAsB,GAAG,qBAAqB,CAAC;IACpG,gDAAgD,EAAE,OAAO,CAAC;IAC1D,0BAA0B,EAAE,OAAO,CAAC;IACpC,8BAA8B,EAAE,OAAO,CAAC;IACxC,wBAAwB,EAAE,OAAO,CAAC;IAClC,kCAAkC,EAAE,OAAO,CAAC;IAC5C,sCAAsC,EAAE,MAAM,CAAC;IAC/C,8BAA8B,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACxD,4BAA4B,EAAE,OAAO,CAAC;IACtC,8BAA8B,EAAE,OAAO,CAAC;IACxC,iCAAiC,EAAE,OAAO,CAAC;IAC3C,+BAA+B,EAAE,OAAO,CAAC;IACzC,qCAAqC,EAAE,OAAO,CAAC;IAC/C,2BAA2B,EAAE,OAAO,CAAC;IACrC,8BAA8B,EAAE,OAAO,CAAC;IACxC,4BAA4B,EAAE,OAAO,CAAC;IACtC,4BAA4B,EAAE,OAAO,CAAC;IACtC,+BAA+B,EAAE,OAAO,CAAC;IACzC,4BAA4B,EAAE,OAAO,CAAC;IACtC,+BAA+B,EAAE,OAAO,CAAC;IACzC,2BAA2B,EAAE,OAAO,CAAC;IACrC,8BAA8B,EAAE,OAAO,CAAC;IACxC,0BAA0B,EAAE,OAAO,CAAC;IACpC,2BAA2B,EAAE,OAAO,CAAC;IACrC,8BAA8B,EAAE,OAAO,CAAC;IACxC,0BAA0B,EAAE,OAAO,CAAC;IACpC,gCAAgC,EAAE,OAAO,CAAC;IAC1C,6BAA6B,EAAE,OAAO,CAAC;IACvC,0BAA0B,EAAE,OAAO,CAAC;IACpC,2BAA2B,EAAE,OAAO,CAAC;IACrC,0BAA0B,EAAE,OAAO,CAAC;IACpC,+BAA+B,EAAE,OAAO,CAAC;IACzC,iCAAiC,EAAE,OAAO,CAAC;IAC3C,4BAA4B,EAAE,OAAO,CAAC;IACtC,mCAAmC,EAAE,OAAO,CAAC;IAC7C,6BAA6B,EAAE,OAAO,CAAC;IACvC,0BAA0B,EAAE,OAAO,CAAC;IACpC,2BAA2B,EAAE,OAAO,CAAC;IACrC,wBAAwB,EAAE,MAAM,CAAC;IACjC,0BAA0B,EAAE,MAAM,CAAC;IACnC,mCAAmC,EAAE,OAAO,CAAC;IAC7C,yBAAyB,EAAE,OAAO,GAAG,cAAc,GAAG,sBAAsB,CAAC;IAC7E,sBAAsB,EAAE,IAAI,GAAG,KAAK,GAAG,cAAc,CAAC;IACtD,uCAAuC,EAAE,IAAI,GAAG,KAAK,GAAG,sBAAsB,CAAC;IAC/E,6CAA6C,EAAE,OAAO,CAAC;IACvD,6CAA6C,EAAE,OAAO,CAAC;IACvD,yCAAyC,EAAE,IAAI,GAAG,KAAK,GAAG,sBAAsB,CAAC;IACjF,wCAAwC,EAAE,IAAI,GAAG,KAAK,GAAG,sBAAsB,CAAC;IAChF,2CAA2C,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACrE,wCAAwC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAClE,+BAA+B,EAAE,MAAM,GAAG,KAAK,GAAG,QAAQ,CAAC;IAC3D,oBAAoB,EAAE,OAAO,CAAC;IAC9B,kBAAkB,EAAE,QAAQ,GAAG,SAAS,CAAC;IACzC,uBAAuB,EAAE,MAAM,CAAC;IAChC,iBAAiB,EAAE,KAAK,GAAG,IAAI,GAAG,gBAAgB,GAAG,SAAS,CAAC;IAC/D,uBAAuB,EAAE,MAAM,CAAC;IAChC,uBAAuB,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ,GAAG,YAAY,CAAC;IACnE,yBAAyB,EAAE,QAAQ,GAAG,UAAU,CAAC;IACjD,uBAAuB,EAAE,OAAO,CAAC;IACjC,2BAA2B,EAAE,IAAI,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,KAAK,CAAC;IACnF,4BAA4B,EAAE,MAAM,CAAC;IACrC,8BAA8B,EAAE,MAAM,CAAC;IACvC,2BAA2B,EAAE,OAAO,CAAC;IACrC,qBAAqB,EAAE,OAAO,CAAC;IAC/B,+BAA+B,EAAE,OAAO,CAAC;IACzC,mCAAmC,EAAE,eAAe,GAAG,OAAO,GAAG,OAAO,CAAC;IACzE,8CAA8C,EAAE,OAAO,CAAC;IACxD,qCAAqC,EAAE,OAAO,CAAC;IAC/C,iDAAiD,EAAE,OAAO,CAAC;IAC3D,oDAAoD,EAAE,IAAI,CAAC;IAC3D,6BAA6B,EAAE,OAAO,CAAC;IACvC,iCAAiC,EAAE,OAAO,CAAC;IAC3C,2BAA2B,EAAE,OAAO,CAAC;CACxC"}