monaco-editor11 1.1.2 → 1.1.4

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 (1488) hide show
  1. package/dist/esm/monaco-editor/esm/external/@vscode/l10n/dist/browser.js +42 -0
  2. package/dist/esm/monaco-editor/esm/external/jsonc-parser/lib/esm/impl/format.js +261 -0
  3. package/dist/esm/monaco-editor/esm/external/jsonc-parser/lib/esm/impl/parser.js +375 -0
  4. package/dist/esm/monaco-editor/esm/external/jsonc-parser/lib/esm/impl/scanner.js +444 -0
  5. package/dist/esm/monaco-editor/esm/external/jsonc-parser/lib/esm/impl/string-intern.js +31 -0
  6. package/dist/esm/monaco-editor/esm/external/jsonc-parser/lib/esm/main.js +93 -0
  7. package/dist/esm/monaco-editor/esm/external/monaco-lsp-client/out/index.js +3221 -0
  8. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/beautify/beautify-css.js +1673 -0
  9. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/cssLanguageService.js +73 -0
  10. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/cssLanguageTypes.js +44 -0
  11. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/data/webCustomData.js +26083 -0
  12. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/languageFacts/builtinData.js +143 -0
  13. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/languageFacts/colors.js +558 -0
  14. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/languageFacts/dataManager.js +90 -0
  15. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/languageFacts/dataProvider.js +74 -0
  16. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/languageFacts/entry.js +140 -0
  17. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/parser/cssErrors.js +49 -0
  18. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/parser/cssNodes.js +1518 -0
  19. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/parser/cssParser.js +1794 -0
  20. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/parser/cssScanner.js +599 -0
  21. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/parser/cssSymbolScope.js +313 -0
  22. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/parser/lessParser.js +719 -0
  23. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/parser/lessScanner.js +59 -0
  24. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/parser/scssErrors.js +19 -0
  25. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/parser/scssParser.js +809 -0
  26. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/parser/scssScanner.js +96 -0
  27. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/services/cssCodeActions.js +79 -0
  28. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/services/cssCompletion.js +1061 -0
  29. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/services/cssFolding.js +192 -0
  30. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/services/cssFormatter.js +140 -0
  31. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/services/cssHover.js +159 -0
  32. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/services/cssNavigation.js +483 -0
  33. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/services/cssSelectionRange.js +50 -0
  34. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/services/cssValidation.js +44 -0
  35. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/services/lessCompletion.js +380 -0
  36. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/services/lint.js +568 -0
  37. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/services/lintRules.js +77 -0
  38. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/services/lintUtil.js +198 -0
  39. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/services/pathCompletion.js +161 -0
  40. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/services/scssCompletion.js +357 -0
  41. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/services/scssNavigation.js +62 -0
  42. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/services/selectorPrinting.js +558 -0
  43. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/utils/arrays.js +41 -0
  44. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/utils/objects.js +12 -0
  45. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/utils/resources.js +14 -0
  46. package/dist/esm/monaco-editor/esm/external/vscode-css-languageservice/lib/esm/utils/strings.js +103 -0
  47. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/beautify/beautify-css.js +1673 -0
  48. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/beautify/beautify-html.js +3195 -0
  49. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/beautify/beautify.js +13 -0
  50. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/htmlLanguageService.js +58 -0
  51. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/htmlLanguageTypes.js +83 -0
  52. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/languageFacts/data/webCustomData.js +6220 -0
  53. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/languageFacts/dataManager.js +80 -0
  54. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/languageFacts/dataProvider.js +115 -0
  55. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/parser/htmlEntities.js +2243 -0
  56. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/parser/htmlParser.js +164 -0
  57. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/parser/htmlScanner.js +406 -0
  58. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/services/htmlCompletion.js +580 -0
  59. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/services/htmlFolding.js +174 -0
  60. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/services/htmlFormatter.js +153 -0
  61. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/services/htmlHighlighting.js +46 -0
  62. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/services/htmlHover.js +269 -0
  63. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/services/htmlLinkedEditing.js +28 -0
  64. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/services/htmlLinks.js +161 -0
  65. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/services/htmlMatchingTagPosition.js +27 -0
  66. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/services/htmlRename.js +50 -0
  67. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/services/htmlSelectionRange.js +178 -0
  68. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/services/htmlSymbolsProvider.js +58 -0
  69. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/services/pathCompletion.js +130 -0
  70. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/utils/arrays.js +44 -0
  71. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/utils/markup.js +21 -0
  72. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/utils/object.js +9 -0
  73. package/dist/esm/monaco-editor/esm/external/vscode-html-languageservice/lib/esm/utils/strings.js +53 -0
  74. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/jsonLanguageService.js +55 -0
  75. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/jsonLanguageTypes.js +60 -0
  76. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/parser/jsonParser.js +1237 -0
  77. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/services/configuration.js +523 -0
  78. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/services/jsonCompletion.js +954 -0
  79. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/services/jsonDocumentSymbols.js +275 -0
  80. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/services/jsonFolding.js +124 -0
  81. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/services/jsonHover.js +113 -0
  82. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/services/jsonLinks.js +76 -0
  83. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/services/jsonSchemaService.js +609 -0
  84. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/services/jsonSelectionRanges.js +65 -0
  85. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/services/jsonValidation.js +154 -0
  86. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/utils/colors.js +62 -0
  87. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/utils/format.js +24 -0
  88. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/utils/glob.js +125 -0
  89. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/utils/json.js +44 -0
  90. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/utils/objects.js +70 -0
  91. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/utils/propertyTree.js +78 -0
  92. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/utils/sort.js +373 -0
  93. package/dist/esm/monaco-editor/esm/external/vscode-json-languageservice/lib/esm/utils/strings.js +67 -0
  94. package/dist/esm/monaco-editor/esm/external/vscode-languageserver-textdocument/lib/esm/main.js +251 -0
  95. package/dist/esm/monaco-editor/esm/external/vscode-languageserver-types/lib/esm/main.js +1932 -0
  96. package/dist/esm/monaco-editor/esm/external/vscode-uri/lib/esm/index.js +3 -0
  97. package/dist/esm/monaco-editor/esm/metadata.d.ts +28 -0
  98. package/dist/esm/monaco-editor/esm/metadata.js +838 -0
  99. package/dist/esm/monaco-editor/esm/nls.messages.cs.js +9 -0
  100. package/dist/esm/monaco-editor/esm/nls.messages.de.js +9 -0
  101. package/dist/esm/monaco-editor/esm/nls.messages.es.js +9 -0
  102. package/dist/esm/monaco-editor/esm/nls.messages.fr.js +9 -0
  103. package/dist/esm/monaco-editor/esm/nls.messages.it.js +9 -0
  104. package/dist/esm/monaco-editor/esm/nls.messages.ja.js +9 -0
  105. package/dist/esm/monaco-editor/esm/nls.messages.js +4 -0
  106. package/dist/esm/monaco-editor/esm/nls.messages.ko.js +9 -0
  107. package/dist/esm/monaco-editor/esm/nls.messages.pl.js +9 -0
  108. package/dist/esm/monaco-editor/esm/nls.messages.pt-br.js +9 -0
  109. package/dist/esm/monaco-editor/esm/nls.messages.ru.js +9 -0
  110. package/dist/esm/monaco-editor/esm/nls.messages.tr.js +9 -0
  111. package/dist/esm/monaco-editor/esm/nls.messages.zh-cn.js +9 -0
  112. package/dist/esm/monaco-editor/esm/nls.messages.zh-tw.js +9 -0
  113. package/dist/esm/monaco-editor/esm/vs/base/browser/dnd.js +21 -0
  114. package/dist/esm/monaco-editor/esm/vs/base/browser/event.js +23 -0
  115. package/dist/esm/monaco-editor/esm/vs/base/browser/markdownRenderer.js +901 -0
  116. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/actionbar/actionbar.css +124 -0
  117. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/aria/aria.css +9 -0
  118. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/button/button.css +174 -0
  119. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/codicons/codicon/codicon-modifiers.css +33 -0
  120. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/codicons/codicon/codicon-modifiers.css.d.ts +1 -0
  121. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/codicons/codicon/codicon.css +25 -0
  122. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/codicons/codicon/codicon.css.d.ts +1 -0
  123. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
  124. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/contextview/contextview.css +16 -0
  125. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/countBadge/countBadge.css +24 -0
  126. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/dnd/dnd.css +28 -0
  127. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/dnd/dnd.js +28 -0
  128. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/dropdown/dropdown.css +46 -0
  129. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/findinput/findInput.css +70 -0
  130. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/hover/hoverWidget.css +225 -0
  131. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/iconLabel/iconlabel.css +119 -0
  132. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/inputbox/inputBox.css +106 -0
  133. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/keybindingLabel/keybindingLabel.css +37 -0
  134. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/list/list.css +81 -0
  135. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/mouseCursor/mouseCursor.css +8 -0
  136. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/progressbar/progressbar.css +61 -0
  137. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/sash/sash.css +149 -0
  138. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/scrollbar/media/scrollbars.css +76 -0
  139. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/selectBox/selectBox.css +35 -0
  140. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/selectBox/selectBoxCustom.css +126 -0
  141. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/severityIcon/media/severityIcon.css +30 -0
  142. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/splitview/splitview.css +70 -0
  143. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/table/table.css +57 -0
  144. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/toggle/toggle.css +69 -0
  145. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/toolbar/toolbar.css +20 -0
  146. package/dist/esm/monaco-editor/esm/vs/base/browser/ui/tree/media/tree.css +164 -0
  147. package/dist/esm/monaco-editor/esm/vs/base/browser/window.js +16 -0
  148. package/dist/esm/monaco-editor/esm/vs/base/common/actions.js +180 -0
  149. package/dist/esm/monaco-editor/esm/vs/base/common/color.js +678 -0
  150. package/dist/esm/monaco-editor/esm/vs/base/common/dataTransfer.js +133 -0
  151. package/dist/esm/monaco-editor/esm/vs/base/common/iconLabels.js +88 -0
  152. package/dist/esm/monaco-editor/esm/vs/base/common/observableInternal/experimental/utils.js +16 -0
  153. package/dist/esm/monaco-editor/esm/vs/base/common/observableInternal/logging/debugger/utils.js +47 -0
  154. package/dist/esm/monaco-editor/esm/vs/base/common/observableInternal/utils/utils.js +164 -0
  155. package/dist/esm/monaco-editor/esm/vs/base/common/platform.js +154 -0
  156. package/dist/esm/monaco-editor/esm/vs/base/common/range.js +46 -0
  157. package/dist/esm/monaco-editor/esm/vs/base/common/types.js +140 -0
  158. package/dist/esm/monaco-editor/esm/vs/basic-languages/abap/abap.contribution.d.ts +1 -0
  159. package/dist/esm/monaco-editor/esm/vs/basic-languages/apex/apex.contribution.d.ts +1 -0
  160. package/dist/esm/monaco-editor/esm/vs/basic-languages/azcli/azcli.contribution.d.ts +1 -0
  161. package/dist/esm/monaco-editor/esm/vs/basic-languages/bat/bat.contribution.d.ts +1 -0
  162. package/dist/esm/monaco-editor/esm/vs/basic-languages/bicep/bicep.contribution.d.ts +1 -0
  163. package/dist/esm/monaco-editor/esm/vs/basic-languages/cameligo/cameligo.contribution.d.ts +1 -0
  164. package/dist/esm/monaco-editor/esm/vs/basic-languages/clojure/clojure.contribution.d.ts +1 -0
  165. package/dist/esm/monaco-editor/esm/vs/basic-languages/coffee/coffee.contribution.d.ts +1 -0
  166. package/dist/esm/monaco-editor/esm/vs/basic-languages/cpp/cpp.contribution.d.ts +1 -0
  167. package/dist/esm/monaco-editor/esm/vs/basic-languages/csharp/csharp.contribution.d.ts +1 -0
  168. package/dist/esm/monaco-editor/esm/vs/basic-languages/csp/csp.contribution.d.ts +1 -0
  169. package/dist/esm/monaco-editor/esm/vs/basic-languages/css/css.contribution.d.ts +1 -0
  170. package/dist/esm/monaco-editor/esm/vs/basic-languages/cypher/cypher.contribution.d.ts +1 -0
  171. package/dist/esm/monaco-editor/esm/vs/basic-languages/dart/dart.contribution.d.ts +1 -0
  172. package/dist/esm/monaco-editor/esm/vs/basic-languages/dockerfile/dockerfile.contribution.d.ts +1 -0
  173. package/dist/esm/monaco-editor/esm/vs/basic-languages/ecl/ecl.contribution.d.ts +1 -0
  174. package/dist/esm/monaco-editor/esm/vs/basic-languages/elixir/elixir.contribution.d.ts +1 -0
  175. package/dist/esm/monaco-editor/esm/vs/basic-languages/flow9/flow9.contribution.d.ts +1 -0
  176. package/dist/esm/monaco-editor/esm/vs/basic-languages/freemarker2/freemarker2.contribution.d.ts +1 -0
  177. package/dist/esm/monaco-editor/esm/vs/basic-languages/fsharp/fsharp.contribution.d.ts +1 -0
  178. package/dist/esm/monaco-editor/esm/vs/basic-languages/go/go.contribution.d.ts +1 -0
  179. package/dist/esm/monaco-editor/esm/vs/basic-languages/graphql/graphql.contribution.d.ts +1 -0
  180. package/dist/esm/monaco-editor/esm/vs/basic-languages/handlebars/handlebars.contribution.d.ts +1 -0
  181. package/dist/esm/monaco-editor/esm/vs/basic-languages/hcl/hcl.contribution.d.ts +1 -0
  182. package/dist/esm/monaco-editor/esm/vs/basic-languages/html/html.contribution.d.ts +1 -0
  183. package/dist/esm/monaco-editor/esm/vs/basic-languages/ini/ini.contribution.d.ts +1 -0
  184. package/dist/esm/monaco-editor/esm/vs/basic-languages/java/java.contribution.d.ts +1 -0
  185. package/dist/esm/monaco-editor/esm/vs/basic-languages/javascript/javascript.contribution.d.ts +1 -0
  186. package/dist/esm/monaco-editor/esm/vs/basic-languages/julia/julia.contribution.d.ts +1 -0
  187. package/dist/esm/monaco-editor/esm/vs/basic-languages/kotlin/kotlin.contribution.d.ts +1 -0
  188. package/dist/esm/monaco-editor/esm/vs/basic-languages/less/less.contribution.d.ts +1 -0
  189. package/dist/esm/monaco-editor/esm/vs/basic-languages/lexon/lexon.contribution.d.ts +1 -0
  190. package/dist/esm/monaco-editor/esm/vs/basic-languages/liquid/liquid.contribution.d.ts +1 -0
  191. package/dist/esm/monaco-editor/esm/vs/basic-languages/lua/lua.contribution.d.ts +1 -0
  192. package/dist/esm/monaco-editor/esm/vs/basic-languages/m3/m3.contribution.d.ts +1 -0
  193. package/dist/esm/monaco-editor/esm/vs/basic-languages/markdown/markdown.contribution.d.ts +1 -0
  194. package/dist/esm/monaco-editor/esm/vs/basic-languages/mdx/mdx.contribution.d.ts +1 -0
  195. package/dist/esm/monaco-editor/esm/vs/basic-languages/mips/mips.contribution.d.ts +1 -0
  196. package/dist/esm/monaco-editor/esm/vs/basic-languages/msdax/msdax.contribution.d.ts +1 -0
  197. package/dist/esm/monaco-editor/esm/vs/basic-languages/mysql/mysql.contribution.d.ts +1 -0
  198. package/dist/esm/monaco-editor/esm/vs/basic-languages/objective-c/objective-c.contribution.d.ts +1 -0
  199. package/dist/esm/monaco-editor/esm/vs/basic-languages/pascal/pascal.contribution.d.ts +1 -0
  200. package/dist/esm/monaco-editor/esm/vs/basic-languages/pascaligo/pascaligo.contribution.d.ts +1 -0
  201. package/dist/esm/monaco-editor/esm/vs/basic-languages/perl/perl.contribution.d.ts +1 -0
  202. package/dist/esm/monaco-editor/esm/vs/basic-languages/pgsql/pgsql.contribution.d.ts +1 -0
  203. package/dist/esm/monaco-editor/esm/vs/basic-languages/php/php.contribution.d.ts +1 -0
  204. package/dist/esm/monaco-editor/esm/vs/basic-languages/pla/pla.contribution.d.ts +1 -0
  205. package/dist/esm/monaco-editor/esm/vs/basic-languages/postiats/postiats.contribution.d.ts +1 -0
  206. package/dist/esm/monaco-editor/esm/vs/basic-languages/powerquery/powerquery.contribution.d.ts +1 -0
  207. package/dist/esm/monaco-editor/esm/vs/basic-languages/powershell/powershell.contribution.d.ts +1 -0
  208. package/dist/esm/monaco-editor/esm/vs/basic-languages/protobuf/protobuf.contribution.d.ts +1 -0
  209. package/dist/esm/monaco-editor/esm/vs/basic-languages/pug/pug.contribution.d.ts +1 -0
  210. package/dist/esm/monaco-editor/esm/vs/basic-languages/python/python.contribution.d.ts +1 -0
  211. package/dist/esm/monaco-editor/esm/vs/basic-languages/qsharp/qsharp.contribution.d.ts +1 -0
  212. package/dist/esm/monaco-editor/esm/vs/basic-languages/r/r.contribution.d.ts +1 -0
  213. package/dist/esm/monaco-editor/esm/vs/basic-languages/razor/razor.contribution.d.ts +1 -0
  214. package/dist/esm/monaco-editor/esm/vs/basic-languages/redis/redis.contribution.d.ts +1 -0
  215. package/dist/esm/monaco-editor/esm/vs/basic-languages/redshift/redshift.contribution.d.ts +1 -0
  216. package/dist/esm/monaco-editor/esm/vs/basic-languages/restructuredtext/restructuredtext.contribution.d.ts +1 -0
  217. package/dist/esm/monaco-editor/esm/vs/basic-languages/ruby/ruby.contribution.d.ts +1 -0
  218. package/dist/esm/monaco-editor/esm/vs/basic-languages/rust/rust.contribution.d.ts +1 -0
  219. package/dist/esm/monaco-editor/esm/vs/basic-languages/sb/sb.contribution.d.ts +1 -0
  220. package/dist/esm/monaco-editor/esm/vs/basic-languages/scala/scala.contribution.d.ts +1 -0
  221. package/dist/esm/monaco-editor/esm/vs/basic-languages/scheme/scheme.contribution.d.ts +1 -0
  222. package/dist/esm/monaco-editor/esm/vs/basic-languages/scss/scss.contribution.d.ts +1 -0
  223. package/dist/esm/monaco-editor/esm/vs/basic-languages/shell/shell.contribution.d.ts +1 -0
  224. package/dist/esm/monaco-editor/esm/vs/basic-languages/solidity/solidity.contribution.d.ts +1 -0
  225. package/dist/esm/monaco-editor/esm/vs/basic-languages/sophia/sophia.contribution.d.ts +1 -0
  226. package/dist/esm/monaco-editor/esm/vs/basic-languages/sparql/sparql.contribution.d.ts +1 -0
  227. package/dist/esm/monaco-editor/esm/vs/basic-languages/sql/sql.contribution.d.ts +1 -0
  228. package/dist/esm/monaco-editor/esm/vs/basic-languages/st/st.contribution.d.ts +1 -0
  229. package/dist/esm/monaco-editor/esm/vs/basic-languages/swift/swift.contribution.d.ts +1 -0
  230. package/dist/esm/monaco-editor/esm/vs/basic-languages/systemverilog/systemverilog.contribution.d.ts +1 -0
  231. package/dist/esm/monaco-editor/esm/vs/basic-languages/tcl/tcl.contribution.d.ts +1 -0
  232. package/dist/esm/monaco-editor/esm/vs/basic-languages/twig/twig.contribution.d.ts +1 -0
  233. package/dist/esm/monaco-editor/esm/vs/basic-languages/typescript/typescript.contribution.d.ts +1 -0
  234. package/dist/esm/monaco-editor/esm/vs/basic-languages/typespec/typespec.contribution.d.ts +1 -0
  235. package/dist/esm/monaco-editor/esm/vs/basic-languages/vb/vb.contribution.d.ts +1 -0
  236. package/dist/esm/monaco-editor/esm/vs/basic-languages/wgsl/wgsl.contribution.d.ts +1 -0
  237. package/dist/esm/monaco-editor/esm/vs/basic-languages/xml/xml.contribution.d.ts +1 -0
  238. package/dist/esm/monaco-editor/esm/vs/basic-languages/yaml/yaml.contribution.d.ts +1 -0
  239. package/dist/esm/monaco-editor/esm/vs/common/initialize.js +16 -0
  240. package/dist/esm/monaco-editor/esm/vs/editor/browser/controller/editContext/native/nativeEditContext.css +50 -0
  241. package/dist/esm/monaco-editor/esm/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.css +38 -0
  242. package/dist/esm/monaco-editor/esm/vs/editor/browser/coreCommands.d.ts +1 -0
  243. package/dist/esm/monaco-editor/esm/vs/editor/browser/gpu/css/media/decorationCssRuleExtractor.css +9 -0
  244. package/dist/esm/monaco-editor/esm/vs/editor/browser/services/markerDecorations.js +30 -0
  245. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/blockDecorations/blockDecorations.css +15 -0
  246. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.css +28 -0
  247. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/decorations/decorations.css +13 -0
  248. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/glyphMargin/glyphMargin.css +32 -0
  249. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/gpuMark/gpuMark.css +20 -0
  250. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/indentGuides/indentGuides.css +10 -0
  251. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/lineNumbers/lineNumbers.css +33 -0
  252. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/linesDecorations/linesDecorations.css +18 -0
  253. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/margin/margin.css +8 -0
  254. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/marginDecorations/marginDecorations.css +15 -0
  255. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/minimap/minimap.css +63 -0
  256. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.css +9 -0
  257. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/rulers/rulers.css +10 -0
  258. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/scrollDecoration/scrollDecoration.css +12 -0
  259. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/selections/selections.css +35 -0
  260. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/viewCursors/viewCursors.css +85 -0
  261. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/viewLines/viewLines.css +88 -0
  262. package/dist/esm/monaco-editor/esm/vs/editor/browser/viewParts/whitespace/whitespace.css +9 -0
  263. package/dist/esm/monaco-editor/esm/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +1 -0
  264. package/dist/esm/monaco-editor/esm/vs/editor/browser/widget/codeEditor/editor.css +119 -0
  265. package/dist/esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/commands.js +244 -0
  266. package/dist/esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.css +77 -0
  267. package/dist/esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/diffEditor.contribution.d.ts +1 -0
  268. package/dist/esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/style.css +439 -0
  269. package/dist/esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/utils.js +425 -0
  270. package/dist/esm/monaco-editor/esm/vs/editor/browser/widget/markdownRenderer/browser/renderedMarkdown.css +21 -0
  271. package/dist/esm/monaco-editor/esm/vs/editor/browser/widget/multiDiffEditor/style.css +141 -0
  272. package/dist/esm/monaco-editor/esm/vs/editor/browser/widget/multiDiffEditor/utils.js +18 -0
  273. package/dist/esm/monaco-editor/esm/vs/editor/common/core/edits/edit.js +183 -0
  274. package/dist/esm/monaco-editor/esm/vs/editor/common/core/misc/indentation.js +39 -0
  275. package/dist/esm/monaco-editor/esm/vs/editor/common/diff/defaultLinesDiffComputer/utils.js +62 -0
  276. package/dist/esm/monaco-editor/esm/vs/editor/common/languages/supports/tokenization.js +287 -0
  277. package/dist/esm/monaco-editor/esm/vs/editor/common/model/utils.js +33 -0
  278. package/dist/esm/monaco-editor/esm/vs/editor/common/model.js +144 -0
  279. package/dist/esm/monaco-editor/esm/vs/editor/contrib/anchorSelect/browser/anchorSelect.css +9 -0
  280. package/dist/esm/monaco-editor/esm/vs/editor/contrib/anchorSelect/browser/anchorSelect.d.ts +1 -0
  281. package/dist/esm/monaco-editor/esm/vs/editor/contrib/bracketMatching/browser/bracketMatching.css +10 -0
  282. package/dist/esm/monaco-editor/esm/vs/editor/contrib/bracketMatching/browser/bracketMatching.d.ts +1 -0
  283. package/dist/esm/monaco-editor/esm/vs/editor/contrib/caretOperations/browser/caretOperations.d.ts +1 -0
  284. package/dist/esm/monaco-editor/esm/vs/editor/contrib/caretOperations/browser/transpose.d.ts +1 -0
  285. package/dist/esm/monaco-editor/esm/vs/editor/contrib/clipboard/browser/clipboard.d.ts +1 -0
  286. package/dist/esm/monaco-editor/esm/vs/editor/contrib/codeAction/browser/codeActionContributions.d.ts +1 -0
  287. package/dist/esm/monaco-editor/esm/vs/editor/contrib/codeAction/browser/lightBulbWidget.css +65 -0
  288. package/dist/esm/monaco-editor/esm/vs/editor/contrib/codelens/browser/codelensController.d.ts +1 -0
  289. package/dist/esm/monaco-editor/esm/vs/editor/contrib/codelens/browser/codelensWidget.css +63 -0
  290. package/dist/esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser/colorPicker.css +211 -0
  291. package/dist/esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser/colorPickerContribution.d.ts +1 -0
  292. package/dist/esm/monaco-editor/esm/vs/editor/contrib/comment/browser/comment.d.ts +1 -0
  293. package/dist/esm/monaco-editor/esm/vs/editor/contrib/contextmenu/browser/contextmenu.d.ts +1 -0
  294. package/dist/esm/monaco-editor/esm/vs/editor/contrib/cursorUndo/browser/cursorUndo.d.ts +1 -0
  295. package/dist/esm/monaco-editor/esm/vs/editor/contrib/diffEditorBreadcrumbs/browser/contribution.d.ts +1 -0
  296. package/dist/esm/monaco-editor/esm/vs/editor/contrib/diffEditorBreadcrumbs/browser/contribution.js +63 -0
  297. package/dist/esm/monaco-editor/esm/vs/editor/contrib/dnd/browser/dnd.css +31 -0
  298. package/dist/esm/monaco-editor/esm/vs/editor/contrib/dnd/browser/dnd.d.ts +1 -0
  299. package/dist/esm/monaco-editor/esm/vs/editor/contrib/documentSymbols/browser/documentSymbols.d.ts +1 -0
  300. package/dist/esm/monaco-editor/esm/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.d.ts +1 -0
  301. package/dist/esm/monaco-editor/esm/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorContribution.d.ts +1 -0
  302. package/dist/esm/monaco-editor/esm/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.css +27 -0
  303. package/dist/esm/monaco-editor/esm/vs/editor/contrib/find/browser/findController.d.ts +1 -0
  304. package/dist/esm/monaco-editor/esm/vs/editor/contrib/find/browser/findOptionsWidget.css +11 -0
  305. package/dist/esm/monaco-editor/esm/vs/editor/contrib/find/browser/findWidget.css +284 -0
  306. package/dist/esm/monaco-editor/esm/vs/editor/contrib/floatingMenu/browser/floatingMenu.contribution.d.ts +1 -0
  307. package/dist/esm/monaco-editor/esm/vs/editor/contrib/floatingMenu/browser/floatingMenu.css +44 -0
  308. package/dist/esm/monaco-editor/esm/vs/editor/contrib/folding/browser/folding.css +51 -0
  309. package/dist/esm/monaco-editor/esm/vs/editor/contrib/folding/browser/folding.d.ts +1 -0
  310. package/dist/esm/monaco-editor/esm/vs/editor/contrib/fontZoom/browser/fontZoom.d.ts +1 -0
  311. package/dist/esm/monaco-editor/esm/vs/editor/contrib/format/browser/formatActions.d.ts +1 -0
  312. package/dist/esm/monaco-editor/esm/vs/editor/contrib/gotoError/browser/gotoError.d.ts +1 -0
  313. package/dist/esm/monaco-editor/esm/vs/editor/contrib/gotoError/browser/media/gotoErrorWidget.css +75 -0
  314. package/dist/esm/monaco-editor/esm/vs/editor/contrib/gotoSymbol/browser/goToCommands.d.ts +1 -0
  315. package/dist/esm/monaco-editor/esm/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.css +10 -0
  316. package/dist/esm/monaco-editor/esm/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.d.ts +1 -0
  317. package/dist/esm/monaco-editor/esm/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.css +87 -0
  318. package/dist/esm/monaco-editor/esm/vs/editor/contrib/gpu/browser/gpuActions.d.ts +1 -0
  319. package/dist/esm/monaco-editor/esm/vs/editor/contrib/hover/browser/hover.css +117 -0
  320. package/dist/esm/monaco-editor/esm/vs/editor/contrib/hover/browser/hoverContribution.d.ts +1 -0
  321. package/dist/esm/monaco-editor/esm/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.css +9 -0
  322. package/dist/esm/monaco-editor/esm/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.d.ts +1 -0
  323. package/dist/esm/monaco-editor/esm/vs/editor/contrib/indentation/browser/indentation.d.ts +1 -0
  324. package/dist/esm/monaco-editor/esm/vs/editor/contrib/indentation/browser/indentation.js +567 -0
  325. package/dist/esm/monaco-editor/esm/vs/editor/contrib/inlayHints/browser/inlayHintsContribution.d.ts +1 -0
  326. package/dist/esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.css +47 -0
  327. package/dist/esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/inlineCompletions.contribution.d.ts +1 -0
  328. package/dist/esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/utils.js +85 -0
  329. package/dist/esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.css +78 -0
  330. package/dist/esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css +219 -0
  331. package/dist/esm/monaco-editor/esm/vs/editor/contrib/inlineProgress/browser/inlineProgress.d.ts +1 -0
  332. package/dist/esm/monaco-editor/esm/vs/editor/contrib/inlineProgress/browser/inlineProgressWidget.css +30 -0
  333. package/dist/esm/monaco-editor/esm/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.d.ts +1 -0
  334. package/dist/esm/monaco-editor/esm/vs/editor/contrib/lineSelection/browser/lineSelection.d.ts +1 -0
  335. package/dist/esm/monaco-editor/esm/vs/editor/contrib/linesOperations/browser/linesOperations.d.ts +1 -0
  336. package/dist/esm/monaco-editor/esm/vs/editor/contrib/linkedEditing/browser/linkedEditing.css +11 -0
  337. package/dist/esm/monaco-editor/esm/vs/editor/contrib/linkedEditing/browser/linkedEditing.d.ts +1 -0
  338. package/dist/esm/monaco-editor/esm/vs/editor/contrib/links/browser/links.css +14 -0
  339. package/dist/esm/monaco-editor/esm/vs/editor/contrib/links/browser/links.d.ts +1 -0
  340. package/dist/esm/monaco-editor/esm/vs/editor/contrib/longLinesHelper/browser/longLinesHelper.d.ts +1 -0
  341. package/dist/esm/monaco-editor/esm/vs/editor/contrib/message/browser/messageController.css +85 -0
  342. package/dist/esm/monaco-editor/esm/vs/editor/contrib/middleScroll/browser/middleScroll.contribution.d.ts +1 -0
  343. package/dist/esm/monaco-editor/esm/vs/editor/contrib/middleScroll/browser/middleScroll.css +27 -0
  344. package/dist/esm/monaco-editor/esm/vs/editor/contrib/multicursor/browser/multicursor.d.ts +1 -0
  345. package/dist/esm/monaco-editor/esm/vs/editor/contrib/parameterHints/browser/parameterHints.css +149 -0
  346. package/dist/esm/monaco-editor/esm/vs/editor/contrib/parameterHints/browser/parameterHints.d.ts +1 -0
  347. package/dist/esm/monaco-editor/esm/vs/editor/contrib/peekView/browser/media/peekViewWidget.css +82 -0
  348. package/dist/esm/monaco-editor/esm/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.d.ts +1 -0
  349. package/dist/esm/monaco-editor/esm/vs/editor/contrib/placeholderText/browser/placeholderText.css +17 -0
  350. package/dist/esm/monaco-editor/esm/vs/editor/contrib/readOnlyMessage/browser/contribution.d.ts +1 -0
  351. package/dist/esm/monaco-editor/esm/vs/editor/contrib/rename/browser/rename.d.ts +1 -0
  352. package/dist/esm/monaco-editor/esm/vs/editor/contrib/rename/browser/renameWidget.css +56 -0
  353. package/dist/esm/monaco-editor/esm/vs/editor/contrib/sectionHeaders/browser/sectionHeaders.d.ts +1 -0
  354. package/dist/esm/monaco-editor/esm/vs/editor/contrib/semanticTokens/browser/documentSemanticTokens.d.ts +1 -0
  355. package/dist/esm/monaco-editor/esm/vs/editor/contrib/semanticTokens/browser/viewportSemanticTokens.d.ts +1 -0
  356. package/dist/esm/monaco-editor/esm/vs/editor/contrib/smartSelect/browser/smartSelect.d.ts +1 -0
  357. package/dist/esm/monaco-editor/esm/vs/editor/contrib/snippet/browser/snippetController2.d.ts +1 -0
  358. package/dist/esm/monaco-editor/esm/vs/editor/contrib/snippet/browser/snippetSession.css +19 -0
  359. package/dist/esm/monaco-editor/esm/vs/editor/contrib/stickyScroll/browser/stickyScroll.css +73 -0
  360. package/dist/esm/monaco-editor/esm/vs/editor/contrib/stickyScroll/browser/stickyScrollContribution.d.ts +1 -0
  361. package/dist/esm/monaco-editor/esm/vs/editor/contrib/suggest/browser/media/suggest.css +466 -0
  362. package/dist/esm/monaco-editor/esm/vs/editor/contrib/suggest/browser/suggestController.d.ts +1 -0
  363. package/dist/esm/monaco-editor/esm/vs/editor/contrib/suggest/browser/suggestInlineCompletions.d.ts +1 -0
  364. package/dist/esm/monaco-editor/esm/vs/editor/contrib/symbolIcons/browser/symbolIcons.css +75 -0
  365. package/dist/esm/monaco-editor/esm/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.d.ts +1 -0
  366. package/dist/esm/monaco-editor/esm/vs/editor/contrib/tokenization/browser/tokenization.d.ts +1 -0
  367. package/dist/esm/monaco-editor/esm/vs/editor/contrib/unicodeHighlighter/browser/bannerController.css +85 -0
  368. package/dist/esm/monaco-editor/esm/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.css +10 -0
  369. package/dist/esm/monaco-editor/esm/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.d.ts +1 -0
  370. package/dist/esm/monaco-editor/esm/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.d.ts +1 -0
  371. package/dist/esm/monaco-editor/esm/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.css +40 -0
  372. package/dist/esm/monaco-editor/esm/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.d.ts +1 -0
  373. package/dist/esm/monaco-editor/esm/vs/editor/contrib/wordOperations/browser/wordOperations.d.ts +1 -0
  374. package/dist/esm/monaco-editor/esm/vs/editor/contrib/wordPartOperations/browser/wordPartOperations.d.ts +1 -0
  375. package/dist/esm/monaco-editor/esm/vs/editor/contrib/zoneWidget/browser/zoneWidget.css +17 -0
  376. package/dist/esm/monaco-editor/esm/vs/editor/editor.api.d.ts +8696 -0
  377. package/dist/esm/monaco-editor/esm/vs/editor/editor.main.d.ts +1422 -0
  378. package/dist/esm/monaco-editor/esm/vs/editor/internal/initialize.d.ts +1 -0
  379. package/dist/esm/monaco-editor/esm/vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard.css +24 -0
  380. package/dist/esm/monaco-editor/esm/vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard.d.ts +1 -0
  381. package/dist/esm/monaco-editor/esm/vs/editor/standalone/browser/inspectTokens/inspectTokens.css +46 -0
  382. package/dist/esm/monaco-editor/esm/vs/editor/standalone/browser/inspectTokens/inspectTokens.d.ts +1 -0
  383. package/dist/esm/monaco-editor/esm/vs/editor/standalone/browser/quickAccess/standaloneCommandsQuickAccess.d.ts +1 -0
  384. package/dist/esm/monaco-editor/esm/vs/editor/standalone/browser/quickAccess/standaloneGotoLineQuickAccess.d.ts +1 -0
  385. package/dist/esm/monaco-editor/esm/vs/editor/standalone/browser/quickAccess/standaloneGotoSymbolQuickAccess.d.ts +1 -0
  386. package/dist/esm/monaco-editor/esm/vs/editor/standalone/browser/quickAccess/standaloneHelpQuickAccess.d.ts +1 -0
  387. package/dist/esm/monaco-editor/esm/vs/editor/standalone/browser/quickInput/standaloneQuickInput.css +63 -0
  388. package/dist/esm/monaco-editor/esm/vs/editor/standalone/browser/referenceSearch/standaloneReferenceSearch.d.ts +1 -0
  389. package/dist/esm/monaco-editor/esm/vs/editor/standalone/browser/standalone-tokens.css +55 -0
  390. package/dist/esm/monaco-editor/esm/vs/editor/standalone/browser/toggleHighContrast/toggleHighContrast.d.ts +1 -0
  391. package/dist/esm/monaco-editor/esm/vs/language/css/monaco.contribution.d.ts +1 -0
  392. package/dist/esm/monaco-editor/esm/vs/language/css/monaco.contribution.js +184 -0
  393. package/dist/esm/monaco-editor/esm/vs/language/css/workerManager.js +64 -0
  394. package/dist/esm/monaco-editor/esm/vs/language/html/monaco.contribution.d.ts +1 -0
  395. package/dist/esm/monaco-editor/esm/vs/language/html/monaco.contribution.js +181 -0
  396. package/dist/esm/monaco-editor/esm/vs/language/html/workerManager.js +64 -0
  397. package/dist/esm/monaco-editor/esm/vs/language/json/monaco.contribution.d.ts +1 -0
  398. package/dist/esm/monaco-editor/esm/vs/language/json/monaco.contribution.js +144 -0
  399. package/dist/esm/monaco-editor/esm/vs/language/json/tokenization.js +189 -0
  400. package/dist/esm/monaco-editor/esm/vs/language/json/workerManager.js +65 -0
  401. package/dist/esm/monaco-editor/esm/vs/language/typescript/languageFeatures.js +1009 -0
  402. package/dist/esm/monaco-editor/esm/vs/language/typescript/monaco.contribution.d.ts +1 -0
  403. package/dist/esm/monaco-editor/esm/vs/platform/actionWidget/browser/actionWidget.css +197 -0
  404. package/dist/esm/monaco-editor/esm/vs/platform/actions/browser/menuEntryActionViewItem.css +63 -0
  405. package/dist/esm/monaco-editor/esm/vs/platform/actions/browser/toolbar.js +280 -0
  406. package/dist/esm/monaco-editor/esm/vs/platform/clipboard/browser/clipboardService.js +215 -0
  407. package/dist/esm/monaco-editor/esm/vs/platform/commands/common/commands.js +83 -0
  408. package/dist/esm/monaco-editor/esm/vs/platform/contextview/browser/contextView.js +10 -0
  409. package/dist/esm/monaco-editor/esm/vs/platform/dnd/browser/dnd.js +49 -0
  410. package/dist/esm/monaco-editor/esm/vs/platform/extensions/common/extensions.js +49 -0
  411. package/dist/esm/monaco-editor/esm/vs/platform/hover/browser/hover.css +143 -0
  412. package/dist/esm/monaco-editor/esm/vs/platform/hover/browser/hover.js +103 -0
  413. package/dist/esm/monaco-editor/esm/vs/platform/hover/browser/hoverWidget.js +605 -0
  414. package/dist/esm/monaco-editor/esm/vs/platform/instantiation/common/graph.js +91 -0
  415. package/dist/esm/monaco-editor/esm/vs/platform/opener/browser/link.css +13 -0
  416. package/dist/esm/monaco-editor/esm/vs/platform/quickinput/browser/commandsQuickAccess.js +388 -0
  417. package/dist/esm/monaco-editor/esm/vs/platform/quickinput/browser/media/quickInput.css +486 -0
  418. package/dist/esm/monaco-editor/esm/vs/platform/quickinput/browser/quickAccess.js +209 -0
  419. package/dist/esm/monaco-editor/esm/vs/platform/quickinput/browser/quickInput.js +1026 -0
  420. package/dist/esm/monaco-editor/esm/vs/platform/storage/common/storage.js +236 -0
  421. package/dist/esm/monaco-editor/esm/vs/platform/telemetry/common/telemetry.js +9 -0
  422. package/dist/esm/monaco-editor/esm/vs/platform/theme/common/theme.js +29 -0
  423. package/dist/monaco.d.ts +8 -0
  424. package/package.json +3 -2
  425. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/browser.js +0 -0
  426. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/canIUse.js +0 -0
  427. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/cssValue.js +0 -0
  428. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/dom.js +0 -0
  429. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/domSanitize.js +0 -0
  430. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/domStylesheets.js +0 -0
  431. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/dompurify}/dompurify.js +0 -0
  432. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/fastDomNode.js +0 -0
  433. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/fonts.js +0 -0
  434. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/formattedTextRenderer.js +0 -0
  435. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/globalPointerMoveMonitor.js +0 -0
  436. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/iframe.js +0 -0
  437. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/keyboardEvent.js +0 -0
  438. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/mouseEvent.js +0 -0
  439. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/performance.js +0 -0
  440. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/pixelRatio.js +0 -0
  441. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/touch.js +0 -0
  442. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/trustedTypes.js +0 -0
  443. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/actionbar}/actionViewItems.js +0 -0
  444. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/actionbar}/actionbar.js +0 -0
  445. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/aria}/aria.js +0 -0
  446. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/button}/button.js +0 -0
  447. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/contextview}/contextview.js +0 -0
  448. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/countBadge}/countBadge.js +0 -0
  449. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/dropdown}/dropdown.js +0 -0
  450. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/dropdown}/dropdownActionViewItem.js +0 -0
  451. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/findinput}/findInput.js +0 -0
  452. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/findinput}/findInputToggles.js +0 -0
  453. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/findinput}/replaceInput.js +0 -0
  454. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/highlightedlabel}/highlightedLabel.js +0 -0
  455. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/hover}/hover.js +0 -0
  456. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/hover}/hoverDelegate2.js +0 -0
  457. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/hover}/hoverDelegateFactory.js +0 -0
  458. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/hover}/hoverWidget.js +0 -0
  459. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/iconLabel}/iconLabel.js +0 -0
  460. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/iconLabel}/iconLabels.js +0 -0
  461. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/inputbox}/inputBox.js +0 -0
  462. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/keybindingLabel}/keybindingLabel.js +0 -0
  463. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/list}/list.js +0 -0
  464. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/list}/listPaging.js +0 -0
  465. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/list}/listView.js +0 -0
  466. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/list}/listWidget.js +0 -0
  467. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/list}/rangeMap.js +0 -0
  468. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/list}/rowCache.js +0 -0
  469. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/list}/splice.js +0 -0
  470. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/menu}/menu.js +0 -0
  471. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/mouseCursor}/mouseCursor.js +0 -0
  472. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/progressbar}/progressbar.js +0 -0
  473. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/resizable}/resizable.js +0 -0
  474. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/sash}/sash.js +0 -0
  475. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/scrollbar}/abstractScrollbar.js +0 -0
  476. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/scrollbar}/horizontalScrollbar.js +0 -0
  477. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/scrollbar}/scrollableElement.js +0 -0
  478. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/scrollbar}/scrollbarArrow.js +0 -0
  479. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/scrollbar}/scrollbarState.js +0 -0
  480. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/scrollbar}/scrollbarVisibilityController.js +0 -0
  481. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/scrollbar}/verticalScrollbar.js +0 -0
  482. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/selectBox}/selectBox.js +0 -0
  483. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/selectBox}/selectBoxCustom.js +0 -0
  484. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/selectBox}/selectBoxNative.js +0 -0
  485. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/severityIcon}/severityIcon.js +0 -0
  486. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/splitview}/splitview.js +0 -0
  487. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/table}/tableWidget.js +0 -0
  488. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/toggle}/toggle.js +0 -0
  489. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/toolbar}/toolbar.js +0 -0
  490. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/tree}/abstractTree.js +0 -0
  491. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/tree}/asyncDataTree.js +0 -0
  492. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/tree}/compressedObjectTreeModel.js +0 -0
  493. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/tree}/dataTree.js +0 -0
  494. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/tree}/indexTreeModel.js +0 -0
  495. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/tree}/objectTree.js +0 -0
  496. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/tree}/objectTreeModel.js +0 -0
  497. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui/tree}/tree.js +0 -0
  498. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser/ui}/widget.js +0 -0
  499. /package/dist/{workers → esm/monaco-editor/esm/vs/base/browser}/webWorkerFactory.js +0 -0
  500. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/arrays.js +0 -0
  501. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/arraysFind.js +0 -0
  502. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/assert.js +0 -0
  503. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/async.js +0 -0
  504. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/buffer.js +0 -0
  505. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/cache.js +0 -0
  506. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/cancellation.js +0 -0
  507. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/codicons.js +0 -0
  508. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/codiconsLibrary.js +0 -0
  509. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/codiconsUtil.js +0 -0
  510. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/collections.js +0 -0
  511. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/comparers.js +0 -0
  512. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/date.js +0 -0
  513. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/decorators.js +0 -0
  514. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/diff}/diff.js +0 -0
  515. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/diff}/diffChange.js +0 -0
  516. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/equals.js +0 -0
  517. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/errorMessage.js +0 -0
  518. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/errors.js +0 -0
  519. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/event.js +0 -0
  520. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/extpath.js +0 -0
  521. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/filters.js +0 -0
  522. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/functional.js +0 -0
  523. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/fuzzyScorer.js +0 -0
  524. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/glob.js +0 -0
  525. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/hash.js +0 -0
  526. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/hierarchicalKind.js +0 -0
  527. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/history.js +0 -0
  528. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/hotReloadHelpers.js +0 -0
  529. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/htmlContent.js +0 -0
  530. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/idGenerator.js +0 -0
  531. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/ime.js +0 -0
  532. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/iterator.js +0 -0
  533. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/keyCodes.js +0 -0
  534. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/keybindingLabels.js +0 -0
  535. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/keybindings.js +0 -0
  536. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/labels.js +0 -0
  537. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/lazy.js +0 -0
  538. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/lifecycle.js +0 -0
  539. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/linkedList.js +0 -0
  540. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/linkedText.js +0 -0
  541. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/map.js +0 -0
  542. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/marked}/marked.js +0 -0
  543. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/marshalling.js +0 -0
  544. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/mime.js +0 -0
  545. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/naturalLanguage}/korean.js +0 -0
  546. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/navigator.js +0 -0
  547. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/network.js +0 -0
  548. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/normalization.js +0 -0
  549. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/numbers.js +0 -0
  550. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/objects.js +0 -0
  551. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal}/base.js +0 -0
  552. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal}/changeTracker.js +0 -0
  553. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal}/debugLocation.js +0 -0
  554. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal}/debugName.js +0 -0
  555. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/experimental}/reducer.js +0 -0
  556. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal}/index.js +0 -0
  557. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/logging}/consoleObservableLogger.js +0 -0
  558. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/logging/debugger}/debuggerRpc.js +0 -0
  559. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/logging/debugger}/devToolsLogger.js +0 -0
  560. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/logging/debugger}/rpc.js +0 -0
  561. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/logging}/logging.js +0 -0
  562. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/observables}/baseObservable.js +0 -0
  563. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/observables}/constObservable.js +0 -0
  564. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/observables}/derived.js +0 -0
  565. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/observables}/derivedImpl.js +0 -0
  566. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/observables}/lazyObservableValue.js +0 -0
  567. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/observables}/observableFromEvent.js +0 -0
  568. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/observables}/observableSignal.js +0 -0
  569. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/observables}/observableSignalFromEvent.js +0 -0
  570. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/observables}/observableValue.js +0 -0
  571. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/observables}/observableValueOpts.js +0 -0
  572. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/reactions}/autorun.js +0 -0
  573. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/reactions}/autorunImpl.js +0 -0
  574. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal}/transaction.js +0 -0
  575. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/utils}/promise.js +0 -0
  576. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/utils}/runOnChange.js +0 -0
  577. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/observableInternal/utils}/utilsCancellation.js +0 -0
  578. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/path.js +0 -0
  579. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/process.js +0 -0
  580. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/resources.js +0 -0
  581. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/scrollable.js +0 -0
  582. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/search.js +0 -0
  583. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/severity.js +0 -0
  584. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/stopwatch.js +0 -0
  585. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/strings.js +0 -0
  586. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/symbols.js +0 -0
  587. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/ternarySearchTree.js +0 -0
  588. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/tfIdf.js +0 -0
  589. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/themables.js +0 -0
  590. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/uint.js +0 -0
  591. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/uri.js +0 -0
  592. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/uuid.js +0 -0
  593. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common}/validation.js +0 -0
  594. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/worker}/webWorker.js +0 -0
  595. /package/dist/{workers → esm/monaco-editor/esm/vs/base/common/worker}/webWorkerBootstrap.js +0 -0
  596. /package/dist/{workers → esm/monaco-editor/esm/vs/base/parts/storage/common}/storage.js +0 -0
  597. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages}/_.contribution.js +0 -0
  598. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/abap}/abap.contribution.js +0 -0
  599. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/abap}/abap.js +0 -0
  600. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/apex}/apex.contribution.js +0 -0
  601. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/apex}/apex.js +0 -0
  602. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/azcli}/azcli.contribution.js +0 -0
  603. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/azcli}/azcli.js +0 -0
  604. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/bat}/bat.contribution.js +0 -0
  605. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/bat}/bat.js +0 -0
  606. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/bicep}/bicep.contribution.js +0 -0
  607. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/bicep}/bicep.js +0 -0
  608. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/cameligo}/cameligo.contribution.js +0 -0
  609. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/cameligo}/cameligo.js +0 -0
  610. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/clojure}/clojure.contribution.js +0 -0
  611. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/clojure}/clojure.js +0 -0
  612. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/coffee}/coffee.contribution.js +0 -0
  613. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/coffee}/coffee.js +0 -0
  614. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/cpp}/cpp.contribution.js +0 -0
  615. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/cpp}/cpp.js +0 -0
  616. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/csharp}/csharp.contribution.js +0 -0
  617. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/csharp}/csharp.js +0 -0
  618. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/csp}/csp.contribution.js +0 -0
  619. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/csp}/csp.js +0 -0
  620. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/css}/css.contribution.js +0 -0
  621. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/css}/css.js +0 -0
  622. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/cypher}/cypher.contribution.js +0 -0
  623. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/cypher}/cypher.js +0 -0
  624. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/dart}/dart.contribution.js +0 -0
  625. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/dart}/dart.js +0 -0
  626. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/dockerfile}/dockerfile.contribution.js +0 -0
  627. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/dockerfile}/dockerfile.js +0 -0
  628. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/ecl}/ecl.contribution.js +0 -0
  629. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/ecl}/ecl.js +0 -0
  630. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/elixir}/elixir.contribution.js +0 -0
  631. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/elixir}/elixir.js +0 -0
  632. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/flow9}/flow9.contribution.js +0 -0
  633. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/flow9}/flow9.js +0 -0
  634. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/freemarker2}/freemarker2.contribution.js +0 -0
  635. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/freemarker2}/freemarker2.js +0 -0
  636. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/fsharp}/fsharp.contribution.js +0 -0
  637. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/fsharp}/fsharp.js +0 -0
  638. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/go}/go.contribution.js +0 -0
  639. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/go}/go.js +0 -0
  640. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/graphql}/graphql.contribution.js +0 -0
  641. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/graphql}/graphql.js +0 -0
  642. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/handlebars}/handlebars.contribution.js +0 -0
  643. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/handlebars}/handlebars.js +0 -0
  644. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/hcl}/hcl.contribution.js +0 -0
  645. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/hcl}/hcl.js +0 -0
  646. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/html}/html.contribution.js +0 -0
  647. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/html}/html.js +0 -0
  648. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/ini}/ini.contribution.js +0 -0
  649. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/ini}/ini.js +0 -0
  650. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/java}/java.contribution.js +0 -0
  651. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/java}/java.js +0 -0
  652. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/javascript}/javascript.contribution.js +0 -0
  653. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/javascript}/javascript.js +0 -0
  654. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/julia}/julia.contribution.js +0 -0
  655. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/julia}/julia.js +0 -0
  656. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/kotlin}/kotlin.contribution.js +0 -0
  657. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/kotlin}/kotlin.js +0 -0
  658. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/less}/less.contribution.js +0 -0
  659. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/less}/less.js +0 -0
  660. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/lexon}/lexon.contribution.js +0 -0
  661. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/lexon}/lexon.js +0 -0
  662. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/liquid}/liquid.contribution.js +0 -0
  663. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/liquid}/liquid.js +0 -0
  664. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/lua}/lua.contribution.js +0 -0
  665. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/lua}/lua.js +0 -0
  666. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/m3}/m3.contribution.js +0 -0
  667. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/m3}/m3.js +0 -0
  668. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/markdown}/markdown.contribution.js +0 -0
  669. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/markdown}/markdown.js +0 -0
  670. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/mdx}/mdx.contribution.js +0 -0
  671. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/mdx}/mdx.js +0 -0
  672. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/mips}/mips.contribution.js +0 -0
  673. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/mips}/mips.js +0 -0
  674. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/msdax}/msdax.contribution.js +0 -0
  675. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/msdax}/msdax.js +0 -0
  676. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/mysql}/mysql.contribution.js +0 -0
  677. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/mysql}/mysql.js +0 -0
  678. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/objective-c}/objective-c.contribution.js +0 -0
  679. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/objective-c}/objective-c.js +0 -0
  680. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/pascal}/pascal.contribution.js +0 -0
  681. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/pascal}/pascal.js +0 -0
  682. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/pascaligo}/pascaligo.contribution.js +0 -0
  683. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/pascaligo}/pascaligo.js +0 -0
  684. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/perl}/perl.contribution.js +0 -0
  685. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/perl}/perl.js +0 -0
  686. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/pgsql}/pgsql.contribution.js +0 -0
  687. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/pgsql}/pgsql.js +0 -0
  688. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/php}/php.contribution.js +0 -0
  689. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/php}/php.js +0 -0
  690. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/pla}/pla.contribution.js +0 -0
  691. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/pla}/pla.js +0 -0
  692. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/postiats}/postiats.contribution.js +0 -0
  693. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/postiats}/postiats.js +0 -0
  694. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/powerquery}/powerquery.contribution.js +0 -0
  695. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/powerquery}/powerquery.js +0 -0
  696. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/powershell}/powershell.contribution.js +0 -0
  697. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/powershell}/powershell.js +0 -0
  698. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/protobuf}/protobuf.contribution.js +0 -0
  699. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/protobuf}/protobuf.js +0 -0
  700. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/pug}/pug.contribution.js +0 -0
  701. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/pug}/pug.js +0 -0
  702. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/python}/python.contribution.js +0 -0
  703. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/python}/python.js +0 -0
  704. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/qsharp}/qsharp.contribution.js +0 -0
  705. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/qsharp}/qsharp.js +0 -0
  706. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/r}/r.contribution.js +0 -0
  707. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/r}/r.js +0 -0
  708. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/razor}/razor.contribution.js +0 -0
  709. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/razor}/razor.js +0 -0
  710. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/redis}/redis.contribution.js +0 -0
  711. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/redis}/redis.js +0 -0
  712. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/redshift}/redshift.contribution.js +0 -0
  713. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/redshift}/redshift.js +0 -0
  714. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/restructuredtext}/restructuredtext.contribution.js +0 -0
  715. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/restructuredtext}/restructuredtext.js +0 -0
  716. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/ruby}/ruby.contribution.js +0 -0
  717. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/ruby}/ruby.js +0 -0
  718. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/rust}/rust.contribution.js +0 -0
  719. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/rust}/rust.js +0 -0
  720. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/sb}/sb.contribution.js +0 -0
  721. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/sb}/sb.js +0 -0
  722. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/scala}/scala.contribution.js +0 -0
  723. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/scala}/scala.js +0 -0
  724. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/scheme}/scheme.contribution.js +0 -0
  725. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/scheme}/scheme.js +0 -0
  726. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/scss}/scss.contribution.js +0 -0
  727. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/scss}/scss.js +0 -0
  728. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/shell}/shell.contribution.js +0 -0
  729. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/shell}/shell.js +0 -0
  730. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/solidity}/solidity.contribution.js +0 -0
  731. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/solidity}/solidity.js +0 -0
  732. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/sophia}/sophia.contribution.js +0 -0
  733. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/sophia}/sophia.js +0 -0
  734. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/sparql}/sparql.contribution.js +0 -0
  735. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/sparql}/sparql.js +0 -0
  736. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/sql}/sql.contribution.js +0 -0
  737. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/sql}/sql.js +0 -0
  738. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/st}/st.contribution.js +0 -0
  739. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/st}/st.js +0 -0
  740. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/swift}/swift.contribution.js +0 -0
  741. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/swift}/swift.js +0 -0
  742. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/systemverilog}/systemverilog.contribution.js +0 -0
  743. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/systemverilog}/systemverilog.js +0 -0
  744. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/tcl}/tcl.contribution.js +0 -0
  745. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/tcl}/tcl.js +0 -0
  746. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/twig}/twig.contribution.js +0 -0
  747. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/twig}/twig.js +0 -0
  748. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/typescript}/typescript.contribution.js +0 -0
  749. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/typescript}/typescript.js +0 -0
  750. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/typespec}/typespec.contribution.js +0 -0
  751. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/typespec}/typespec.js +0 -0
  752. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/vb}/vb.contribution.js +0 -0
  753. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/vb}/vb.js +0 -0
  754. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/wgsl}/wgsl.contribution.js +0 -0
  755. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/wgsl}/wgsl.js +0 -0
  756. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/xml}/xml.contribution.js +0 -0
  757. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/xml}/xml.js +0 -0
  758. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/yaml}/yaml.contribution.js +0 -0
  759. /package/dist/{workers → esm/monaco-editor/esm/vs/basic-languages/yaml}/yaml.js +0 -0
  760. /package/dist/{workers → esm/monaco-editor/esm/vs/common}/workers.js +0 -0
  761. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/config}/charWidthReader.js +0 -0
  762. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/config}/domFontInfo.js +0 -0
  763. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/config}/editorConfiguration.js +0 -0
  764. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/config}/elementSizeObserver.js +0 -0
  765. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/config}/fontMeasurements.js +0 -0
  766. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/config}/migrateOptions.js +0 -0
  767. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/config}/tabFocus.js +0 -0
  768. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller}/dragScrolling.js +0 -0
  769. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller/editContext}/clipboardUtils.js +0 -0
  770. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller/editContext}/editContext.js +0 -0
  771. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller/editContext/native}/editContextFactory.js +0 -0
  772. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller/editContext/native}/nativeEditContext.js +0 -0
  773. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller/editContext/native}/nativeEditContextRegistry.js +0 -0
  774. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller/editContext/native}/nativeEditContextUtils.js +0 -0
  775. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller/editContext/native}/screenReaderContentRich.js +0 -0
  776. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller/editContext/native}/screenReaderContentSimple.js +0 -0
  777. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller/editContext/native}/screenReaderSupport.js +0 -0
  778. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller/editContext}/screenReaderUtils.js +0 -0
  779. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller/editContext/textArea}/textAreaEditContext.js +0 -0
  780. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller/editContext/textArea}/textAreaEditContextInput.js +0 -0
  781. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller/editContext/textArea}/textAreaEditContextState.js +0 -0
  782. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller}/mouseHandler.js +0 -0
  783. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller}/mouseTarget.js +0 -0
  784. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/controller}/pointerHandler.js +0 -0
  785. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser}/coreCommands.js +0 -0
  786. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser}/dataTransfer.js +0 -0
  787. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser}/editorBrowser.js +0 -0
  788. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser}/editorDom.js +0 -0
  789. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser}/editorExtensions.js +0 -0
  790. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu/atlas}/textureAtlas.js +0 -0
  791. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu/atlas}/textureAtlasPage.js +0 -0
  792. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu/atlas}/textureAtlasShelfAllocator.js +0 -0
  793. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu/atlas}/textureAtlasSlabAllocator.js +0 -0
  794. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu}/bufferDirtyTracker.js +0 -0
  795. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu}/contentSegmenter.js +0 -0
  796. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu/css}/decorationCssRuleExtractor.js +0 -0
  797. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu/css}/decorationStyleCache.js +0 -0
  798. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu}/gpuDisposable.js +0 -0
  799. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu}/gpuUtils.js +0 -0
  800. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu}/objectCollectionBuffer.js +0 -0
  801. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu/raster}/glyphRasterizer.js +0 -0
  802. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu}/rectangleRenderer.js +0 -0
  803. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu}/rectangleRenderer.wgsl.js +0 -0
  804. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu/renderStrategy}/baseRenderStrategy.js +0 -0
  805. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu/renderStrategy}/fullFileRenderStrategy.js +0 -0
  806. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu/renderStrategy}/fullFileRenderStrategy.wgsl.js +0 -0
  807. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu/renderStrategy}/viewportRenderStrategy.js +0 -0
  808. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu}/taskQueue.js +0 -0
  809. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/gpu}/viewGpuContext.js +0 -0
  810. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser}/observableCodeEditor.js +0 -0
  811. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/services}/abstractCodeEditorService.js +0 -0
  812. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/services}/bulkEditService.js +0 -0
  813. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/services}/codeEditorService.js +0 -0
  814. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/services}/editorWorkerService.js +0 -0
  815. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/services}/inlineCompletionsService.js +0 -0
  816. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/services}/openerService.js +0 -0
  817. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser}/stableEditorScroll.js +0 -0
  818. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser}/triggerInlineEditCommandsRegistry.js +0 -0
  819. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/view}/domLineBreaksComputer.js +0 -0
  820. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/view}/dynamicViewOverlay.js +0 -0
  821. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/view}/renderingContext.js +0 -0
  822. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/view}/viewController.js +0 -0
  823. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/view}/viewLayer.js +0 -0
  824. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/view}/viewOverlays.js +0 -0
  825. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/view}/viewPart.js +0 -0
  826. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/view}/viewUserInputEvents.js +0 -0
  827. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser}/view.js +0 -0
  828. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/blockDecorations}/blockDecorations.js +0 -0
  829. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/contentWidgets}/contentWidgets.js +0 -0
  830. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/currentLineHighlight}/currentLineHighlight.js +0 -0
  831. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/decorations}/decorations.js +0 -0
  832. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/editorScrollbar}/editorScrollbar.js +0 -0
  833. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/glyphMargin}/glyphMargin.js +0 -0
  834. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/gpuMark}/gpuMark.js +0 -0
  835. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/indentGuides}/indentGuides.js +0 -0
  836. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/lineNumbers}/lineNumbers.js +0 -0
  837. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/linesDecorations}/linesDecorations.js +0 -0
  838. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/margin}/margin.js +0 -0
  839. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/marginDecorations}/marginDecorations.js +0 -0
  840. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/minimap}/minimap.js +0 -0
  841. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/minimap}/minimapCharRenderer.js +0 -0
  842. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/minimap}/minimapCharRendererFactory.js +0 -0
  843. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/minimap}/minimapCharSheet.js +0 -0
  844. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/minimap}/minimapPreBaked.js +0 -0
  845. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/overlayWidgets}/overlayWidgets.js +0 -0
  846. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/overviewRuler}/decorationsOverviewRuler.js +0 -0
  847. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/overviewRuler}/overviewRuler.js +0 -0
  848. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/rulers}/rulers.js +0 -0
  849. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/rulersGpu}/rulersGpu.js +0 -0
  850. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/scrollDecoration}/scrollDecoration.js +0 -0
  851. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/selections}/selections.js +0 -0
  852. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/viewCursors}/viewCursor.js +0 -0
  853. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/viewCursors}/viewCursors.js +0 -0
  854. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/viewLines}/domReadingContext.js +0 -0
  855. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/viewLines}/rangeUtil.js +0 -0
  856. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/viewLines}/viewLine.js +0 -0
  857. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/viewLines}/viewLineOptions.js +0 -0
  858. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/viewLines}/viewLines.js +0 -0
  859. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/viewLinesGpu}/viewLinesGpu.js +0 -0
  860. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/viewZones}/viewZones.js +0 -0
  861. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/viewParts/whitespace}/whitespace.js +0 -0
  862. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/codeEditor}/codeEditorContributions.js +0 -0
  863. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/codeEditor}/codeEditorWidget.js +0 -0
  864. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/codeEditor}/embeddedCodeEditorWidget.js +0 -0
  865. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/components}/accessibleDiffViewer.js +0 -0
  866. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/components}/diffEditorDecorations.js +0 -0
  867. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/components}/diffEditorEditors.js +0 -0
  868. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/components}/diffEditorSash.js +0 -0
  869. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones}/copySelection.js +0 -0
  870. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones}/diffEditorViewZones.js +0 -0
  871. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones}/inlineDiffDeletedCodeMargin.js +0 -0
  872. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones}/renderLines.js +0 -0
  873. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor}/delegatingEditorImpl.js +0 -0
  874. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor}/diffEditor.contribution.js +0 -0
  875. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor}/diffEditorOptions.js +0 -0
  876. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor}/diffEditorViewModel.js +0 -0
  877. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor}/diffEditorWidget.js +0 -0
  878. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor}/diffProviderFactoryService.js +0 -0
  879. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/features}/gutterFeature.js +0 -0
  880. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/features}/hideUnchangedRegionsFeature.js +0 -0
  881. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/features}/movedBlocksLinesFeature.js +0 -0
  882. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/features}/overviewRulerFeature.js +0 -0
  883. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/features}/revertButtonsFeature.js +0 -0
  884. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor}/registrations.contribution.js +0 -0
  885. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/diffEditor/utils}/editorGutter.js +0 -0
  886. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/markdownRenderer/browser}/editorMarkdownCodeBlockRenderer.js +0 -0
  887. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/multiDiffEditor}/colors.js +0 -0
  888. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/multiDiffEditor}/diffEditorItemTemplate.js +0 -0
  889. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/multiDiffEditor}/multiDiffEditorWidget.js +0 -0
  890. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/multiDiffEditor}/multiDiffEditorWidgetImpl.js +0 -0
  891. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/browser/widget/multiDiffEditor}/objectPool.js +0 -0
  892. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/commands}/replaceCommand.js +0 -0
  893. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/commands}/shiftCommand.js +0 -0
  894. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/commands}/surroundSelectionCommand.js +0 -0
  895. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/commands}/trimTrailingWhitespaceCommand.js +0 -0
  896. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/config}/diffEditor.js +0 -0
  897. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/config}/editorConfigurationSchema.js +0 -0
  898. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/config}/editorOptions.js +0 -0
  899. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/config}/editorZoom.js +0 -0
  900. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/config}/fontInfo.js +0 -0
  901. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/config}/fontInfoFromSettings.js +0 -0
  902. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/coordinatesConverter.js +0 -0
  903. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/2d}/point.js +0 -0
  904. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/2d}/rect.js +0 -0
  905. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core}/characterClassifier.js +0 -0
  906. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core}/cursorColumns.js +0 -0
  907. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core}/editOperation.js +0 -0
  908. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core}/editorColorRegistry.js +0 -0
  909. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/edits}/lineEdit.js +0 -0
  910. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/edits}/stringEdit.js +0 -0
  911. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/edits}/textEdit.js +0 -0
  912. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/misc}/eolCounter.js +0 -0
  913. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/misc}/rgba.js +0 -0
  914. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/misc}/textModelDefaults.js +0 -0
  915. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core}/position.js +0 -0
  916. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core}/range.js +0 -0
  917. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/ranges}/columnRange.js +0 -0
  918. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/ranges}/lineRange.js +0 -0
  919. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/ranges}/offsetRange.js +0 -0
  920. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/ranges}/rangeSingleLine.js +0 -0
  921. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core}/selection.js +0 -0
  922. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core}/stringBuilder.js +0 -0
  923. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/text}/abstractText.js +0 -0
  924. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/text}/getPositionOffsetTransformerFromTextModel.js +0 -0
  925. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/text}/positionToOffset.js +0 -0
  926. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/text}/positionToOffsetImpl.js +0 -0
  927. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core/text}/textLength.js +0 -0
  928. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core}/textChange.js +0 -0
  929. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core}/wordCharacterClassifier.js +0 -0
  930. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/core}/wordHelper.js +0 -0
  931. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/cursor}/cursor.js +0 -0
  932. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/cursor}/cursorAtomicMoveOperations.js +0 -0
  933. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/cursor}/cursorCollection.js +0 -0
  934. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/cursor}/cursorColumnSelection.js +0 -0
  935. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/cursor}/cursorContext.js +0 -0
  936. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/cursor}/cursorDeleteOperations.js +0 -0
  937. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/cursor}/cursorMoveCommands.js +0 -0
  938. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/cursor}/cursorMoveOperations.js +0 -0
  939. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/cursor}/cursorTypeEditOperations.js +0 -0
  940. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/cursor}/cursorTypeOperations.js +0 -0
  941. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/cursor}/cursorWordOperations.js +0 -0
  942. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/cursor}/oneCursor.js +0 -0
  943. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/cursorCommon.js +0 -0
  944. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/diff/defaultLinesDiffComputer/algorithms}/diffAlgorithm.js +0 -0
  945. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/diff/defaultLinesDiffComputer/algorithms}/dynamicProgrammingDiffing.js +0 -0
  946. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/diff/defaultLinesDiffComputer/algorithms}/myersDiffAlgorithm.js +0 -0
  947. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/diff/defaultLinesDiffComputer}/computeMovedLines.js +0 -0
  948. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/diff/defaultLinesDiffComputer}/defaultLinesDiffComputer.js +0 -0
  949. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/diff/defaultLinesDiffComputer}/heuristicSequenceOptimizations.js +0 -0
  950. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/diff/defaultLinesDiffComputer}/lineSequence.js +0 -0
  951. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/diff/defaultLinesDiffComputer}/linesSliceCharSequence.js +0 -0
  952. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/diff}/legacyLinesDiffComputer.js +0 -0
  953. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/diff}/linesDiffComputer.js +0 -0
  954. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/diff}/linesDiffComputers.js +0 -0
  955. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/diff}/rangeMapping.js +0 -0
  956. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/editorAction.js +0 -0
  957. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/editorCommon.js +0 -0
  958. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/editorContextKeys.js +0 -0
  959. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/editorFeatures.js +0 -0
  960. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/editorTheme.js +0 -0
  961. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/encodedTokenAttributes.js +0 -0
  962. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/inputMode.js +0 -0
  963. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/languageFeatureRegistry.js +0 -0
  964. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/languageSelector.js +0 -0
  965. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages}/autoIndent.js +0 -0
  966. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages}/defaultDocumentColorsComputer.js +0 -0
  967. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages}/enterAction.js +0 -0
  968. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages}/language.js +0 -0
  969. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages}/languageConfiguration.js +0 -0
  970. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages}/languageConfigurationRegistry.js +0 -0
  971. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages}/linkComputer.js +0 -0
  972. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages}/modesRegistry.js +0 -0
  973. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages}/nullTokenize.js +0 -0
  974. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages/supports}/characterPair.js +0 -0
  975. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages/supports}/electricCharacter.js +0 -0
  976. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages/supports}/indentRules.js +0 -0
  977. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages/supports}/indentationLineProcessor.js +0 -0
  978. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages/supports}/inplaceReplaceSupport.js +0 -0
  979. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages/supports}/languageBracketsConfiguration.js +0 -0
  980. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages/supports}/onEnter.js +0 -0
  981. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages/supports}/richEditBrackets.js +0 -0
  982. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages}/supports.js +0 -0
  983. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/languages}/textToHtmlTokenizer.js +0 -0
  984. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/languages.js +0 -0
  985. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/bracketPairsTextModelPart}/bracketPairsImpl.js +0 -0
  986. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree}/ast.js +0 -0
  987. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree}/beforeEditPositionMapper.js +0 -0
  988. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree}/bracketPairsTree.js +0 -0
  989. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree}/brackets.js +0 -0
  990. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree}/combineTextEditInfos.js +0 -0
  991. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree}/concat23Trees.js +0 -0
  992. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree}/length.js +0 -0
  993. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree}/nodeReader.js +0 -0
  994. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree}/parser.js +0 -0
  995. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree}/smallImmutableSet.js +0 -0
  996. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree}/tokenizer.js +0 -0
  997. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/bracketPairsTextModelPart}/colorizedBracketPairsDecorationProvider.js +0 -0
  998. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/bracketPairsTextModelPart}/fixBrackets.js +0 -0
  999. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model}/editStack.js +0 -0
  1000. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model}/fixedArray.js +0 -0
  1001. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model}/guidesTextModelPart.js +0 -0
  1002. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model}/indentationGuesser.js +0 -0
  1003. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model}/intervalTree.js +0 -0
  1004. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model}/mirrorTextModel.js +0 -0
  1005. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/pieceTreeTextBuffer}/pieceTreeBase.js +0 -0
  1006. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/pieceTreeTextBuffer}/pieceTreeTextBuffer.js +0 -0
  1007. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/pieceTreeTextBuffer}/pieceTreeTextBufferBuilder.js +0 -0
  1008. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/pieceTreeTextBuffer}/rbTreeBase.js +0 -0
  1009. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model}/prefixSumComputer.js +0 -0
  1010. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model}/textModel.js +0 -0
  1011. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model}/textModelPart.js +0 -0
  1012. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model}/textModelSearch.js +0 -0
  1013. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model}/textModelStringEdit.js +0 -0
  1014. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model}/textModelText.js +0 -0
  1015. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model}/textModelTokens.js +0 -0
  1016. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/tokens}/abstractSyntaxTokenBackend.js +0 -0
  1017. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/tokens}/tokenizationTextModelPart.js +0 -0
  1018. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/tokens}/tokenizerSyntaxTokenBackend.js +0 -0
  1019. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/tokens/treeSitter}/cursorUtils.js +0 -0
  1020. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/tokens/treeSitter}/tokenStore.js +0 -0
  1021. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/tokens/treeSitter}/treeSitterSyntaxTokenBackend.js +0 -0
  1022. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/tokens/treeSitter}/treeSitterTokenizationImpl.js +0 -0
  1023. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/model/tokens/treeSitter}/treeSitterTree.js +0 -0
  1024. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/modelLineProjectionData.js +0 -0
  1025. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/editorBaseApi.js +0 -0
  1026. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/editorWebWorker.js +0 -0
  1027. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/editorWorker.js +0 -0
  1028. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/editorWorkerHost.js +0 -0
  1029. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/findSectionHeaders.js +0 -0
  1030. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/getIconClasses.js +0 -0
  1031. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/languageFeatureDebounce.js +0 -0
  1032. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/languageFeatures.js +0 -0
  1033. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/languageFeaturesService.js +0 -0
  1034. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/languageService.js +0 -0
  1035. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/languagesAssociations.js +0 -0
  1036. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/languagesRegistry.js +0 -0
  1037. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/markerDecorations.js +0 -0
  1038. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/markerDecorationsService.js +0 -0
  1039. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/model.js +0 -0
  1040. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/modelService.js +0 -0
  1041. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/resolverService.js +0 -0
  1042. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/semanticTokensDto.js +0 -0
  1043. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/semanticTokensProviderStyling.js +0 -0
  1044. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/semanticTokensStyling.js +0 -0
  1045. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/semanticTokensStylingService.js +0 -0
  1046. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services/textModelSync}/textModelSync.impl.js +0 -0
  1047. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/textResourceConfiguration.js +0 -0
  1048. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services/treeSitter}/treeSitterLibraryService.js +0 -0
  1049. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services/treeSitter}/treeSitterThemeService.js +0 -0
  1050. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/treeViewsDnd.js +0 -0
  1051. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/treeViewsDndService.js +0 -0
  1052. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/services}/unicodeTextModelHighlighter.js +0 -0
  1053. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/standalone}/standaloneEnums.js +0 -0
  1054. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/standaloneStrings.js +0 -0
  1055. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/textModelBracketPairs.js +0 -0
  1056. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/textModelEditSource.js +0 -0
  1057. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/textModelEvents.js +0 -0
  1058. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/textModelGuides.js +0 -0
  1059. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/tokenizationRegistry.js +0 -0
  1060. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/tokens}/common.js +0 -0
  1061. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/tokens}/contiguousMultilineTokens.js +0 -0
  1062. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/tokens}/contiguousMultilineTokensBuilder.js +0 -0
  1063. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/tokens}/contiguousTokensEditing.js +0 -0
  1064. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/tokens}/contiguousTokensStore.js +0 -0
  1065. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/tokens}/lineTokens.js +0 -0
  1066. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/tokens}/sparseMultilineTokens.js +0 -0
  1067. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/tokens}/sparseTokensStore.js +0 -0
  1068. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/tokens}/tokenWithTextArray.js +0 -0
  1069. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/viewEventHandler.js +0 -0
  1070. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/viewEvents.js +0 -0
  1071. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewLayout}/lineDecorations.js +0 -0
  1072. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewLayout}/lineHeights.js +0 -0
  1073. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewLayout}/linePart.js +0 -0
  1074. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewLayout}/linesLayout.js +0 -0
  1075. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewLayout}/viewLayout.js +0 -0
  1076. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewLayout}/viewLineRenderer.js +0 -0
  1077. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewLayout}/viewLinesViewportData.js +0 -0
  1078. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewModel}/glyphLanesModel.js +0 -0
  1079. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewModel}/inlineDecorations.js +0 -0
  1080. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewModel}/minimapTokensColorTracker.js +0 -0
  1081. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewModel}/modelLineProjection.js +0 -0
  1082. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewModel}/monospaceLineBreaksComputer.js +0 -0
  1083. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewModel}/overviewZoneManager.js +0 -0
  1084. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewModel}/viewContext.js +0 -0
  1085. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewModel}/viewModelDecoration.js +0 -0
  1086. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewModel}/viewModelDecorations.js +0 -0
  1087. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewModel}/viewModelImpl.js +0 -0
  1088. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common/viewModel}/viewModelLines.js +0 -0
  1089. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/viewModel.js +0 -0
  1090. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/common}/viewModelEventDispatcher.js +0 -0
  1091. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/anchorSelect/browser}/anchorSelect.js +0 -0
  1092. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/bracketMatching/browser}/bracketMatching.js +0 -0
  1093. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/caretOperations/browser}/caretOperations.js +0 -0
  1094. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/caretOperations/browser}/moveCaretCommand.js +0 -0
  1095. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/caretOperations/browser}/transpose.js +0 -0
  1096. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/clipboard/browser}/clipboard.js +0 -0
  1097. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/codeAction/browser}/codeAction.js +0 -0
  1098. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/codeAction/browser}/codeActionCommands.js +0 -0
  1099. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/codeAction/browser}/codeActionContributions.js +0 -0
  1100. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/codeAction/browser}/codeActionController.js +0 -0
  1101. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/codeAction/browser}/codeActionKeybindingResolver.js +0 -0
  1102. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/codeAction/browser}/codeActionMenu.js +0 -0
  1103. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/codeAction/browser}/codeActionModel.js +0 -0
  1104. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/codeAction/browser}/lightBulbWidget.js +0 -0
  1105. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/codeAction/common}/types.js +0 -0
  1106. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/codelens/browser}/codeLensCache.js +0 -0
  1107. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/codelens/browser}/codelens.js +0 -0
  1108. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/codelens/browser}/codelensController.js +0 -0
  1109. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/codelens/browser}/codelensWidget.js +0 -0
  1110. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser}/color.js +0 -0
  1111. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser}/colorDetector.js +0 -0
  1112. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser}/colorPickerContribution.js +0 -0
  1113. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser}/colorPickerModel.js +0 -0
  1114. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser}/colorPickerParticipantUtils.js +0 -0
  1115. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser/colorPickerParts}/colorPickerBody.js +0 -0
  1116. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser/colorPickerParts}/colorPickerCloseButton.js +0 -0
  1117. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser/colorPickerParts}/colorPickerHeader.js +0 -0
  1118. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser/colorPickerParts}/colorPickerInsertButton.js +0 -0
  1119. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser/colorPickerParts}/colorPickerSaturationBox.js +0 -0
  1120. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser/colorPickerParts}/colorPickerStrip.js +0 -0
  1121. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser}/colorPickerWidget.js +0 -0
  1122. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser}/defaultDocumentColorProvider.js +0 -0
  1123. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser/hoverColorPicker}/hoverColorPicker.js +0 -0
  1124. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser/hoverColorPicker}/hoverColorPickerContribution.js +0 -0
  1125. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser/hoverColorPicker}/hoverColorPickerParticipant.js +0 -0
  1126. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser/standaloneColorPicker}/standaloneColorPickerActions.js +0 -0
  1127. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser/standaloneColorPicker}/standaloneColorPickerController.js +0 -0
  1128. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser/standaloneColorPicker}/standaloneColorPickerParticipant.js +0 -0
  1129. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/colorPicker/browser/standaloneColorPicker}/standaloneColorPickerWidget.js +0 -0
  1130. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/comment/browser}/blockCommentCommand.js +0 -0
  1131. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/comment/browser}/comment.js +0 -0
  1132. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/comment/browser}/lineCommentCommand.js +0 -0
  1133. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/contextmenu/browser}/contextmenu.js +0 -0
  1134. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/cursorUndo/browser}/cursorUndo.js +0 -0
  1135. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/dnd/browser}/dnd.js +0 -0
  1136. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/dnd/browser}/dragAndDropCommand.js +0 -0
  1137. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/documentSymbols/browser}/documentSymbols.js +0 -0
  1138. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/documentSymbols/browser}/outlineModel.js +0 -0
  1139. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/dropOrPasteInto/browser}/copyPasteContribution.js +0 -0
  1140. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/dropOrPasteInto/browser}/copyPasteController.js +0 -0
  1141. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/dropOrPasteInto/browser}/defaultProviders.js +0 -0
  1142. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/dropOrPasteInto/browser}/dropIntoEditorContribution.js +0 -0
  1143. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/dropOrPasteInto/browser}/dropIntoEditorController.js +0 -0
  1144. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/dropOrPasteInto/browser}/edit.js +0 -0
  1145. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/dropOrPasteInto/browser}/postEditWidget.js +0 -0
  1146. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/editorState/browser}/editorState.js +0 -0
  1147. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/editorState/browser}/keybindingCancellation.js +0 -0
  1148. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/find/browser}/findController.js +0 -0
  1149. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/find/browser}/findDecorations.js +0 -0
  1150. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/find/browser}/findModel.js +0 -0
  1151. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/find/browser}/findOptionsWidget.js +0 -0
  1152. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/find/browser}/findState.js +0 -0
  1153. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/find/browser}/findWidget.js +0 -0
  1154. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/find/browser}/findWidgetSearchHistory.js +0 -0
  1155. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/find/browser}/replaceAllCommand.js +0 -0
  1156. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/find/browser}/replacePattern.js +0 -0
  1157. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/find/browser}/replaceWidgetHistory.js +0 -0
  1158. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/floatingMenu/browser}/floatingMenu.contribution.js +0 -0
  1159. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/floatingMenu/browser}/floatingMenu.js +0 -0
  1160. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/folding/browser}/folding.js +0 -0
  1161. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/folding/browser}/foldingDecorations.js +0 -0
  1162. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/folding/browser}/foldingModel.js +0 -0
  1163. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/folding/browser}/foldingRanges.js +0 -0
  1164. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/folding/browser}/hiddenRangeModel.js +0 -0
  1165. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/folding/browser}/indentRangeProvider.js +0 -0
  1166. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/folding/browser}/syntaxRangeProvider.js +0 -0
  1167. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/fontZoom/browser}/fontZoom.js +0 -0
  1168. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/format/browser}/format.js +0 -0
  1169. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/format/browser}/formatActions.js +0 -0
  1170. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/format/browser}/formattingEdit.js +0 -0
  1171. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/gotoError/browser}/gotoError.js +0 -0
  1172. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/gotoError/browser}/gotoErrorWidget.js +0 -0
  1173. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/gotoError/browser}/markerNavigationService.js +0 -0
  1174. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/gotoSymbol/browser}/goToCommands.js +0 -0
  1175. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/gotoSymbol/browser}/goToSymbol.js +0 -0
  1176. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/gotoSymbol/browser/link}/clickLinkGesture.js +0 -0
  1177. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/gotoSymbol/browser/link}/goToDefinitionAtPosition.js +0 -0
  1178. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/gotoSymbol/browser/peek}/referencesController.js +0 -0
  1179. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/gotoSymbol/browser/peek}/referencesTree.js +0 -0
  1180. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/gotoSymbol/browser/peek}/referencesWidget.js +0 -0
  1181. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/gotoSymbol/browser}/referencesModel.js +0 -0
  1182. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/gotoSymbol/browser}/symbolNavigation.js +0 -0
  1183. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/gpu/browser}/gpuActions.js +0 -0
  1184. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/contentHoverComputer.js +0 -0
  1185. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/contentHoverController.js +0 -0
  1186. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/contentHoverRendered.js +0 -0
  1187. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/contentHoverStatusBar.js +0 -0
  1188. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/contentHoverTypes.js +0 -0
  1189. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/contentHoverWidget.js +0 -0
  1190. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/contentHoverWidgetWrapper.js +0 -0
  1191. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/getHover.js +0 -0
  1192. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/glyphHoverComputer.js +0 -0
  1193. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/glyphHoverController.js +0 -0
  1194. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/glyphHoverWidget.js +0 -0
  1195. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/hoverAccessibleViews.js +0 -0
  1196. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/hoverActionIds.js +0 -0
  1197. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/hoverActions.js +0 -0
  1198. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/hoverContribution.js +0 -0
  1199. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/hoverCopyButton.js +0 -0
  1200. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/hoverOperation.js +0 -0
  1201. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/hoverTypes.js +0 -0
  1202. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/hoverUtils.js +0 -0
  1203. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/markdownHoverParticipant.js +0 -0
  1204. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/markerHoverParticipant.js +0 -0
  1205. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/hover/browser}/resizableContentWidget.js +0 -0
  1206. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inPlaceReplace/browser}/inPlaceReplace.js +0 -0
  1207. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inPlaceReplace/browser}/inPlaceReplaceCommand.js +0 -0
  1208. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/indentation/common}/indentUtils.js +0 -0
  1209. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/indentation/common}/indentation.js +0 -0
  1210. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlayHints/browser}/inlayHints.js +0 -0
  1211. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlayHints/browser}/inlayHintsContribution.js +0 -0
  1212. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlayHints/browser}/inlayHintsController.js +0 -0
  1213. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlayHints/browser}/inlayHintsHover.js +0 -0
  1214. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlayHints/browser}/inlayHintsLocations.js +0 -0
  1215. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/controller}/commandIds.js +0 -0
  1216. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/controller}/commands.js +0 -0
  1217. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/controller}/inlineCompletionContextKeys.js +0 -0
  1218. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/controller}/inlineCompletionsController.js +0 -0
  1219. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/hintsWidget}/hoverParticipant.js +0 -0
  1220. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/hintsWidget}/inlineCompletionsHintsWidget.js +0 -0
  1221. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser}/inlineCompletions.contribution.js +0 -0
  1222. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser}/inlineCompletionsAccessibleView.js +0 -0
  1223. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/model}/animation.js +0 -0
  1224. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/model}/changeRecorder.js +0 -0
  1225. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/model}/computeGhostText.js +0 -0
  1226. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/model}/ghostText.js +0 -0
  1227. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/model}/graph.js +0 -0
  1228. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/model}/inlineCompletionsModel.js +0 -0
  1229. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/model}/inlineCompletionsSource.js +0 -0
  1230. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/model}/inlineEdit.js +0 -0
  1231. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/model}/inlineSuggestionItem.js +0 -0
  1232. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/model}/provideInlineCompletions.js +0 -0
  1233. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/model}/singleTextEditHelpers.js +0 -0
  1234. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/model}/suggestWidgetAdapter.js +0 -0
  1235. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/model}/typingSpeed.js +0 -0
  1236. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser}/structuredLogger.js +0 -0
  1237. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser}/telemetry.js +0 -0
  1238. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/ghostText}/ghostTextView.js +0 -0
  1239. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view}/inlineCompletionsView.js +0 -0
  1240. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components}/gutterIndicatorMenu.js +0 -0
  1241. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components}/gutterIndicatorView.js +0 -0
  1242. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits}/inlineEditWithChanges.js +0 -0
  1243. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits}/inlineEditsModel.js +0 -0
  1244. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits}/inlineEditsNewUsers.js +0 -0
  1245. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits}/inlineEditsView.js +0 -0
  1246. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits}/inlineEditsViewInterface.js +0 -0
  1247. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits}/inlineEditsViewProducer.js +0 -0
  1248. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews}/inlineEditsCollapsedView.js +0 -0
  1249. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews}/inlineEditsCustomView.js +0 -0
  1250. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews}/inlineEditsDeletionView.js +0 -0
  1251. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews}/inlineEditsInsertionView.js +0 -0
  1252. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews}/inlineEditsLineReplacementView.js +0 -0
  1253. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews}/inlineEditsSideBySideView.js +0 -0
  1254. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews}/inlineEditsWordReplacementView.js +0 -0
  1255. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews}/originalEditorInlineDiffView.js +0 -0
  1256. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits}/theme.js +0 -0
  1257. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils}/utils.js +0 -0
  1258. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/inlineProgress/browser}/inlineProgress.js +0 -0
  1259. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/insertFinalNewLine/browser}/insertFinalNewLine.js +0 -0
  1260. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/insertFinalNewLine/browser}/insertFinalNewLineCommand.js +0 -0
  1261. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/lineSelection/browser}/lineSelection.js +0 -0
  1262. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/linesOperations/browser}/copyLinesCommand.js +0 -0
  1263. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/linesOperations/browser}/linesOperations.js +0 -0
  1264. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/linesOperations/browser}/moveLinesCommand.js +0 -0
  1265. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/linesOperations/browser}/sortLinesCommand.js +0 -0
  1266. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/linkedEditing/browser}/linkedEditing.js +0 -0
  1267. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/links/browser}/getLinks.js +0 -0
  1268. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/links/browser}/links.js +0 -0
  1269. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/longLinesHelper/browser}/longLinesHelper.js +0 -0
  1270. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/message/browser}/messageController.js +0 -0
  1271. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/middleScroll/browser}/middleScroll.contribution.js +0 -0
  1272. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/middleScroll/browser}/middleScrollController.js +0 -0
  1273. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/multicursor/browser}/multicursor.js +0 -0
  1274. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/parameterHints/browser}/parameterHints.js +0 -0
  1275. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/parameterHints/browser}/parameterHintsModel.js +0 -0
  1276. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/parameterHints/browser}/parameterHintsWidget.js +0 -0
  1277. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/parameterHints/browser}/provideSignatureHelp.js +0 -0
  1278. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/peekView/browser}/peekView.js +0 -0
  1279. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/placeholderText/browser}/placeholderText.contribution.js +0 -0
  1280. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/placeholderText/browser}/placeholderTextContribution.js +0 -0
  1281. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/quickAccess/browser}/commandsQuickAccess.js +0 -0
  1282. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/quickAccess/browser}/editorNavigationQuickAccess.js +0 -0
  1283. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/quickAccess/browser}/gotoLineQuickAccess.js +0 -0
  1284. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/quickAccess/browser}/gotoSymbolQuickAccess.js +0 -0
  1285. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/readOnlyMessage/browser}/contribution.js +0 -0
  1286. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/rename/browser}/rename.js +0 -0
  1287. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/rename/browser}/renameWidget.js +0 -0
  1288. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/sectionHeaders/browser}/sectionHeaders.js +0 -0
  1289. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/semanticTokens/browser}/documentSemanticTokens.js +0 -0
  1290. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/semanticTokens/browser}/viewportSemanticTokens.js +0 -0
  1291. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/semanticTokens/common}/getSemanticTokens.js +0 -0
  1292. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/semanticTokens/common}/semanticTokensConfig.js +0 -0
  1293. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/smartSelect/browser}/bracketSelections.js +0 -0
  1294. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/smartSelect/browser}/smartSelect.js +0 -0
  1295. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/smartSelect/browser}/wordSelections.js +0 -0
  1296. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/snippet/browser}/snippetController2.js +0 -0
  1297. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/snippet/browser}/snippetParser.js +0 -0
  1298. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/snippet/browser}/snippetSession.js +0 -0
  1299. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/snippet/browser}/snippetVariables.js +0 -0
  1300. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/stickyScroll/browser}/stickyScrollActions.js +0 -0
  1301. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/stickyScroll/browser}/stickyScrollContribution.js +0 -0
  1302. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/stickyScroll/browser}/stickyScrollController.js +0 -0
  1303. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/stickyScroll/browser}/stickyScrollElement.js +0 -0
  1304. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/stickyScroll/browser}/stickyScrollModelProvider.js +0 -0
  1305. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/stickyScroll/browser}/stickyScrollProvider.js +0 -0
  1306. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/stickyScroll/browser}/stickyScrollWidget.js +0 -0
  1307. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/suggest/browser}/completionModel.js +0 -0
  1308. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/suggest/browser}/suggest.js +0 -0
  1309. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/suggest/browser}/suggestAlternatives.js +0 -0
  1310. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/suggest/browser}/suggestCommitCharacters.js +0 -0
  1311. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/suggest/browser}/suggestController.js +0 -0
  1312. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/suggest/browser}/suggestInlineCompletions.js +0 -0
  1313. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/suggest/browser}/suggestMemory.js +0 -0
  1314. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/suggest/browser}/suggestModel.js +0 -0
  1315. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/suggest/browser}/suggestOvertypingCapturer.js +0 -0
  1316. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/suggest/browser}/suggestWidget.js +0 -0
  1317. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/suggest/browser}/suggestWidgetDetails.js +0 -0
  1318. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/suggest/browser}/suggestWidgetRenderer.js +0 -0
  1319. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/suggest/browser}/suggestWidgetStatus.js +0 -0
  1320. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/suggest/browser}/wordContextKey.js +0 -0
  1321. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/suggest/browser}/wordDistance.js +0 -0
  1322. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/symbolIcons/browser}/symbolIcons.js +0 -0
  1323. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/toggleTabFocusMode/browser}/toggleTabFocusMode.js +0 -0
  1324. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/tokenization/browser}/tokenization.js +0 -0
  1325. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/unicodeHighlighter/browser}/bannerController.js +0 -0
  1326. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/unicodeHighlighter/browser}/unicodeHighlighter.js +0 -0
  1327. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/unusualLineTerminators/browser}/unusualLineTerminators.js +0 -0
  1328. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/wordHighlighter/browser}/highlightDecorations.js +0 -0
  1329. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/wordHighlighter/browser}/textualHighlightProvider.js +0 -0
  1330. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/wordHighlighter/browser}/wordHighlighter.js +0 -0
  1331. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/wordOperations/browser}/wordOperations.js +0 -0
  1332. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/wordPartOperations/browser}/wordPartOperations.js +0 -0
  1333. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/contrib/zoneWidget/browser}/zoneWidget.js +0 -0
  1334. /package/dist/{workers → esm/monaco-editor/esm/vs/editor}/edcore.main.js +0 -0
  1335. /package/dist/{workers → esm/monaco-editor/esm/vs/editor}/editor.all.js +0 -0
  1336. /package/dist/{workers → esm/monaco-editor/esm/vs/editor}/editor.api.js +0 -0
  1337. /package/dist/{workers → esm/monaco-editor/esm/vs/editor}/editor.api2.js +0 -0
  1338. /package/dist/{workers → esm/monaco-editor/esm/vs/editor}/editor.main.js +0 -0
  1339. /package/dist/{workers → esm/monaco-editor/esm/vs/editor}/editor.worker.js +0 -0
  1340. /package/dist/{workers → esm/monaco-editor/esm/vs/editor}/editor.worker.start.js +0 -0
  1341. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/internal}/initialize.js +0 -0
  1342. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser}/colorizer.js +0 -0
  1343. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser/iPadShowKeyboard}/iPadShowKeyboard.js +0 -0
  1344. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser/inspectTokens}/inspectTokens.js +0 -0
  1345. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser/quickAccess}/standaloneCommandsQuickAccess.js +0 -0
  1346. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser/quickAccess}/standaloneGotoLineQuickAccess.js +0 -0
  1347. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser/quickAccess}/standaloneGotoSymbolQuickAccess.js +0 -0
  1348. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser/quickAccess}/standaloneHelpQuickAccess.js +0 -0
  1349. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser/quickInput}/standaloneQuickInputService.js +0 -0
  1350. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser/referenceSearch}/standaloneReferenceSearch.js +0 -0
  1351. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser}/standaloneCodeEditor.js +0 -0
  1352. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser}/standaloneCodeEditorService.js +0 -0
  1353. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser}/standaloneEditor.js +0 -0
  1354. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser}/standaloneLanguages.js +0 -0
  1355. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser}/standaloneLayoutService.js +0 -0
  1356. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser}/standaloneServices.js +0 -0
  1357. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser}/standaloneThemeService.js +0 -0
  1358. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser}/standaloneTreeSitterLibraryService.js +0 -0
  1359. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser}/standaloneWebWorker.js +0 -0
  1360. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/browser/toggleHighContrast}/toggleHighContrast.js +0 -0
  1361. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/common/monarch}/monarchCommon.js +0 -0
  1362. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/common/monarch}/monarchCompile.js +0 -0
  1363. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/common/monarch}/monarchLexer.js +0 -0
  1364. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/common}/standaloneTheme.js +0 -0
  1365. /package/dist/{workers → esm/monaco-editor/esm/vs/editor/standalone/common}/themes.js +0 -0
  1366. /package/dist/{workers → esm/monaco-editor/esm/vs/language/common}/lspLanguageFeatures.js +0 -0
  1367. /package/dist/{workers → esm/monaco-editor/esm/vs/language/css}/css.worker.js +0 -0
  1368. /package/dist/{workers → esm/monaco-editor/esm/vs/language/css}/cssMode.js +0 -0
  1369. /package/dist/{workers → esm/monaco-editor/esm/vs/language/css}/cssWorker.js +0 -0
  1370. /package/dist/{workers → esm/monaco-editor/esm/vs/language/html}/html.worker.js +0 -0
  1371. /package/dist/{workers → esm/monaco-editor/esm/vs/language/html}/htmlMode.js +0 -0
  1372. /package/dist/{workers → esm/monaco-editor/esm/vs/language/html}/htmlWorker.js +0 -0
  1373. /package/dist/{workers → esm/monaco-editor/esm/vs/language/json}/json.worker.js +0 -0
  1374. /package/dist/{workers → esm/monaco-editor/esm/vs/language/json}/jsonMode.js +0 -0
  1375. /package/dist/{workers → esm/monaco-editor/esm/vs/language/json}/jsonWorker.js +0 -0
  1376. /package/dist/{workers → esm/monaco-editor/esm/vs/language/typescript/lib}/lib.index.js +0 -0
  1377. /package/dist/{workers → esm/monaco-editor/esm/vs/language/typescript/lib}/lib.js +0 -0
  1378. /package/dist/{workers → esm/monaco-editor/esm/vs/language/typescript/lib}/typescriptServices.js +0 -0
  1379. /package/dist/{workers → esm/monaco-editor/esm/vs/language/typescript/lib}/typescriptServicesMetadata.js +0 -0
  1380. /package/dist/{workers → esm/monaco-editor/esm/vs/language/typescript}/monaco.contribution.js +0 -0
  1381. /package/dist/{workers → esm/monaco-editor/esm/vs/language/typescript}/ts.worker.js +0 -0
  1382. /package/dist/{workers → esm/monaco-editor/esm/vs/language/typescript}/tsMode.js +0 -0
  1383. /package/dist/{workers → esm/monaco-editor/esm/vs/language/typescript}/tsWorker.js +0 -0
  1384. /package/dist/{workers → esm/monaco-editor/esm/vs/language/typescript}/workerManager.js +0 -0
  1385. /package/dist/{workers → esm/monaco-editor/esm/vs}/nls.js +0 -0
  1386. /package/dist/{workers → esm/monaco-editor/esm/vs}/nls.messages.js +0 -0
  1387. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/accessibility/browser}/accessibilityService.js +0 -0
  1388. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/accessibility/browser}/accessibleViewRegistry.js +0 -0
  1389. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/accessibility/common}/accessibility.js +0 -0
  1390. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/accessibilitySignal/browser}/accessibilitySignalService.js +0 -0
  1391. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/action/common}/action.js +0 -0
  1392. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/action/common}/actionCommonCategories.js +0 -0
  1393. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/actionWidget/browser}/actionList.js +0 -0
  1394. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/actionWidget/browser}/actionWidget.js +0 -0
  1395. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/actions/browser}/actionViewItemService.js +0 -0
  1396. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/actions/browser}/menuEntryActionViewItem.js +0 -0
  1397. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/actions/common}/actions.js +0 -0
  1398. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/actions/common}/menuService.js +0 -0
  1399. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/clipboard/common}/clipboardService.js +0 -0
  1400. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/configuration/common}/configuration.js +0 -0
  1401. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/configuration/common}/configurationModels.js +0 -0
  1402. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/configuration/common}/configurationRegistry.js +0 -0
  1403. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/configuration/common}/configurations.js +0 -0
  1404. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/contextkey/browser}/contextKeyService.js +0 -0
  1405. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/contextkey/common}/contextkey.js +0 -0
  1406. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/contextkey/common}/contextkeys.js +0 -0
  1407. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/contextkey/common}/scanner.js +0 -0
  1408. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/contextview/browser}/contextMenuHandler.js +0 -0
  1409. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/contextview/browser}/contextMenuService.js +0 -0
  1410. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/contextview/browser}/contextViewService.js +0 -0
  1411. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/dataChannel/browser}/forwardingTelemetryService.js +0 -0
  1412. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/dataChannel/common}/dataChannel.js +0 -0
  1413. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/dialogs/common}/dialogs.js +0 -0
  1414. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/editor/common}/editor.js +0 -0
  1415. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/environment/common}/environment.js +0 -0
  1416. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/files/common}/files.js +0 -0
  1417. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/history/browser}/contextScopedHistoryWidget.js +0 -0
  1418. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/history/browser}/historyWidgetKeybindingHint.js +0 -0
  1419. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/hover/browser}/hoverService.js +0 -0
  1420. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/hover/browser}/updatableHoverWidget.js +0 -0
  1421. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/instantiation/common}/descriptors.js +0 -0
  1422. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/instantiation/common}/extensions.js +0 -0
  1423. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/instantiation/common}/instantiation.js +0 -0
  1424. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/instantiation/common}/instantiationService.js +0 -0
  1425. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/instantiation/common}/serviceCollection.js +0 -0
  1426. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/jsonschemas/common}/jsonContributionRegistry.js +0 -0
  1427. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/keybinding/common}/abstractKeybindingService.js +0 -0
  1428. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/keybinding/common}/baseResolvedKeybinding.js +0 -0
  1429. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/keybinding/common}/keybinding.js +0 -0
  1430. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/keybinding/common}/keybindingResolver.js +0 -0
  1431. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/keybinding/common}/keybindingsRegistry.js +0 -0
  1432. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/keybinding/common}/resolvedKeybindingItem.js +0 -0
  1433. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/keybinding/common}/usLayoutResolvedKeybinding.js +0 -0
  1434. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/label/common}/label.js +0 -0
  1435. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/layout/browser}/layoutService.js +0 -0
  1436. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/list/browser}/listService.js +0 -0
  1437. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/log/common}/log.js +0 -0
  1438. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/log/common}/logService.js +0 -0
  1439. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/markdown/browser}/markdownRenderer.js +0 -0
  1440. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/markers/common}/markerService.js +0 -0
  1441. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/markers/common}/markers.js +0 -0
  1442. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/notification/common}/notification.js +0 -0
  1443. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/observable/common}/platformObservableUtils.js +0 -0
  1444. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/observable/common}/wrapInHotClass.js +0 -0
  1445. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/observable/common}/wrapInReloadableClass.js +0 -0
  1446. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/opener/browser}/link.js +0 -0
  1447. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/opener/common}/opener.js +0 -0
  1448. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/product/common}/product.js +0 -0
  1449. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/product/common}/productService.js +0 -0
  1450. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/progress/common}/progress.js +0 -0
  1451. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/browser}/helpQuickAccess.js +0 -0
  1452. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/browser}/pickerQuickAccess.js +0 -0
  1453. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/browser}/quickInputActions.js +0 -0
  1454. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/browser}/quickInputBox.js +0 -0
  1455. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/browser}/quickInputController.js +0 -0
  1456. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/browser}/quickInputList.js +0 -0
  1457. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/browser}/quickInputService.js +0 -0
  1458. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/browser}/quickInputUtils.js +0 -0
  1459. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/browser/tree}/quickInputDelegate.js +0 -0
  1460. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/browser/tree}/quickInputTree.js +0 -0
  1461. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/browser/tree}/quickInputTreeAccessibilityProvider.js +0 -0
  1462. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/browser/tree}/quickInputTreeController.js +0 -0
  1463. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/browser/tree}/quickInputTreeFilter.js +0 -0
  1464. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/browser/tree}/quickInputTreeRenderer.js +0 -0
  1465. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/browser/tree}/quickInputTreeSorter.js +0 -0
  1466. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/common}/quickAccess.js +0 -0
  1467. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/quickinput/common}/quickInput.js +0 -0
  1468. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/registry/common}/platform.js +0 -0
  1469. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/theme/browser}/defaultStyles.js +0 -0
  1470. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/theme/browser}/iconsStyleSheet.js +0 -0
  1471. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/theme/common}/colorUtils.js +0 -0
  1472. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/theme/common/colors}/baseColors.js +0 -0
  1473. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/theme/common/colors}/chartsColors.js +0 -0
  1474. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/theme/common/colors}/editorColors.js +0 -0
  1475. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/theme/common/colors}/inputColors.js +0 -0
  1476. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/theme/common/colors}/listColors.js +0 -0
  1477. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/theme/common/colors}/menuColors.js +0 -0
  1478. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/theme/common/colors}/minimapColors.js +0 -0
  1479. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/theme/common/colors}/miscColors.js +0 -0
  1480. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/theme/common/colors}/quickpickColors.js +0 -0
  1481. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/theme/common/colors}/searchColors.js +0 -0
  1482. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/theme/common}/iconRegistry.js +0 -0
  1483. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/theme/common}/themeService.js +0 -0
  1484. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/undoRedo/common}/undoRedo.js +0 -0
  1485. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/undoRedo/common}/undoRedoService.js +0 -0
  1486. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/window/common}/window.js +0 -0
  1487. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/workspace/common}/workspace.js +0 -0
  1488. /package/dist/{workers → esm/monaco-editor/esm/vs/platform/workspace/common}/workspaceTrust.js +0 -0
@@ -0,0 +1,3195 @@
1
+ import { js_beautify } from './beautify.js';
2
+ import { css_beautify } from './beautify-css.js';
3
+
4
+ // copied from js-beautify/js/lib/beautify-html.js
5
+ // version: 1.15.1
6
+ /* AUTO-GENERATED. DO NOT MODIFY. */
7
+ /*
8
+
9
+ The MIT License (MIT)
10
+
11
+ Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors.
12
+
13
+ Permission is hereby granted, free of charge, to any person
14
+ obtaining a copy of this software and associated documentation files
15
+ (the "Software"), to deal in the Software without restriction,
16
+ including without limitation the rights to use, copy, modify, merge,
17
+ publish, distribute, sublicense, and/or sell copies of the Software,
18
+ and to permit persons to whom the Software is furnished to do so,
19
+ subject to the following conditions:
20
+
21
+ The above copyright notice and this permission notice shall be
22
+ included in all copies or substantial portions of the Software.
23
+
24
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31
+ SOFTWARE.
32
+
33
+
34
+ Style HTML
35
+ ---------------
36
+
37
+ Written by Nochum Sossonko, (nsossonko@hotmail.com)
38
+
39
+ Based on code initially developed by: Einar Lielmanis, <einar@beautifier.io>
40
+ https://beautifier.io/
41
+
42
+ Usage:
43
+ style_html(html_source);
44
+
45
+ style_html(html_source, options);
46
+
47
+ The options are:
48
+ indent_inner_html (default false) — indent <head> and <body> sections,
49
+ indent_size (default 4) — indentation size,
50
+ indent_char (default space) — character to indent with,
51
+ wrap_line_length (default 250) - maximum amount of characters per line (0 = disable)
52
+ brace_style (default "collapse") - "collapse" | "expand" | "end-expand" | "none"
53
+ put braces on the same line as control statements (default), or put braces on own line (Allman / ANSI style), or just put end braces on own line, or attempt to keep them where they are.
54
+ inline (defaults to inline tags) - list of tags to be considered inline tags
55
+ unformatted (defaults to inline tags) - list of tags, that shouldn't be reformatted
56
+ content_unformatted (defaults to ["pre", "textarea"] tags) - list of tags, whose content shouldn't be reformatted
57
+ indent_scripts (default normal) - "keep"|"separate"|"normal"
58
+ preserve_newlines (default true) - whether existing line breaks before elements should be preserved
59
+ Only works before elements, not inside tags or for text.
60
+ max_preserve_newlines (default unlimited) - maximum number of line breaks to be preserved in one chunk
61
+ indent_handlebars (default false) - format and indent {{#foo}} and {{/foo}}
62
+ end_with_newline (false) - end with a newline
63
+ extra_liners (default [head,body,/html]) -List of tags that should have an extra newline before them.
64
+
65
+ e.g.
66
+
67
+ style_html(html_source, {
68
+ 'indent_inner_html': false,
69
+ 'indent_size': 2,
70
+ 'indent_char': ' ',
71
+ 'wrap_line_length': 78,
72
+ 'brace_style': 'expand',
73
+ 'preserve_newlines': true,
74
+ 'max_preserve_newlines': 5,
75
+ 'indent_handlebars': false,
76
+ 'extra_liners': ['/html']
77
+ });
78
+ */
79
+
80
+
81
+ var legacy_beautify_html;
82
+ /******/ (function() { // webpackBootstrap
83
+ /******/ var __webpack_modules__ = ([
84
+ /* 0 */,
85
+ /* 1 */,
86
+ /* 2 */
87
+ /***/ (function(module) {
88
+
89
+ /*jshint node:true */
90
+ /*
91
+ The MIT License (MIT)
92
+
93
+ Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors.
94
+
95
+ Permission is hereby granted, free of charge, to any person
96
+ obtaining a copy of this software and associated documentation files
97
+ (the "Software"), to deal in the Software without restriction,
98
+ including without limitation the rights to use, copy, modify, merge,
99
+ publish, distribute, sublicense, and/or sell copies of the Software,
100
+ and to permit persons to whom the Software is furnished to do so,
101
+ subject to the following conditions:
102
+
103
+ The above copyright notice and this permission notice shall be
104
+ included in all copies or substantial portions of the Software.
105
+
106
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
107
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
108
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
109
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
110
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
111
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
112
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
113
+ SOFTWARE.
114
+ */
115
+
116
+
117
+
118
+ function OutputLine(parent) {
119
+ this.__parent = parent;
120
+ this.__character_count = 0;
121
+ // use indent_count as a marker for this.__lines that have preserved indentation
122
+ this.__indent_count = -1;
123
+ this.__alignment_count = 0;
124
+ this.__wrap_point_index = 0;
125
+ this.__wrap_point_character_count = 0;
126
+ this.__wrap_point_indent_count = -1;
127
+ this.__wrap_point_alignment_count = 0;
128
+
129
+ this.__items = [];
130
+ }
131
+
132
+ OutputLine.prototype.clone_empty = function() {
133
+ var line = new OutputLine(this.__parent);
134
+ line.set_indent(this.__indent_count, this.__alignment_count);
135
+ return line;
136
+ };
137
+
138
+ OutputLine.prototype.item = function(index) {
139
+ if (index < 0) {
140
+ return this.__items[this.__items.length + index];
141
+ } else {
142
+ return this.__items[index];
143
+ }
144
+ };
145
+
146
+ OutputLine.prototype.has_match = function(pattern) {
147
+ for (var lastCheckedOutput = this.__items.length - 1; lastCheckedOutput >= 0; lastCheckedOutput--) {
148
+ if (this.__items[lastCheckedOutput].match(pattern)) {
149
+ return true;
150
+ }
151
+ }
152
+ return false;
153
+ };
154
+
155
+ OutputLine.prototype.set_indent = function(indent, alignment) {
156
+ if (this.is_empty()) {
157
+ this.__indent_count = indent || 0;
158
+ this.__alignment_count = alignment || 0;
159
+ this.__character_count = this.__parent.get_indent_size(this.__indent_count, this.__alignment_count);
160
+ }
161
+ };
162
+
163
+ OutputLine.prototype._set_wrap_point = function() {
164
+ if (this.__parent.wrap_line_length) {
165
+ this.__wrap_point_index = this.__items.length;
166
+ this.__wrap_point_character_count = this.__character_count;
167
+ this.__wrap_point_indent_count = this.__parent.next_line.__indent_count;
168
+ this.__wrap_point_alignment_count = this.__parent.next_line.__alignment_count;
169
+ }
170
+ };
171
+
172
+ OutputLine.prototype._should_wrap = function() {
173
+ return this.__wrap_point_index &&
174
+ this.__character_count > this.__parent.wrap_line_length &&
175
+ this.__wrap_point_character_count > this.__parent.next_line.__character_count;
176
+ };
177
+
178
+ OutputLine.prototype._allow_wrap = function() {
179
+ if (this._should_wrap()) {
180
+ this.__parent.add_new_line();
181
+ var next = this.__parent.current_line;
182
+ next.set_indent(this.__wrap_point_indent_count, this.__wrap_point_alignment_count);
183
+ next.__items = this.__items.slice(this.__wrap_point_index);
184
+ this.__items = this.__items.slice(0, this.__wrap_point_index);
185
+
186
+ next.__character_count += this.__character_count - this.__wrap_point_character_count;
187
+ this.__character_count = this.__wrap_point_character_count;
188
+
189
+ if (next.__items[0] === " ") {
190
+ next.__items.splice(0, 1);
191
+ next.__character_count -= 1;
192
+ }
193
+ return true;
194
+ }
195
+ return false;
196
+ };
197
+
198
+ OutputLine.prototype.is_empty = function() {
199
+ return this.__items.length === 0;
200
+ };
201
+
202
+ OutputLine.prototype.last = function() {
203
+ if (!this.is_empty()) {
204
+ return this.__items[this.__items.length - 1];
205
+ } else {
206
+ return null;
207
+ }
208
+ };
209
+
210
+ OutputLine.prototype.push = function(item) {
211
+ this.__items.push(item);
212
+ var last_newline_index = item.lastIndexOf('\n');
213
+ if (last_newline_index !== -1) {
214
+ this.__character_count = item.length - last_newline_index;
215
+ } else {
216
+ this.__character_count += item.length;
217
+ }
218
+ };
219
+
220
+ OutputLine.prototype.pop = function() {
221
+ var item = null;
222
+ if (!this.is_empty()) {
223
+ item = this.__items.pop();
224
+ this.__character_count -= item.length;
225
+ }
226
+ return item;
227
+ };
228
+
229
+
230
+ OutputLine.prototype._remove_indent = function() {
231
+ if (this.__indent_count > 0) {
232
+ this.__indent_count -= 1;
233
+ this.__character_count -= this.__parent.indent_size;
234
+ }
235
+ };
236
+
237
+ OutputLine.prototype._remove_wrap_indent = function() {
238
+ if (this.__wrap_point_indent_count > 0) {
239
+ this.__wrap_point_indent_count -= 1;
240
+ }
241
+ };
242
+ OutputLine.prototype.trim = function() {
243
+ while (this.last() === ' ') {
244
+ this.__items.pop();
245
+ this.__character_count -= 1;
246
+ }
247
+ };
248
+
249
+ OutputLine.prototype.toString = function() {
250
+ var result = '';
251
+ if (this.is_empty()) {
252
+ if (this.__parent.indent_empty_lines) {
253
+ result = this.__parent.get_indent_string(this.__indent_count);
254
+ }
255
+ } else {
256
+ result = this.__parent.get_indent_string(this.__indent_count, this.__alignment_count);
257
+ result += this.__items.join('');
258
+ }
259
+ return result;
260
+ };
261
+
262
+ function IndentStringCache(options, baseIndentString) {
263
+ this.__cache = [''];
264
+ this.__indent_size = options.indent_size;
265
+ this.__indent_string = options.indent_char;
266
+ if (!options.indent_with_tabs) {
267
+ this.__indent_string = new Array(options.indent_size + 1).join(options.indent_char);
268
+ }
269
+
270
+ // Set to null to continue support for auto detection of base indent
271
+ baseIndentString = baseIndentString || '';
272
+ if (options.indent_level > 0) {
273
+ baseIndentString = new Array(options.indent_level + 1).join(this.__indent_string);
274
+ }
275
+
276
+ this.__base_string = baseIndentString;
277
+ this.__base_string_length = baseIndentString.length;
278
+ }
279
+
280
+ IndentStringCache.prototype.get_indent_size = function(indent, column) {
281
+ var result = this.__base_string_length;
282
+ column = column || 0;
283
+ if (indent < 0) {
284
+ result = 0;
285
+ }
286
+ result += indent * this.__indent_size;
287
+ result += column;
288
+ return result;
289
+ };
290
+
291
+ IndentStringCache.prototype.get_indent_string = function(indent_level, column) {
292
+ var result = this.__base_string;
293
+ column = column || 0;
294
+ if (indent_level < 0) {
295
+ indent_level = 0;
296
+ result = '';
297
+ }
298
+ column += indent_level * this.__indent_size;
299
+ this.__ensure_cache(column);
300
+ result += this.__cache[column];
301
+ return result;
302
+ };
303
+
304
+ IndentStringCache.prototype.__ensure_cache = function(column) {
305
+ while (column >= this.__cache.length) {
306
+ this.__add_column();
307
+ }
308
+ };
309
+
310
+ IndentStringCache.prototype.__add_column = function() {
311
+ var column = this.__cache.length;
312
+ var indent = 0;
313
+ var result = '';
314
+ if (this.__indent_size && column >= this.__indent_size) {
315
+ indent = Math.floor(column / this.__indent_size);
316
+ column -= indent * this.__indent_size;
317
+ result = new Array(indent + 1).join(this.__indent_string);
318
+ }
319
+ if (column) {
320
+ result += new Array(column + 1).join(' ');
321
+ }
322
+
323
+ this.__cache.push(result);
324
+ };
325
+
326
+ function Output(options, baseIndentString) {
327
+ this.__indent_cache = new IndentStringCache(options, baseIndentString);
328
+ this.raw = false;
329
+ this._end_with_newline = options.end_with_newline;
330
+ this.indent_size = options.indent_size;
331
+ this.wrap_line_length = options.wrap_line_length;
332
+ this.indent_empty_lines = options.indent_empty_lines;
333
+ this.__lines = [];
334
+ this.previous_line = null;
335
+ this.current_line = null;
336
+ this.next_line = new OutputLine(this);
337
+ this.space_before_token = false;
338
+ this.non_breaking_space = false;
339
+ this.previous_token_wrapped = false;
340
+ // initialize
341
+ this.__add_outputline();
342
+ }
343
+
344
+ Output.prototype.__add_outputline = function() {
345
+ this.previous_line = this.current_line;
346
+ this.current_line = this.next_line.clone_empty();
347
+ this.__lines.push(this.current_line);
348
+ };
349
+
350
+ Output.prototype.get_line_number = function() {
351
+ return this.__lines.length;
352
+ };
353
+
354
+ Output.prototype.get_indent_string = function(indent, column) {
355
+ return this.__indent_cache.get_indent_string(indent, column);
356
+ };
357
+
358
+ Output.prototype.get_indent_size = function(indent, column) {
359
+ return this.__indent_cache.get_indent_size(indent, column);
360
+ };
361
+
362
+ Output.prototype.is_empty = function() {
363
+ return !this.previous_line && this.current_line.is_empty();
364
+ };
365
+
366
+ Output.prototype.add_new_line = function(force_newline) {
367
+ // never newline at the start of file
368
+ // otherwise, newline only if we didn't just add one or we're forced
369
+ if (this.is_empty() ||
370
+ (!force_newline && this.just_added_newline())) {
371
+ return false;
372
+ }
373
+
374
+ // if raw output is enabled, don't print additional newlines,
375
+ // but still return True as though you had
376
+ if (!this.raw) {
377
+ this.__add_outputline();
378
+ }
379
+ return true;
380
+ };
381
+
382
+ Output.prototype.get_code = function(eol) {
383
+ this.trim(true);
384
+
385
+ // handle some edge cases where the last tokens
386
+ // has text that ends with newline(s)
387
+ var last_item = this.current_line.pop();
388
+ if (last_item) {
389
+ if (last_item[last_item.length - 1] === '\n') {
390
+ last_item = last_item.replace(/\n+$/g, '');
391
+ }
392
+ this.current_line.push(last_item);
393
+ }
394
+
395
+ if (this._end_with_newline) {
396
+ this.__add_outputline();
397
+ }
398
+
399
+ var sweet_code = this.__lines.join('\n');
400
+
401
+ if (eol !== '\n') {
402
+ sweet_code = sweet_code.replace(/[\n]/g, eol);
403
+ }
404
+ return sweet_code;
405
+ };
406
+
407
+ Output.prototype.set_wrap_point = function() {
408
+ this.current_line._set_wrap_point();
409
+ };
410
+
411
+ Output.prototype.set_indent = function(indent, alignment) {
412
+ indent = indent || 0;
413
+ alignment = alignment || 0;
414
+
415
+ // Next line stores alignment values
416
+ this.next_line.set_indent(indent, alignment);
417
+
418
+ // Never indent your first output indent at the start of the file
419
+ if (this.__lines.length > 1) {
420
+ this.current_line.set_indent(indent, alignment);
421
+ return true;
422
+ }
423
+
424
+ this.current_line.set_indent();
425
+ return false;
426
+ };
427
+
428
+ Output.prototype.add_raw_token = function(token) {
429
+ for (var x = 0; x < token.newlines; x++) {
430
+ this.__add_outputline();
431
+ }
432
+ this.current_line.set_indent(-1);
433
+ this.current_line.push(token.whitespace_before);
434
+ this.current_line.push(token.text);
435
+ this.space_before_token = false;
436
+ this.non_breaking_space = false;
437
+ this.previous_token_wrapped = false;
438
+ };
439
+
440
+ Output.prototype.add_token = function(printable_token) {
441
+ this.__add_space_before_token();
442
+ this.current_line.push(printable_token);
443
+ this.space_before_token = false;
444
+ this.non_breaking_space = false;
445
+ this.previous_token_wrapped = this.current_line._allow_wrap();
446
+ };
447
+
448
+ Output.prototype.__add_space_before_token = function() {
449
+ if (this.space_before_token && !this.just_added_newline()) {
450
+ if (!this.non_breaking_space) {
451
+ this.set_wrap_point();
452
+ }
453
+ this.current_line.push(' ');
454
+ }
455
+ };
456
+
457
+ Output.prototype.remove_indent = function(index) {
458
+ var output_length = this.__lines.length;
459
+ while (index < output_length) {
460
+ this.__lines[index]._remove_indent();
461
+ index++;
462
+ }
463
+ this.current_line._remove_wrap_indent();
464
+ };
465
+
466
+ Output.prototype.trim = function(eat_newlines) {
467
+ eat_newlines = (eat_newlines === undefined) ? false : eat_newlines;
468
+
469
+ this.current_line.trim();
470
+
471
+ while (eat_newlines && this.__lines.length > 1 &&
472
+ this.current_line.is_empty()) {
473
+ this.__lines.pop();
474
+ this.current_line = this.__lines[this.__lines.length - 1];
475
+ this.current_line.trim();
476
+ }
477
+
478
+ this.previous_line = this.__lines.length > 1 ?
479
+ this.__lines[this.__lines.length - 2] : null;
480
+ };
481
+
482
+ Output.prototype.just_added_newline = function() {
483
+ return this.current_line.is_empty();
484
+ };
485
+
486
+ Output.prototype.just_added_blankline = function() {
487
+ return this.is_empty() ||
488
+ (this.current_line.is_empty() && this.previous_line.is_empty());
489
+ };
490
+
491
+ Output.prototype.ensure_empty_line_above = function(starts_with, ends_with) {
492
+ var index = this.__lines.length - 2;
493
+ while (index >= 0) {
494
+ var potentialEmptyLine = this.__lines[index];
495
+ if (potentialEmptyLine.is_empty()) {
496
+ break;
497
+ } else if (potentialEmptyLine.item(0).indexOf(starts_with) !== 0 &&
498
+ potentialEmptyLine.item(-1) !== ends_with) {
499
+ this.__lines.splice(index + 1, 0, new OutputLine(this));
500
+ this.previous_line = this.__lines[this.__lines.length - 2];
501
+ break;
502
+ }
503
+ index--;
504
+ }
505
+ };
506
+
507
+ module.exports.Output = Output;
508
+
509
+
510
+ /***/ }),
511
+ /* 3 */
512
+ /***/ (function(module) {
513
+
514
+ /*jshint node:true */
515
+ /*
516
+
517
+ The MIT License (MIT)
518
+
519
+ Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors.
520
+
521
+ Permission is hereby granted, free of charge, to any person
522
+ obtaining a copy of this software and associated documentation files
523
+ (the "Software"), to deal in the Software without restriction,
524
+ including without limitation the rights to use, copy, modify, merge,
525
+ publish, distribute, sublicense, and/or sell copies of the Software,
526
+ and to permit persons to whom the Software is furnished to do so,
527
+ subject to the following conditions:
528
+
529
+ The above copyright notice and this permission notice shall be
530
+ included in all copies or substantial portions of the Software.
531
+
532
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
533
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
534
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
535
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
536
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
537
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
538
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
539
+ SOFTWARE.
540
+ */
541
+
542
+
543
+
544
+ function Token(type, text, newlines, whitespace_before) {
545
+ this.type = type;
546
+ this.text = text;
547
+
548
+ // comments_before are
549
+ // comments that have a new line before them
550
+ // and may or may not have a newline after
551
+ // this is a set of comments before
552
+ this.comments_before = null; /* inline comment*/
553
+
554
+
555
+ // this.comments_after = new TokenStream(); // no new line before and newline after
556
+ this.newlines = newlines || 0;
557
+ this.whitespace_before = whitespace_before || '';
558
+ this.parent = null;
559
+ this.next = null;
560
+ this.previous = null;
561
+ this.opened = null;
562
+ this.closed = null;
563
+ this.directives = null;
564
+ }
565
+
566
+
567
+ module.exports.Token = Token;
568
+
569
+
570
+ /***/ }),
571
+ /* 4 */,
572
+ /* 5 */,
573
+ /* 6 */
574
+ /***/ (function(module) {
575
+
576
+ /*jshint node:true */
577
+ /*
578
+
579
+ The MIT License (MIT)
580
+
581
+ Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors.
582
+
583
+ Permission is hereby granted, free of charge, to any person
584
+ obtaining a copy of this software and associated documentation files
585
+ (the "Software"), to deal in the Software without restriction,
586
+ including without limitation the rights to use, copy, modify, merge,
587
+ publish, distribute, sublicense, and/or sell copies of the Software,
588
+ and to permit persons to whom the Software is furnished to do so,
589
+ subject to the following conditions:
590
+
591
+ The above copyright notice and this permission notice shall be
592
+ included in all copies or substantial portions of the Software.
593
+
594
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
595
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
596
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
597
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
598
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
599
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
600
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
601
+ SOFTWARE.
602
+ */
603
+
604
+
605
+
606
+ function Options(options, merge_child_field) {
607
+ this.raw_options = _mergeOpts(options, merge_child_field);
608
+
609
+ // Support passing the source text back with no change
610
+ this.disabled = this._get_boolean('disabled');
611
+
612
+ this.eol = this._get_characters('eol', 'auto');
613
+ this.end_with_newline = this._get_boolean('end_with_newline');
614
+ this.indent_size = this._get_number('indent_size', 4);
615
+ this.indent_char = this._get_characters('indent_char', ' ');
616
+ this.indent_level = this._get_number('indent_level');
617
+
618
+ this.preserve_newlines = this._get_boolean('preserve_newlines', true);
619
+ this.max_preserve_newlines = this._get_number('max_preserve_newlines', 32786);
620
+ if (!this.preserve_newlines) {
621
+ this.max_preserve_newlines = 0;
622
+ }
623
+
624
+ this.indent_with_tabs = this._get_boolean('indent_with_tabs', this.indent_char === '\t');
625
+ if (this.indent_with_tabs) {
626
+ this.indent_char = '\t';
627
+
628
+ // indent_size behavior changed after 1.8.6
629
+ // It used to be that indent_size would be
630
+ // set to 1 for indent_with_tabs. That is no longer needed and
631
+ // actually doesn't make sense - why not use spaces? Further,
632
+ // that might produce unexpected behavior - tabs being used
633
+ // for single-column alignment. So, when indent_with_tabs is true
634
+ // and indent_size is 1, reset indent_size to 4.
635
+ if (this.indent_size === 1) {
636
+ this.indent_size = 4;
637
+ }
638
+ }
639
+
640
+ // Backwards compat with 1.3.x
641
+ this.wrap_line_length = this._get_number('wrap_line_length', this._get_number('max_char'));
642
+
643
+ this.indent_empty_lines = this._get_boolean('indent_empty_lines');
644
+
645
+ // valid templating languages ['django', 'erb', 'handlebars', 'php', 'smarty', 'angular']
646
+ // For now, 'auto' = all off for javascript, all except angular on for html (and inline javascript/css).
647
+ // other values ignored
648
+ this.templating = this._get_selection_list('templating', ['auto', 'none', 'angular', 'django', 'erb', 'handlebars', 'php', 'smarty'], ['auto']);
649
+ }
650
+
651
+ Options.prototype._get_array = function(name, default_value) {
652
+ var option_value = this.raw_options[name];
653
+ var result = default_value || [];
654
+ if (typeof option_value === 'object') {
655
+ if (option_value !== null && typeof option_value.concat === 'function') {
656
+ result = option_value.concat();
657
+ }
658
+ } else if (typeof option_value === 'string') {
659
+ result = option_value.split(/[^a-zA-Z0-9_\/\-]+/);
660
+ }
661
+ return result;
662
+ };
663
+
664
+ Options.prototype._get_boolean = function(name, default_value) {
665
+ var option_value = this.raw_options[name];
666
+ var result = option_value === undefined ? !!default_value : !!option_value;
667
+ return result;
668
+ };
669
+
670
+ Options.prototype._get_characters = function(name, default_value) {
671
+ var option_value = this.raw_options[name];
672
+ var result = default_value || '';
673
+ if (typeof option_value === 'string') {
674
+ result = option_value.replace(/\\r/, '\r').replace(/\\n/, '\n').replace(/\\t/, '\t');
675
+ }
676
+ return result;
677
+ };
678
+
679
+ Options.prototype._get_number = function(name, default_value) {
680
+ var option_value = this.raw_options[name];
681
+ default_value = parseInt(default_value, 10);
682
+ if (isNaN(default_value)) {
683
+ default_value = 0;
684
+ }
685
+ var result = parseInt(option_value, 10);
686
+ if (isNaN(result)) {
687
+ result = default_value;
688
+ }
689
+ return result;
690
+ };
691
+
692
+ Options.prototype._get_selection = function(name, selection_list, default_value) {
693
+ var result = this._get_selection_list(name, selection_list, default_value);
694
+ if (result.length !== 1) {
695
+ throw new Error(
696
+ "Invalid Option Value: The option '" + name + "' can only be one of the following values:\n" +
697
+ selection_list + "\nYou passed in: '" + this.raw_options[name] + "'");
698
+ }
699
+
700
+ return result[0];
701
+ };
702
+
703
+
704
+ Options.prototype._get_selection_list = function(name, selection_list, default_value) {
705
+ if (!selection_list || selection_list.length === 0) {
706
+ throw new Error("Selection list cannot be empty.");
707
+ }
708
+
709
+ default_value = default_value || [selection_list[0]];
710
+ if (!this._is_valid_selection(default_value, selection_list)) {
711
+ throw new Error("Invalid Default Value!");
712
+ }
713
+
714
+ var result = this._get_array(name, default_value);
715
+ if (!this._is_valid_selection(result, selection_list)) {
716
+ throw new Error(
717
+ "Invalid Option Value: The option '" + name + "' can contain only the following values:\n" +
718
+ selection_list + "\nYou passed in: '" + this.raw_options[name] + "'");
719
+ }
720
+
721
+ return result;
722
+ };
723
+
724
+ Options.prototype._is_valid_selection = function(result, selection_list) {
725
+ return result.length && selection_list.length &&
726
+ !result.some(function(item) { return selection_list.indexOf(item) === -1; });
727
+ };
728
+
729
+
730
+ // merges child options up with the parent options object
731
+ // Example: obj = {a: 1, b: {a: 2}}
732
+ // mergeOpts(obj, 'b')
733
+ //
734
+ // Returns: {a: 2}
735
+ function _mergeOpts(allOptions, childFieldName) {
736
+ var finalOpts = {};
737
+ allOptions = _normalizeOpts(allOptions);
738
+ var name;
739
+
740
+ for (name in allOptions) {
741
+ if (name !== childFieldName) {
742
+ finalOpts[name] = allOptions[name];
743
+ }
744
+ }
745
+
746
+ //merge in the per type settings for the childFieldName
747
+ if (childFieldName && allOptions[childFieldName]) {
748
+ for (name in allOptions[childFieldName]) {
749
+ finalOpts[name] = allOptions[childFieldName][name];
750
+ }
751
+ }
752
+ return finalOpts;
753
+ }
754
+
755
+ function _normalizeOpts(options) {
756
+ var convertedOpts = {};
757
+ var key;
758
+
759
+ for (key in options) {
760
+ var newKey = key.replace(/-/g, "_");
761
+ convertedOpts[newKey] = options[key];
762
+ }
763
+ return convertedOpts;
764
+ }
765
+
766
+ module.exports.Options = Options;
767
+ module.exports.normalizeOpts = _normalizeOpts;
768
+ module.exports.mergeOpts = _mergeOpts;
769
+
770
+
771
+ /***/ }),
772
+ /* 7 */,
773
+ /* 8 */
774
+ /***/ (function(module) {
775
+
776
+ /*jshint node:true */
777
+ /*
778
+
779
+ The MIT License (MIT)
780
+
781
+ Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors.
782
+
783
+ Permission is hereby granted, free of charge, to any person
784
+ obtaining a copy of this software and associated documentation files
785
+ (the "Software"), to deal in the Software without restriction,
786
+ including without limitation the rights to use, copy, modify, merge,
787
+ publish, distribute, sublicense, and/or sell copies of the Software,
788
+ and to permit persons to whom the Software is furnished to do so,
789
+ subject to the following conditions:
790
+
791
+ The above copyright notice and this permission notice shall be
792
+ included in all copies or substantial portions of the Software.
793
+
794
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
795
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
796
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
797
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
798
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
799
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
800
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
801
+ SOFTWARE.
802
+ */
803
+
804
+
805
+
806
+ var regexp_has_sticky = RegExp.prototype.hasOwnProperty('sticky');
807
+
808
+ function InputScanner(input_string) {
809
+ this.__input = input_string || '';
810
+ this.__input_length = this.__input.length;
811
+ this.__position = 0;
812
+ }
813
+
814
+ InputScanner.prototype.restart = function() {
815
+ this.__position = 0;
816
+ };
817
+
818
+ InputScanner.prototype.back = function() {
819
+ if (this.__position > 0) {
820
+ this.__position -= 1;
821
+ }
822
+ };
823
+
824
+ InputScanner.prototype.hasNext = function() {
825
+ return this.__position < this.__input_length;
826
+ };
827
+
828
+ InputScanner.prototype.next = function() {
829
+ var val = null;
830
+ if (this.hasNext()) {
831
+ val = this.__input.charAt(this.__position);
832
+ this.__position += 1;
833
+ }
834
+ return val;
835
+ };
836
+
837
+ InputScanner.prototype.peek = function(index) {
838
+ var val = null;
839
+ index = index || 0;
840
+ index += this.__position;
841
+ if (index >= 0 && index < this.__input_length) {
842
+ val = this.__input.charAt(index);
843
+ }
844
+ return val;
845
+ };
846
+
847
+ // This is a JavaScript only helper function (not in python)
848
+ // Javascript doesn't have a match method
849
+ // and not all implementation support "sticky" flag.
850
+ // If they do not support sticky then both this.match() and this.test() method
851
+ // must get the match and check the index of the match.
852
+ // If sticky is supported and set, this method will use it.
853
+ // Otherwise it will check that global is set, and fall back to the slower method.
854
+ InputScanner.prototype.__match = function(pattern, index) {
855
+ pattern.lastIndex = index;
856
+ var pattern_match = pattern.exec(this.__input);
857
+
858
+ if (pattern_match && !(regexp_has_sticky && pattern.sticky)) {
859
+ if (pattern_match.index !== index) {
860
+ pattern_match = null;
861
+ }
862
+ }
863
+
864
+ return pattern_match;
865
+ };
866
+
867
+ InputScanner.prototype.test = function(pattern, index) {
868
+ index = index || 0;
869
+ index += this.__position;
870
+
871
+ if (index >= 0 && index < this.__input_length) {
872
+ return !!this.__match(pattern, index);
873
+ } else {
874
+ return false;
875
+ }
876
+ };
877
+
878
+ InputScanner.prototype.testChar = function(pattern, index) {
879
+ // test one character regex match
880
+ var val = this.peek(index);
881
+ pattern.lastIndex = 0;
882
+ return val !== null && pattern.test(val);
883
+ };
884
+
885
+ InputScanner.prototype.match = function(pattern) {
886
+ var pattern_match = this.__match(pattern, this.__position);
887
+ if (pattern_match) {
888
+ this.__position += pattern_match[0].length;
889
+ } else {
890
+ pattern_match = null;
891
+ }
892
+ return pattern_match;
893
+ };
894
+
895
+ InputScanner.prototype.read = function(starting_pattern, until_pattern, until_after) {
896
+ var val = '';
897
+ var match;
898
+ if (starting_pattern) {
899
+ match = this.match(starting_pattern);
900
+ if (match) {
901
+ val += match[0];
902
+ }
903
+ }
904
+ if (until_pattern && (match || !starting_pattern)) {
905
+ val += this.readUntil(until_pattern, until_after);
906
+ }
907
+ return val;
908
+ };
909
+
910
+ InputScanner.prototype.readUntil = function(pattern, until_after) {
911
+ var val = '';
912
+ var match_index = this.__position;
913
+ pattern.lastIndex = this.__position;
914
+ var pattern_match = pattern.exec(this.__input);
915
+ if (pattern_match) {
916
+ match_index = pattern_match.index;
917
+ if (until_after) {
918
+ match_index += pattern_match[0].length;
919
+ }
920
+ } else {
921
+ match_index = this.__input_length;
922
+ }
923
+
924
+ val = this.__input.substring(this.__position, match_index);
925
+ this.__position = match_index;
926
+ return val;
927
+ };
928
+
929
+ InputScanner.prototype.readUntilAfter = function(pattern) {
930
+ return this.readUntil(pattern, true);
931
+ };
932
+
933
+ InputScanner.prototype.get_regexp = function(pattern, match_from) {
934
+ var result = null;
935
+ var flags = 'g';
936
+ if (match_from && regexp_has_sticky) {
937
+ flags = 'y';
938
+ }
939
+ // strings are converted to regexp
940
+ if (typeof pattern === "string" && pattern !== '') {
941
+ // result = new RegExp(pattern.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'), flags);
942
+ result = new RegExp(pattern, flags);
943
+ } else if (pattern) {
944
+ result = new RegExp(pattern.source, flags);
945
+ }
946
+ return result;
947
+ };
948
+
949
+ InputScanner.prototype.get_literal_regexp = function(literal_string) {
950
+ return RegExp(literal_string.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'));
951
+ };
952
+
953
+ /* css beautifier legacy helpers */
954
+ InputScanner.prototype.peekUntilAfter = function(pattern) {
955
+ var start = this.__position;
956
+ var val = this.readUntilAfter(pattern);
957
+ this.__position = start;
958
+ return val;
959
+ };
960
+
961
+ InputScanner.prototype.lookBack = function(testVal) {
962
+ var start = this.__position - 1;
963
+ return start >= testVal.length && this.__input.substring(start - testVal.length, start)
964
+ .toLowerCase() === testVal;
965
+ };
966
+
967
+ module.exports.InputScanner = InputScanner;
968
+
969
+
970
+ /***/ }),
971
+ /* 9 */
972
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
973
+
974
+ /*jshint node:true */
975
+ /*
976
+
977
+ The MIT License (MIT)
978
+
979
+ Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors.
980
+
981
+ Permission is hereby granted, free of charge, to any person
982
+ obtaining a copy of this software and associated documentation files
983
+ (the "Software"), to deal in the Software without restriction,
984
+ including without limitation the rights to use, copy, modify, merge,
985
+ publish, distribute, sublicense, and/or sell copies of the Software,
986
+ and to permit persons to whom the Software is furnished to do so,
987
+ subject to the following conditions:
988
+
989
+ The above copyright notice and this permission notice shall be
990
+ included in all copies or substantial portions of the Software.
991
+
992
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
993
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
994
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
995
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
996
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
997
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
998
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
999
+ SOFTWARE.
1000
+ */
1001
+
1002
+
1003
+
1004
+ var InputScanner = (__webpack_require__(8).InputScanner);
1005
+ var Token = (__webpack_require__(3).Token);
1006
+ var TokenStream = (__webpack_require__(10).TokenStream);
1007
+ var WhitespacePattern = (__webpack_require__(11).WhitespacePattern);
1008
+
1009
+ var TOKEN = {
1010
+ START: 'TK_START',
1011
+ RAW: 'TK_RAW',
1012
+ EOF: 'TK_EOF'
1013
+ };
1014
+
1015
+ var Tokenizer = function(input_string, options) {
1016
+ this._input = new InputScanner(input_string);
1017
+ this._options = options || {};
1018
+ this.__tokens = null;
1019
+
1020
+ this._patterns = {};
1021
+ this._patterns.whitespace = new WhitespacePattern(this._input);
1022
+ };
1023
+
1024
+ Tokenizer.prototype.tokenize = function() {
1025
+ this._input.restart();
1026
+ this.__tokens = new TokenStream();
1027
+
1028
+ this._reset();
1029
+
1030
+ var current;
1031
+ var previous = new Token(TOKEN.START, '');
1032
+ var open_token = null;
1033
+ var open_stack = [];
1034
+ var comments = new TokenStream();
1035
+
1036
+ while (previous.type !== TOKEN.EOF) {
1037
+ current = this._get_next_token(previous, open_token);
1038
+ while (this._is_comment(current)) {
1039
+ comments.add(current);
1040
+ current = this._get_next_token(previous, open_token);
1041
+ }
1042
+
1043
+ if (!comments.isEmpty()) {
1044
+ current.comments_before = comments;
1045
+ comments = new TokenStream();
1046
+ }
1047
+
1048
+ current.parent = open_token;
1049
+
1050
+ if (this._is_opening(current)) {
1051
+ open_stack.push(open_token);
1052
+ open_token = current;
1053
+ } else if (open_token && this._is_closing(current, open_token)) {
1054
+ current.opened = open_token;
1055
+ open_token.closed = current;
1056
+ open_token = open_stack.pop();
1057
+ current.parent = open_token;
1058
+ }
1059
+
1060
+ current.previous = previous;
1061
+ previous.next = current;
1062
+
1063
+ this.__tokens.add(current);
1064
+ previous = current;
1065
+ }
1066
+
1067
+ return this.__tokens;
1068
+ };
1069
+
1070
+
1071
+ Tokenizer.prototype._is_first_token = function() {
1072
+ return this.__tokens.isEmpty();
1073
+ };
1074
+
1075
+ Tokenizer.prototype._reset = function() {};
1076
+
1077
+ Tokenizer.prototype._get_next_token = function(previous_token, open_token) { // jshint unused:false
1078
+ this._readWhitespace();
1079
+ var resulting_string = this._input.read(/.+/g);
1080
+ if (resulting_string) {
1081
+ return this._create_token(TOKEN.RAW, resulting_string);
1082
+ } else {
1083
+ return this._create_token(TOKEN.EOF, '');
1084
+ }
1085
+ };
1086
+
1087
+ Tokenizer.prototype._is_comment = function(current_token) { // jshint unused:false
1088
+ return false;
1089
+ };
1090
+
1091
+ Tokenizer.prototype._is_opening = function(current_token) { // jshint unused:false
1092
+ return false;
1093
+ };
1094
+
1095
+ Tokenizer.prototype._is_closing = function(current_token, open_token) { // jshint unused:false
1096
+ return false;
1097
+ };
1098
+
1099
+ Tokenizer.prototype._create_token = function(type, text) {
1100
+ var token = new Token(type, text,
1101
+ this._patterns.whitespace.newline_count,
1102
+ this._patterns.whitespace.whitespace_before_token);
1103
+ return token;
1104
+ };
1105
+
1106
+ Tokenizer.prototype._readWhitespace = function() {
1107
+ return this._patterns.whitespace.read();
1108
+ };
1109
+
1110
+
1111
+
1112
+ module.exports.Tokenizer = Tokenizer;
1113
+ module.exports.TOKEN = TOKEN;
1114
+
1115
+
1116
+ /***/ }),
1117
+ /* 10 */
1118
+ /***/ (function(module) {
1119
+
1120
+ /*jshint node:true */
1121
+ /*
1122
+
1123
+ The MIT License (MIT)
1124
+
1125
+ Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors.
1126
+
1127
+ Permission is hereby granted, free of charge, to any person
1128
+ obtaining a copy of this software and associated documentation files
1129
+ (the "Software"), to deal in the Software without restriction,
1130
+ including without limitation the rights to use, copy, modify, merge,
1131
+ publish, distribute, sublicense, and/or sell copies of the Software,
1132
+ and to permit persons to whom the Software is furnished to do so,
1133
+ subject to the following conditions:
1134
+
1135
+ The above copyright notice and this permission notice shall be
1136
+ included in all copies or substantial portions of the Software.
1137
+
1138
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1139
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1140
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1141
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
1142
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
1143
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1144
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1145
+ SOFTWARE.
1146
+ */
1147
+
1148
+
1149
+
1150
+ function TokenStream(parent_token) {
1151
+ // private
1152
+ this.__tokens = [];
1153
+ this.__tokens_length = this.__tokens.length;
1154
+ this.__position = 0;
1155
+ this.__parent_token = parent_token;
1156
+ }
1157
+
1158
+ TokenStream.prototype.restart = function() {
1159
+ this.__position = 0;
1160
+ };
1161
+
1162
+ TokenStream.prototype.isEmpty = function() {
1163
+ return this.__tokens_length === 0;
1164
+ };
1165
+
1166
+ TokenStream.prototype.hasNext = function() {
1167
+ return this.__position < this.__tokens_length;
1168
+ };
1169
+
1170
+ TokenStream.prototype.next = function() {
1171
+ var val = null;
1172
+ if (this.hasNext()) {
1173
+ val = this.__tokens[this.__position];
1174
+ this.__position += 1;
1175
+ }
1176
+ return val;
1177
+ };
1178
+
1179
+ TokenStream.prototype.peek = function(index) {
1180
+ var val = null;
1181
+ index = index || 0;
1182
+ index += this.__position;
1183
+ if (index >= 0 && index < this.__tokens_length) {
1184
+ val = this.__tokens[index];
1185
+ }
1186
+ return val;
1187
+ };
1188
+
1189
+ TokenStream.prototype.add = function(token) {
1190
+ if (this.__parent_token) {
1191
+ token.parent = this.__parent_token;
1192
+ }
1193
+ this.__tokens.push(token);
1194
+ this.__tokens_length += 1;
1195
+ };
1196
+
1197
+ module.exports.TokenStream = TokenStream;
1198
+
1199
+
1200
+ /***/ }),
1201
+ /* 11 */
1202
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1203
+
1204
+ /*jshint node:true */
1205
+ /*
1206
+
1207
+ The MIT License (MIT)
1208
+
1209
+ Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors.
1210
+
1211
+ Permission is hereby granted, free of charge, to any person
1212
+ obtaining a copy of this software and associated documentation files
1213
+ (the "Software"), to deal in the Software without restriction,
1214
+ including without limitation the rights to use, copy, modify, merge,
1215
+ publish, distribute, sublicense, and/or sell copies of the Software,
1216
+ and to permit persons to whom the Software is furnished to do so,
1217
+ subject to the following conditions:
1218
+
1219
+ The above copyright notice and this permission notice shall be
1220
+ included in all copies or substantial portions of the Software.
1221
+
1222
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1223
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1224
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1225
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
1226
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
1227
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1228
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1229
+ SOFTWARE.
1230
+ */
1231
+
1232
+
1233
+
1234
+ var Pattern = (__webpack_require__(12).Pattern);
1235
+
1236
+ function WhitespacePattern(input_scanner, parent) {
1237
+ Pattern.call(this, input_scanner, parent);
1238
+ if (parent) {
1239
+ this._line_regexp = this._input.get_regexp(parent._line_regexp);
1240
+ } else {
1241
+ this.__set_whitespace_patterns('', '');
1242
+ }
1243
+
1244
+ this.newline_count = 0;
1245
+ this.whitespace_before_token = '';
1246
+ }
1247
+ WhitespacePattern.prototype = new Pattern();
1248
+
1249
+ WhitespacePattern.prototype.__set_whitespace_patterns = function(whitespace_chars, newline_chars) {
1250
+ whitespace_chars += '\\t ';
1251
+ newline_chars += '\\n\\r';
1252
+
1253
+ this._match_pattern = this._input.get_regexp(
1254
+ '[' + whitespace_chars + newline_chars + ']+', true);
1255
+ this._newline_regexp = this._input.get_regexp(
1256
+ '\\r\\n|[' + newline_chars + ']');
1257
+ };
1258
+
1259
+ WhitespacePattern.prototype.read = function() {
1260
+ this.newline_count = 0;
1261
+ this.whitespace_before_token = '';
1262
+
1263
+ var resulting_string = this._input.read(this._match_pattern);
1264
+ if (resulting_string === ' ') {
1265
+ this.whitespace_before_token = ' ';
1266
+ } else if (resulting_string) {
1267
+ var matches = this.__split(this._newline_regexp, resulting_string);
1268
+ this.newline_count = matches.length - 1;
1269
+ this.whitespace_before_token = matches[this.newline_count];
1270
+ }
1271
+
1272
+ return resulting_string;
1273
+ };
1274
+
1275
+ WhitespacePattern.prototype.matching = function(whitespace_chars, newline_chars) {
1276
+ var result = this._create();
1277
+ result.__set_whitespace_patterns(whitespace_chars, newline_chars);
1278
+ result._update();
1279
+ return result;
1280
+ };
1281
+
1282
+ WhitespacePattern.prototype._create = function() {
1283
+ return new WhitespacePattern(this._input, this);
1284
+ };
1285
+
1286
+ WhitespacePattern.prototype.__split = function(regexp, input_string) {
1287
+ regexp.lastIndex = 0;
1288
+ var start_index = 0;
1289
+ var result = [];
1290
+ var next_match = regexp.exec(input_string);
1291
+ while (next_match) {
1292
+ result.push(input_string.substring(start_index, next_match.index));
1293
+ start_index = next_match.index + next_match[0].length;
1294
+ next_match = regexp.exec(input_string);
1295
+ }
1296
+
1297
+ if (start_index < input_string.length) {
1298
+ result.push(input_string.substring(start_index, input_string.length));
1299
+ } else {
1300
+ result.push('');
1301
+ }
1302
+
1303
+ return result;
1304
+ };
1305
+
1306
+
1307
+
1308
+ module.exports.WhitespacePattern = WhitespacePattern;
1309
+
1310
+
1311
+ /***/ }),
1312
+ /* 12 */
1313
+ /***/ (function(module) {
1314
+
1315
+ /*jshint node:true */
1316
+ /*
1317
+
1318
+ The MIT License (MIT)
1319
+
1320
+ Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors.
1321
+
1322
+ Permission is hereby granted, free of charge, to any person
1323
+ obtaining a copy of this software and associated documentation files
1324
+ (the "Software"), to deal in the Software without restriction,
1325
+ including without limitation the rights to use, copy, modify, merge,
1326
+ publish, distribute, sublicense, and/or sell copies of the Software,
1327
+ and to permit persons to whom the Software is furnished to do so,
1328
+ subject to the following conditions:
1329
+
1330
+ The above copyright notice and this permission notice shall be
1331
+ included in all copies or substantial portions of the Software.
1332
+
1333
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1334
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1335
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1336
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
1337
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
1338
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1339
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1340
+ SOFTWARE.
1341
+ */
1342
+
1343
+
1344
+
1345
+ function Pattern(input_scanner, parent) {
1346
+ this._input = input_scanner;
1347
+ this._starting_pattern = null;
1348
+ this._match_pattern = null;
1349
+ this._until_pattern = null;
1350
+ this._until_after = false;
1351
+
1352
+ if (parent) {
1353
+ this._starting_pattern = this._input.get_regexp(parent._starting_pattern, true);
1354
+ this._match_pattern = this._input.get_regexp(parent._match_pattern, true);
1355
+ this._until_pattern = this._input.get_regexp(parent._until_pattern);
1356
+ this._until_after = parent._until_after;
1357
+ }
1358
+ }
1359
+
1360
+ Pattern.prototype.read = function() {
1361
+ var result = this._input.read(this._starting_pattern);
1362
+ if (!this._starting_pattern || result) {
1363
+ result += this._input.read(this._match_pattern, this._until_pattern, this._until_after);
1364
+ }
1365
+ return result;
1366
+ };
1367
+
1368
+ Pattern.prototype.read_match = function() {
1369
+ return this._input.match(this._match_pattern);
1370
+ };
1371
+
1372
+ Pattern.prototype.until_after = function(pattern) {
1373
+ var result = this._create();
1374
+ result._until_after = true;
1375
+ result._until_pattern = this._input.get_regexp(pattern);
1376
+ result._update();
1377
+ return result;
1378
+ };
1379
+
1380
+ Pattern.prototype.until = function(pattern) {
1381
+ var result = this._create();
1382
+ result._until_after = false;
1383
+ result._until_pattern = this._input.get_regexp(pattern);
1384
+ result._update();
1385
+ return result;
1386
+ };
1387
+
1388
+ Pattern.prototype.starting_with = function(pattern) {
1389
+ var result = this._create();
1390
+ result._starting_pattern = this._input.get_regexp(pattern, true);
1391
+ result._update();
1392
+ return result;
1393
+ };
1394
+
1395
+ Pattern.prototype.matching = function(pattern) {
1396
+ var result = this._create();
1397
+ result._match_pattern = this._input.get_regexp(pattern, true);
1398
+ result._update();
1399
+ return result;
1400
+ };
1401
+
1402
+ Pattern.prototype._create = function() {
1403
+ return new Pattern(this._input, this);
1404
+ };
1405
+
1406
+ Pattern.prototype._update = function() {};
1407
+
1408
+ module.exports.Pattern = Pattern;
1409
+
1410
+
1411
+ /***/ }),
1412
+ /* 13 */
1413
+ /***/ (function(module) {
1414
+
1415
+ /*jshint node:true */
1416
+ /*
1417
+
1418
+ The MIT License (MIT)
1419
+
1420
+ Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors.
1421
+
1422
+ Permission is hereby granted, free of charge, to any person
1423
+ obtaining a copy of this software and associated documentation files
1424
+ (the "Software"), to deal in the Software without restriction,
1425
+ including without limitation the rights to use, copy, modify, merge,
1426
+ publish, distribute, sublicense, and/or sell copies of the Software,
1427
+ and to permit persons to whom the Software is furnished to do so,
1428
+ subject to the following conditions:
1429
+
1430
+ The above copyright notice and this permission notice shall be
1431
+ included in all copies or substantial portions of the Software.
1432
+
1433
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1434
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1435
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1436
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
1437
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
1438
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1439
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1440
+ SOFTWARE.
1441
+ */
1442
+
1443
+
1444
+
1445
+ function Directives(start_block_pattern, end_block_pattern) {
1446
+ start_block_pattern = typeof start_block_pattern === 'string' ? start_block_pattern : start_block_pattern.source;
1447
+ end_block_pattern = typeof end_block_pattern === 'string' ? end_block_pattern : end_block_pattern.source;
1448
+ this.__directives_block_pattern = new RegExp(start_block_pattern + / beautify( \w+[:]\w+)+ /.source + end_block_pattern, 'g');
1449
+ this.__directive_pattern = / (\w+)[:](\w+)/g;
1450
+
1451
+ this.__directives_end_ignore_pattern = new RegExp(start_block_pattern + /\sbeautify\signore:end\s/.source + end_block_pattern, 'g');
1452
+ }
1453
+
1454
+ Directives.prototype.get_directives = function(text) {
1455
+ if (!text.match(this.__directives_block_pattern)) {
1456
+ return null;
1457
+ }
1458
+
1459
+ var directives = {};
1460
+ this.__directive_pattern.lastIndex = 0;
1461
+ var directive_match = this.__directive_pattern.exec(text);
1462
+
1463
+ while (directive_match) {
1464
+ directives[directive_match[1]] = directive_match[2];
1465
+ directive_match = this.__directive_pattern.exec(text);
1466
+ }
1467
+
1468
+ return directives;
1469
+ };
1470
+
1471
+ Directives.prototype.readIgnored = function(input) {
1472
+ return input.readUntilAfter(this.__directives_end_ignore_pattern);
1473
+ };
1474
+
1475
+
1476
+ module.exports.Directives = Directives;
1477
+
1478
+
1479
+ /***/ }),
1480
+ /* 14 */
1481
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1482
+
1483
+ /*jshint node:true */
1484
+ /*
1485
+
1486
+ The MIT License (MIT)
1487
+
1488
+ Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors.
1489
+
1490
+ Permission is hereby granted, free of charge, to any person
1491
+ obtaining a copy of this software and associated documentation files
1492
+ (the "Software"), to deal in the Software without restriction,
1493
+ including without limitation the rights to use, copy, modify, merge,
1494
+ publish, distribute, sublicense, and/or sell copies of the Software,
1495
+ and to permit persons to whom the Software is furnished to do so,
1496
+ subject to the following conditions:
1497
+
1498
+ The above copyright notice and this permission notice shall be
1499
+ included in all copies or substantial portions of the Software.
1500
+
1501
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1502
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1503
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1504
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
1505
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
1506
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1507
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1508
+ SOFTWARE.
1509
+ */
1510
+
1511
+
1512
+
1513
+ var Pattern = (__webpack_require__(12).Pattern);
1514
+
1515
+
1516
+ var template_names = {
1517
+ django: false,
1518
+ erb: false,
1519
+ handlebars: false,
1520
+ php: false,
1521
+ smarty: false,
1522
+ angular: false
1523
+ };
1524
+
1525
+ // This lets templates appear anywhere we would do a readUntil
1526
+ // The cost is higher but it is pay to play.
1527
+ function TemplatablePattern(input_scanner, parent) {
1528
+ Pattern.call(this, input_scanner, parent);
1529
+ this.__template_pattern = null;
1530
+ this._disabled = Object.assign({}, template_names);
1531
+ this._excluded = Object.assign({}, template_names);
1532
+
1533
+ if (parent) {
1534
+ this.__template_pattern = this._input.get_regexp(parent.__template_pattern);
1535
+ this._excluded = Object.assign(this._excluded, parent._excluded);
1536
+ this._disabled = Object.assign(this._disabled, parent._disabled);
1537
+ }
1538
+ var pattern = new Pattern(input_scanner);
1539
+ this.__patterns = {
1540
+ handlebars_comment: pattern.starting_with(/{{!--/).until_after(/--}}/),
1541
+ handlebars_unescaped: pattern.starting_with(/{{{/).until_after(/}}}/),
1542
+ handlebars: pattern.starting_with(/{{/).until_after(/}}/),
1543
+ php: pattern.starting_with(/<\?(?:[= ]|php)/).until_after(/\?>/),
1544
+ erb: pattern.starting_with(/<%[^%]/).until_after(/[^%]%>/),
1545
+ // django coflicts with handlebars a bit.
1546
+ django: pattern.starting_with(/{%/).until_after(/%}/),
1547
+ django_value: pattern.starting_with(/{{/).until_after(/}}/),
1548
+ django_comment: pattern.starting_with(/{#/).until_after(/#}/),
1549
+ smarty: pattern.starting_with(/{(?=[^}{\s\n])/).until_after(/[^\s\n]}/),
1550
+ smarty_comment: pattern.starting_with(/{\*/).until_after(/\*}/),
1551
+ smarty_literal: pattern.starting_with(/{literal}/).until_after(/{\/literal}/)
1552
+ };
1553
+ }
1554
+ TemplatablePattern.prototype = new Pattern();
1555
+
1556
+ TemplatablePattern.prototype._create = function() {
1557
+ return new TemplatablePattern(this._input, this);
1558
+ };
1559
+
1560
+ TemplatablePattern.prototype._update = function() {
1561
+ this.__set_templated_pattern();
1562
+ };
1563
+
1564
+ TemplatablePattern.prototype.disable = function(language) {
1565
+ var result = this._create();
1566
+ result._disabled[language] = true;
1567
+ result._update();
1568
+ return result;
1569
+ };
1570
+
1571
+ TemplatablePattern.prototype.read_options = function(options) {
1572
+ var result = this._create();
1573
+ for (var language in template_names) {
1574
+ result._disabled[language] = options.templating.indexOf(language) === -1;
1575
+ }
1576
+ result._update();
1577
+ return result;
1578
+ };
1579
+
1580
+ TemplatablePattern.prototype.exclude = function(language) {
1581
+ var result = this._create();
1582
+ result._excluded[language] = true;
1583
+ result._update();
1584
+ return result;
1585
+ };
1586
+
1587
+ TemplatablePattern.prototype.read = function() {
1588
+ var result = '';
1589
+ if (this._match_pattern) {
1590
+ result = this._input.read(this._starting_pattern);
1591
+ } else {
1592
+ result = this._input.read(this._starting_pattern, this.__template_pattern);
1593
+ }
1594
+ var next = this._read_template();
1595
+ while (next) {
1596
+ if (this._match_pattern) {
1597
+ next += this._input.read(this._match_pattern);
1598
+ } else {
1599
+ next += this._input.readUntil(this.__template_pattern);
1600
+ }
1601
+ result += next;
1602
+ next = this._read_template();
1603
+ }
1604
+
1605
+ if (this._until_after) {
1606
+ result += this._input.readUntilAfter(this._until_pattern);
1607
+ }
1608
+ return result;
1609
+ };
1610
+
1611
+ TemplatablePattern.prototype.__set_templated_pattern = function() {
1612
+ var items = [];
1613
+
1614
+ if (!this._disabled.php) {
1615
+ items.push(this.__patterns.php._starting_pattern.source);
1616
+ }
1617
+ if (!this._disabled.handlebars) {
1618
+ items.push(this.__patterns.handlebars._starting_pattern.source);
1619
+ }
1620
+ if (!this._disabled.erb) {
1621
+ items.push(this.__patterns.erb._starting_pattern.source);
1622
+ }
1623
+ if (!this._disabled.django) {
1624
+ items.push(this.__patterns.django._starting_pattern.source);
1625
+ // The starting pattern for django is more complex because it has different
1626
+ // patterns for value, comment, and other sections
1627
+ items.push(this.__patterns.django_value._starting_pattern.source);
1628
+ items.push(this.__patterns.django_comment._starting_pattern.source);
1629
+ }
1630
+ if (!this._disabled.smarty) {
1631
+ items.push(this.__patterns.smarty._starting_pattern.source);
1632
+ }
1633
+
1634
+ if (this._until_pattern) {
1635
+ items.push(this._until_pattern.source);
1636
+ }
1637
+ this.__template_pattern = this._input.get_regexp('(?:' + items.join('|') + ')');
1638
+ };
1639
+
1640
+ TemplatablePattern.prototype._read_template = function() {
1641
+ var resulting_string = '';
1642
+ var c = this._input.peek();
1643
+ if (c === '<') {
1644
+ var peek1 = this._input.peek(1);
1645
+ //if we're in a comment, do something special
1646
+ // We treat all comments as literals, even more than preformatted tags
1647
+ // we just look for the appropriate close tag
1648
+ if (!this._disabled.php && !this._excluded.php && peek1 === '?') {
1649
+ resulting_string = resulting_string ||
1650
+ this.__patterns.php.read();
1651
+ }
1652
+ if (!this._disabled.erb && !this._excluded.erb && peek1 === '%') {
1653
+ resulting_string = resulting_string ||
1654
+ this.__patterns.erb.read();
1655
+ }
1656
+ } else if (c === '{') {
1657
+ if (!this._disabled.handlebars && !this._excluded.handlebars) {
1658
+ resulting_string = resulting_string ||
1659
+ this.__patterns.handlebars_comment.read();
1660
+ resulting_string = resulting_string ||
1661
+ this.__patterns.handlebars_unescaped.read();
1662
+ resulting_string = resulting_string ||
1663
+ this.__patterns.handlebars.read();
1664
+ }
1665
+ if (!this._disabled.django) {
1666
+ // django coflicts with handlebars a bit.
1667
+ if (!this._excluded.django && !this._excluded.handlebars) {
1668
+ resulting_string = resulting_string ||
1669
+ this.__patterns.django_value.read();
1670
+ }
1671
+ if (!this._excluded.django) {
1672
+ resulting_string = resulting_string ||
1673
+ this.__patterns.django_comment.read();
1674
+ resulting_string = resulting_string ||
1675
+ this.__patterns.django.read();
1676
+ }
1677
+ }
1678
+ if (!this._disabled.smarty) {
1679
+ // smarty cannot be enabled with django or handlebars enabled
1680
+ if (this._disabled.django && this._disabled.handlebars) {
1681
+ resulting_string = resulting_string ||
1682
+ this.__patterns.smarty_comment.read();
1683
+ resulting_string = resulting_string ||
1684
+ this.__patterns.smarty_literal.read();
1685
+ resulting_string = resulting_string ||
1686
+ this.__patterns.smarty.read();
1687
+ }
1688
+ }
1689
+ }
1690
+ return resulting_string;
1691
+ };
1692
+
1693
+
1694
+ module.exports.TemplatablePattern = TemplatablePattern;
1695
+
1696
+
1697
+ /***/ }),
1698
+ /* 15 */,
1699
+ /* 16 */,
1700
+ /* 17 */,
1701
+ /* 18 */
1702
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1703
+
1704
+ /*jshint node:true */
1705
+ /*
1706
+
1707
+ The MIT License (MIT)
1708
+
1709
+ Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors.
1710
+
1711
+ Permission is hereby granted, free of charge, to any person
1712
+ obtaining a copy of this software and associated documentation files
1713
+ (the "Software"), to deal in the Software without restriction,
1714
+ including without limitation the rights to use, copy, modify, merge,
1715
+ publish, distribute, sublicense, and/or sell copies of the Software,
1716
+ and to permit persons to whom the Software is furnished to do so,
1717
+ subject to the following conditions:
1718
+
1719
+ The above copyright notice and this permission notice shall be
1720
+ included in all copies or substantial portions of the Software.
1721
+
1722
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1723
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1724
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1725
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
1726
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
1727
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1728
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1729
+ SOFTWARE.
1730
+ */
1731
+
1732
+
1733
+
1734
+ var Beautifier = (__webpack_require__(19).Beautifier),
1735
+ Options = (__webpack_require__(20).Options);
1736
+
1737
+ function style_html(html_source, options, js_beautify, css_beautify) {
1738
+ var beautifier = new Beautifier(html_source, options, js_beautify, css_beautify);
1739
+ return beautifier.beautify();
1740
+ }
1741
+
1742
+ module.exports = style_html;
1743
+ module.exports.defaultOptions = function() {
1744
+ return new Options();
1745
+ };
1746
+
1747
+
1748
+ /***/ }),
1749
+ /* 19 */
1750
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1751
+
1752
+ /*jshint node:true */
1753
+ /*
1754
+
1755
+ The MIT License (MIT)
1756
+
1757
+ Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors.
1758
+
1759
+ Permission is hereby granted, free of charge, to any person
1760
+ obtaining a copy of this software and associated documentation files
1761
+ (the "Software"), to deal in the Software without restriction,
1762
+ including without limitation the rights to use, copy, modify, merge,
1763
+ publish, distribute, sublicense, and/or sell copies of the Software,
1764
+ and to permit persons to whom the Software is furnished to do so,
1765
+ subject to the following conditions:
1766
+
1767
+ The above copyright notice and this permission notice shall be
1768
+ included in all copies or substantial portions of the Software.
1769
+
1770
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1771
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1772
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1773
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
1774
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
1775
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1776
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1777
+ SOFTWARE.
1778
+ */
1779
+
1780
+
1781
+
1782
+ var Options = (__webpack_require__(20).Options);
1783
+ var Output = (__webpack_require__(2).Output);
1784
+ var Tokenizer = (__webpack_require__(21).Tokenizer);
1785
+ var TOKEN = (__webpack_require__(21).TOKEN);
1786
+
1787
+ var lineBreak = /\r\n|[\r\n]/;
1788
+ var allLineBreaks = /\r\n|[\r\n]/g;
1789
+
1790
+ var Printer = function(options, base_indent_string) { //handles input/output and some other printing functions
1791
+
1792
+ this.indent_level = 0;
1793
+ this.alignment_size = 0;
1794
+ this.max_preserve_newlines = options.max_preserve_newlines;
1795
+ this.preserve_newlines = options.preserve_newlines;
1796
+
1797
+ this._output = new Output(options, base_indent_string);
1798
+
1799
+ };
1800
+
1801
+ Printer.prototype.current_line_has_match = function(pattern) {
1802
+ return this._output.current_line.has_match(pattern);
1803
+ };
1804
+
1805
+ Printer.prototype.set_space_before_token = function(value, non_breaking) {
1806
+ this._output.space_before_token = value;
1807
+ this._output.non_breaking_space = non_breaking;
1808
+ };
1809
+
1810
+ Printer.prototype.set_wrap_point = function() {
1811
+ this._output.set_indent(this.indent_level, this.alignment_size);
1812
+ this._output.set_wrap_point();
1813
+ };
1814
+
1815
+
1816
+ Printer.prototype.add_raw_token = function(token) {
1817
+ this._output.add_raw_token(token);
1818
+ };
1819
+
1820
+ Printer.prototype.print_preserved_newlines = function(raw_token) {
1821
+ var newlines = 0;
1822
+ if (raw_token.type !== TOKEN.TEXT && raw_token.previous.type !== TOKEN.TEXT) {
1823
+ newlines = raw_token.newlines ? 1 : 0;
1824
+ }
1825
+
1826
+ if (this.preserve_newlines) {
1827
+ newlines = raw_token.newlines < this.max_preserve_newlines + 1 ? raw_token.newlines : this.max_preserve_newlines + 1;
1828
+ }
1829
+ for (var n = 0; n < newlines; n++) {
1830
+ this.print_newline(n > 0);
1831
+ }
1832
+
1833
+ return newlines !== 0;
1834
+ };
1835
+
1836
+ Printer.prototype.traverse_whitespace = function(raw_token) {
1837
+ if (raw_token.whitespace_before || raw_token.newlines) {
1838
+ if (!this.print_preserved_newlines(raw_token)) {
1839
+ this._output.space_before_token = true;
1840
+ }
1841
+ return true;
1842
+ }
1843
+ return false;
1844
+ };
1845
+
1846
+ Printer.prototype.previous_token_wrapped = function() {
1847
+ return this._output.previous_token_wrapped;
1848
+ };
1849
+
1850
+ Printer.prototype.print_newline = function(force) {
1851
+ this._output.add_new_line(force);
1852
+ };
1853
+
1854
+ Printer.prototype.print_token = function(token) {
1855
+ if (token.text) {
1856
+ this._output.set_indent(this.indent_level, this.alignment_size);
1857
+ this._output.add_token(token.text);
1858
+ }
1859
+ };
1860
+
1861
+ Printer.prototype.indent = function() {
1862
+ this.indent_level++;
1863
+ };
1864
+
1865
+ Printer.prototype.deindent = function() {
1866
+ if (this.indent_level > 0) {
1867
+ this.indent_level--;
1868
+ this._output.set_indent(this.indent_level, this.alignment_size);
1869
+ }
1870
+ };
1871
+
1872
+ Printer.prototype.get_full_indent = function(level) {
1873
+ level = this.indent_level + (level || 0);
1874
+ if (level < 1) {
1875
+ return '';
1876
+ }
1877
+
1878
+ return this._output.get_indent_string(level);
1879
+ };
1880
+
1881
+ var get_type_attribute = function(start_token) {
1882
+ var result = null;
1883
+ var raw_token = start_token.next;
1884
+
1885
+ // Search attributes for a type attribute
1886
+ while (raw_token.type !== TOKEN.EOF && start_token.closed !== raw_token) {
1887
+ if (raw_token.type === TOKEN.ATTRIBUTE && raw_token.text === 'type') {
1888
+ if (raw_token.next && raw_token.next.type === TOKEN.EQUALS &&
1889
+ raw_token.next.next && raw_token.next.next.type === TOKEN.VALUE) {
1890
+ result = raw_token.next.next.text;
1891
+ }
1892
+ break;
1893
+ }
1894
+ raw_token = raw_token.next;
1895
+ }
1896
+
1897
+ return result;
1898
+ };
1899
+
1900
+ var get_custom_beautifier_name = function(tag_check, raw_token) {
1901
+ var typeAttribute = null;
1902
+ var result = null;
1903
+
1904
+ if (!raw_token.closed) {
1905
+ return null;
1906
+ }
1907
+
1908
+ if (tag_check === 'script') {
1909
+ typeAttribute = 'text/javascript';
1910
+ } else if (tag_check === 'style') {
1911
+ typeAttribute = 'text/css';
1912
+ }
1913
+
1914
+ typeAttribute = get_type_attribute(raw_token) || typeAttribute;
1915
+
1916
+ // For script and style tags that have a type attribute, only enable custom beautifiers for matching values
1917
+ // For those without a type attribute use default;
1918
+ if (typeAttribute.search('text/css') > -1) {
1919
+ result = 'css';
1920
+ } else if (typeAttribute.search(/module|((text|application|dojo)\/(x-)?(javascript|ecmascript|jscript|livescript|(ld\+)?json|method|aspect))/) > -1) {
1921
+ result = 'javascript';
1922
+ } else if (typeAttribute.search(/(text|application|dojo)\/(x-)?(html)/) > -1) {
1923
+ result = 'html';
1924
+ } else if (typeAttribute.search(/test\/null/) > -1) {
1925
+ // Test only mime-type for testing the beautifier when null is passed as beautifing function
1926
+ result = 'null';
1927
+ }
1928
+
1929
+ return result;
1930
+ };
1931
+
1932
+ function in_array(what, arr) {
1933
+ return arr.indexOf(what) !== -1;
1934
+ }
1935
+
1936
+ function TagFrame(parent, parser_token, indent_level) {
1937
+ this.parent = parent || null;
1938
+ this.tag = parser_token ? parser_token.tag_name : '';
1939
+ this.indent_level = indent_level || 0;
1940
+ this.parser_token = parser_token || null;
1941
+ }
1942
+
1943
+ function TagStack(printer) {
1944
+ this._printer = printer;
1945
+ this._current_frame = null;
1946
+ }
1947
+
1948
+ TagStack.prototype.get_parser_token = function() {
1949
+ return this._current_frame ? this._current_frame.parser_token : null;
1950
+ };
1951
+
1952
+ TagStack.prototype.record_tag = function(parser_token) { //function to record a tag and its parent in this.tags Object
1953
+ var new_frame = new TagFrame(this._current_frame, parser_token, this._printer.indent_level);
1954
+ this._current_frame = new_frame;
1955
+ };
1956
+
1957
+ TagStack.prototype._try_pop_frame = function(frame) { //function to retrieve the opening tag to the corresponding closer
1958
+ var parser_token = null;
1959
+
1960
+ if (frame) {
1961
+ parser_token = frame.parser_token;
1962
+ this._printer.indent_level = frame.indent_level;
1963
+ this._current_frame = frame.parent;
1964
+ }
1965
+
1966
+ return parser_token;
1967
+ };
1968
+
1969
+ TagStack.prototype._get_frame = function(tag_list, stop_list) { //function to retrieve the opening tag to the corresponding closer
1970
+ var frame = this._current_frame;
1971
+
1972
+ while (frame) { //till we reach '' (the initial value);
1973
+ if (tag_list.indexOf(frame.tag) !== -1) { //if this is it use it
1974
+ break;
1975
+ } else if (stop_list && stop_list.indexOf(frame.tag) !== -1) {
1976
+ frame = null;
1977
+ break;
1978
+ }
1979
+ frame = frame.parent;
1980
+ }
1981
+
1982
+ return frame;
1983
+ };
1984
+
1985
+ TagStack.prototype.try_pop = function(tag, stop_list) { //function to retrieve the opening tag to the corresponding closer
1986
+ var frame = this._get_frame([tag], stop_list);
1987
+ return this._try_pop_frame(frame);
1988
+ };
1989
+
1990
+ TagStack.prototype.indent_to_tag = function(tag_list) {
1991
+ var frame = this._get_frame(tag_list);
1992
+ if (frame) {
1993
+ this._printer.indent_level = frame.indent_level;
1994
+ }
1995
+ };
1996
+
1997
+ function Beautifier(source_text, options, js_beautify, css_beautify) {
1998
+ //Wrapper function to invoke all the necessary constructors and deal with the output.
1999
+ this._source_text = source_text || '';
2000
+ options = options || {};
2001
+ this._js_beautify = js_beautify;
2002
+ this._css_beautify = css_beautify;
2003
+ this._tag_stack = null;
2004
+
2005
+ // Allow the setting of language/file-type specific options
2006
+ // with inheritance of overall settings
2007
+ var optionHtml = new Options(options, 'html');
2008
+
2009
+ this._options = optionHtml;
2010
+
2011
+ this._is_wrap_attributes_force = this._options.wrap_attributes.substr(0, 'force'.length) === 'force';
2012
+ this._is_wrap_attributes_force_expand_multiline = (this._options.wrap_attributes === 'force-expand-multiline');
2013
+ this._is_wrap_attributes_force_aligned = (this._options.wrap_attributes === 'force-aligned');
2014
+ this._is_wrap_attributes_aligned_multiple = (this._options.wrap_attributes === 'aligned-multiple');
2015
+ this._is_wrap_attributes_preserve = this._options.wrap_attributes.substr(0, 'preserve'.length) === 'preserve';
2016
+ this._is_wrap_attributes_preserve_aligned = (this._options.wrap_attributes === 'preserve-aligned');
2017
+ }
2018
+
2019
+ Beautifier.prototype.beautify = function() {
2020
+
2021
+ // if disabled, return the input unchanged.
2022
+ if (this._options.disabled) {
2023
+ return this._source_text;
2024
+ }
2025
+
2026
+ var source_text = this._source_text;
2027
+ var eol = this._options.eol;
2028
+ if (this._options.eol === 'auto') {
2029
+ eol = '\n';
2030
+ if (source_text && lineBreak.test(source_text)) {
2031
+ eol = source_text.match(lineBreak)[0];
2032
+ }
2033
+ }
2034
+
2035
+ // HACK: newline parsing inconsistent. This brute force normalizes the input.
2036
+ source_text = source_text.replace(allLineBreaks, '\n');
2037
+
2038
+ var baseIndentString = source_text.match(/^[\t ]*/)[0];
2039
+
2040
+ var last_token = {
2041
+ text: '',
2042
+ type: ''
2043
+ };
2044
+
2045
+ var last_tag_token = new TagOpenParserToken();
2046
+
2047
+ var printer = new Printer(this._options, baseIndentString);
2048
+ var tokens = new Tokenizer(source_text, this._options).tokenize();
2049
+
2050
+ this._tag_stack = new TagStack(printer);
2051
+
2052
+ var parser_token = null;
2053
+ var raw_token = tokens.next();
2054
+ while (raw_token.type !== TOKEN.EOF) {
2055
+
2056
+ if (raw_token.type === TOKEN.TAG_OPEN || raw_token.type === TOKEN.COMMENT) {
2057
+ parser_token = this._handle_tag_open(printer, raw_token, last_tag_token, last_token, tokens);
2058
+ last_tag_token = parser_token;
2059
+ } else if ((raw_token.type === TOKEN.ATTRIBUTE || raw_token.type === TOKEN.EQUALS || raw_token.type === TOKEN.VALUE) ||
2060
+ (raw_token.type === TOKEN.TEXT && !last_tag_token.tag_complete)) {
2061
+ parser_token = this._handle_inside_tag(printer, raw_token, last_tag_token, last_token);
2062
+ } else if (raw_token.type === TOKEN.TAG_CLOSE) {
2063
+ parser_token = this._handle_tag_close(printer, raw_token, last_tag_token);
2064
+ } else if (raw_token.type === TOKEN.TEXT) {
2065
+ parser_token = this._handle_text(printer, raw_token, last_tag_token);
2066
+ } else if (raw_token.type === TOKEN.CONTROL_FLOW_OPEN) {
2067
+ parser_token = this._handle_control_flow_open(printer, raw_token);
2068
+ } else if (raw_token.type === TOKEN.CONTROL_FLOW_CLOSE) {
2069
+ parser_token = this._handle_control_flow_close(printer, raw_token);
2070
+ } else {
2071
+ // This should never happen, but if it does. Print the raw token
2072
+ printer.add_raw_token(raw_token);
2073
+ }
2074
+
2075
+ last_token = parser_token;
2076
+
2077
+ raw_token = tokens.next();
2078
+ }
2079
+ var sweet_code = printer._output.get_code(eol);
2080
+
2081
+ return sweet_code;
2082
+ };
2083
+
2084
+ Beautifier.prototype._handle_control_flow_open = function(printer, raw_token) {
2085
+ var parser_token = {
2086
+ text: raw_token.text,
2087
+ type: raw_token.type
2088
+ };
2089
+ printer.set_space_before_token(raw_token.newlines || raw_token.whitespace_before !== '', true);
2090
+ if (raw_token.newlines) {
2091
+ printer.print_preserved_newlines(raw_token);
2092
+ } else {
2093
+ printer.set_space_before_token(raw_token.newlines || raw_token.whitespace_before !== '', true);
2094
+ }
2095
+ printer.print_token(raw_token);
2096
+ printer.indent();
2097
+ return parser_token;
2098
+ };
2099
+
2100
+ Beautifier.prototype._handle_control_flow_close = function(printer, raw_token) {
2101
+ var parser_token = {
2102
+ text: raw_token.text,
2103
+ type: raw_token.type
2104
+ };
2105
+
2106
+ printer.deindent();
2107
+ if (raw_token.newlines) {
2108
+ printer.print_preserved_newlines(raw_token);
2109
+ } else {
2110
+ printer.set_space_before_token(raw_token.newlines || raw_token.whitespace_before !== '', true);
2111
+ }
2112
+ printer.print_token(raw_token);
2113
+ return parser_token;
2114
+ };
2115
+
2116
+ Beautifier.prototype._handle_tag_close = function(printer, raw_token, last_tag_token) {
2117
+ var parser_token = {
2118
+ text: raw_token.text,
2119
+ type: raw_token.type
2120
+ };
2121
+ printer.alignment_size = 0;
2122
+ last_tag_token.tag_complete = true;
2123
+
2124
+ printer.set_space_before_token(raw_token.newlines || raw_token.whitespace_before !== '', true);
2125
+ if (last_tag_token.is_unformatted) {
2126
+ printer.add_raw_token(raw_token);
2127
+ } else {
2128
+ if (last_tag_token.tag_start_char === '<') {
2129
+ printer.set_space_before_token(raw_token.text[0] === '/', true); // space before />, no space before >
2130
+ if (this._is_wrap_attributes_force_expand_multiline && last_tag_token.has_wrapped_attrs) {
2131
+ printer.print_newline(false);
2132
+ }
2133
+ }
2134
+ printer.print_token(raw_token);
2135
+
2136
+ }
2137
+
2138
+ if (last_tag_token.indent_content &&
2139
+ !(last_tag_token.is_unformatted || last_tag_token.is_content_unformatted)) {
2140
+ printer.indent();
2141
+
2142
+ // only indent once per opened tag
2143
+ last_tag_token.indent_content = false;
2144
+ }
2145
+
2146
+ if (!last_tag_token.is_inline_element &&
2147
+ !(last_tag_token.is_unformatted || last_tag_token.is_content_unformatted)) {
2148
+ printer.set_wrap_point();
2149
+ }
2150
+
2151
+ return parser_token;
2152
+ };
2153
+
2154
+ Beautifier.prototype._handle_inside_tag = function(printer, raw_token, last_tag_token, last_token) {
2155
+ var wrapped = last_tag_token.has_wrapped_attrs;
2156
+ var parser_token = {
2157
+ text: raw_token.text,
2158
+ type: raw_token.type
2159
+ };
2160
+
2161
+ printer.set_space_before_token(raw_token.newlines || raw_token.whitespace_before !== '', true);
2162
+ if (last_tag_token.is_unformatted) {
2163
+ printer.add_raw_token(raw_token);
2164
+ } else if (last_tag_token.tag_start_char === '{' && raw_token.type === TOKEN.TEXT) {
2165
+ // For the insides of handlebars allow newlines or a single space between open and contents
2166
+ if (printer.print_preserved_newlines(raw_token)) {
2167
+ raw_token.newlines = 0;
2168
+ printer.add_raw_token(raw_token);
2169
+ } else {
2170
+ printer.print_token(raw_token);
2171
+ }
2172
+ } else {
2173
+ if (raw_token.type === TOKEN.ATTRIBUTE) {
2174
+ printer.set_space_before_token(true);
2175
+ } else if (raw_token.type === TOKEN.EQUALS) { //no space before =
2176
+ printer.set_space_before_token(false);
2177
+ } else if (raw_token.type === TOKEN.VALUE && raw_token.previous.type === TOKEN.EQUALS) { //no space before value
2178
+ printer.set_space_before_token(false);
2179
+ }
2180
+
2181
+ if (raw_token.type === TOKEN.ATTRIBUTE && last_tag_token.tag_start_char === '<') {
2182
+ if (this._is_wrap_attributes_preserve || this._is_wrap_attributes_preserve_aligned) {
2183
+ printer.traverse_whitespace(raw_token);
2184
+ wrapped = wrapped || raw_token.newlines !== 0;
2185
+ }
2186
+
2187
+ // Wrap for 'force' options, and if the number of attributes is at least that specified in 'wrap_attributes_min_attrs':
2188
+ // 1. always wrap the second and beyond attributes
2189
+ // 2. wrap the first attribute only if 'force-expand-multiline' is specified
2190
+ if (this._is_wrap_attributes_force &&
2191
+ last_tag_token.attr_count >= this._options.wrap_attributes_min_attrs &&
2192
+ (last_token.type !== TOKEN.TAG_OPEN || // ie. second attribute and beyond
2193
+ this._is_wrap_attributes_force_expand_multiline)) {
2194
+ printer.print_newline(false);
2195
+ wrapped = true;
2196
+ }
2197
+ }
2198
+ printer.print_token(raw_token);
2199
+ wrapped = wrapped || printer.previous_token_wrapped();
2200
+ last_tag_token.has_wrapped_attrs = wrapped;
2201
+ }
2202
+ return parser_token;
2203
+ };
2204
+
2205
+ Beautifier.prototype._handle_text = function(printer, raw_token, last_tag_token) {
2206
+ var parser_token = {
2207
+ text: raw_token.text,
2208
+ type: 'TK_CONTENT'
2209
+ };
2210
+ if (last_tag_token.custom_beautifier_name) { //check if we need to format javascript
2211
+ this._print_custom_beatifier_text(printer, raw_token, last_tag_token);
2212
+ } else if (last_tag_token.is_unformatted || last_tag_token.is_content_unformatted) {
2213
+ printer.add_raw_token(raw_token);
2214
+ } else {
2215
+ printer.traverse_whitespace(raw_token);
2216
+ printer.print_token(raw_token);
2217
+ }
2218
+ return parser_token;
2219
+ };
2220
+
2221
+ Beautifier.prototype._print_custom_beatifier_text = function(printer, raw_token, last_tag_token) {
2222
+ var local = this;
2223
+ if (raw_token.text !== '') {
2224
+
2225
+ var text = raw_token.text,
2226
+ _beautifier,
2227
+ script_indent_level = 1,
2228
+ pre = '',
2229
+ post = '';
2230
+ if (last_tag_token.custom_beautifier_name === 'javascript' && typeof this._js_beautify === 'function') {
2231
+ _beautifier = this._js_beautify;
2232
+ } else if (last_tag_token.custom_beautifier_name === 'css' && typeof this._css_beautify === 'function') {
2233
+ _beautifier = this._css_beautify;
2234
+ } else if (last_tag_token.custom_beautifier_name === 'html') {
2235
+ _beautifier = function(html_source, options) {
2236
+ var beautifier = new Beautifier(html_source, options, local._js_beautify, local._css_beautify);
2237
+ return beautifier.beautify();
2238
+ };
2239
+ }
2240
+
2241
+ if (this._options.indent_scripts === "keep") {
2242
+ script_indent_level = 0;
2243
+ } else if (this._options.indent_scripts === "separate") {
2244
+ script_indent_level = -printer.indent_level;
2245
+ }
2246
+
2247
+ var indentation = printer.get_full_indent(script_indent_level);
2248
+
2249
+ // if there is at least one empty line at the end of this text, strip it
2250
+ // we'll be adding one back after the text but before the containing tag.
2251
+ text = text.replace(/\n[ \t]*$/, '');
2252
+
2253
+ // Handle the case where content is wrapped in a comment or cdata.
2254
+ if (last_tag_token.custom_beautifier_name !== 'html' &&
2255
+ text[0] === '<' && text.match(/^(<!--|<!\[CDATA\[)/)) {
2256
+ var matched = /^(<!--[^\n]*|<!\[CDATA\[)(\n?)([ \t\n]*)([\s\S]*)(-->|]]>)$/.exec(text);
2257
+
2258
+ // if we start to wrap but don't finish, print raw
2259
+ if (!matched) {
2260
+ printer.add_raw_token(raw_token);
2261
+ return;
2262
+ }
2263
+
2264
+ pre = indentation + matched[1] + '\n';
2265
+ text = matched[4];
2266
+ if (matched[5]) {
2267
+ post = indentation + matched[5];
2268
+ }
2269
+
2270
+ // if there is at least one empty line at the end of this text, strip it
2271
+ // we'll be adding one back after the text but before the containing tag.
2272
+ text = text.replace(/\n[ \t]*$/, '');
2273
+
2274
+ if (matched[2] || matched[3].indexOf('\n') !== -1) {
2275
+ // if the first line of the non-comment text has spaces
2276
+ // use that as the basis for indenting in null case.
2277
+ matched = matched[3].match(/[ \t]+$/);
2278
+ if (matched) {
2279
+ raw_token.whitespace_before = matched[0];
2280
+ }
2281
+ }
2282
+ }
2283
+
2284
+ if (text) {
2285
+ if (_beautifier) {
2286
+
2287
+ // call the Beautifier if avaliable
2288
+ var Child_options = function() {
2289
+ this.eol = '\n';
2290
+ };
2291
+ Child_options.prototype = this._options.raw_options;
2292
+ var child_options = new Child_options();
2293
+ text = _beautifier(indentation + text, child_options);
2294
+ } else {
2295
+ // simply indent the string otherwise
2296
+ var white = raw_token.whitespace_before;
2297
+ if (white) {
2298
+ text = text.replace(new RegExp('\n(' + white + ')?', 'g'), '\n');
2299
+ }
2300
+
2301
+ text = indentation + text.replace(/\n/g, '\n' + indentation);
2302
+ }
2303
+ }
2304
+
2305
+ if (pre) {
2306
+ if (!text) {
2307
+ text = pre + post;
2308
+ } else {
2309
+ text = pre + text + '\n' + post;
2310
+ }
2311
+ }
2312
+
2313
+ printer.print_newline(false);
2314
+ if (text) {
2315
+ raw_token.text = text;
2316
+ raw_token.whitespace_before = '';
2317
+ raw_token.newlines = 0;
2318
+ printer.add_raw_token(raw_token);
2319
+ printer.print_newline(true);
2320
+ }
2321
+ }
2322
+ };
2323
+
2324
+ Beautifier.prototype._handle_tag_open = function(printer, raw_token, last_tag_token, last_token, tokens) {
2325
+ var parser_token = this._get_tag_open_token(raw_token);
2326
+
2327
+ if ((last_tag_token.is_unformatted || last_tag_token.is_content_unformatted) &&
2328
+ !last_tag_token.is_empty_element &&
2329
+ raw_token.type === TOKEN.TAG_OPEN && !parser_token.is_start_tag) {
2330
+ // End element tags for unformatted or content_unformatted elements
2331
+ // are printed raw to keep any newlines inside them exactly the same.
2332
+ printer.add_raw_token(raw_token);
2333
+ parser_token.start_tag_token = this._tag_stack.try_pop(parser_token.tag_name);
2334
+ } else {
2335
+ printer.traverse_whitespace(raw_token);
2336
+ this._set_tag_position(printer, raw_token, parser_token, last_tag_token, last_token);
2337
+ if (!parser_token.is_inline_element) {
2338
+ printer.set_wrap_point();
2339
+ }
2340
+ printer.print_token(raw_token);
2341
+ }
2342
+
2343
+ // count the number of attributes
2344
+ if (parser_token.is_start_tag && this._is_wrap_attributes_force) {
2345
+ var peek_index = 0;
2346
+ var peek_token;
2347
+ do {
2348
+ peek_token = tokens.peek(peek_index);
2349
+ if (peek_token.type === TOKEN.ATTRIBUTE) {
2350
+ parser_token.attr_count += 1;
2351
+ }
2352
+ peek_index += 1;
2353
+ } while (peek_token.type !== TOKEN.EOF && peek_token.type !== TOKEN.TAG_CLOSE);
2354
+ }
2355
+
2356
+ //indent attributes an auto, forced, aligned or forced-align line-wrap
2357
+ if (this._is_wrap_attributes_force_aligned || this._is_wrap_attributes_aligned_multiple || this._is_wrap_attributes_preserve_aligned) {
2358
+ parser_token.alignment_size = raw_token.text.length + 1;
2359
+ }
2360
+
2361
+ if (!parser_token.tag_complete && !parser_token.is_unformatted) {
2362
+ printer.alignment_size = parser_token.alignment_size;
2363
+ }
2364
+
2365
+ return parser_token;
2366
+ };
2367
+
2368
+ var TagOpenParserToken = function(parent, raw_token) {
2369
+ this.parent = parent || null;
2370
+ this.text = '';
2371
+ this.type = 'TK_TAG_OPEN';
2372
+ this.tag_name = '';
2373
+ this.is_inline_element = false;
2374
+ this.is_unformatted = false;
2375
+ this.is_content_unformatted = false;
2376
+ this.is_empty_element = false;
2377
+ this.is_start_tag = false;
2378
+ this.is_end_tag = false;
2379
+ this.indent_content = false;
2380
+ this.multiline_content = false;
2381
+ this.custom_beautifier_name = null;
2382
+ this.start_tag_token = null;
2383
+ this.attr_count = 0;
2384
+ this.has_wrapped_attrs = false;
2385
+ this.alignment_size = 0;
2386
+ this.tag_complete = false;
2387
+ this.tag_start_char = '';
2388
+ this.tag_check = '';
2389
+
2390
+ if (!raw_token) {
2391
+ this.tag_complete = true;
2392
+ } else {
2393
+ var tag_check_match;
2394
+
2395
+ this.tag_start_char = raw_token.text[0];
2396
+ this.text = raw_token.text;
2397
+
2398
+ if (this.tag_start_char === '<') {
2399
+ tag_check_match = raw_token.text.match(/^<([^\s>]*)/);
2400
+ this.tag_check = tag_check_match ? tag_check_match[1] : '';
2401
+ } else {
2402
+ tag_check_match = raw_token.text.match(/^{{~?(?:[\^]|#\*?)?([^\s}]+)/);
2403
+ this.tag_check = tag_check_match ? tag_check_match[1] : '';
2404
+
2405
+ // handle "{{#> myPartial}}" or "{{~#> myPartial}}"
2406
+ if ((raw_token.text.startsWith('{{#>') || raw_token.text.startsWith('{{~#>')) && this.tag_check[0] === '>') {
2407
+ if (this.tag_check === '>' && raw_token.next !== null) {
2408
+ this.tag_check = raw_token.next.text.split(' ')[0];
2409
+ } else {
2410
+ this.tag_check = raw_token.text.split('>')[1];
2411
+ }
2412
+ }
2413
+ }
2414
+
2415
+ this.tag_check = this.tag_check.toLowerCase();
2416
+
2417
+ if (raw_token.type === TOKEN.COMMENT) {
2418
+ this.tag_complete = true;
2419
+ }
2420
+
2421
+ this.is_start_tag = this.tag_check.charAt(0) !== '/';
2422
+ this.tag_name = !this.is_start_tag ? this.tag_check.substr(1) : this.tag_check;
2423
+ this.is_end_tag = !this.is_start_tag ||
2424
+ (raw_token.closed && raw_token.closed.text === '/>');
2425
+
2426
+ // if whitespace handler ~ included (i.e. {{~#if true}}), handlebars tags start at pos 3 not pos 2
2427
+ var handlebar_starts = 2;
2428
+ if (this.tag_start_char === '{' && this.text.length >= 3) {
2429
+ if (this.text.charAt(2) === '~') {
2430
+ handlebar_starts = 3;
2431
+ }
2432
+ }
2433
+
2434
+ // handlebars tags that don't start with # or ^ are single_tags, and so also start and end.
2435
+ this.is_end_tag = this.is_end_tag ||
2436
+ (this.tag_start_char === '{' && (this.text.length < 3 || (/[^#\^]/.test(this.text.charAt(handlebar_starts)))));
2437
+ }
2438
+ };
2439
+
2440
+ Beautifier.prototype._get_tag_open_token = function(raw_token) { //function to get a full tag and parse its type
2441
+ var parser_token = new TagOpenParserToken(this._tag_stack.get_parser_token(), raw_token);
2442
+
2443
+ parser_token.alignment_size = this._options.wrap_attributes_indent_size;
2444
+
2445
+ parser_token.is_end_tag = parser_token.is_end_tag ||
2446
+ in_array(parser_token.tag_check, this._options.void_elements);
2447
+
2448
+ parser_token.is_empty_element = parser_token.tag_complete ||
2449
+ (parser_token.is_start_tag && parser_token.is_end_tag);
2450
+
2451
+ parser_token.is_unformatted = !parser_token.tag_complete && in_array(parser_token.tag_check, this._options.unformatted);
2452
+ parser_token.is_content_unformatted = !parser_token.is_empty_element && in_array(parser_token.tag_check, this._options.content_unformatted);
2453
+ parser_token.is_inline_element = in_array(parser_token.tag_name, this._options.inline) || (this._options.inline_custom_elements && parser_token.tag_name.includes("-")) || parser_token.tag_start_char === '{';
2454
+
2455
+ return parser_token;
2456
+ };
2457
+
2458
+ Beautifier.prototype._set_tag_position = function(printer, raw_token, parser_token, last_tag_token, last_token) {
2459
+
2460
+ if (!parser_token.is_empty_element) {
2461
+ if (parser_token.is_end_tag) { //this tag is a double tag so check for tag-ending
2462
+ parser_token.start_tag_token = this._tag_stack.try_pop(parser_token.tag_name); //remove it and all ancestors
2463
+ } else { // it's a start-tag
2464
+ // check if this tag is starting an element that has optional end element
2465
+ // and do an ending needed
2466
+ if (this._do_optional_end_element(parser_token)) {
2467
+ if (!parser_token.is_inline_element) {
2468
+ printer.print_newline(false);
2469
+ }
2470
+ }
2471
+
2472
+ this._tag_stack.record_tag(parser_token); //push it on the tag stack
2473
+
2474
+ if ((parser_token.tag_name === 'script' || parser_token.tag_name === 'style') &&
2475
+ !(parser_token.is_unformatted || parser_token.is_content_unformatted)) {
2476
+ parser_token.custom_beautifier_name = get_custom_beautifier_name(parser_token.tag_check, raw_token);
2477
+ }
2478
+ }
2479
+ }
2480
+
2481
+ if (in_array(parser_token.tag_check, this._options.extra_liners)) { //check if this double needs an extra line
2482
+ printer.print_newline(false);
2483
+ if (!printer._output.just_added_blankline()) {
2484
+ printer.print_newline(true);
2485
+ }
2486
+ }
2487
+
2488
+ if (parser_token.is_empty_element) { //if this tag name is a single tag type (either in the list or has a closing /)
2489
+
2490
+ // if you hit an else case, reset the indent level if you are inside an:
2491
+ // 'if', 'unless', or 'each' block.
2492
+ if (parser_token.tag_start_char === '{' && parser_token.tag_check === 'else') {
2493
+ this._tag_stack.indent_to_tag(['if', 'unless', 'each']);
2494
+ parser_token.indent_content = true;
2495
+ // Don't add a newline if opening {{#if}} tag is on the current line
2496
+ var foundIfOnCurrentLine = printer.current_line_has_match(/{{#if/);
2497
+ if (!foundIfOnCurrentLine) {
2498
+ printer.print_newline(false);
2499
+ }
2500
+ }
2501
+
2502
+ // Don't add a newline before elements that should remain where they are.
2503
+ if (parser_token.tag_name === '!--' && last_token.type === TOKEN.TAG_CLOSE &&
2504
+ last_tag_token.is_end_tag && parser_token.text.indexOf('\n') === -1) ; else {
2505
+ if (!(parser_token.is_inline_element || parser_token.is_unformatted)) {
2506
+ printer.print_newline(false);
2507
+ }
2508
+ this._calcluate_parent_multiline(printer, parser_token);
2509
+ }
2510
+ } else if (parser_token.is_end_tag) { //this tag is a double tag so check for tag-ending
2511
+ var do_end_expand = false;
2512
+
2513
+ // deciding whether a block is multiline should not be this hard
2514
+ do_end_expand = parser_token.start_tag_token && parser_token.start_tag_token.multiline_content;
2515
+ do_end_expand = do_end_expand || (!parser_token.is_inline_element &&
2516
+ !(last_tag_token.is_inline_element || last_tag_token.is_unformatted) &&
2517
+ !(last_token.type === TOKEN.TAG_CLOSE && parser_token.start_tag_token === last_tag_token) &&
2518
+ last_token.type !== 'TK_CONTENT'
2519
+ );
2520
+
2521
+ if (parser_token.is_content_unformatted || parser_token.is_unformatted) {
2522
+ do_end_expand = false;
2523
+ }
2524
+
2525
+ if (do_end_expand) {
2526
+ printer.print_newline(false);
2527
+ }
2528
+ } else { // it's a start-tag
2529
+ parser_token.indent_content = !parser_token.custom_beautifier_name;
2530
+
2531
+ if (parser_token.tag_start_char === '<') {
2532
+ if (parser_token.tag_name === 'html') {
2533
+ parser_token.indent_content = this._options.indent_inner_html;
2534
+ } else if (parser_token.tag_name === 'head') {
2535
+ parser_token.indent_content = this._options.indent_head_inner_html;
2536
+ } else if (parser_token.tag_name === 'body') {
2537
+ parser_token.indent_content = this._options.indent_body_inner_html;
2538
+ }
2539
+ }
2540
+
2541
+ if (!(parser_token.is_inline_element || parser_token.is_unformatted) &&
2542
+ (last_token.type !== 'TK_CONTENT' || parser_token.is_content_unformatted)) {
2543
+ printer.print_newline(false);
2544
+ }
2545
+
2546
+ this._calcluate_parent_multiline(printer, parser_token);
2547
+ }
2548
+ };
2549
+
2550
+ Beautifier.prototype._calcluate_parent_multiline = function(printer, parser_token) {
2551
+ if (parser_token.parent && printer._output.just_added_newline() &&
2552
+ !((parser_token.is_inline_element || parser_token.is_unformatted) && parser_token.parent.is_inline_element)) {
2553
+ parser_token.parent.multiline_content = true;
2554
+ }
2555
+ };
2556
+
2557
+ //To be used for <p> tag special case:
2558
+ var p_closers = ['address', 'article', 'aside', 'blockquote', 'details', 'div', 'dl', 'fieldset', 'figcaption', 'figure', 'footer', 'form', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'header', 'hr', 'main', 'menu', 'nav', 'ol', 'p', 'pre', 'section', 'table', 'ul'];
2559
+ var p_parent_excludes = ['a', 'audio', 'del', 'ins', 'map', 'noscript', 'video'];
2560
+
2561
+ Beautifier.prototype._do_optional_end_element = function(parser_token) {
2562
+ var result = null;
2563
+ // NOTE: cases of "if there is no more content in the parent element"
2564
+ // are handled automatically by the beautifier.
2565
+ // It assumes parent or ancestor close tag closes all children.
2566
+ // https://www.w3.org/TR/html5/syntax.html#optional-tags
2567
+ if (parser_token.is_empty_element || !parser_token.is_start_tag || !parser_token.parent) {
2568
+ return;
2569
+
2570
+ }
2571
+
2572
+ if (parser_token.tag_name === 'body') {
2573
+ // A head element’s end tag may be omitted if the head element is not immediately followed by a space character or a comment.
2574
+ result = result || this._tag_stack.try_pop('head');
2575
+
2576
+ //} else if (parser_token.tag_name === 'body') {
2577
+ // DONE: A body element’s end tag may be omitted if the body element is not immediately followed by a comment.
2578
+
2579
+ } else if (parser_token.tag_name === 'li') {
2580
+ // An li element’s end tag may be omitted if the li element is immediately followed by another li element or if there is no more content in the parent element.
2581
+ result = result || this._tag_stack.try_pop('li', ['ol', 'ul', 'menu']);
2582
+
2583
+ } else if (parser_token.tag_name === 'dd' || parser_token.tag_name === 'dt') {
2584
+ // A dd element’s end tag may be omitted if the dd element is immediately followed by another dd element or a dt element, or if there is no more content in the parent element.
2585
+ // A dt element’s end tag may be omitted if the dt element is immediately followed by another dt element or a dd element.
2586
+ result = result || this._tag_stack.try_pop('dt', ['dl']);
2587
+ result = result || this._tag_stack.try_pop('dd', ['dl']);
2588
+
2589
+
2590
+ } else if (parser_token.parent.tag_name === 'p' && p_closers.indexOf(parser_token.tag_name) !== -1) {
2591
+ // IMPORTANT: this else-if works because p_closers has no overlap with any other element we look for in this method
2592
+ // check for the parent element is an HTML element that is not an <a>, <audio>, <del>, <ins>, <map>, <noscript>, or <video> element, or an autonomous custom element.
2593
+ // To do this right, this needs to be coded as an inclusion of the inverse of the exclusion above.
2594
+ // But to start with (if we ignore "autonomous custom elements") the exclusion would be fine.
2595
+ var p_parent = parser_token.parent.parent;
2596
+ if (!p_parent || p_parent_excludes.indexOf(p_parent.tag_name) === -1) {
2597
+ result = result || this._tag_stack.try_pop('p');
2598
+ }
2599
+ } else if (parser_token.tag_name === 'rp' || parser_token.tag_name === 'rt') {
2600
+ // An rt element’s end tag may be omitted if the rt element is immediately followed by an rt or rp element, or if there is no more content in the parent element.
2601
+ // An rp element’s end tag may be omitted if the rp element is immediately followed by an rt or rp element, or if there is no more content in the parent element.
2602
+ result = result || this._tag_stack.try_pop('rt', ['ruby', 'rtc']);
2603
+ result = result || this._tag_stack.try_pop('rp', ['ruby', 'rtc']);
2604
+
2605
+ } else if (parser_token.tag_name === 'optgroup') {
2606
+ // An optgroup element’s end tag may be omitted if the optgroup element is immediately followed by another optgroup element, or if there is no more content in the parent element.
2607
+ // An option element’s end tag may be omitted if the option element is immediately followed by another option element, or if it is immediately followed by an optgroup element, or if there is no more content in the parent element.
2608
+ result = result || this._tag_stack.try_pop('optgroup', ['select']);
2609
+ //result = result || this._tag_stack.try_pop('option', ['select']);
2610
+
2611
+ } else if (parser_token.tag_name === 'option') {
2612
+ // An option element’s end tag may be omitted if the option element is immediately followed by another option element, or if it is immediately followed by an optgroup element, or if there is no more content in the parent element.
2613
+ result = result || this._tag_stack.try_pop('option', ['select', 'datalist', 'optgroup']);
2614
+
2615
+ } else if (parser_token.tag_name === 'colgroup') {
2616
+ // DONE: A colgroup element’s end tag may be omitted if the colgroup element is not immediately followed by a space character or a comment.
2617
+ // A caption element's end tag may be ommitted if a colgroup, thead, tfoot, tbody, or tr element is started.
2618
+ result = result || this._tag_stack.try_pop('caption', ['table']);
2619
+
2620
+ } else if (parser_token.tag_name === 'thead') {
2621
+ // A colgroup element's end tag may be ommitted if a thead, tfoot, tbody, or tr element is started.
2622
+ // A caption element's end tag may be ommitted if a colgroup, thead, tfoot, tbody, or tr element is started.
2623
+ result = result || this._tag_stack.try_pop('caption', ['table']);
2624
+ result = result || this._tag_stack.try_pop('colgroup', ['table']);
2625
+
2626
+ //} else if (parser_token.tag_name === 'caption') {
2627
+ // DONE: A caption element’s end tag may be omitted if the caption element is not immediately followed by a space character or a comment.
2628
+
2629
+ } else if (parser_token.tag_name === 'tbody' || parser_token.tag_name === 'tfoot') {
2630
+ // A thead element’s end tag may be omitted if the thead element is immediately followed by a tbody or tfoot element.
2631
+ // A tbody element’s end tag may be omitted if the tbody element is immediately followed by a tbody or tfoot element, or if there is no more content in the parent element.
2632
+ // A colgroup element's end tag may be ommitted if a thead, tfoot, tbody, or tr element is started.
2633
+ // A caption element's end tag may be ommitted if a colgroup, thead, tfoot, tbody, or tr element is started.
2634
+ result = result || this._tag_stack.try_pop('caption', ['table']);
2635
+ result = result || this._tag_stack.try_pop('colgroup', ['table']);
2636
+ result = result || this._tag_stack.try_pop('thead', ['table']);
2637
+ result = result || this._tag_stack.try_pop('tbody', ['table']);
2638
+
2639
+ //} else if (parser_token.tag_name === 'tfoot') {
2640
+ // DONE: A tfoot element’s end tag may be omitted if there is no more content in the parent element.
2641
+
2642
+ } else if (parser_token.tag_name === 'tr') {
2643
+ // A tr element’s end tag may be omitted if the tr element is immediately followed by another tr element, or if there is no more content in the parent element.
2644
+ // A colgroup element's end tag may be ommitted if a thead, tfoot, tbody, or tr element is started.
2645
+ // A caption element's end tag may be ommitted if a colgroup, thead, tfoot, tbody, or tr element is started.
2646
+ result = result || this._tag_stack.try_pop('caption', ['table']);
2647
+ result = result || this._tag_stack.try_pop('colgroup', ['table']);
2648
+ result = result || this._tag_stack.try_pop('tr', ['table', 'thead', 'tbody', 'tfoot']);
2649
+
2650
+ } else if (parser_token.tag_name === 'th' || parser_token.tag_name === 'td') {
2651
+ // A td element’s end tag may be omitted if the td element is immediately followed by a td or th element, or if there is no more content in the parent element.
2652
+ // A th element’s end tag may be omitted if the th element is immediately followed by a td or th element, or if there is no more content in the parent element.
2653
+ result = result || this._tag_stack.try_pop('td', ['table', 'thead', 'tbody', 'tfoot', 'tr']);
2654
+ result = result || this._tag_stack.try_pop('th', ['table', 'thead', 'tbody', 'tfoot', 'tr']);
2655
+ }
2656
+
2657
+ // Start element omission not handled currently
2658
+ // A head element’s start tag may be omitted if the element is empty, or if the first thing inside the head element is an element.
2659
+ // A tbody element’s start tag may be omitted if the first thing inside the tbody element is a tr element, and if the element is not immediately preceded by a tbody, thead, or tfoot element whose end tag has been omitted. (It can’t be omitted if the element is empty.)
2660
+ // A colgroup element’s start tag may be omitted if the first thing inside the colgroup element is a col element, and if the element is not immediately preceded by another colgroup element whose end tag has been omitted. (It can’t be omitted if the element is empty.)
2661
+
2662
+ // Fix up the parent of the parser token
2663
+ parser_token.parent = this._tag_stack.get_parser_token();
2664
+
2665
+ return result;
2666
+ };
2667
+
2668
+ module.exports.Beautifier = Beautifier;
2669
+
2670
+
2671
+ /***/ }),
2672
+ /* 20 */
2673
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2674
+
2675
+ /*jshint node:true */
2676
+ /*
2677
+
2678
+ The MIT License (MIT)
2679
+
2680
+ Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors.
2681
+
2682
+ Permission is hereby granted, free of charge, to any person
2683
+ obtaining a copy of this software and associated documentation files
2684
+ (the "Software"), to deal in the Software without restriction,
2685
+ including without limitation the rights to use, copy, modify, merge,
2686
+ publish, distribute, sublicense, and/or sell copies of the Software,
2687
+ and to permit persons to whom the Software is furnished to do so,
2688
+ subject to the following conditions:
2689
+
2690
+ The above copyright notice and this permission notice shall be
2691
+ included in all copies or substantial portions of the Software.
2692
+
2693
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2694
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2695
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2696
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
2697
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
2698
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2699
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2700
+ SOFTWARE.
2701
+ */
2702
+
2703
+
2704
+
2705
+ var BaseOptions = (__webpack_require__(6).Options);
2706
+
2707
+ function Options(options) {
2708
+ BaseOptions.call(this, options, 'html');
2709
+ if (this.templating.length === 1 && this.templating[0] === 'auto') {
2710
+ this.templating = ['django', 'erb', 'handlebars', 'php'];
2711
+ }
2712
+
2713
+ this.indent_inner_html = this._get_boolean('indent_inner_html');
2714
+ this.indent_body_inner_html = this._get_boolean('indent_body_inner_html', true);
2715
+ this.indent_head_inner_html = this._get_boolean('indent_head_inner_html', true);
2716
+
2717
+ this.indent_handlebars = this._get_boolean('indent_handlebars', true);
2718
+ this.wrap_attributes = this._get_selection('wrap_attributes',
2719
+ ['auto', 'force', 'force-aligned', 'force-expand-multiline', 'aligned-multiple', 'preserve', 'preserve-aligned']);
2720
+ this.wrap_attributes_min_attrs = this._get_number('wrap_attributes_min_attrs', 2);
2721
+ this.wrap_attributes_indent_size = this._get_number('wrap_attributes_indent_size', this.indent_size);
2722
+ this.extra_liners = this._get_array('extra_liners', ['head', 'body', '/html']);
2723
+
2724
+ // Block vs inline elements
2725
+ // https://developer.mozilla.org/en-US/docs/Web/HTML/Block-level_elements
2726
+ // https://developer.mozilla.org/en-US/docs/Web/HTML/Inline_elements
2727
+ // https://www.w3.org/TR/html5/dom.html#phrasing-content
2728
+ this.inline = this._get_array('inline', [
2729
+ 'a', 'abbr', 'area', 'audio', 'b', 'bdi', 'bdo', 'br', 'button', 'canvas', 'cite',
2730
+ 'code', 'data', 'datalist', 'del', 'dfn', 'em', 'embed', 'i', 'iframe', 'img',
2731
+ 'input', 'ins', 'kbd', 'keygen', 'label', 'map', 'mark', 'math', 'meter', 'noscript',
2732
+ 'object', 'output', 'progress', 'q', 'ruby', 's', 'samp', /* 'script', */ 'select', 'small',
2733
+ 'span', 'strong', 'sub', 'sup', 'svg', 'template', 'textarea', 'time', 'u', 'var',
2734
+ 'video', 'wbr', 'text',
2735
+ // obsolete inline tags
2736
+ 'acronym', 'big', 'strike', 'tt'
2737
+ ]);
2738
+ this.inline_custom_elements = this._get_boolean('inline_custom_elements', true);
2739
+ this.void_elements = this._get_array('void_elements', [
2740
+ // HTLM void elements - aka self-closing tags - aka singletons
2741
+ // https://www.w3.org/html/wg/drafts/html/master/syntax.html#void-elements
2742
+ 'area', 'base', 'br', 'col', 'embed', 'hr', 'img', 'input', 'keygen',
2743
+ 'link', 'menuitem', 'meta', 'param', 'source', 'track', 'wbr',
2744
+ // NOTE: Optional tags are too complex for a simple list
2745
+ // they are hard coded in _do_optional_end_element
2746
+
2747
+ // Doctype and xml elements
2748
+ '!doctype', '?xml',
2749
+
2750
+ // obsolete tags
2751
+ // basefont: https://www.computerhope.com/jargon/h/html-basefont-tag.htm
2752
+ // isndex: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/isindex
2753
+ 'basefont', 'isindex'
2754
+ ]);
2755
+ this.unformatted = this._get_array('unformatted', []);
2756
+ this.content_unformatted = this._get_array('content_unformatted', [
2757
+ 'pre', 'textarea'
2758
+ ]);
2759
+ this.unformatted_content_delimiter = this._get_characters('unformatted_content_delimiter');
2760
+ this.indent_scripts = this._get_selection('indent_scripts', ['normal', 'keep', 'separate']);
2761
+
2762
+ }
2763
+ Options.prototype = new BaseOptions();
2764
+
2765
+
2766
+
2767
+ module.exports.Options = Options;
2768
+
2769
+
2770
+ /***/ }),
2771
+ /* 21 */
2772
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2773
+
2774
+ /*jshint node:true */
2775
+ /*
2776
+
2777
+ The MIT License (MIT)
2778
+
2779
+ Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors.
2780
+
2781
+ Permission is hereby granted, free of charge, to any person
2782
+ obtaining a copy of this software and associated documentation files
2783
+ (the "Software"), to deal in the Software without restriction,
2784
+ including without limitation the rights to use, copy, modify, merge,
2785
+ publish, distribute, sublicense, and/or sell copies of the Software,
2786
+ and to permit persons to whom the Software is furnished to do so,
2787
+ subject to the following conditions:
2788
+
2789
+ The above copyright notice and this permission notice shall be
2790
+ included in all copies or substantial portions of the Software.
2791
+
2792
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2793
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2794
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2795
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
2796
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
2797
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2798
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2799
+ SOFTWARE.
2800
+ */
2801
+
2802
+
2803
+
2804
+ var BaseTokenizer = (__webpack_require__(9).Tokenizer);
2805
+ var BASETOKEN = (__webpack_require__(9).TOKEN);
2806
+ var Directives = (__webpack_require__(13).Directives);
2807
+ var TemplatablePattern = (__webpack_require__(14).TemplatablePattern);
2808
+ var Pattern = (__webpack_require__(12).Pattern);
2809
+
2810
+ var TOKEN = {
2811
+ TAG_OPEN: 'TK_TAG_OPEN',
2812
+ TAG_CLOSE: 'TK_TAG_CLOSE',
2813
+ CONTROL_FLOW_OPEN: 'TK_CONTROL_FLOW_OPEN',
2814
+ CONTROL_FLOW_CLOSE: 'TK_CONTROL_FLOW_CLOSE',
2815
+ ATTRIBUTE: 'TK_ATTRIBUTE',
2816
+ EQUALS: 'TK_EQUALS',
2817
+ VALUE: 'TK_VALUE',
2818
+ COMMENT: 'TK_COMMENT',
2819
+ TEXT: 'TK_TEXT',
2820
+ UNKNOWN: 'TK_UNKNOWN',
2821
+ START: BASETOKEN.START,
2822
+ RAW: BASETOKEN.RAW,
2823
+ EOF: BASETOKEN.EOF
2824
+ };
2825
+
2826
+ var directives_core = new Directives(/<\!--/, /-->/);
2827
+
2828
+ var Tokenizer = function(input_string, options) {
2829
+ BaseTokenizer.call(this, input_string, options);
2830
+ this._current_tag_name = '';
2831
+
2832
+ // Words end at whitespace or when a tag starts
2833
+ // if we are indenting handlebars, they are considered tags
2834
+ var templatable_reader = new TemplatablePattern(this._input).read_options(this._options);
2835
+ var pattern_reader = new Pattern(this._input);
2836
+
2837
+ this.__patterns = {
2838
+ word: templatable_reader.until(/[\n\r\t <]/),
2839
+ word_control_flow_close_excluded: templatable_reader.until(/[\n\r\t <}]/),
2840
+ single_quote: templatable_reader.until_after(/'/),
2841
+ double_quote: templatable_reader.until_after(/"/),
2842
+ attribute: templatable_reader.until(/[\n\r\t =>]|\/>/),
2843
+ element_name: templatable_reader.until(/[\n\r\t >\/]/),
2844
+
2845
+ angular_control_flow_start: pattern_reader.matching(/\@[a-zA-Z]+[^({]*[({]/),
2846
+ handlebars_comment: pattern_reader.starting_with(/{{!--/).until_after(/--}}/),
2847
+ handlebars: pattern_reader.starting_with(/{{/).until_after(/}}/),
2848
+ handlebars_open: pattern_reader.until(/[\n\r\t }]/),
2849
+ handlebars_raw_close: pattern_reader.until(/}}/),
2850
+ comment: pattern_reader.starting_with(/<!--/).until_after(/-->/),
2851
+ cdata: pattern_reader.starting_with(/<!\[CDATA\[/).until_after(/]]>/),
2852
+ // https://en.wikipedia.org/wiki/Conditional_comment
2853
+ conditional_comment: pattern_reader.starting_with(/<!\[/).until_after(/]>/),
2854
+ processing: pattern_reader.starting_with(/<\?/).until_after(/\?>/)
2855
+ };
2856
+
2857
+ if (this._options.indent_handlebars) {
2858
+ this.__patterns.word = this.__patterns.word.exclude('handlebars');
2859
+ this.__patterns.word_control_flow_close_excluded = this.__patterns.word_control_flow_close_excluded.exclude('handlebars');
2860
+ }
2861
+
2862
+ this._unformatted_content_delimiter = null;
2863
+
2864
+ if (this._options.unformatted_content_delimiter) {
2865
+ var literal_regexp = this._input.get_literal_regexp(this._options.unformatted_content_delimiter);
2866
+ this.__patterns.unformatted_content_delimiter =
2867
+ pattern_reader.matching(literal_regexp)
2868
+ .until_after(literal_regexp);
2869
+ }
2870
+ };
2871
+ Tokenizer.prototype = new BaseTokenizer();
2872
+
2873
+ Tokenizer.prototype._is_comment = function(current_token) { // jshint unused:false
2874
+ return false; //current_token.type === TOKEN.COMMENT || current_token.type === TOKEN.UNKNOWN;
2875
+ };
2876
+
2877
+ Tokenizer.prototype._is_opening = function(current_token) {
2878
+ return current_token.type === TOKEN.TAG_OPEN || current_token.type === TOKEN.CONTROL_FLOW_OPEN;
2879
+ };
2880
+
2881
+ Tokenizer.prototype._is_closing = function(current_token, open_token) {
2882
+ return (current_token.type === TOKEN.TAG_CLOSE &&
2883
+ (open_token && (
2884
+ ((current_token.text === '>' || current_token.text === '/>') && open_token.text[0] === '<') ||
2885
+ (current_token.text === '}}' && open_token.text[0] === '{' && open_token.text[1] === '{')))
2886
+ ) || (current_token.type === TOKEN.CONTROL_FLOW_CLOSE &&
2887
+ (current_token.text === '}' && open_token.text.endsWith('{')));
2888
+ };
2889
+
2890
+ Tokenizer.prototype._reset = function() {
2891
+ this._current_tag_name = '';
2892
+ };
2893
+
2894
+ Tokenizer.prototype._get_next_token = function(previous_token, open_token) { // jshint unused:false
2895
+ var token = null;
2896
+ this._readWhitespace();
2897
+ var c = this._input.peek();
2898
+
2899
+ if (c === null) {
2900
+ return this._create_token(TOKEN.EOF, '');
2901
+ }
2902
+
2903
+ token = token || this._read_open_handlebars(c, open_token);
2904
+ token = token || this._read_attribute(c, previous_token, open_token);
2905
+ token = token || this._read_close(c, open_token);
2906
+ token = token || this._read_control_flows(c, open_token);
2907
+ token = token || this._read_raw_content(c, previous_token, open_token);
2908
+ token = token || this._read_content_word(c, open_token);
2909
+ token = token || this._read_comment_or_cdata(c);
2910
+ token = token || this._read_processing(c);
2911
+ token = token || this._read_open(c, open_token);
2912
+ token = token || this._create_token(TOKEN.UNKNOWN, this._input.next());
2913
+
2914
+ return token;
2915
+ };
2916
+
2917
+ Tokenizer.prototype._read_comment_or_cdata = function(c) { // jshint unused:false
2918
+ var token = null;
2919
+ var resulting_string = null;
2920
+ var directives = null;
2921
+
2922
+ if (c === '<') {
2923
+ var peek1 = this._input.peek(1);
2924
+ // We treat all comments as literals, even more than preformatted tags
2925
+ // we only look for the appropriate closing marker
2926
+ if (peek1 === '!') {
2927
+ resulting_string = this.__patterns.comment.read();
2928
+
2929
+ // only process directive on html comments
2930
+ if (resulting_string) {
2931
+ directives = directives_core.get_directives(resulting_string);
2932
+ if (directives && directives.ignore === 'start') {
2933
+ resulting_string += directives_core.readIgnored(this._input);
2934
+ }
2935
+ } else {
2936
+ resulting_string = this.__patterns.cdata.read();
2937
+ }
2938
+ }
2939
+
2940
+ if (resulting_string) {
2941
+ token = this._create_token(TOKEN.COMMENT, resulting_string);
2942
+ token.directives = directives;
2943
+ }
2944
+ }
2945
+
2946
+ return token;
2947
+ };
2948
+
2949
+ Tokenizer.prototype._read_processing = function(c) { // jshint unused:false
2950
+ var token = null;
2951
+ var resulting_string = null;
2952
+ var directives = null;
2953
+
2954
+ if (c === '<') {
2955
+ var peek1 = this._input.peek(1);
2956
+ if (peek1 === '!' || peek1 === '?') {
2957
+ resulting_string = this.__patterns.conditional_comment.read();
2958
+ resulting_string = resulting_string || this.__patterns.processing.read();
2959
+ }
2960
+
2961
+ if (resulting_string) {
2962
+ token = this._create_token(TOKEN.COMMENT, resulting_string);
2963
+ token.directives = directives;
2964
+ }
2965
+ }
2966
+
2967
+ return token;
2968
+ };
2969
+
2970
+ Tokenizer.prototype._read_open = function(c, open_token) {
2971
+ var resulting_string = null;
2972
+ var token = null;
2973
+ if (!open_token || open_token.type === TOKEN.CONTROL_FLOW_OPEN) {
2974
+ if (c === '<') {
2975
+
2976
+ resulting_string = this._input.next();
2977
+ if (this._input.peek() === '/') {
2978
+ resulting_string += this._input.next();
2979
+ }
2980
+ resulting_string += this.__patterns.element_name.read();
2981
+ token = this._create_token(TOKEN.TAG_OPEN, resulting_string);
2982
+ }
2983
+ }
2984
+ return token;
2985
+ };
2986
+
2987
+ Tokenizer.prototype._read_open_handlebars = function(c, open_token) {
2988
+ var resulting_string = null;
2989
+ var token = null;
2990
+ if (!open_token || open_token.type === TOKEN.CONTROL_FLOW_OPEN) {
2991
+ if (this._options.indent_handlebars && c === '{' && this._input.peek(1) === '{') {
2992
+ if (this._input.peek(2) === '!') {
2993
+ resulting_string = this.__patterns.handlebars_comment.read();
2994
+ resulting_string = resulting_string || this.__patterns.handlebars.read();
2995
+ token = this._create_token(TOKEN.COMMENT, resulting_string);
2996
+ } else {
2997
+ resulting_string = this.__patterns.handlebars_open.read();
2998
+ token = this._create_token(TOKEN.TAG_OPEN, resulting_string);
2999
+ }
3000
+ }
3001
+ }
3002
+ return token;
3003
+ };
3004
+
3005
+ Tokenizer.prototype._read_control_flows = function(c, open_token) {
3006
+ var resulting_string = '';
3007
+ var token = null;
3008
+ // Only check for control flows if angular templating is set AND indenting is set
3009
+ if (!this._options.templating.includes('angular') || !this._options.indent_handlebars) {
3010
+ return token;
3011
+ }
3012
+
3013
+ if (c === '@') {
3014
+ resulting_string = this.__patterns.angular_control_flow_start.read();
3015
+ if (resulting_string === '') {
3016
+ return token;
3017
+ }
3018
+
3019
+ var opening_parentheses_count = resulting_string.endsWith('(') ? 1 : 0;
3020
+ var closing_parentheses_count = 0;
3021
+ // The opening brace of the control flow is where the number of opening and closing parentheses equal
3022
+ // e.g. @if({value: true} !== null) {
3023
+ while (!(resulting_string.endsWith('{') && opening_parentheses_count === closing_parentheses_count)) {
3024
+ var next_char = this._input.next();
3025
+ if (next_char === null) {
3026
+ break;
3027
+ } else if (next_char === '(') {
3028
+ opening_parentheses_count++;
3029
+ } else if (next_char === ')') {
3030
+ closing_parentheses_count++;
3031
+ }
3032
+ resulting_string += next_char;
3033
+ }
3034
+ token = this._create_token(TOKEN.CONTROL_FLOW_OPEN, resulting_string);
3035
+ } else if (c === '}' && open_token && open_token.type === TOKEN.CONTROL_FLOW_OPEN) {
3036
+ resulting_string = this._input.next();
3037
+ token = this._create_token(TOKEN.CONTROL_FLOW_CLOSE, resulting_string);
3038
+ }
3039
+ return token;
3040
+ };
3041
+
3042
+
3043
+ Tokenizer.prototype._read_close = function(c, open_token) {
3044
+ var resulting_string = null;
3045
+ var token = null;
3046
+ if (open_token && open_token.type === TOKEN.TAG_OPEN) {
3047
+ if (open_token.text[0] === '<' && (c === '>' || (c === '/' && this._input.peek(1) === '>'))) {
3048
+ resulting_string = this._input.next();
3049
+ if (c === '/') { // for close tag "/>"
3050
+ resulting_string += this._input.next();
3051
+ }
3052
+ token = this._create_token(TOKEN.TAG_CLOSE, resulting_string);
3053
+ } else if (open_token.text[0] === '{' && c === '}' && this._input.peek(1) === '}') {
3054
+ this._input.next();
3055
+ this._input.next();
3056
+ token = this._create_token(TOKEN.TAG_CLOSE, '}}');
3057
+ }
3058
+ }
3059
+
3060
+ return token;
3061
+ };
3062
+
3063
+ Tokenizer.prototype._read_attribute = function(c, previous_token, open_token) {
3064
+ var token = null;
3065
+ var resulting_string = '';
3066
+ if (open_token && open_token.text[0] === '<') {
3067
+
3068
+ if (c === '=') {
3069
+ token = this._create_token(TOKEN.EQUALS, this._input.next());
3070
+ } else if (c === '"' || c === "'") {
3071
+ var content = this._input.next();
3072
+ if (c === '"') {
3073
+ content += this.__patterns.double_quote.read();
3074
+ } else {
3075
+ content += this.__patterns.single_quote.read();
3076
+ }
3077
+ token = this._create_token(TOKEN.VALUE, content);
3078
+ } else {
3079
+ resulting_string = this.__patterns.attribute.read();
3080
+
3081
+ if (resulting_string) {
3082
+ if (previous_token.type === TOKEN.EQUALS) {
3083
+ token = this._create_token(TOKEN.VALUE, resulting_string);
3084
+ } else {
3085
+ token = this._create_token(TOKEN.ATTRIBUTE, resulting_string);
3086
+ }
3087
+ }
3088
+ }
3089
+ }
3090
+ return token;
3091
+ };
3092
+
3093
+ Tokenizer.prototype._is_content_unformatted = function(tag_name) {
3094
+ // void_elements have no content and so cannot have unformatted content
3095
+ // script and style tags should always be read as unformatted content
3096
+ // finally content_unformatted and unformatted element contents are unformatted
3097
+ return this._options.void_elements.indexOf(tag_name) === -1 &&
3098
+ (this._options.content_unformatted.indexOf(tag_name) !== -1 ||
3099
+ this._options.unformatted.indexOf(tag_name) !== -1);
3100
+ };
3101
+
3102
+
3103
+ Tokenizer.prototype._read_raw_content = function(c, previous_token, open_token) { // jshint unused:false
3104
+ var resulting_string = '';
3105
+ if (open_token && open_token.text[0] === '{') {
3106
+ resulting_string = this.__patterns.handlebars_raw_close.read();
3107
+ } else if (previous_token.type === TOKEN.TAG_CLOSE &&
3108
+ previous_token.opened.text[0] === '<' && previous_token.text[0] !== '/') {
3109
+ // ^^ empty tag has no content
3110
+ var tag_name = previous_token.opened.text.substr(1).toLowerCase();
3111
+ if (tag_name === 'script' || tag_name === 'style') {
3112
+ // Script and style tags are allowed to have comments wrapping their content
3113
+ // or just have regular content.
3114
+ var token = this._read_comment_or_cdata(c);
3115
+ if (token) {
3116
+ token.type = TOKEN.TEXT;
3117
+ return token;
3118
+ }
3119
+ resulting_string = this._input.readUntil(new RegExp('</' + tag_name + '[\\n\\r\\t ]*?>', 'ig'));
3120
+ } else if (this._is_content_unformatted(tag_name)) {
3121
+
3122
+ resulting_string = this._input.readUntil(new RegExp('</' + tag_name + '[\\n\\r\\t ]*?>', 'ig'));
3123
+ }
3124
+ }
3125
+
3126
+ if (resulting_string) {
3127
+ return this._create_token(TOKEN.TEXT, resulting_string);
3128
+ }
3129
+
3130
+ return null;
3131
+ };
3132
+
3133
+ Tokenizer.prototype._read_content_word = function(c, open_token) {
3134
+ var resulting_string = '';
3135
+ if (this._options.unformatted_content_delimiter) {
3136
+ if (c === this._options.unformatted_content_delimiter[0]) {
3137
+ resulting_string = this.__patterns.unformatted_content_delimiter.read();
3138
+ }
3139
+ }
3140
+
3141
+ if (!resulting_string) {
3142
+ resulting_string = (open_token && open_token.type === TOKEN.CONTROL_FLOW_OPEN) ? this.__patterns.word_control_flow_close_excluded.read() : this.__patterns.word.read();
3143
+ }
3144
+ if (resulting_string) {
3145
+ return this._create_token(TOKEN.TEXT, resulting_string);
3146
+ }
3147
+ };
3148
+
3149
+ module.exports.Tokenizer = Tokenizer;
3150
+ module.exports.TOKEN = TOKEN;
3151
+
3152
+
3153
+ /***/ })
3154
+ /******/ ]);
3155
+ /************************************************************************/
3156
+ /******/ // The module cache
3157
+ /******/ var __webpack_module_cache__ = {};
3158
+ /******/
3159
+ /******/ // The require function
3160
+ /******/ function __webpack_require__(moduleId) {
3161
+ /******/ // Check if module is in cache
3162
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
3163
+ /******/ if (cachedModule !== undefined) {
3164
+ /******/ return cachedModule.exports;
3165
+ /******/ }
3166
+ /******/ // Create a new module (and put it into the cache)
3167
+ /******/ var module = __webpack_module_cache__[moduleId] = {
3168
+ /******/ // no module.id needed
3169
+ /******/ // no module.loaded needed
3170
+ /******/ exports: {}
3171
+ /******/ };
3172
+ /******/
3173
+ /******/ // Execute the module function
3174
+ /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
3175
+ /******/
3176
+ /******/ // Return the exports of the module
3177
+ /******/ return module.exports;
3178
+ /******/ }
3179
+ /******/
3180
+ /************************************************************************/
3181
+ /******/
3182
+ /******/ // startup
3183
+ /******/ // Load entry module and return exports
3184
+ /******/ // This entry module is referenced by other modules so it can't be inlined
3185
+ /******/ var __webpack_exports__ = __webpack_require__(18);
3186
+ /******/ legacy_beautify_html = __webpack_exports__;
3187
+ /******/
3188
+ /******/ })()
3189
+ ;
3190
+
3191
+ function html_beautify(html_source, options) {
3192
+ return legacy_beautify_html(html_source, options, js_beautify, css_beautify);
3193
+ }
3194
+
3195
+ export { html_beautify };