nuxt-ignis 0.5.1 → 0.5.3

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 (1475) hide show
  1. package/.data/content/contents.sqlite +0 -0
  2. package/.env +3 -2
  3. package/.nuxt/app.config.mjs +25 -1
  4. package/.nuxt/components.d.ts +480 -480
  5. package/.nuxt/content/components.ts +185 -208
  6. package/.nuxt/dev/index.mjs +660 -588
  7. package/.nuxt/dev/index.mjs.map +1 -1
  8. package/.nuxt/dist/server/client.manifest.mjs +1 -1
  9. package/.nuxt/dist/server/client.precomputed.mjs +1 -1
  10. package/.nuxt/eslint-typegen.d.ts +22 -1
  11. package/.nuxt/eslint.config.d.mts +3 -3
  12. package/.nuxt/eslint.config.mjs +10 -10
  13. package/.nuxt/image/providers.d.ts +52 -0
  14. package/.nuxt/imports.d.ts +79 -68
  15. package/.nuxt/manifest/latest.json +1 -1
  16. package/.nuxt/manifest/meta/dev.json +1 -1
  17. package/.nuxt/mdc-highlighter.mjs +4 -3
  18. package/.nuxt/mdc-image-component.mjs +1 -1
  19. package/.nuxt/mdc-imports.mjs +2 -2
  20. package/.nuxt/module/nuxt-robots.d.ts +13 -12
  21. package/.nuxt/module/nuxt-seo-utils.d.ts +10 -10
  22. package/.nuxt/module/nuxt-site-config.d.ts +8 -8
  23. package/.nuxt/module/nuxt-sitemap.d.ts +18 -18
  24. package/.nuxt/nitro.json +5 -5
  25. package/.nuxt/nuxt.d.ts +11 -12
  26. package/.nuxt/nuxt.json +2 -2
  27. package/.nuxt/nuxt.node.d.ts +12 -11
  28. package/.nuxt/nuxt.shared.d.ts +1 -0
  29. package/.nuxt/tsconfig.app.json +234 -241
  30. package/.nuxt/tsconfig.json +237 -244
  31. package/.nuxt/tsconfig.node.json +133 -132
  32. package/.nuxt/tsconfig.server.json +154 -162
  33. package/.nuxt/tsconfig.shared.json +69 -75
  34. package/.nuxt/types/app.config.d.ts +25 -1
  35. package/.nuxt/types/build.d.ts +1 -2
  36. package/.nuxt/types/components.d.ts +480 -480
  37. package/.nuxt/types/i18n-plugin.d.ts +2 -2
  38. package/.nuxt/types/imports.d.ts +395 -362
  39. package/.nuxt/types/modules.d.ts +24 -46
  40. package/.nuxt/types/nitro-imports.d.ts +390 -390
  41. package/.nuxt/types/nitro-nuxt.d.ts +2 -1
  42. package/.nuxt/types/nitro-routes.d.ts +25 -25
  43. package/.nuxt/types/plugins.d.ts +42 -42
  44. package/.nuxt/types/runtime-config.d.ts +56 -2
  45. package/.nuxt/types/ui.d.ts +3 -2
  46. package/.nuxt/ui/auth-form.ts +20 -0
  47. package/.nuxt/ui/badge.ts +1 -1
  48. package/.nuxt/ui/banner.ts +108 -0
  49. package/.nuxt/ui/blog-post.ts +142 -0
  50. package/.nuxt/ui/blog-posts.ts +9 -0
  51. package/.nuxt/ui/button.ts +1 -1
  52. package/.nuxt/ui/calendar.ts +221 -9
  53. package/.nuxt/ui/changelog-version.ts +41 -0
  54. package/.nuxt/ui/changelog-versions.ts +8 -0
  55. package/.nuxt/ui/chat-message.ts +136 -0
  56. package/.nuxt/ui/chat-messages.ts +14 -0
  57. package/.nuxt/ui/chat-palette.ts +8 -0
  58. package/.nuxt/ui/chat-prompt-submit.ts +5 -0
  59. package/.nuxt/ui/chat-prompt.ts +35 -0
  60. package/.nuxt/ui/checkbox-group.ts +4 -1
  61. package/.nuxt/ui/checkbox.ts +5 -4
  62. package/.nuxt/ui/color-picker.ts +2 -2
  63. package/.nuxt/ui/command-palette.ts +12 -2
  64. package/.nuxt/ui/content/content-navigation.ts +368 -0
  65. package/.nuxt/ui/content/content-search-button.ts +15 -0
  66. package/.nuxt/ui/content/content-search.ts +13 -0
  67. package/.nuxt/ui/content/content-surround.ts +34 -0
  68. package/.nuxt/ui/content/content-toc.ts +155 -0
  69. package/.nuxt/ui/context-menu.ts +3 -1
  70. package/.nuxt/ui/dashboard-group.ts +3 -0
  71. package/.nuxt/ui/dashboard-navbar.ts +21 -0
  72. package/.nuxt/ui/dashboard-panel.ts +17 -0
  73. package/.nuxt/ui/dashboard-resize-handle.ts +3 -0
  74. package/.nuxt/ui/dashboard-search-button.ts +15 -0
  75. package/.nuxt/ui/dashboard-search.ts +13 -0
  76. package/.nuxt/ui/dashboard-sidebar-collapse.ts +9 -0
  77. package/.nuxt/ui/dashboard-sidebar-toggle.ts +9 -0
  78. package/.nuxt/ui/dashboard-sidebar.ts +37 -0
  79. package/.nuxt/ui/dashboard-toolbar.ts +7 -0
  80. package/.nuxt/ui/dropdown-menu.ts +3 -1
  81. package/.nuxt/ui/empty.ts +83 -0
  82. package/.nuxt/ui/error.ts +9 -0
  83. package/.nuxt/ui/footer-columns.ts +28 -0
  84. package/.nuxt/ui/footer.ts +11 -0
  85. package/.nuxt/ui/header.ts +25 -0
  86. package/.nuxt/ui/index.ts +57 -2
  87. package/.nuxt/ui/input-date.ts +343 -0
  88. package/.nuxt/ui/input-menu.ts +13 -3
  89. package/.nuxt/ui/input-number.ts +26 -15
  90. package/.nuxt/ui/input-tags.ts +1 -1
  91. package/.nuxt/ui/input-time.ts +342 -0
  92. package/.nuxt/ui/input.ts +1 -1
  93. package/.nuxt/ui/kbd.ts +1 -1
  94. package/.nuxt/ui/main.ts +3 -0
  95. package/.nuxt/ui/marquee.ts +66 -0
  96. package/.nuxt/ui/modal.ts +36 -5
  97. package/.nuxt/ui/navigation-menu.ts +2 -0
  98. package/.nuxt/ui/page-anchors.ts +30 -0
  99. package/.nuxt/ui/page-aside.ts +10 -0
  100. package/.nuxt/ui/page-body.ts +3 -0
  101. package/.nuxt/ui/page-card.ts +279 -0
  102. package/.nuxt/ui/page-columns.ts +3 -0
  103. package/.nuxt/ui/page-cta.ts +70 -0
  104. package/.nuxt/ui/page-feature.ts +26 -0
  105. package/.nuxt/ui/page-grid.ts +3 -0
  106. package/.nuxt/ui/page-header.ts +18 -0
  107. package/.nuxt/ui/page-hero.ts +44 -0
  108. package/.nuxt/ui/page-links.ts +25 -0
  109. package/.nuxt/ui/page-list.ts +8 -0
  110. package/.nuxt/ui/page-logos.ts +15 -0
  111. package/.nuxt/ui/page-section.ts +84 -0
  112. package/.nuxt/ui/page.ts +32 -0
  113. package/.nuxt/ui/pricing-plan.ts +101 -0
  114. package/.nuxt/ui/pricing-plans.ts +22 -0
  115. package/.nuxt/ui/pricing-table.ts +51 -0
  116. package/.nuxt/ui/prose/a.ts +6 -0
  117. package/.nuxt/ui/prose/accordion-item.ts +3 -0
  118. package/.nuxt/ui/prose/accordion.ts +6 -0
  119. package/.nuxt/ui/prose/badge.ts +3 -0
  120. package/.nuxt/ui/prose/blockquote.ts +3 -0
  121. package/.nuxt/ui/prose/callout.ts +129 -0
  122. package/.nuxt/ui/prose/card-group.ts +3 -0
  123. package/.nuxt/ui/prose/card.ts +119 -0
  124. package/.nuxt/ui/prose/code-collapse.ts +19 -0
  125. package/.nuxt/ui/prose/code-group.ts +13 -0
  126. package/.nuxt/ui/prose/code-icon.ts +66 -0
  127. package/.nuxt/ui/prose/code-preview.ts +14 -0
  128. package/.nuxt/ui/prose/code-tree.ts +28 -0
  129. package/.nuxt/ui/prose/code.ts +27 -0
  130. package/.nuxt/ui/prose/collapsible.ts +12 -0
  131. package/.nuxt/ui/prose/em.ts +3 -0
  132. package/.nuxt/ui/prose/field-group.ts +3 -0
  133. package/.nuxt/ui/prose/field.ts +11 -0
  134. package/.nuxt/ui/prose/h1.ts +6 -0
  135. package/.nuxt/ui/prose/h2.ts +14 -0
  136. package/.nuxt/ui/prose/h3.ts +14 -0
  137. package/.nuxt/ui/prose/h4.ts +6 -0
  138. package/.nuxt/ui/prose/hr.ts +3 -0
  139. package/.nuxt/ui/prose/icon.ts +3 -0
  140. package/.nuxt/ui/prose/img.ts +23 -0
  141. package/.nuxt/ui/prose/index.ts +41 -0
  142. package/.nuxt/ui/prose/kbd.ts +3 -0
  143. package/.nuxt/ui/prose/li.ts +3 -0
  144. package/.nuxt/ui/prose/ol.ts +3 -0
  145. package/.nuxt/ui/prose/p.ts +3 -0
  146. package/.nuxt/ui/prose/pre.ts +17 -0
  147. package/.nuxt/ui/prose/steps.ts +19 -0
  148. package/.nuxt/ui/prose/strong.ts +3 -0
  149. package/.nuxt/ui/prose/table.ts +6 -0
  150. package/.nuxt/ui/prose/tabs-item.ts +3 -0
  151. package/.nuxt/ui/prose/tabs.ts +5 -0
  152. package/.nuxt/ui/prose/tbody.ts +3 -0
  153. package/.nuxt/ui/prose/td.ts +3 -0
  154. package/.nuxt/ui/prose/th.ts +3 -0
  155. package/.nuxt/ui/prose/thead.ts +3 -0
  156. package/.nuxt/ui/prose/tr.ts +3 -0
  157. package/.nuxt/ui/prose/ul.ts +3 -0
  158. package/.nuxt/ui/radio-group.ts +5 -3
  159. package/.nuxt/ui/select-menu.ts +13 -3
  160. package/.nuxt/ui/select.ts +5 -3
  161. package/.nuxt/ui/switch.ts +4 -3
  162. package/.nuxt/ui/table.ts +8 -2
  163. package/.nuxt/ui/textarea.ts +1 -1
  164. package/.nuxt/ui/tree.ts +24 -10
  165. package/.nuxt/ui/user.ts +101 -0
  166. package/.nuxt/ui-image-component.ts +1 -1
  167. package/.nuxt/ui.css +6 -0
  168. package/.output/nitro.json +3 -3
  169. package/.output/public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-4kZc4IwOXqryLeYzsaTvEKd54SPfeeGKPyDAZei18kw.woff +0 -0
  170. package/.output/public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-RvZUU2X45U7WIDI083h9MozPZMSPdvOCkgsORsWvPOw.woff +0 -0
  171. package/.output/public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-mSqNnHyoMtDKNu3z_xDpL0hWMcL0lhabY3Oa0dnS5HM.woff +0 -0
  172. package/.output/public/_ignis-config.json +7 -1
  173. package/.output/public/_nuxt/-OUwOzoZ.js +1 -0
  174. package/.output/public/_nuxt/-z2jk33i.js +1 -0
  175. package/.output/public/_nuxt/3L5yAyVe.js +1 -0
  176. package/.output/public/_nuxt/8nlalpbc.js +1 -0
  177. package/.output/public/_nuxt/As5Zy5cG.js +1 -0
  178. package/.output/public/_nuxt/B-TDuiGE.js +1 -0
  179. package/.output/public/_nuxt/B04mZI32.js +1 -0
  180. package/.output/public/_nuxt/B3zmx-p1.js +1 -0
  181. package/.output/public/_nuxt/B4eQjLRH.js +1 -0
  182. package/.output/public/_nuxt/B6WOJ0Em.js +1 -0
  183. package/.output/public/_nuxt/BB2ULiwb.js +1 -0
  184. package/.output/public/_nuxt/BEvX3xjB.js +1 -0
  185. package/.output/public/_nuxt/BFcGh2xo.js +1 -0
  186. package/.output/public/_nuxt/BFdGKCUO.js +1 -0
  187. package/.output/public/_nuxt/BG-5V6Ik.js +1 -0
  188. package/.output/public/_nuxt/BeRTSVEP.js +1 -0
  189. package/.output/public/_nuxt/Bh-DZrTV.js +1 -0
  190. package/.output/public/_nuxt/BvFz8iHh.js +1 -0
  191. package/.output/public/_nuxt/BwUgVogm.js +1 -0
  192. package/.output/public/_nuxt/C1fHW8CN.js +1 -0
  193. package/.output/public/_nuxt/C1getMtX.js +49 -0
  194. package/.output/public/_nuxt/C4nGy0Yj.js +1 -0
  195. package/.output/public/_nuxt/CExm4AMI.js +1 -0
  196. package/.output/public/_nuxt/CHcd0nHy.js +1 -0
  197. package/.output/public/_nuxt/CTbEZMxa.js +1 -0
  198. package/.output/public/_nuxt/CZ5QNOH8.js +1 -0
  199. package/.output/public/_nuxt/Cna7T5zY.js +1 -0
  200. package/.output/public/_nuxt/CnghUxEk.js +1 -0
  201. package/.output/public/_nuxt/CvJSUdvI.js +1 -0
  202. package/.output/public/_nuxt/CwgBHvd_.js +1 -0
  203. package/.output/public/_nuxt/D1nIr4-J.js +1 -0
  204. package/.output/public/_nuxt/D2atCez-.js +1 -0
  205. package/.output/public/_nuxt/D3WX5Hmk.js +1 -0
  206. package/.output/public/_nuxt/D5duQQkG.js +1 -0
  207. package/.output/public/_nuxt/D9RSHNPZ.js +1 -0
  208. package/.output/public/_nuxt/DB3c8m3K.js +1 -0
  209. package/.output/public/_nuxt/DFP1sKjc.js +1 -0
  210. package/.output/public/_nuxt/DI5_qtj_.js +1 -0
  211. package/.output/public/_nuxt/DKCDh1Eq.js +1 -0
  212. package/.output/public/_nuxt/DN3AlbuD.js +1 -0
  213. package/.output/public/_nuxt/DPDbQA17.js +1 -0
  214. package/.output/public/_nuxt/DSErOj49.js +1 -0
  215. package/.output/public/_nuxt/DXrSmKSt.js +1 -0
  216. package/.output/public/_nuxt/DbZ1CQfQ.js +1 -0
  217. package/.output/public/_nuxt/DgCebJqk.js +1 -0
  218. package/.output/public/_nuxt/DhhwMwQM.js +1 -0
  219. package/.output/public/_nuxt/Djhwz52y.js +1 -0
  220. package/.output/public/_nuxt/DnE1KSqg.js +1 -0
  221. package/.output/public/_nuxt/DncFEy6i.js +1 -0
  222. package/.output/public/_nuxt/DpZCZGQO.js +1 -0
  223. package/.output/public/_nuxt/Dx95U2T3.js +1 -0
  224. package/.output/public/_nuxt/FUdAqSn9.js +9 -0
  225. package/.output/public/_nuxt/GvxWNFgu.js +1 -0
  226. package/.output/public/_nuxt/HgKyGH3C.js +1 -0
  227. package/.output/public/_nuxt/Hxhp1Hz0.js +1 -0
  228. package/.output/public/_nuxt/LpFrvoF7.js +1 -0
  229. package/.output/public/_nuxt/Pre.HegCCrfd.css +2 -0
  230. package/.output/public/_nuxt/Sz6HDPqh.js +1 -0
  231. package/.output/public/_nuxt/U1_7ggcx.js +1 -0
  232. package/.output/public/_nuxt/X8ZdEYzW.js +1 -0
  233. package/.output/public/_nuxt/ahq42_9S.js +1 -0
  234. package/.output/public/_nuxt/b0AtYQ73.js +1 -0
  235. package/.output/public/_nuxt/builds/latest.json +1 -1
  236. package/.output/public/_nuxt/builds/meta/78080714-55fa-441d-9998-a6fb0c7ee057.json +1 -0
  237. package/.output/public/_nuxt/efC_w6sP.js +1 -0
  238. package/.output/public/_nuxt/entry.9ygoOcLs.css +1 -0
  239. package/.output/public/_nuxt/error-404.0Tbhbu-E.css +1 -0
  240. package/.output/public/_nuxt/error-500.ClQbyW3Z.css +1 -0
  241. package/.output/public/_nuxt/ulE7jr93.js +1 -0
  242. package/.output/public/_nuxt/xHyrElgL.js +1 -0
  243. package/.output/server/chunks/_/error-500.mjs.map +1 -1
  244. package/.output/server/chunks/_/i18n.config.mjs.map +1 -1
  245. package/.output/server/chunks/_/nitro.mjs +1221 -1219
  246. package/.output/server/chunks/_/nitro.mjs.map +1 -1
  247. package/.output/server/chunks/build/client.precomputed.mjs +1 -1
  248. package/.output/server/chunks/build/client.precomputed.mjs.map +1 -1
  249. package/.output/server/chunks/build/database.compressed.mjs.map +1 -1
  250. package/.output/server/chunks/raw/headers.mjs.map +1 -1
  251. package/.output/server/chunks/routes/api/neonTest.mjs +2 -2
  252. package/.output/server/chunks/routes/api/neonTest.mjs.map +1 -1
  253. package/.output/server/chunks/routes/renderer.mjs +27 -2
  254. package/.output/server/chunks/routes/renderer.mjs.map +1 -1
  255. package/.output/server/chunks/virtual/_virtual_spa-template.mjs.map +1 -1
  256. package/.output/server/chunks/virtual/child-sources.mjs.map +1 -1
  257. package/.output/server/chunks/virtual/global-sources.mjs +0 -8
  258. package/.output/server/chunks/virtual/global-sources.mjs.map +1 -1
  259. package/.output/server/index.mjs +1 -1
  260. package/.output/server/index.mjs.map +1 -1
  261. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/convertor/create.js +28 -0
  262. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/data-patch.js +6 -0
  263. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/data.js +95 -0
  264. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/SyntaxError.js +12 -0
  265. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/generate.js +131 -0
  266. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/index.js +4 -0
  267. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/parse.js +584 -0
  268. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/tokenizer.js +52 -0
  269. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/walk.js +52 -0
  270. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/generator/create.js +98 -0
  271. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/generator/sourceMap.js +92 -0
  272. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/generator/token-before.js +182 -0
  273. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/index.js +30 -0
  274. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/Lexer.js +453 -0
  275. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/error.js +123 -0
  276. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic-an-plus-b.js +238 -0
  277. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic-const.js +8 -0
  278. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic-urange.js +151 -0
  279. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic.js +598 -0
  280. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/match-graph.js +456 -0
  281. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/match.js +630 -0
  282. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/prepare-tokens.js +50 -0
  283. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/search.js +61 -0
  284. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/structure.js +164 -0
  285. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/trace.js +66 -0
  286. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/parser/SyntaxError.js +65 -0
  287. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/parser/create.js +346 -0
  288. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/parser/sequence.js +43 -0
  289. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/font-face.js +8 -0
  290. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/import.js +39 -0
  291. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/index.js +13 -0
  292. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/media.js +12 -0
  293. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/page.js +12 -0
  294. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/supports.js +80 -0
  295. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/lexer.js +8 -0
  296. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/mix.js +138 -0
  297. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/parser.js +30 -0
  298. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/walker.js +5 -0
  299. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/create.js +53 -0
  300. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/function/expression.js +7 -0
  301. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/function/var.js +39 -0
  302. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/index.js +10 -0
  303. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/AnPlusB.js +292 -0
  304. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Atrule.js +100 -0
  305. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/AtrulePrelude.js +47 -0
  306. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/AttributeSelector.js +147 -0
  307. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Block.js +89 -0
  308. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Brackets.js +35 -0
  309. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/CDC.js +19 -0
  310. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/CDO.js +19 -0
  311. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/ClassSelector.js +24 -0
  312. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Combinator.js +54 -0
  313. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Comment.js +33 -0
  314. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Declaration.js +165 -0
  315. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/DeclarationList.js +49 -0
  316. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Dimension.js +23 -0
  317. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Function.js +41 -0
  318. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Hash.js +23 -0
  319. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/IdSelector.js +26 -0
  320. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Identifier.js +18 -0
  321. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/MediaFeature.js +77 -0
  322. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/MediaQuery.js +60 -0
  323. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/MediaQueryList.js +34 -0
  324. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Nth.js +47 -0
  325. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Number.js +18 -0
  326. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Operator.js +21 -0
  327. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Parentheses.js +34 -0
  328. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Percentage.js +18 -0
  329. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/PseudoClassSelector.js +63 -0
  330. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/PseudoElementSelector.js +64 -0
  331. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Ratio.js +59 -0
  332. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Raw.js +41 -0
  333. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Rule.js +51 -0
  334. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Selector.js +32 -0
  335. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/SelectorList.js +35 -0
  336. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/String.js +19 -0
  337. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/StyleSheet.js +82 -0
  338. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/TypeSelector.js +52 -0
  339. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/UnicodeRange.js +156 -0
  340. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Url.js +52 -0
  341. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Value.js +19 -0
  342. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/WhiteSpace.js +27 -0
  343. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/index-parse.js +40 -0
  344. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/index.js +40 -0
  345. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/pseudo/index.js +48 -0
  346. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/atrulePrelude.js +5 -0
  347. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/default.js +85 -0
  348. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/index.js +3 -0
  349. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/selector.js +90 -0
  350. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/value.js +25 -0
  351. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/OffsetToLocation.js +87 -0
  352. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/TokenStream.js +272 -0
  353. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/adopt-buffer.js +9 -0
  354. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/char-code-definitions.js +207 -0
  355. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/index.js +513 -0
  356. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/names.js +27 -0
  357. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/types.js +28 -0
  358. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/utils.js +254 -0
  359. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/List.js +469 -0
  360. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/clone.js +21 -0
  361. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/create-custom-error.js +14 -0
  362. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/ident.js +101 -0
  363. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/names.js +106 -0
  364. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/string.js +99 -0
  365. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/url.js +108 -0
  366. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/version.js +5 -0
  367. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/walker/create.js +287 -0
  368. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/convertor/create.js +28 -0
  369. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/data-patch.js +6 -0
  370. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/data.js +118 -0
  371. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/SyntaxError.js +12 -0
  372. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/generate.js +135 -0
  373. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/index.js +4 -0
  374. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/parse.js +552 -0
  375. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/scanner.js +109 -0
  376. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/walk.js +53 -0
  377. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/generator/create.js +97 -0
  378. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/generator/sourceMap.js +92 -0
  379. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/generator/token-before.js +182 -0
  380. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/index.js +30 -0
  381. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/Lexer.js +511 -0
  382. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/error.js +123 -0
  383. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic-an-plus-b.js +238 -0
  384. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic-const.js +8 -0
  385. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic-urange.js +151 -0
  386. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic.js +622 -0
  387. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/match-graph.js +527 -0
  388. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/match.js +630 -0
  389. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/prepare-tokens.js +50 -0
  390. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/search.js +61 -0
  391. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/structure.js +169 -0
  392. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/trace.js +66 -0
  393. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/units.js +27 -0
  394. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/parser/SyntaxError.js +70 -0
  395. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/parser/create.js +350 -0
  396. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/parser/sequence.js +43 -0
  397. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/container.js +28 -0
  398. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/font-face.js +8 -0
  399. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/import.js +104 -0
  400. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/index.js +23 -0
  401. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/layer.js +12 -0
  402. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/media.js +12 -0
  403. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/nest.js +12 -0
  404. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/page.js +12 -0
  405. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/scope.js +12 -0
  406. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/starting-style.js +8 -0
  407. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/supports.js +12 -0
  408. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/lexer.js +10 -0
  409. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/mix.js +123 -0
  410. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/parser.js +45 -0
  411. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/walker.js +5 -0
  412. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/create.js +55 -0
  413. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/function/expression.js +7 -0
  414. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/function/var.js +39 -0
  415. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/index.js +10 -0
  416. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/AnPlusB.js +292 -0
  417. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Atrule.js +100 -0
  418. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/AtrulePrelude.js +47 -0
  419. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/AttributeSelector.js +147 -0
  420. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Block.js +95 -0
  421. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Brackets.js +35 -0
  422. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/CDC.js +19 -0
  423. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/CDO.js +19 -0
  424. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/ClassSelector.js +24 -0
  425. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Combinator.js +54 -0
  426. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Comment.js +33 -0
  427. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Condition.js +123 -0
  428. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Declaration.js +165 -0
  429. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/DeclarationList.js +62 -0
  430. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Dimension.js +23 -0
  431. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Feature.js +103 -0
  432. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/FeatureFunction.js +63 -0
  433. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/FeatureRange.js +133 -0
  434. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Function.js +41 -0
  435. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/GeneralEnclosed.js +66 -0
  436. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Hash.js +23 -0
  437. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/IdSelector.js +26 -0
  438. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Identifier.js +18 -0
  439. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Layer.js +28 -0
  440. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/LayerList.js +36 -0
  441. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/MediaQuery.js +102 -0
  442. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/MediaQueryList.js +34 -0
  443. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/NestingSelector.js +22 -0
  444. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Nth.js +47 -0
  445. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Number.js +18 -0
  446. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Operator.js +21 -0
  447. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Parentheses.js +34 -0
  448. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Percentage.js +18 -0
  449. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/PseudoClassSelector.js +65 -0
  450. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/PseudoElementSelector.js +66 -0
  451. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Ratio.js +68 -0
  452. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Raw.js +41 -0
  453. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Rule.js +51 -0
  454. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Scope.js +66 -0
  455. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Selector.js +31 -0
  456. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/SelectorList.js +35 -0
  457. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/String.js +19 -0
  458. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/StyleSheet.js +82 -0
  459. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/SupportsDeclaration.js +34 -0
  460. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/TypeSelector.js +52 -0
  461. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/UnicodeRange.js +156 -0
  462. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Url.js +52 -0
  463. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Value.js +19 -0
  464. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/WhiteSpace.js +27 -0
  465. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/index-parse.js +49 -0
  466. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/index.js +49 -0
  467. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/pseudo/index.js +56 -0
  468. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/pseudo/lang.js +33 -0
  469. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/atrulePrelude.js +5 -0
  470. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/default.js +85 -0
  471. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/index.js +3 -0
  472. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/selector.js +94 -0
  473. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/value.js +25 -0
  474. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/OffsetToLocation.js +87 -0
  475. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/TokenStream.js +316 -0
  476. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/adopt-buffer.js +9 -0
  477. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/char-code-definitions.js +212 -0
  478. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/index.js +513 -0
  479. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/names.js +28 -0
  480. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/types.js +28 -0
  481. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/utils.js +254 -0
  482. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/List.js +469 -0
  483. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/clone.js +21 -0
  484. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/create-custom-error.js +14 -0
  485. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/ident.js +101 -0
  486. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/names.js +106 -0
  487. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/string.js +99 -0
  488. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/url.js +108 -0
  489. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/version.js +5 -0
  490. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/walker/create.js +287 -0
  491. package/.output/server/node_modules/.nitro/css-tree@3.1.0/package.json +125 -0
  492. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/decode.js +496 -0
  493. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/decode_codepoint.js +71 -0
  494. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/encode.js +69 -0
  495. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/escape.js +116 -0
  496. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/generated/decode-data-html.js +7 -0
  497. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/generated/decode-data-xml.js +7 -0
  498. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/generated/encode-html.js +10 -0
  499. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/index.js +99 -0
  500. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/package.json +1 -0
  501. package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/decode-codepoint.js +77 -0
  502. package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/decode.js +568 -0
  503. package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/generated/decode-data-html.js +7 -0
  504. package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/generated/decode-data-xml.js +7 -0
  505. package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/internal/bin-trie-flags.js +21 -0
  506. package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/internal/decode-shared.js +31 -0
  507. package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/package.json +3 -0
  508. package/.output/server/node_modules/.nitro/entities@7.0.0/package.json +113 -0
  509. package/.output/server/node_modules/@fastify/accept-negotiator/package.json +42 -16
  510. package/.output/server/node_modules/@iconify/utils/lib/colors/index.js +292 -0
  511. package/.output/server/node_modules/@iconify/utils/lib/colors/keywords.js +702 -0
  512. package/.output/server/node_modules/@iconify/utils/lib/css/common.js +76 -0
  513. package/.output/server/node_modules/@iconify/utils/lib/css/format.js +40 -0
  514. package/.output/server/node_modules/@iconify/utils/lib/css/icon.js +52 -0
  515. package/.output/server/node_modules/@iconify/utils/lib/css/icons.js +133 -0
  516. package/.output/server/node_modules/@iconify/utils/lib/customisations/bool.js +20 -0
  517. package/.output/server/node_modules/@iconify/utils/lib/customisations/defaults.js +15 -0
  518. package/.output/server/node_modules/@iconify/utils/lib/customisations/flip.js +18 -0
  519. package/.output/server/node_modules/@iconify/utils/lib/customisations/merge.js +18 -0
  520. package/.output/server/node_modules/@iconify/utils/lib/customisations/rotate.js +31 -0
  521. package/.output/server/node_modules/@iconify/utils/lib/emoji/cleanup.js +80 -0
  522. package/.output/server/node_modules/@iconify/utils/lib/emoji/convert.js +102 -0
  523. package/.output/server/node_modules/@iconify/utils/lib/emoji/data.js +29 -0
  524. package/.output/server/node_modules/@iconify/utils/lib/emoji/format.js +60 -0
  525. package/.output/server/node_modules/@iconify/utils/lib/emoji/parse.js +50 -0
  526. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/base.js +204 -0
  527. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/create.js +35 -0
  528. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/numbers.js +134 -0
  529. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/similar.js +167 -0
  530. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/tree.js +81 -0
  531. package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/find.js +94 -0
  532. package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/replace.js +28 -0
  533. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/components.js +78 -0
  534. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/missing.js +68 -0
  535. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/name.js +47 -0
  536. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/parse.js +105 -0
  537. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/similar.js +38 -0
  538. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/tree.js +94 -0
  539. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/variations.js +64 -0
  540. package/.output/server/node_modules/@iconify/utils/lib/icon/defaults.js +26 -0
  541. package/.output/server/node_modules/@iconify/utils/lib/icon/merge.js +18 -0
  542. package/.output/server/node_modules/@iconify/utils/lib/icon/name.js +58 -0
  543. package/.output/server/node_modules/@iconify/utils/lib/icon/square.js +34 -0
  544. package/.output/server/node_modules/@iconify/utils/lib/icon/transformations.js +13 -0
  545. package/.output/server/node_modules/@iconify/utils/lib/icon-set/convert-info.js +126 -0
  546. package/.output/server/node_modules/@iconify/utils/lib/icon-set/expand.js +21 -0
  547. package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icon.js +27 -0
  548. package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icons.js +38 -0
  549. package/.output/server/node_modules/@iconify/utils/lib/icon-set/minify.js +93 -0
  550. package/.output/server/node_modules/@iconify/utils/lib/icon-set/parse.js +48 -0
  551. package/.output/server/node_modules/@iconify/utils/lib/icon-set/tree.js +24 -0
  552. package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate-basic.js +44 -0
  553. package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate.js +125 -0
  554. package/.output/server/node_modules/@iconify/utils/lib/index.js +53 -0
  555. package/.output/server/node_modules/@iconify/utils/lib/loader/custom.js +32 -0
  556. package/.output/server/node_modules/@iconify/utils/lib/loader/loader.js +28 -0
  557. package/.output/server/node_modules/@iconify/utils/lib/loader/modern.js +42 -0
  558. package/.output/server/node_modules/@iconify/utils/lib/loader/utils.js +63 -0
  559. package/.output/server/node_modules/@iconify/utils/lib/misc/objects.js +27 -0
  560. package/.output/server/node_modules/@iconify/utils/lib/misc/strings.js +27 -0
  561. package/.output/server/node_modules/@iconify/utils/lib/misc/title.js +10 -0
  562. package/.output/server/node_modules/@iconify/utils/lib/svg/build.js +115 -0
  563. package/.output/server/node_modules/@iconify/utils/lib/svg/defs.js +32 -0
  564. package/.output/server/node_modules/@iconify/utils/lib/svg/encode-svg-for-css.js +15 -0
  565. package/.output/server/node_modules/@iconify/utils/lib/svg/html.js +10 -0
  566. package/.output/server/node_modules/@iconify/utils/lib/svg/id.js +42 -0
  567. package/.output/server/node_modules/@iconify/utils/lib/svg/inner-html.js +23 -0
  568. package/.output/server/node_modules/@iconify/utils/lib/svg/parse.js +69 -0
  569. package/.output/server/node_modules/@iconify/utils/lib/svg/pretty.js +55 -0
  570. package/.output/server/node_modules/@iconify/utils/lib/svg/size.js +28 -0
  571. package/.output/server/node_modules/@iconify/utils/lib/svg/trim.js +8 -0
  572. package/.output/server/node_modules/@iconify/utils/lib/svg/url.js +23 -0
  573. package/.output/server/node_modules/@iconify/utils/lib/svg/viewbox.js +9 -0
  574. package/.output/server/node_modules/@iconify/utils/package.json +88 -417
  575. package/.output/server/node_modules/@img/colour/color.cjs +1594 -0
  576. package/.output/server/node_modules/@img/colour/index.cjs +1 -0
  577. package/.output/server/node_modules/@img/colour/package.json +45 -0
  578. package/.output/server/node_modules/@img/sharp-win32-x64/LICENSE +191 -0
  579. package/.output/server/node_modules/@img/sharp-win32-x64/lib/libvips-42.dll +0 -0
  580. package/.output/server/node_modules/@img/sharp-win32-x64/lib/libvips-cpp-8.17.3.dll +0 -0
  581. package/.output/server/node_modules/@img/sharp-win32-x64/lib/sharp-win32-x64.node +0 -0
  582. package/.output/server/node_modules/@img/sharp-win32-x64/package.json +39 -0
  583. package/.output/server/node_modules/@img/sharp-win32-x64/versions.json +30 -0
  584. package/.output/server/node_modules/@intlify/core/dist/core.mjs +1 -1
  585. package/.output/server/node_modules/@intlify/core/package.json +3 -3
  586. package/.output/server/node_modules/@intlify/core-base/dist/core-base.mjs +2 -2
  587. package/.output/server/node_modules/@intlify/core-base/package.json +4 -4
  588. package/.output/server/node_modules/@intlify/h3/dist/index.mjs +5 -1
  589. package/.output/server/node_modules/@intlify/h3/package.json +81 -48
  590. package/.output/server/node_modules/@intlify/message-compiler/dist/message-compiler.mjs +1 -1
  591. package/.output/server/node_modules/@intlify/message-compiler/package.json +2 -2
  592. package/.output/server/node_modules/@intlify/shared/dist/shared.mjs +1 -1
  593. package/.output/server/node_modules/@intlify/shared/package.json +1 -1
  594. package/.output/server/node_modules/@neondatabase/serverless/package.json +4 -4
  595. package/.output/server/node_modules/@poppinss/exception/build/index.js +36 -55
  596. package/.output/server/node_modules/@poppinss/exception/package.json +19 -16
  597. package/.output/server/node_modules/@poppinss/string/build/index.js +2 -6
  598. package/.output/server/node_modules/@poppinss/string/build/string-ArFSN0fl.js +464 -0
  599. package/.output/server/node_modules/@poppinss/string/package.json +28 -25
  600. package/.output/server/node_modules/@shikijs/core/dist/index.mjs +144 -41
  601. package/.output/server/node_modules/@shikijs/core/package.json +2 -2
  602. package/.output/server/node_modules/@shikijs/engine-javascript/package.json +3 -3
  603. package/.output/server/node_modules/@shikijs/engine-oniguruma/dist/index.mjs +3 -3
  604. package/.output/server/node_modules/@shikijs/engine-oniguruma/package.json +2 -2
  605. package/.output/server/node_modules/@shikijs/langs/dist/vue.mjs +1 -1
  606. package/.output/server/node_modules/@shikijs/langs/package.json +6 -3
  607. package/.output/server/node_modules/@shikijs/themes/dist/material-theme-lighter.mjs +2 -0
  608. package/.output/server/node_modules/@shikijs/themes/dist/material-theme-palenight.mjs +2 -0
  609. package/.output/server/node_modules/@shikijs/themes/dist/material-theme.mjs +2 -0
  610. package/.output/server/node_modules/@shikijs/themes/package.json +3 -3
  611. package/.output/server/node_modules/@shikijs/transformers/dist/index.mjs +64 -26
  612. package/.output/server/node_modules/@shikijs/transformers/package.json +3 -3
  613. package/.output/server/node_modules/@shikijs/types/package.json +1 -1
  614. package/.output/server/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js +128 -106
  615. package/.output/server/node_modules/@vue/compiler-core/package.json +5 -5
  616. package/.output/server/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js +54 -54
  617. package/.output/server/node_modules/@vue/compiler-dom/package.json +3 -3
  618. package/.output/server/node_modules/@vue/compiler-ssr/dist/compiler-ssr.cjs.js +35 -33
  619. package/.output/server/node_modules/@vue/compiler-ssr/package.json +3 -3
  620. package/.output/server/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js +64 -18
  621. package/.output/server/node_modules/@vue/reactivity/package.json +2 -2
  622. package/.output/server/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js +2048 -2010
  623. package/.output/server/node_modules/@vue/runtime-core/package.json +3 -3
  624. package/.output/server/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js +58 -29
  625. package/.output/server/node_modules/@vue/runtime-dom/package.json +5 -5
  626. package/.output/server/node_modules/@vue/server-renderer/dist/server-renderer.cjs.prod.js +1 -1
  627. package/.output/server/node_modules/@vue/server-renderer/package.json +4 -4
  628. package/.output/server/node_modules/@vue/shared/dist/shared.cjs.prod.js +1 -1
  629. package/.output/server/node_modules/@vue/shared/package.json +1 -1
  630. package/.output/server/node_modules/css-select/lib/esm/attributes.js +222 -0
  631. package/.output/server/node_modules/css-select/lib/esm/compile.js +115 -0
  632. package/.output/server/node_modules/css-select/lib/esm/general.js +144 -0
  633. package/.output/server/node_modules/css-select/lib/esm/index.js +115 -0
  634. package/.output/server/node_modules/css-select/lib/esm/package.json +1 -0
  635. package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js +35 -0
  636. package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/filters.js +143 -0
  637. package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/index.js +40 -0
  638. package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js +79 -0
  639. package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js +94 -0
  640. package/.output/server/node_modules/css-select/lib/esm/sort.js +79 -0
  641. package/.output/server/node_modules/csso/lib/clean/Atrule.js +69 -0
  642. package/.output/server/node_modules/csso/lib/clean/Comment.js +3 -0
  643. package/.output/server/node_modules/csso/lib/clean/Declaration.js +14 -0
  644. package/.output/server/node_modules/csso/lib/clean/Raw.js +9 -0
  645. package/.output/server/node_modules/csso/lib/clean/Rule.js +100 -0
  646. package/.output/server/node_modules/csso/lib/clean/TypeSelector.js +19 -0
  647. package/.output/server/node_modules/csso/lib/clean/WhiteSpace.js +3 -0
  648. package/.output/server/node_modules/csso/lib/clean/index.js +28 -0
  649. package/.output/server/node_modules/csso/lib/clean/utils.js +7 -0
  650. package/.output/server/node_modules/csso/lib/compress.js +196 -0
  651. package/.output/server/node_modules/csso/lib/index.js +131 -0
  652. package/.output/server/node_modules/csso/lib/replace/Atrule.js +9 -0
  653. package/.output/server/node_modules/csso/lib/replace/AttributeSelector.js +28 -0
  654. package/.output/server/node_modules/csso/lib/replace/Dimension.js +63 -0
  655. package/.output/server/node_modules/csso/lib/replace/Number.js +40 -0
  656. package/.output/server/node_modules/csso/lib/replace/Percentage.js +37 -0
  657. package/.output/server/node_modules/csso/lib/replace/Url.js +4 -0
  658. package/.output/server/node_modules/csso/lib/replace/Value.js +26 -0
  659. package/.output/server/node_modules/csso/lib/replace/atrule/keyframes.js +21 -0
  660. package/.output/server/node_modules/csso/lib/replace/color.js +498 -0
  661. package/.output/server/node_modules/csso/lib/replace/index.js +32 -0
  662. package/.output/server/node_modules/csso/lib/replace/property/background.js +50 -0
  663. package/.output/server/node_modules/csso/lib/replace/property/border.js +16 -0
  664. package/.output/server/node_modules/csso/lib/replace/property/font-weight.js +22 -0
  665. package/.output/server/node_modules/csso/lib/replace/property/font.js +30 -0
  666. package/.output/server/node_modules/csso/lib/restructure/1-mergeAtrule.js +106 -0
  667. package/.output/server/node_modules/csso/lib/restructure/2-initialMergeRuleset.js +53 -0
  668. package/.output/server/node_modules/csso/lib/restructure/3-disjoinRuleset.js +42 -0
  669. package/.output/server/node_modules/csso/lib/restructure/4-restructShorthand.js +425 -0
  670. package/.output/server/node_modules/csso/lib/restructure/6-restructBlock.js +308 -0
  671. package/.output/server/node_modules/csso/lib/restructure/7-mergeRuleset.js +86 -0
  672. package/.output/server/node_modules/csso/lib/restructure/8-restructRuleset.js +176 -0
  673. package/.output/server/node_modules/csso/lib/restructure/index.js +35 -0
  674. package/.output/server/node_modules/csso/lib/restructure/prepare/createDeclarationIndexer.js +31 -0
  675. package/.output/server/node_modules/csso/lib/restructure/prepare/index.js +41 -0
  676. package/.output/server/node_modules/csso/lib/restructure/prepare/processSelector.js +97 -0
  677. package/.output/server/node_modules/csso/lib/restructure/prepare/specificity.js +131 -0
  678. package/.output/server/node_modules/csso/lib/restructure/utils.js +142 -0
  679. package/.output/server/node_modules/csso/lib/syntax.js +60 -0
  680. package/.output/server/node_modules/csso/lib/usage.js +71 -0
  681. package/.output/server/node_modules/csso/lib/utils.js +2 -0
  682. package/.output/server/node_modules/csso/lib/version.js +5 -0
  683. package/.output/server/node_modules/devalue/index.js +1 -0
  684. package/.output/server/node_modules/devalue/package.json +1 -1
  685. package/.output/server/node_modules/devalue/src/parse.js +5 -1
  686. package/.output/server/node_modules/devalue/src/stringify.js +10 -6
  687. package/.output/server/node_modules/devalue/src/uneval.js +10 -6
  688. package/.output/server/node_modules/devalue/src/utils.js +5 -1
  689. package/.output/server/node_modules/dom-serializer/lib/esm/foreignNames.js +100 -0
  690. package/.output/server/node_modules/dom-serializer/lib/esm/index.js +190 -0
  691. package/.output/server/node_modules/dom-serializer/lib/esm/package.json +1 -0
  692. package/.output/server/node_modules/domelementtype/lib/esm/index.js +51 -0
  693. package/.output/server/node_modules/domelementtype/lib/esm/package.json +1 -0
  694. package/.output/server/node_modules/domhandler/lib/esm/index.js +146 -0
  695. package/.output/server/node_modules/domhandler/lib/esm/node.js +338 -0
  696. package/.output/server/node_modules/domhandler/lib/esm/package.json +1 -0
  697. package/.output/server/node_modules/domutils/lib/esm/feeds.js +183 -0
  698. package/.output/server/node_modules/domutils/lib/esm/helpers.js +136 -0
  699. package/.output/server/node_modules/domutils/lib/esm/index.js +10 -0
  700. package/.output/server/node_modules/domutils/lib/esm/legacy.js +152 -0
  701. package/.output/server/node_modules/domutils/lib/esm/manipulation.js +134 -0
  702. package/.output/server/node_modules/domutils/lib/esm/package.json +1 -0
  703. package/.output/server/node_modules/domutils/lib/esm/querying.js +142 -0
  704. package/.output/server/node_modules/domutils/lib/esm/stringify.js +81 -0
  705. package/.output/server/node_modules/domutils/lib/esm/traversal.js +112 -0
  706. package/.output/server/node_modules/fast-xml-parser/package.json +4 -2
  707. package/.output/server/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +40 -18
  708. package/.output/server/node_modules/hast-util-to-parse5/lib/index.js +13 -19
  709. package/.output/server/node_modules/hast-util-to-parse5/package.json +8 -7
  710. package/.output/server/node_modules/ipx/dist/index.mjs +1 -1
  711. package/.output/server/node_modules/ipx/dist/shared/ipx.CXJeaylD.mjs +764 -0
  712. package/.output/server/node_modules/ipx/package.json +29 -30
  713. package/.output/server/node_modules/jose/dist/webapi/index.js +4 -2
  714. package/.output/server/node_modules/jose/dist/webapi/jwe/flattened/decrypt.js +12 -12
  715. package/.output/server/node_modules/jose/dist/webapi/jwe/flattened/encrypt.js +17 -13
  716. package/.output/server/node_modules/jose/dist/webapi/jwe/general/decrypt.js +1 -1
  717. package/.output/server/node_modules/jose/dist/webapi/jwe/general/encrypt.js +16 -16
  718. package/.output/server/node_modules/jose/dist/webapi/jwk/embedded.js +1 -1
  719. package/.output/server/node_modules/jose/dist/webapi/jwk/thumbprint.js +5 -5
  720. package/.output/server/node_modules/jose/dist/webapi/jwks/local.js +1 -1
  721. package/.output/server/node_modules/jose/dist/webapi/jwks/remote.js +2 -2
  722. package/.output/server/node_modules/jose/dist/webapi/jws/flattened/sign.js +23 -17
  723. package/.output/server/node_modules/jose/dist/webapi/jws/flattened/verify.js +13 -9
  724. package/.output/server/node_modules/jose/dist/webapi/jws/general/verify.js +1 -1
  725. package/.output/server/node_modules/jose/dist/webapi/key/export.js +1 -1
  726. package/.output/server/node_modules/jose/dist/webapi/key/generate_key_pair.js +3 -3
  727. package/.output/server/node_modules/jose/dist/webapi/key/import.js +5 -5
  728. package/.output/server/node_modules/jose/dist/webapi/lib/aesgcmkw.js +4 -4
  729. package/.output/server/node_modules/jose/dist/webapi/lib/asn1.js +3 -7
  730. package/.output/server/node_modules/jose/dist/webapi/lib/buffer_utils.js +11 -0
  731. package/.output/server/node_modules/jose/dist/webapi/lib/cek.js +2 -2
  732. package/.output/server/node_modules/jose/dist/webapi/lib/check_cek_length.js +2 -2
  733. package/.output/server/node_modules/jose/dist/webapi/lib/check_iv_length.js +2 -2
  734. package/.output/server/node_modules/jose/dist/webapi/lib/check_key_length.js +2 -2
  735. package/.output/server/node_modules/jose/dist/webapi/lib/check_key_type.js +15 -19
  736. package/.output/server/node_modules/jose/dist/webapi/lib/crypto_key.js +2 -6
  737. package/.output/server/node_modules/jose/dist/webapi/lib/decrypt.js +7 -7
  738. package/.output/server/node_modules/jose/dist/webapi/lib/decrypt_key_management.js +4 -4
  739. package/.output/server/node_modules/jose/dist/webapi/lib/digest.js +2 -2
  740. package/.output/server/node_modules/jose/dist/webapi/lib/ecdhes.js +5 -5
  741. package/.output/server/node_modules/jose/dist/webapi/lib/encrypt.js +8 -8
  742. package/.output/server/node_modules/jose/dist/webapi/lib/encrypt_key_management.js +4 -4
  743. package/.output/server/node_modules/jose/dist/webapi/lib/get_sign_verify_key.js +3 -3
  744. package/.output/server/node_modules/jose/dist/webapi/lib/invalid_key_input.js +2 -6
  745. package/.output/server/node_modules/jose/dist/webapi/lib/is_disjoint.js +2 -2
  746. package/.output/server/node_modules/jose/dist/webapi/lib/is_jwk.js +6 -14
  747. package/.output/server/node_modules/jose/dist/webapi/lib/is_key_like.js +11 -8
  748. package/.output/server/node_modules/jose/dist/webapi/lib/is_object.js +3 -5
  749. package/.output/server/node_modules/jose/dist/webapi/lib/iv.js +1 -1
  750. package/.output/server/node_modules/jose/dist/webapi/lib/jwk_to_key.js +2 -2
  751. package/.output/server/node_modules/jose/dist/webapi/lib/jwt_claims_set.js +59 -6
  752. package/.output/server/node_modules/jose/dist/webapi/lib/key_to_jwk.js +2 -2
  753. package/.output/server/node_modules/jose/dist/webapi/lib/normalize_key.js +4 -4
  754. package/.output/server/node_modules/jose/dist/webapi/lib/pbes2kw.js +5 -3
  755. package/.output/server/node_modules/jose/dist/webapi/lib/rsaes.js +1 -1
  756. package/.output/server/node_modules/jose/dist/webapi/lib/sign.js +6 -6
  757. package/.output/server/node_modules/jose/dist/webapi/lib/subtle_dsa.js +2 -2
  758. package/.output/server/node_modules/jose/dist/webapi/lib/validate_algorithms.js +2 -2
  759. package/.output/server/node_modules/jose/dist/webapi/lib/validate_crit.js +2 -2
  760. package/.output/server/node_modules/jose/dist/webapi/lib/verify.js +6 -6
  761. package/.output/server/node_modules/jose/dist/webapi/util/base64url.js +1 -1
  762. package/.output/server/node_modules/jose/dist/webapi/util/decode_jwt.js +1 -1
  763. package/.output/server/node_modules/jose/dist/webapi/util/decode_protected_header.js +1 -1
  764. package/.output/server/node_modules/jose/package.json +1 -1
  765. package/.output/server/node_modules/mdast-util-to-hast/lib/footer.js +2 -4
  766. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +3 -6
  767. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/break.js +3 -7
  768. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/code.js +8 -9
  769. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/delete.js +3 -6
  770. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +3 -6
  771. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +3 -3
  772. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/heading.js +3 -6
  773. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/html.js +4 -7
  774. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +3 -5
  775. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/image.js +3 -4
  776. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/index.js +5 -1
  777. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +3 -7
  778. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +3 -5
  779. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/link.js +3 -4
  780. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +3 -9
  781. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/list.js +3 -7
  782. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +3 -6
  783. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/root.js +3 -7
  784. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/strong.js +3 -6
  785. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +3 -6
  786. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +3 -9
  787. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/table.js +3 -3
  788. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/text.js +3 -4
  789. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +3 -6
  790. package/.output/server/node_modules/mdast-util-to-hast/lib/index.js +3 -3
  791. package/.output/server/node_modules/mdast-util-to-hast/lib/revert.js +3 -9
  792. package/.output/server/node_modules/mdast-util-to-hast/lib/state.js +19 -16
  793. package/.output/server/node_modules/mdast-util-to-hast/package.json +2 -1
  794. package/.output/server/node_modules/node-mock-http/package.json +10 -10
  795. package/.output/server/node_modules/nth-check/lib/esm/compile.js +113 -0
  796. package/.output/server/node_modules/nth-check/lib/esm/index.js +63 -0
  797. package/.output/server/node_modules/nth-check/lib/esm/package.json +1 -0
  798. package/.output/server/node_modules/nth-check/lib/esm/parse.js +73 -0
  799. package/.output/server/node_modules/oauth4webapi/build/index.js +41 -30
  800. package/.output/server/node_modules/oauth4webapi/package.json +14 -15
  801. package/.output/server/node_modules/ofetch/dist/node.mjs +3 -3
  802. package/.output/server/node_modules/ofetch/dist/shared/ofetch.CWycOUEr.mjs +349 -0
  803. package/.output/server/node_modules/ofetch/package.json +19 -19
  804. package/.output/server/node_modules/oniguruma-to-es/dist/esm/index.js +4 -4
  805. package/.output/server/node_modules/oniguruma-to-es/package.json +4 -4
  806. package/.output/server/node_modules/pathe/dist/index.mjs +19 -1
  807. package/.output/server/node_modules/pathe/dist/shared/pathe.M-eThtNZ.mjs +249 -0
  808. package/.output/server/node_modules/pathe/package.json +33 -20
  809. package/.output/server/node_modules/regex/package.json +6 -6
  810. package/.output/server/node_modules/regex/src/atomic.js +6 -3
  811. package/.output/server/node_modules/sax/lib/sax.js +1697 -0
  812. package/.output/server/node_modules/sax/package.json +28 -0
  813. package/.output/server/node_modules/semver/classes/comparator.js +143 -0
  814. package/.output/server/node_modules/semver/classes/range.js +557 -0
  815. package/.output/server/node_modules/semver/functions/cmp.js +54 -0
  816. package/.output/server/node_modules/semver/functions/eq.js +5 -0
  817. package/.output/server/node_modules/semver/functions/gt.js +5 -0
  818. package/.output/server/node_modules/semver/functions/lt.js +5 -0
  819. package/.output/server/node_modules/semver/functions/lte.js +5 -0
  820. package/.output/server/node_modules/semver/functions/neq.js +5 -0
  821. package/.output/server/node_modules/semver/functions/satisfies.js +12 -0
  822. package/.output/server/node_modules/semver/internal/lrucache.js +42 -0
  823. package/.output/server/node_modules/sharp/lib/channel.js +10 -7
  824. package/.output/server/node_modules/sharp/lib/colour.js +42 -31
  825. package/.output/server/node_modules/sharp/lib/composite.js +12 -10
  826. package/.output/server/node_modules/sharp/lib/constructor.js +92 -32
  827. package/.output/server/node_modules/sharp/lib/index.js +4 -4
  828. package/.output/server/node_modules/sharp/lib/input.js +252 -74
  829. package/.output/server/node_modules/sharp/lib/is.js +45 -57
  830. package/.output/server/node_modules/sharp/lib/libvips.js +133 -66
  831. package/.output/server/node_modules/sharp/lib/operation.js +158 -61
  832. package/.output/server/node_modules/sharp/lib/output.js +350 -97
  833. package/.output/server/node_modules/sharp/lib/resize.js +73 -60
  834. package/.output/server/node_modules/sharp/lib/sharp.js +110 -27
  835. package/.output/server/node_modules/sharp/lib/utility.js +47 -43
  836. package/.output/server/node_modules/sharp/package.json +74 -76
  837. package/.output/server/node_modules/shiki/package.json +9 -9
  838. package/.output/server/node_modules/strnum/package.json +1 -1
  839. package/.output/server/node_modules/strnum/strnum.js +1 -1
  840. package/.output/server/node_modules/svgo/lib/builtin.js +116 -56
  841. package/.output/server/node_modules/svgo/lib/parser.js +40 -94
  842. package/.output/server/node_modules/svgo/lib/path.js +45 -63
  843. package/.output/server/node_modules/svgo/lib/stringifier.js +116 -113
  844. package/.output/server/node_modules/svgo/lib/style.js +51 -63
  845. package/.output/server/node_modules/svgo/lib/svgo/css-select-adapter.js +82 -59
  846. package/.output/server/node_modules/svgo/lib/svgo/plugins.js +21 -11
  847. package/.output/server/node_modules/svgo/lib/svgo/tools.js +39 -43
  848. package/.output/server/node_modules/svgo/lib/svgo-node.js +44 -31
  849. package/.output/server/node_modules/svgo/lib/svgo.js +55 -14
  850. package/.output/server/node_modules/svgo/lib/types.js +1 -0
  851. package/.output/server/node_modules/svgo/lib/util/map-nodes-to-parents.js +29 -0
  852. package/.output/server/node_modules/svgo/lib/util/visit.js +36 -0
  853. package/.output/server/node_modules/svgo/lib/version.js +7 -0
  854. package/.output/server/node_modules/svgo/lib/xast.js +32 -66
  855. package/.output/server/node_modules/svgo/package.json +68 -35
  856. package/.output/server/node_modules/svgo/plugins/_collections.js +150 -34
  857. package/.output/server/node_modules/svgo/plugins/_path.js +206 -173
  858. package/.output/server/node_modules/svgo/plugins/_transforms.js +470 -125
  859. package/.output/server/node_modules/svgo/plugins/addAttributesToSVGElement.js +13 -9
  860. package/.output/server/node_modules/svgo/plugins/addClassesToSVGElement.js +16 -8
  861. package/.output/server/node_modules/svgo/plugins/applyTransforms.js +26 -38
  862. package/.output/server/node_modules/svgo/plugins/cleanupAttrs.js +11 -7
  863. package/.output/server/node_modules/svgo/plugins/cleanupEnableBackground.js +12 -13
  864. package/.output/server/node_modules/svgo/plugins/cleanupIds.js +25 -24
  865. package/.output/server/node_modules/svgo/plugins/cleanupListOfValues.js +19 -16
  866. package/.output/server/node_modules/svgo/plugins/cleanupNumericValues.js +19 -18
  867. package/.output/server/node_modules/svgo/plugins/collapseGroups.js +30 -31
  868. package/.output/server/node_modules/svgo/plugins/convertColors.js +51 -17
  869. package/.output/server/node_modules/svgo/plugins/convertEllipseToCircle.js +4 -6
  870. package/.output/server/node_modules/svgo/plugins/convertOneStopGradients.js +13 -24
  871. package/.output/server/node_modules/svgo/plugins/convertPathData.js +323 -261
  872. package/.output/server/node_modules/svgo/plugins/convertShapeToPath.js +22 -29
  873. package/.output/server/node_modules/svgo/plugins/convertStyleToAttrs.js +26 -17
  874. package/.output/server/node_modules/svgo/plugins/convertTransform.js +62 -171
  875. package/.output/server/node_modules/svgo/plugins/inlineStyles.js +33 -30
  876. package/.output/server/node_modules/svgo/plugins/mergePaths.js +36 -15
  877. package/.output/server/node_modules/svgo/plugins/mergeStyles.js +9 -26
  878. package/.output/server/node_modules/svgo/plugins/minifyStyles.js +30 -16
  879. package/.output/server/node_modules/svgo/plugins/moveElemsAttrsToGroup.js +13 -12
  880. package/.output/server/node_modules/svgo/plugins/moveGroupAttrsToElems.js +8 -9
  881. package/.output/server/node_modules/svgo/plugins/prefixIds.js +26 -21
  882. package/.output/server/node_modules/svgo/plugins/preset-default.js +37 -42
  883. package/.output/server/node_modules/svgo/plugins/removeAttributesBySelector.js +5 -7
  884. package/.output/server/node_modules/svgo/plugins/removeAttrs.js +13 -11
  885. package/.output/server/node_modules/svgo/plugins/removeComments.js +9 -6
  886. package/.output/server/node_modules/svgo/plugins/removeDeprecatedAttrs.js +120 -0
  887. package/.output/server/node_modules/svgo/plugins/removeDesc.js +13 -10
  888. package/.output/server/node_modules/svgo/plugins/removeDimensions.js +5 -7
  889. package/.output/server/node_modules/svgo/plugins/removeDoctype.js +5 -7
  890. package/.output/server/node_modules/svgo/plugins/removeEditorsNSData.js +12 -10
  891. package/.output/server/node_modules/svgo/plugins/removeElementsByAttr.js +10 -6
  892. package/.output/server/node_modules/svgo/plugins/removeEmptyAttrs.js +5 -7
  893. package/.output/server/node_modules/svgo/plugins/removeEmptyContainers.js +21 -13
  894. package/.output/server/node_modules/svgo/plugins/removeEmptyText.js +11 -6
  895. package/.output/server/node_modules/svgo/plugins/removeHiddenElems.js +56 -37
  896. package/.output/server/node_modules/svgo/plugins/removeMetadata.js +5 -7
  897. package/.output/server/node_modules/svgo/plugins/removeNonInheritableGroupAttrs.js +8 -10
  898. package/.output/server/node_modules/svgo/plugins/removeOffCanvasPaths.js +14 -21
  899. package/.output/server/node_modules/svgo/plugins/removeRasterImages.js +5 -7
  900. package/.output/server/node_modules/svgo/plugins/removeScripts.js +63 -0
  901. package/.output/server/node_modules/svgo/plugins/removeStyleElement.js +5 -7
  902. package/.output/server/node_modules/svgo/plugins/removeTitle.js +5 -7
  903. package/.output/server/node_modules/svgo/plugins/removeUnknownsAndDefaults.js +32 -30
  904. package/.output/server/node_modules/svgo/plugins/removeUnusedNS.js +5 -9
  905. package/.output/server/node_modules/svgo/plugins/removeUselessDefs.js +14 -29
  906. package/.output/server/node_modules/svgo/plugins/removeUselessStrokeAndFill.js +17 -11
  907. package/.output/server/node_modules/svgo/plugins/removeViewBox.js +5 -7
  908. package/.output/server/node_modules/svgo/plugins/removeXMLNS.js +4 -6
  909. package/.output/server/node_modules/svgo/plugins/removeXMLProcInst.js +5 -7
  910. package/.output/server/node_modules/svgo/plugins/removeXlink.js +15 -14
  911. package/.output/server/node_modules/svgo/plugins/reusePaths.js +9 -29
  912. package/.output/server/node_modules/svgo/plugins/sortAttrs.js +15 -10
  913. package/.output/server/node_modules/svgo/plugins/sortDefsChildren.js +8 -11
  914. package/.output/server/node_modules/unhead/dist/plugins.mjs +2 -2
  915. package/.output/server/node_modules/unhead/dist/server.mjs +3 -3
  916. package/.output/server/node_modules/unhead/dist/shared/unhead.CGCfDSEL.mjs +180 -0
  917. package/.output/server/node_modules/unhead/dist/shared/unhead.CYpwL2hc.mjs +194 -0
  918. package/.output/server/node_modules/unhead/dist/shared/unhead.CbpEuj3y.mjs +71 -0
  919. package/.output/server/node_modules/unhead/dist/shared/unhead.ckV6dpEQ.mjs +166 -0
  920. package/.output/server/node_modules/unhead/dist/utils.mjs +2 -2
  921. package/.output/server/node_modules/unhead/package.json +1 -1
  922. package/.output/server/node_modules/vue/dist/vue.cjs.js +1 -1
  923. package/.output/server/node_modules/vue/dist/vue.cjs.prod.js +1 -1
  924. package/.output/server/node_modules/vue/package.json +6 -6
  925. package/.output/server/node_modules/vue-router/dist/devtools-EWN81iOl.mjs +1220 -0
  926. package/.output/server/node_modules/vue-router/dist/vue-router.mjs +3 -3
  927. package/.output/server/node_modules/vue-router/package.json +2 -3
  928. package/.output/server/node_modules/yaml/dist/compose/compose-collection.js +1 -1
  929. package/.output/server/node_modules/yaml/dist/compose/resolve-block-seq.js +1 -1
  930. package/.output/server/node_modules/yaml/dist/compose/resolve-flow-collection.js +2 -2
  931. package/.output/server/node_modules/yaml/dist/errors.js +1 -1
  932. package/.output/server/node_modules/yaml/dist/nodes/Alias.js +1 -1
  933. package/.output/server/node_modules/yaml/dist/parse/parser.js +2 -2
  934. package/.output/server/node_modules/yaml/dist/stringify/stringifyNumber.js +1 -1
  935. package/.output/server/node_modules/yaml/dist/stringify/stringifyPair.js +1 -1
  936. package/.output/server/node_modules/yaml/package.json +4 -4
  937. package/.output/server/package.json +50 -62
  938. package/app/components/ignis/IgnisContentFeatures.vue +1 -0
  939. package/bin/set-app-vue.js +1 -1
  940. package/bin/set-css.js +1 -1
  941. package/bin/set-eslint.js +1 -1
  942. package/bin/setup.js +3 -3
  943. package/eslint.config.mjs +7 -4
  944. package/features.ts +13 -0
  945. package/i18n/locales/en.json +1 -0
  946. package/nuxt.config.ts +5 -13
  947. package/package.json +14 -12
  948. package/public/_ignis-config.json +7 -1
  949. package/test/config/social.txt +37 -0
  950. package/test/config.test.ts +9 -0
  951. package/test/features/enable-all.txt +1 -1
  952. package/test/features/social.txt +4 -0
  953. package/test/features.test.ts +10 -0
  954. package/vitest.config.ts +1 -3
  955. package/.nuxt/cache/fonts/EP1810cmAtyahQPDHB6nvBzRkIG5RcNv4u5vTy1aYHU-Ih_Po7WkbhDymI0Y_ntmpz__bZJprHiu7_c5N_X6AAA.woff2 +0 -0
  956. package/.nuxt/cache/fonts/JNWOTRocaYj0gq52vW_s7sHAdSMUetrRmhhggCVxyZ0-TnR4PP30hI5UWldZ0knUBrHkvIoiDWYXwn2v1NtCh80.woff2 +0 -0
  957. package/.nuxt/cache/fonts/XbAtjIvy1UErjg9eu_v7X3zPLS_AwsmqVsR9fG-JB6o-H99o9_8BZXq7ey5UyS99Wn9zX0V0anvpXEqAqavcJlQ.woff2 +0 -0
  958. package/.nuxt/cache/fonts/ZLm6CLvwhQbamZ73M80jbqz7DuOkHlT_HRyXHG7YfVs-eYLoSJPWhqR5CE0c8XPABls8kE_7Fc7F2x7Gtfsg_8M.woff2 +0 -0
  959. package/.nuxt/cache/fonts/aPa9az0DeE4U5rqM-Ov0Vl_obQis_d6sScLNygGkvxw-s32Y9TxBLZRr_ebRHQ3l3q1g2j_0tPT879PPSBGrj8A.woff2 +0 -0
  960. package/.nuxt/cache/fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-55rzD39AWoqYSkQOLHuoKZUDVcDSlXRKdaymIN2dXes.woff +0 -0
  961. package/.output/public/_fonts/Jtqhy44WKYEjGWTSusP5YJfJv7Wf74QqgkBOI9u_77s-Rl_Bht5SvmaotE20bkavBEAJEEGEa0hcz3d_8yOeXmw.woff +0 -0
  962. package/.output/public/_fonts/ZHaz3DhCHNWhsElqYfuM71rfBBDgjuU2sd34vaYJwQg-71NZaZSGjxzAGjCMnCc2zS5rS_EGA0xHKPGCggWuXik.woff +0 -0
  963. package/.output/public/_fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-BgCmQXkW3N6talUbQSKexB2sHUT0qGEzmM4uMcnDAbI.woff +0 -0
  964. package/.output/public/_nuxt/1vOq3xiE.js +0 -1
  965. package/.output/public/_nuxt/22rhGZdI.js +0 -1
  966. package/.output/public/_nuxt/9eIdSibD.js +0 -1
  967. package/.output/public/_nuxt/BBmTy930.js +0 -35
  968. package/.output/public/_nuxt/BKe83Cjx.js +0 -1
  969. package/.output/public/_nuxt/Bc5GLloR.js +0 -1
  970. package/.output/public/_nuxt/BdG3SY-u.js +0 -1
  971. package/.output/public/_nuxt/BeyOQpYA.js +0 -1
  972. package/.output/public/_nuxt/BqcXd3MY.js +0 -94
  973. package/.output/public/_nuxt/Bz55A4y1.js +0 -1
  974. package/.output/public/_nuxt/C2ybsIQ4.js +0 -1
  975. package/.output/public/_nuxt/C4U5VOMJ.js +0 -1
  976. package/.output/public/_nuxt/CAJsyjAK.js +0 -1
  977. package/.output/public/_nuxt/CD9aBAuy.js +0 -1
  978. package/.output/public/_nuxt/CHOS7x_d.js +0 -1
  979. package/.output/public/_nuxt/CXhUbdF6.js +0 -1
  980. package/.output/public/_nuxt/CZWScI5k.js +0 -1
  981. package/.output/public/_nuxt/DHd34syF.js +0 -1
  982. package/.output/public/_nuxt/DMbgtwAJ.js +0 -1
  983. package/.output/public/_nuxt/DR8jhnFO.js +0 -1
  984. package/.output/public/_nuxt/DTT0LBLY.js +0 -1
  985. package/.output/public/_nuxt/DWV_uL6G.js +0 -6764
  986. package/.output/public/_nuxt/DdpTKqR-.js +0 -1
  987. package/.output/public/_nuxt/Df_NcBcC.js +0 -1
  988. package/.output/public/_nuxt/DhqOMFXQ.js +0 -1
  989. package/.output/public/_nuxt/Dnp9eFDR.js +0 -1
  990. package/.output/public/_nuxt/DnqMs_6O.js +0 -1
  991. package/.output/public/_nuxt/Dq7g_IfY.js +0 -1
  992. package/.output/public/_nuxt/DsAJWnuW.js +0 -1
  993. package/.output/public/_nuxt/DvVg7vM_.js +0 -1
  994. package/.output/public/_nuxt/DwKqLVGx.js +0 -1
  995. package/.output/public/_nuxt/DxzqnQKF.js +0 -1
  996. package/.output/public/_nuxt/ProsePre.D5orA6B_.css +0 -1
  997. package/.output/public/_nuxt/Y0f1tU-r.js +0 -1
  998. package/.output/public/_nuxt/atySmcu6.js +0 -1
  999. package/.output/public/_nuxt/builds/meta/7bab2b8f-93ee-4f44-a604-8cd2b41eac60.json +0 -1
  1000. package/.output/public/_nuxt/entry.CtpkPzPO.css +0 -1
  1001. package/.output/public/_nuxt/error-404.DzDu4Ean.css +0 -1
  1002. package/.output/public/_nuxt/error-500.BdNqqJx7.css +0 -1
  1003. package/.output/public/_nuxt/q3i45eMH.js +0 -1
  1004. package/.output/public/_nuxt/vueform.CkWb7x1C.css +0 -1
  1005. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/convertor/create.cjs +0 -32
  1006. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/data-patch.cjs +0 -7
  1007. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/data.cjs +0 -97
  1008. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/SyntaxError.cjs +0 -16
  1009. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/generate.cjs +0 -135
  1010. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/index.cjs +0 -13
  1011. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/parse.cjs +0 -588
  1012. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/tokenizer.cjs +0 -56
  1013. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/walk.cjs +0 -56
  1014. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/create.cjs +0 -103
  1015. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/sourceMap.cjs +0 -96
  1016. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/token-before.cjs +0 -170
  1017. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/index.cjs +0 -63
  1018. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/Lexer.cjs +0 -459
  1019. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/error.cjs +0 -128
  1020. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-an-plus-b.cjs +0 -235
  1021. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-const.cjs +0 -12
  1022. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-urange.cjs +0 -149
  1023. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic.cjs +0 -573
  1024. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/match-graph.cjs +0 -459
  1025. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/match.cjs +0 -632
  1026. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/prepare-tokens.cjs +0 -54
  1027. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/search.cjs +0 -65
  1028. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/structure.cjs +0 -168
  1029. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/trace.cjs +0 -73
  1030. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/SyntaxError.cjs +0 -69
  1031. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/create.cjs +0 -336
  1032. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/sequence.cjs +0 -47
  1033. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/font-face.cjs +0 -12
  1034. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/import.cjs +0 -37
  1035. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/index.cjs +0 -17
  1036. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/media.cjs +0 -16
  1037. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/page.cjs +0 -16
  1038. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/supports.cjs +0 -77
  1039. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/lexer.cjs +0 -12
  1040. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/mix.cjs +0 -142
  1041. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/parser.cjs +0 -34
  1042. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/walker.cjs +0 -9
  1043. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/create.cjs +0 -56
  1044. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/function/expression.cjs +0 -11
  1045. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/function/var.cjs +0 -43
  1046. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/index.cjs +0 -14
  1047. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AnPlusB.cjs +0 -293
  1048. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Atrule.cjs +0 -103
  1049. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AtrulePrelude.cjs +0 -52
  1050. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AttributeSelector.cjs +0 -148
  1051. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Block.cjs +0 -90
  1052. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Brackets.cjs +0 -38
  1053. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/CDC.cjs +0 -26
  1054. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/CDO.cjs +0 -26
  1055. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/ClassSelector.cjs +0 -31
  1056. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Combinator.cjs +0 -61
  1057. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Comment.cjs +0 -40
  1058. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Declaration.cjs +0 -166
  1059. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/DeclarationList.cjs +0 -50
  1060. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Dimension.cjs +0 -30
  1061. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Function.cjs +0 -45
  1062. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Hash.cjs +0 -30
  1063. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/IdSelector.cjs +0 -33
  1064. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Identifier.cjs +0 -25
  1065. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaFeature.cjs +0 -76
  1066. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaQuery.cjs +0 -61
  1067. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaQueryList.cjs +0 -41
  1068. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Nth.cjs +0 -54
  1069. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Number.cjs +0 -25
  1070. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Operator.cjs +0 -28
  1071. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Parentheses.cjs +0 -38
  1072. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Percentage.cjs +0 -25
  1073. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/PseudoClassSelector.cjs +0 -65
  1074. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/PseudoElementSelector.cjs +0 -67
  1075. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Ratio.cjs +0 -67
  1076. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Raw.cjs +0 -48
  1077. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Rule.cjs +0 -58
  1078. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Selector.cjs +0 -39
  1079. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/SelectorList.cjs +0 -43
  1080. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/String.cjs +0 -26
  1081. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/StyleSheet.cjs +0 -83
  1082. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/TypeSelector.cjs +0 -59
  1083. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/UnicodeRange.cjs +0 -158
  1084. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Url.cjs +0 -54
  1085. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Value.cjs +0 -26
  1086. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/WhiteSpace.cjs +0 -34
  1087. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/index-parse.cjs +0 -85
  1088. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/index.cjs +0 -85
  1089. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/pseudo/index.cjs +0 -52
  1090. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/atrulePrelude.cjs +0 -9
  1091. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/default.cjs +0 -76
  1092. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/index.cjs +0 -11
  1093. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/selector.cjs +0 -84
  1094. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/value.cjs +0 -29
  1095. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/OffsetToLocation.cjs +0 -91
  1096. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/TokenStream.cjs +0 -264
  1097. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/adopt-buffer.cjs +0 -13
  1098. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/char-code-definitions.cjs +0 -231
  1099. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/index.cjs +0 -554
  1100. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/names.cjs +0 -31
  1101. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/types.cjs +0 -57
  1102. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/utils.cjs +0 -261
  1103. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/List.cjs +0 -473
  1104. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/clone.cjs +0 -25
  1105. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/create-custom-error.cjs +0 -18
  1106. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/ident.cjs +0 -102
  1107. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/names.cjs +0 -113
  1108. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/string.cjs +0 -99
  1109. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/url.cjs +0 -108
  1110. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/version.cjs +0 -5
  1111. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/walker/create.cjs +0 -291
  1112. package/.output/server/node_modules/.nitro/css-tree@2.2.1/data/patch.json +0 -739
  1113. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/convertor/create.cjs +0 -32
  1114. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/data-patch.cjs +0 -7
  1115. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/data.cjs +0 -99
  1116. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/SyntaxError.cjs +0 -16
  1117. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/generate.cjs +0 -135
  1118. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/index.cjs +0 -13
  1119. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/parse.cjs +0 -588
  1120. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/tokenizer.cjs +0 -56
  1121. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/walk.cjs +0 -56
  1122. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/create.cjs +0 -103
  1123. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/sourceMap.cjs +0 -96
  1124. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/token-before.cjs +0 -170
  1125. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/index.cjs +0 -63
  1126. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/Lexer.cjs +0 -470
  1127. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/error.cjs +0 -128
  1128. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-an-plus-b.cjs +0 -235
  1129. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-const.cjs +0 -12
  1130. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-urange.cjs +0 -149
  1131. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic.cjs +0 -573
  1132. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/match-graph.cjs +0 -459
  1133. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/match.cjs +0 -632
  1134. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/prepare-tokens.cjs +0 -54
  1135. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/search.cjs +0 -65
  1136. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/structure.cjs +0 -168
  1137. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/trace.cjs +0 -73
  1138. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/units.cjs +0 -38
  1139. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/SyntaxError.cjs +0 -69
  1140. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/create.cjs +0 -336
  1141. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/sequence.cjs +0 -47
  1142. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/font-face.cjs +0 -12
  1143. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/import.cjs +0 -37
  1144. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/index.cjs +0 -19
  1145. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/media.cjs +0 -16
  1146. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/nest.cjs +0 -16
  1147. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/page.cjs +0 -16
  1148. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/supports.cjs +0 -77
  1149. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/lexer.cjs +0 -12
  1150. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/mix.cjs +0 -119
  1151. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/parser.cjs +0 -34
  1152. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/walker.cjs +0 -9
  1153. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/create.cjs +0 -57
  1154. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/function/expression.cjs +0 -11
  1155. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/function/var.cjs +0 -43
  1156. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/index.cjs +0 -14
  1157. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AnPlusB.cjs +0 -293
  1158. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Atrule.cjs +0 -103
  1159. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AtrulePrelude.cjs +0 -52
  1160. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AttributeSelector.cjs +0 -148
  1161. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Block.cjs +0 -96
  1162. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Brackets.cjs +0 -38
  1163. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/CDC.cjs +0 -26
  1164. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/CDO.cjs +0 -26
  1165. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/ClassSelector.cjs +0 -31
  1166. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Combinator.cjs +0 -61
  1167. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Comment.cjs +0 -40
  1168. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Declaration.cjs +0 -166
  1169. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/DeclarationList.cjs +0 -62
  1170. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Dimension.cjs +0 -30
  1171. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Function.cjs +0 -45
  1172. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Hash.cjs +0 -30
  1173. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/IdSelector.cjs +0 -33
  1174. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Identifier.cjs +0 -25
  1175. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaFeature.cjs +0 -76
  1176. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaQuery.cjs +0 -61
  1177. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaQueryList.cjs +0 -41
  1178. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/NestingSelector.cjs +0 -29
  1179. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Nth.cjs +0 -54
  1180. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Number.cjs +0 -25
  1181. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Operator.cjs +0 -28
  1182. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Parentheses.cjs +0 -38
  1183. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Percentage.cjs +0 -25
  1184. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/PseudoClassSelector.cjs +0 -65
  1185. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/PseudoElementSelector.cjs +0 -67
  1186. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Ratio.cjs +0 -67
  1187. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Raw.cjs +0 -48
  1188. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Rule.cjs +0 -58
  1189. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Selector.cjs +0 -39
  1190. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/SelectorList.cjs +0 -43
  1191. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/String.cjs +0 -26
  1192. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/StyleSheet.cjs +0 -83
  1193. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/TypeSelector.cjs +0 -59
  1194. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/UnicodeRange.cjs +0 -158
  1195. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Url.cjs +0 -54
  1196. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Value.cjs +0 -26
  1197. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/WhiteSpace.cjs +0 -34
  1198. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/index-parse.cjs +0 -87
  1199. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/index.cjs +0 -87
  1200. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/pseudo/index.cjs +0 -54
  1201. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/atrulePrelude.cjs +0 -9
  1202. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/default.cjs +0 -76
  1203. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/index.cjs +0 -11
  1204. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/selector.cjs +0 -88
  1205. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/value.cjs +0 -29
  1206. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/OffsetToLocation.cjs +0 -91
  1207. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/TokenStream.cjs +0 -264
  1208. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/adopt-buffer.cjs +0 -13
  1209. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/char-code-definitions.cjs +0 -231
  1210. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/index.cjs +0 -554
  1211. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/names.cjs +0 -31
  1212. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/types.cjs +0 -57
  1213. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/utils.cjs +0 -261
  1214. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/List.cjs +0 -473
  1215. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/clone.cjs +0 -25
  1216. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/create-custom-error.cjs +0 -18
  1217. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/ident.cjs +0 -102
  1218. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/names.cjs +0 -113
  1219. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/string.cjs +0 -99
  1220. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/url.cjs +0 -108
  1221. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/version.cjs +0 -5
  1222. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/walker/create.cjs +0 -291
  1223. package/.output/server/node_modules/.nitro/css-tree@2.3.1/data/patch.json +0 -725
  1224. package/.output/server/node_modules/.nitro/css-tree@2.3.1/package.json +0 -126
  1225. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/decode.js +0 -536
  1226. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/decode_codepoint.js +0 -76
  1227. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/encode.js +0 -77
  1228. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/escape.js +0 -122
  1229. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/generated/decode-data-html.js +0 -9
  1230. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/generated/decode-data-xml.js +0 -9
  1231. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/generated/encode-html.js +0 -12
  1232. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/index.js +0 -126
  1233. package/.output/server/node_modules/.nitro/mdn-data@2.0.28/css/at-rules.json +0 -620
  1234. package/.output/server/node_modules/.nitro/mdn-data@2.0.28/css/properties.json +0 -9297
  1235. package/.output/server/node_modules/.nitro/mdn-data@2.0.28/css/syntaxes.json +0 -794
  1236. package/.output/server/node_modules/.nitro/mdn-data@2.0.28/package.json +0 -38
  1237. package/.output/server/node_modules/.nitro/mdn-data@2.0.30/css/at-rules.json +0 -620
  1238. package/.output/server/node_modules/.nitro/mdn-data@2.0.30/css/properties.json +0 -9626
  1239. package/.output/server/node_modules/.nitro/mdn-data@2.0.30/css/syntaxes.json +0 -866
  1240. package/.output/server/node_modules/.nitro/mdn-data@2.0.30/package.json +0 -38
  1241. package/.output/server/node_modules/.nitro/property-information@6.5.0/index.js +0 -18
  1242. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/aria.js +0 -59
  1243. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/find.js +0 -68
  1244. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/hast-to-react.js +0 -28
  1245. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/html.js +0 -322
  1246. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/normalize.js +0 -7
  1247. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/svg.js +0 -567
  1248. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/case-insensitive-transform.js +0 -10
  1249. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/case-sensitive-transform.js +0 -8
  1250. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/create.js +0 -58
  1251. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/defined-info.js +0 -44
  1252. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/info.js +0 -25
  1253. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/merge.js +0 -26
  1254. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/schema.js +0 -28
  1255. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/xlink.js +0 -17
  1256. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/xml.js +0 -9
  1257. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/xmlns.js +0 -9
  1258. package/.output/server/node_modules/.nitro/property-information@6.5.0/package.json +0 -93
  1259. package/.output/server/node_modules/.nitro/property-information@7.1.0/lib/util/types.js +0 -13
  1260. package/.output/server/node_modules/@iconify/utils/lib/colors/index.mjs +0 -350
  1261. package/.output/server/node_modules/@iconify/utils/lib/colors/keywords.mjs +0 -188
  1262. package/.output/server/node_modules/@iconify/utils/lib/css/common.mjs +0 -90
  1263. package/.output/server/node_modules/@iconify/utils/lib/css/format.mjs +0 -38
  1264. package/.output/server/node_modules/@iconify/utils/lib/css/icon.mjs +0 -76
  1265. package/.output/server/node_modules/@iconify/utils/lib/css/icons.mjs +0 -168
  1266. package/.output/server/node_modules/@iconify/utils/lib/customisations/bool.mjs +0 -22
  1267. package/.output/server/node_modules/@iconify/utils/lib/customisations/defaults.mjs +0 -14
  1268. package/.output/server/node_modules/@iconify/utils/lib/customisations/flip.mjs +0 -16
  1269. package/.output/server/node_modules/@iconify/utils/lib/customisations/merge.mjs +0 -22
  1270. package/.output/server/node_modules/@iconify/utils/lib/customisations/rotate.mjs +0 -33
  1271. package/.output/server/node_modules/@iconify/utils/lib/emoji/cleanup.mjs +0 -51
  1272. package/.output/server/node_modules/@iconify/utils/lib/emoji/convert.mjs +0 -84
  1273. package/.output/server/node_modules/@iconify/utils/lib/emoji/data.mjs +0 -16
  1274. package/.output/server/node_modules/@iconify/utils/lib/emoji/format.mjs +0 -44
  1275. package/.output/server/node_modules/@iconify/utils/lib/emoji/parse.mjs +0 -58
  1276. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/base.mjs +0 -231
  1277. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/create.mjs +0 -31
  1278. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/numbers.mjs +0 -164
  1279. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/similar.mjs +0 -216
  1280. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/tree.mjs +0 -113
  1281. package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/find.mjs +0 -104
  1282. package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/replace.mjs +0 -34
  1283. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/components.mjs +0 -75
  1284. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/missing.mjs +0 -97
  1285. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/name.mjs +0 -54
  1286. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/parse.mjs +0 -97
  1287. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/similar.mjs +0 -45
  1288. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/tree.mjs +0 -105
  1289. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/variations.mjs +0 -54
  1290. package/.output/server/node_modules/@iconify/utils/lib/icon/defaults.mjs +0 -24
  1291. package/.output/server/node_modules/@iconify/utils/lib/icon/merge.mjs +0 -20
  1292. package/.output/server/node_modules/@iconify/utils/lib/icon/name.mjs +0 -53
  1293. package/.output/server/node_modules/@iconify/utils/lib/icon/square.mjs +0 -23
  1294. package/.output/server/node_modules/@iconify/utils/lib/icon/transformations.mjs +0 -16
  1295. package/.output/server/node_modules/@iconify/utils/lib/icon-set/convert-info.mjs +0 -182
  1296. package/.output/server/node_modules/@iconify/utils/lib/icon-set/expand.mjs +0 -22
  1297. package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icon.mjs +0 -28
  1298. package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icons.mjs +0 -46
  1299. package/.output/server/node_modules/@iconify/utils/lib/icon-set/minify.mjs +0 -66
  1300. package/.output/server/node_modules/@iconify/utils/lib/icon-set/parse.mjs +0 -51
  1301. package/.output/server/node_modules/@iconify/utils/lib/icon-set/tree.mjs +0 -23
  1302. package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate-basic.mjs +0 -62
  1303. package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate.mjs +0 -161
  1304. package/.output/server/node_modules/@iconify/utils/lib/index.mjs +0 -64
  1305. package/.output/server/node_modules/@iconify/utils/lib/loader/custom.mjs +0 -50
  1306. package/.output/server/node_modules/@iconify/utils/lib/loader/loader.mjs +0 -59
  1307. package/.output/server/node_modules/@iconify/utils/lib/loader/modern.mjs +0 -80
  1308. package/.output/server/node_modules/@iconify/utils/lib/loader/utils.mjs +0 -92
  1309. package/.output/server/node_modules/@iconify/utils/lib/misc/objects.mjs +0 -30
  1310. package/.output/server/node_modules/@iconify/utils/lib/misc/strings.mjs +0 -17
  1311. package/.output/server/node_modules/@iconify/utils/lib/misc/title.mjs +0 -5
  1312. package/.output/server/node_modules/@iconify/utils/lib/svg/build.mjs +0 -119
  1313. package/.output/server/node_modules/@iconify/utils/lib/svg/defs.mjs +0 -30
  1314. package/.output/server/node_modules/@iconify/utils/lib/svg/encode-svg-for-css.mjs +0 -20
  1315. package/.output/server/node_modules/@iconify/utils/lib/svg/html.mjs +0 -9
  1316. package/.output/server/node_modules/@iconify/utils/lib/svg/id.mjs +0 -28
  1317. package/.output/server/node_modules/@iconify/utils/lib/svg/inner-html.mjs +0 -19
  1318. package/.output/server/node_modules/@iconify/utils/lib/svg/parse.mjs +0 -83
  1319. package/.output/server/node_modules/@iconify/utils/lib/svg/pretty.mjs +0 -70
  1320. package/.output/server/node_modules/@iconify/utils/lib/svg/size.mjs +0 -40
  1321. package/.output/server/node_modules/@iconify/utils/lib/svg/trim.mjs +0 -5
  1322. package/.output/server/node_modules/@iconify/utils/lib/svg/url.mjs +0 -11
  1323. package/.output/server/node_modules/@iconify/utils/lib/svg/viewbox.mjs +0 -8
  1324. package/.output/server/node_modules/@lukeed/ms/dist/index.mjs +0 -34
  1325. package/.output/server/node_modules/@lukeed/ms/package.json +0 -48
  1326. package/.output/server/node_modules/@poppinss/string/build/chunk-LJJE2S3U.js +0 -407
  1327. package/.output/server/node_modules/@shikijs/themes/dist/github-dark.mjs +0 -2
  1328. package/.output/server/node_modules/@shikijs/themes/dist/github-light.mjs +0 -2
  1329. package/.output/server/node_modules/@trysound/sax/lib/sax.js +0 -1413
  1330. package/.output/server/node_modules/@trysound/sax/package.json +0 -30
  1331. package/.output/server/node_modules/bytes/index.js +0 -170
  1332. package/.output/server/node_modules/bytes/package.json +0 -42
  1333. package/.output/server/node_modules/color/index.js +0 -496
  1334. package/.output/server/node_modules/color/package.json +0 -47
  1335. package/.output/server/node_modules/color-convert/conversions.js +0 -839
  1336. package/.output/server/node_modules/color-convert/index.js +0 -81
  1337. package/.output/server/node_modules/color-convert/package.json +0 -48
  1338. package/.output/server/node_modules/color-convert/route.js +0 -97
  1339. package/.output/server/node_modules/color-name/index.js +0 -152
  1340. package/.output/server/node_modules/color-name/package.json +0 -28
  1341. package/.output/server/node_modules/color-string/index.js +0 -242
  1342. package/.output/server/node_modules/color-string/package.json +0 -39
  1343. package/.output/server/node_modules/css-select/lib/attributes.js +0 -236
  1344. package/.output/server/node_modules/css-select/lib/compile.js +0 -151
  1345. package/.output/server/node_modules/css-select/lib/general.js +0 -148
  1346. package/.output/server/node_modules/css-select/lib/index.js +0 -154
  1347. package/.output/server/node_modules/css-select/lib/pseudo-selectors/aliases.js +0 -34
  1348. package/.output/server/node_modules/css-select/lib/pseudo-selectors/filters.js +0 -157
  1349. package/.output/server/node_modules/css-select/lib/pseudo-selectors/index.js +0 -46
  1350. package/.output/server/node_modules/css-select/lib/pseudo-selectors/pseudos.js +0 -93
  1351. package/.output/server/node_modules/css-select/lib/pseudo-selectors/subselects.js +0 -112
  1352. package/.output/server/node_modules/css-select/lib/sort.js +0 -84
  1353. package/.output/server/node_modules/csso/cjs/clean/Atrule.cjs +0 -73
  1354. package/.output/server/node_modules/csso/cjs/clean/Comment.cjs +0 -7
  1355. package/.output/server/node_modules/csso/cjs/clean/Declaration.cjs +0 -18
  1356. package/.output/server/node_modules/csso/cjs/clean/Raw.cjs +0 -13
  1357. package/.output/server/node_modules/csso/cjs/clean/Rule.cjs +0 -104
  1358. package/.output/server/node_modules/csso/cjs/clean/TypeSelector.cjs +0 -23
  1359. package/.output/server/node_modules/csso/cjs/clean/WhiteSpace.cjs +0 -7
  1360. package/.output/server/node_modules/csso/cjs/clean/index.cjs +0 -32
  1361. package/.output/server/node_modules/csso/cjs/clean/utils.cjs +0 -12
  1362. package/.output/server/node_modules/csso/cjs/compress.cjs +0 -200
  1363. package/.output/server/node_modules/csso/cjs/index.cjs +0 -127
  1364. package/.output/server/node_modules/csso/cjs/replace/Atrule.cjs +0 -13
  1365. package/.output/server/node_modules/csso/cjs/replace/AttributeSelector.cjs +0 -32
  1366. package/.output/server/node_modules/csso/cjs/replace/Dimension.cjs +0 -67
  1367. package/.output/server/node_modules/csso/cjs/replace/Number.cjs +0 -45
  1368. package/.output/server/node_modules/csso/cjs/replace/Percentage.cjs +0 -41
  1369. package/.output/server/node_modules/csso/cjs/replace/Url.cjs +0 -8
  1370. package/.output/server/node_modules/csso/cjs/replace/Value.cjs +0 -29
  1371. package/.output/server/node_modules/csso/cjs/replace/atrule/keyframes.cjs +0 -25
  1372. package/.output/server/node_modules/csso/cjs/replace/color.cjs +0 -504
  1373. package/.output/server/node_modules/csso/cjs/replace/index.cjs +0 -36
  1374. package/.output/server/node_modules/csso/cjs/replace/property/background.cjs +0 -54
  1375. package/.output/server/node_modules/csso/cjs/replace/property/border.cjs +0 -20
  1376. package/.output/server/node_modules/csso/cjs/replace/property/font-weight.cjs +0 -26
  1377. package/.output/server/node_modules/csso/cjs/replace/property/font.cjs +0 -34
  1378. package/.output/server/node_modules/csso/cjs/restructure/1-mergeAtrule.cjs +0 -109
  1379. package/.output/server/node_modules/csso/cjs/restructure/2-initialMergeRuleset.cjs +0 -51
  1380. package/.output/server/node_modules/csso/cjs/restructure/3-disjoinRuleset.cjs +0 -46
  1381. package/.output/server/node_modules/csso/cjs/restructure/4-restructShorthand.cjs +0 -429
  1382. package/.output/server/node_modules/csso/cjs/restructure/6-restructBlock.cjs +0 -307
  1383. package/.output/server/node_modules/csso/cjs/restructure/7-mergeRuleset.cjs +0 -90
  1384. package/.output/server/node_modules/csso/cjs/restructure/8-restructRuleset.cjs +0 -175
  1385. package/.output/server/node_modules/csso/cjs/restructure/index.cjs +0 -39
  1386. package/.output/server/node_modules/csso/cjs/restructure/prepare/createDeclarationIndexer.cjs +0 -34
  1387. package/.output/server/node_modules/csso/cjs/restructure/prepare/index.cjs +0 -45
  1388. package/.output/server/node_modules/csso/cjs/restructure/prepare/processSelector.cjs +0 -101
  1389. package/.output/server/node_modules/csso/cjs/restructure/prepare/specificity.cjs +0 -133
  1390. package/.output/server/node_modules/csso/cjs/restructure/utils.cjs +0 -151
  1391. package/.output/server/node_modules/csso/cjs/syntax.cjs +0 -60
  1392. package/.output/server/node_modules/csso/cjs/usage.cjs +0 -75
  1393. package/.output/server/node_modules/csso/cjs/utils.cjs +0 -14
  1394. package/.output/server/node_modules/csso/cjs/version.cjs +0 -5
  1395. package/.output/server/node_modules/debug/package.json +0 -64
  1396. package/.output/server/node_modules/debug/src/browser.js +0 -272
  1397. package/.output/server/node_modules/debug/src/common.js +0 -292
  1398. package/.output/server/node_modules/debug/src/index.js +0 -10
  1399. package/.output/server/node_modules/debug/src/node.js +0 -263
  1400. package/.output/server/node_modules/dom-serializer/lib/foreignNames.js +0 -103
  1401. package/.output/server/node_modules/dom-serializer/lib/index.js +0 -229
  1402. package/.output/server/node_modules/domelementtype/lib/index.js +0 -55
  1403. package/.output/server/node_modules/domhandler/lib/index.js +0 -165
  1404. package/.output/server/node_modules/domhandler/lib/node.js +0 -474
  1405. package/.output/server/node_modules/domutils/lib/feeds.js +0 -190
  1406. package/.output/server/node_modules/domutils/lib/helpers.js +0 -142
  1407. package/.output/server/node_modules/domutils/lib/index.js +0 -33
  1408. package/.output/server/node_modules/domutils/lib/legacy.js +0 -168
  1409. package/.output/server/node_modules/domutils/lib/manipulation.js +0 -142
  1410. package/.output/server/node_modules/domutils/lib/querying.js +0 -155
  1411. package/.output/server/node_modules/domutils/lib/stringify.js +0 -91
  1412. package/.output/server/node_modules/domutils/lib/traversal.js +0 -125
  1413. package/.output/server/node_modules/has-flag/index.js +0 -8
  1414. package/.output/server/node_modules/has-flag/package.json +0 -46
  1415. package/.output/server/node_modules/ipx/dist/shared/ipx.e4d5b25d.mjs +0 -761
  1416. package/.output/server/node_modules/is-arrayish/index.js +0 -9
  1417. package/.output/server/node_modules/is-arrayish/package.json +0 -45
  1418. package/.output/server/node_modules/jose/dist/webapi/lib/epoch.js +0 -1
  1419. package/.output/server/node_modules/jose/dist/webapi/lib/secs.js +0 -55
  1420. package/.output/server/node_modules/ms/index.js +0 -162
  1421. package/.output/server/node_modules/ms/package.json +0 -38
  1422. package/.output/server/node_modules/nth-check/lib/compile.js +0 -121
  1423. package/.output/server/node_modules/nth-check/lib/index.js +0 -70
  1424. package/.output/server/node_modules/nth-check/lib/parse.js +0 -77
  1425. package/.output/server/node_modules/ofetch/dist/shared/ofetch.03887fc3.mjs +0 -333
  1426. package/.output/server/node_modules/pathe/dist/shared/pathe.ff20891b.mjs +0 -221
  1427. package/.output/server/node_modules/sharp/build/Release/libglib-2.0-0.dll +0 -0
  1428. package/.output/server/node_modules/sharp/build/Release/libgobject-2.0-0.dll +0 -0
  1429. package/.output/server/node_modules/sharp/build/Release/libvips-42.dll +0 -0
  1430. package/.output/server/node_modules/sharp/build/Release/libvips-cpp.dll +0 -0
  1431. package/.output/server/node_modules/sharp/build/Release/sharp-win32-x64.node +0 -0
  1432. package/.output/server/node_modules/sharp/lib/platform.js +0 -30
  1433. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/THIRD-PARTY-NOTICES.md +0 -43
  1434. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/include/harfbuzz/hb-cplusplus.hh +0 -223
  1435. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/include/vips/vips8 +0 -60
  1436. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libglib-2.0-0.dll +0 -0
  1437. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libglib-2.0.lib +0 -0
  1438. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libgobject-2.0-0.dll +0 -0
  1439. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libgobject-2.0.lib +0 -0
  1440. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libvips-42.dll +0 -0
  1441. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libvips.lib +0 -0
  1442. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/platform.json +0 -1
  1443. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/versions.json +0 -31
  1444. package/.output/server/node_modules/simple-swizzle/index.js +0 -29
  1445. package/.output/server/node_modules/simple-swizzle/package.json +0 -36
  1446. package/.output/server/node_modules/supports-color/index.js +0 -135
  1447. package/.output/server/node_modules/supports-color/package.json +0 -53
  1448. package/.output/server/node_modules/svgo/plugins/removeScriptElement.js +0 -70
  1449. package/.output/server/node_modules/truncatise/index.js +0 -188
  1450. package/.output/server/node_modules/truncatise/package.json +0 -36
  1451. package/.output/server/node_modules/unhead/dist/shared/unhead.BpRRHAhY.mjs +0 -194
  1452. package/.output/server/node_modules/unhead/dist/shared/unhead.DH45uomy.mjs +0 -180
  1453. package/.output/server/node_modules/unhead/dist/shared/unhead.DZbvapt-.mjs +0 -70
  1454. package/.output/server/node_modules/unhead/dist/shared/unhead.Djo8ep_Y.mjs +0 -166
  1455. package/.output/server/node_modules/vue-router/dist/devtools-BLCumUwL.mjs +0 -1218
  1456. /package/.nuxt/ui/{button-group.ts → field-group.ts} +0 -0
  1457. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/index.js +0 -0
  1458. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/aria.js +0 -0
  1459. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/find.js +0 -0
  1460. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/hast-to-react.js +0 -0
  1461. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/html.js +0 -0
  1462. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/normalize.js +0 -0
  1463. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/svg.js +0 -0
  1464. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/case-insensitive-transform.js +0 -0
  1465. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/case-sensitive-transform.js +0 -0
  1466. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/create.js +0 -0
  1467. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/defined-info.js +0 -0
  1468. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/info.js +0 -0
  1469. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/merge.js +0 -0
  1470. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/schema.js +0 -0
  1471. /package/.output/server/node_modules/{.nitro/property-information@6.5.0 → property-information}/lib/util/types.js +0 -0
  1472. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/xlink.js +0 -0
  1473. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/xml.js +0 -0
  1474. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/xmlns.js +0 -0
  1475. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/package.json +0 -0
@@ -9,7 +9,7 @@ import vue_directives from './vue-directives.mjs'
9
9
  import vue_interpolations from './vue-interpolations.mjs'
10
10
  import vue_sfc_style_variable_injection from './vue-sfc-style-variable-injection.mjs'
11
11
 
12
- const lang = Object.freeze(JSON.parse("{\"displayName\":\"Vue\",\"name\":\"vue\",\"patterns\":[{\"include\":\"#vue-comments\"},{\"include\":\"#self-closing-tag\"},{\"begin\":\"(<)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"}},\"end\":\"(>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.end.html.vue\"}},\"patterns\":[{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)md\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"text.html.markdown\",\"patterns\":[{\"include\":\"text.html.markdown\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)html\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"text.html.derivative\",\"patterns\":[{\"include\":\"#html-stuff\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)pug\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"text.pug\",\"patterns\":[{\"include\":\"text.pug\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)stylus\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.stylus\",\"patterns\":[{\"include\":\"source.stylus\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)postcss\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.postcss\",\"patterns\":[{\"include\":\"source.postcss\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)sass\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.sass\",\"patterns\":[{\"include\":\"source.sass\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)css\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.css\",\"patterns\":[{\"include\":\"source.css\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)scss\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.css.scss\",\"patterns\":[{\"include\":\"source.css.scss\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)less\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.css.less\",\"patterns\":[{\"include\":\"source.css.less\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)js\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.js\",\"patterns\":[{\"include\":\"source.js\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)ts\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.ts\",\"patterns\":[{\"include\":\"source.ts\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)jsx\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.js.jsx\",\"patterns\":[{\"include\":\"source.js.jsx\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)tsx\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.tsx\",\"patterns\":[{\"include\":\"source.tsx\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)coffee\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.coffee\",\"patterns\":[{\"include\":\"source.coffee\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)json\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.json\",\"patterns\":[{\"include\":\"source.json\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)jsonc\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.json.comments\",\"patterns\":[{\"include\":\"source.json.comments\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)json5\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.json5\",\"patterns\":[{\"include\":\"source.json5\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)yaml\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.yaml\",\"patterns\":[{\"include\":\"source.yaml\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)toml\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.toml\",\"patterns\":[{\"include\":\"source.toml\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)(g(?:ql|raphql))\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.graphql\",\"patterns\":[{\"include\":\"source.graphql\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)vue\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.vue\",\"patterns\":[{\"include\":\"source.vue\"}]}]},{\"begin\":\"(template)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</template\\\\b)\",\"name\":\"text.html.derivative\",\"patterns\":[{\"include\":\"#html-stuff\"}]}]},{\"begin\":\"(script)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</script\\\\b)\",\"name\":\"source.js\",\"patterns\":[{\"include\":\"source.js\"}]}]},{\"begin\":\"(style)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</style\\\\b)\",\"name\":\"source.css\",\"patterns\":[{\"include\":\"source.css\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"text\"}]}]}],\"repository\":{\"html-stuff\":{\"patterns\":[{\"include\":\"#template-tag\"},{\"include\":\"text.html.derivative\"},{\"include\":\"text.html.basic\"}]},\"self-closing-tag\":{\"begin\":\"(<)([-0-:A-Za-z]+)(?=([^>]+/>))\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"end\":\"(/>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.end.html.vue\"}},\"name\":\"self-closing-tag\",\"patterns\":[{\"include\":\"#tag-stuff\"}]},\"tag-stuff\":{\"begin\":\"\\\\G\",\"end\":\"(?=/>)|(>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.end.html.vue\"}},\"name\":\"meta.tag-stuff\",\"patterns\":[{\"include\":\"#vue-directives\"},{\"include\":\"text.html.basic#attribute\"}]},\"template-tag\":{\"patterns\":[{\"include\":\"#template-tag-1\"},{\"include\":\"#template-tag-2\"}]},\"template-tag-1\":{\"begin\":\"(<)(template)\\\\b(>)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"},\"3\":{\"name\":\"punctuation.definition.tag.end.html.vue\"}},\"end\":\"(/?>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.end.html.vue\"}},\"name\":\"meta.template-tag.start\",\"patterns\":[{\"begin\":\"\\\\G\",\"end\":\"(?=/>)|((</)(template))\\\\b\",\"endCaptures\":{\"2\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"3\":{\"name\":\"entity.name.tag.$3.html.vue\"}},\"name\":\"meta.template-tag.end\",\"patterns\":[{\"include\":\"#html-stuff\"}]}]},\"template-tag-2\":{\"begin\":\"(<)(template)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"end\":\"(/?>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.end.html.vue\"}},\"name\":\"meta.template-tag.start\",\"patterns\":[{\"begin\":\"\\\\G\",\"end\":\"(?=/>)|((</)(template))\\\\b\",\"endCaptures\":{\"2\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"3\":{\"name\":\"entity.name.tag.$3.html.vue\"}},\"name\":\"meta.template-tag.end\",\"patterns\":[{\"include\":\"#tag-stuff\"},{\"include\":\"#html-stuff\"}]}]},\"vue-comments\":{\"patterns\":[{\"include\":\"#vue-comments-key-value\"},{\"begin\":\"<!--\",\"captures\":{\"0\":{\"name\":\"punctuation.definition.comment.vue\"}},\"end\":\"-->\",\"name\":\"comment.block.vue\"}]},\"vue-comments-key-value\":{\"begin\":\"(<!--)\\\\s*(@)([$\\\\w]+)(?=\\\\s)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.comment.vue\"},\"2\":{\"name\":\"punctuation.definition.block.tag.comment.vue\"},\"3\":{\"name\":\"storage.type.class.comment.vue\"}},\"end\":\"(-->)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.comment.vue\"}},\"name\":\"comment.block.vue\",\"patterns\":[{\"include\":\"source.json#value\"}]},\"vue-directives\":{\"patterns\":[{\"include\":\"#vue-directives-control\"},{\"include\":\"#vue-directives-generic-attr\"},{\"include\":\"#vue-directives-style-attr\"},{\"include\":\"#vue-directives-original\"}]},\"vue-directives-control\":{\"begin\":\"(?:(v-for)|(v-(?:if|else-if|else)))(?=[)/=>\\\\s])\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.loop.vue\"},\"2\":{\"name\":\"keyword.control.conditional.vue\"}},\"end\":\"(?=\\\\s*[^=\\\\s])\",\"name\":\"meta.attribute.directive.control.vue\",\"patterns\":[{\"include\":\"#vue-directives-expression\"}]},\"vue-directives-expression\":{\"patterns\":[{\"begin\":\"(=)\\\\s*([\\\"'`])\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.separator.key-value.html.vue\"},\"2\":{\"name\":\"punctuation.definition.string.begin.html.vue\"}},\"end\":\"(\\\\2)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.end.html.vue\"}},\"patterns\":[{\"begin\":\"(?<=([\\\"'`]))\",\"end\":\"(?=\\\\1)\",\"name\":\"source.ts.embedded.html.vue\",\"patterns\":[{\"include\":\"source.ts#expression\"}]}]},{\"begin\":\"(=)\\\\s*(?=[^\\\"'`])\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.separator.key-value.html.vue\"}},\"end\":\"(?=([>\\\\s]|/>))\",\"patterns\":[{\"begin\":\"(?=[^\\\"'`])\",\"end\":\"(?=([>\\\\s]|/>))\",\"name\":\"source.ts.embedded.html.vue\",\"patterns\":[{\"include\":\"source.ts#expression\"}]}]}]},\"vue-directives-generic-attr\":{\"begin\":\"\\\\b(generic)\\\\s*(=)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.other.attribute-name.html.vue\"},\"2\":{\"name\":\"punctuation.separator.key-value.html.vue\"}},\"end\":\"(?<=[\\\"'])\",\"name\":\"meta.attribute.generic.vue\",\"patterns\":[{\"begin\":\"([\\\"'])\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.begin.html.vue\"}},\"end\":\"(\\\\1)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.end.html.vue\"}},\"name\":\"meta.type.parameters.vue\",\"patterns\":[{\"include\":\"source.ts#comment\"},{\"match\":\"(?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))(extends|in|out)(?![$_[:alnum:]])(?:(?=\\\\.\\\\.\\\\.)|(?!\\\\.))\",\"name\":\"storage.modifier.ts\"},{\"include\":\"source.ts#type\"},{\"include\":\"source.ts#punctuation-comma\"},{\"match\":\"(=)(?!>)\",\"name\":\"keyword.operator.assignment.ts\"}]}]},\"vue-directives-original\":{\"begin\":\"(?:(v-[-\\\\w]+)(:)?|([.:])|(@)|(#))(?:(\\\\[)([^]]*)(])|([-\\\\w]+))?\",\"beginCaptures\":{\"1\":{\"name\":\"entity.other.attribute-name.html.vue\"},\"2\":{\"name\":\"punctuation.separator.key-value.html.vue\"},\"3\":{\"name\":\"punctuation.attribute-shorthand.bind.html.vue\"},\"4\":{\"name\":\"punctuation.attribute-shorthand.event.html.vue\"},\"5\":{\"name\":\"punctuation.attribute-shorthand.slot.html.vue\"},\"6\":{\"name\":\"punctuation.separator.key-value.html.vue\"},\"7\":{\"name\":\"source.ts.embedded.html.vue\",\"patterns\":[{\"include\":\"source.ts#expression\"}]},\"8\":{\"name\":\"punctuation.separator.key-value.html.vue\"},\"9\":{\"name\":\"entity.other.attribute-name.html.vue\"}},\"end\":\"(?=\\\\s*[^=\\\\s])\",\"name\":\"meta.attribute.directive.vue\",\"patterns\":[{\"1\":{\"name\":\"punctuation.separator.key-value.html.vue\"},\"2\":{\"name\":\"entity.other.attribute-name.html.vue\"},\"match\":\"(\\\\.)([-\\\\w]*)\"},{\"include\":\"#vue-directives-expression\"}]},\"vue-directives-style-attr\":{\"begin\":\"\\\\b(style)\\\\s*(=)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.other.attribute-name.html.vue\"},\"2\":{\"name\":\"punctuation.separator.key-value.html.vue\"}},\"end\":\"(?<=[\\\"'])\",\"name\":\"meta.attribute.style.vue\",\"patterns\":[{\"begin\":\"([\\\"'])\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.begin.html.vue\"}},\"end\":\"(\\\\1)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.end.html.vue\"}},\"name\":\"source.css.embedded.html.vue\",\"patterns\":[{\"include\":\"source.css#comment-block\"},{\"include\":\"source.css#escapes\"},{\"include\":\"source.css#font-features\"},{\"match\":\"(?<![-\\\\w])--[-A-Z_a-z[^\\\\x00-\\\\x7F]](?:[-0-9A-Z_a-z[^\\\\x00-\\\\x7F]]|\\\\\\\\(?:\\\\h{1,6}|.))*\",\"name\":\"variable.css\"},{\"begin\":\"(?<![-A-Za-z])(?=[-A-Za-z])\",\"end\":\"$|(?![-A-Za-z])\",\"name\":\"meta.property-name.css\",\"patterns\":[{\"include\":\"source.css#property-names\"}]},{\"begin\":\"(:)\\\\s*\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.separator.key-value.css\"}},\"contentName\":\"meta.property-value.css\",\"end\":\"\\\\s*(;)|\\\\s*(?=[\\\"'])\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.terminator.rule.css\"}},\"patterns\":[{\"include\":\"source.css#comment-block\"},{\"include\":\"source.css#property-values\"}]},{\"match\":\";\",\"name\":\"punctuation.terminator.rule.css\"}]}]},\"vue-interpolations\":{\"patterns\":[{\"begin\":\"(\\\\{\\\\{)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.interpolation.begin.html.vue\"}},\"end\":\"(}})\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.interpolation.end.html.vue\"}},\"name\":\"expression.embedded.vue\",\"patterns\":[{\"begin\":\"\\\\G\",\"end\":\"(?=}})\",\"name\":\"source.ts.embedded.html.vue\",\"patterns\":[{\"include\":\"source.ts#expression\"}]}]}]}},\"scopeName\":\"source.vue\",\"embeddedLangs\":[\"css\",\"javascript\",\"typescript\",\"json\",\"html-derivative\",\"html\",\"markdown-vue\",\"vue-directives\",\"vue-interpolations\",\"vue-sfc-style-variable-injection\"],\"embeddedLangsLazy\":[\"markdown\",\"pug\",\"stylus\",\"sass\",\"scss\",\"less\",\"jsx\",\"tsx\",\"coffee\",\"jsonc\",\"json5\",\"yaml\",\"toml\",\"graphql\"]}"))
12
+ const lang = Object.freeze(JSON.parse("{\"displayName\":\"Vue\",\"name\":\"vue\",\"patterns\":[{\"include\":\"#vue-comments\"},{\"include\":\"#self-closing-tag\"},{\"begin\":\"(<)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"}},\"end\":\"(>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.end.html.vue\"}},\"patterns\":[{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)md\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"text.html.markdown\",\"patterns\":[{\"include\":\"text.html.markdown\"}]}]},{\"begin\":\"(?!template(?![-0-:A-Za-z]))([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)html\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"contentName\":\"text.html.derivative\",\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"include\":\"#html-stuff\"}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)pug\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"text.pug\",\"patterns\":[{\"include\":\"text.pug\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)stylus\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.stylus\",\"patterns\":[{\"include\":\"source.stylus\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)postcss\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.postcss\",\"patterns\":[{\"include\":\"source.postcss\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)sass\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.sass\",\"patterns\":[{\"include\":\"source.sass\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)css\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.css\",\"patterns\":[{\"include\":\"source.css\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)scss\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.css.scss\",\"patterns\":[{\"include\":\"source.css.scss\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)less\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.css.less\",\"patterns\":[{\"include\":\"source.css.less\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)js\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.js\",\"patterns\":[{\"include\":\"source.js\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)ts\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.ts\",\"patterns\":[{\"include\":\"source.ts\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)jsx\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.js.jsx\",\"patterns\":[{\"include\":\"source.js.jsx\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)tsx\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.tsx\",\"patterns\":[{\"include\":\"source.tsx\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)coffee\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.coffee\",\"patterns\":[{\"include\":\"source.coffee\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)json\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.json\",\"patterns\":[{\"include\":\"source.json\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)jsonc\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.json.comments\",\"patterns\":[{\"include\":\"source.json.comments\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)json5\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.json5\",\"patterns\":[{\"include\":\"source.json5\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)yaml\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.yaml\",\"patterns\":[{\"include\":\"source.yaml\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)toml\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.toml\",\"patterns\":[{\"include\":\"source.toml\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)(g(?:ql|raphql))\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.graphql\",\"patterns\":[{\"include\":\"source.graphql\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\\\\b(?=[^>]*\\\\blang\\\\s*=\\\\s*([\\\"']?)vue\\\\b\\\\2)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"source.vue\",\"patterns\":[{\"include\":\"source.vue\"}]}]},{\"begin\":\"(template)(?=\\\\s|/?>)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</template[>\\\\s])\",\"name\":\"text.html.derivative\",\"patterns\":[{\"include\":\"#html-stuff\"}]}]},{\"begin\":\"(script)(?=\\\\s|/?>)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</script[>\\\\s])\",\"name\":\"source.js\",\"patterns\":[{\"include\":\"source.js\"}]}]},{\"begin\":\"(style)(?=\\\\s|/?>)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</style[>\\\\s])\",\"name\":\"source.css\",\"patterns\":[{\"include\":\"source.css\"}]}]},{\"begin\":\"([-0-:A-Za-z]+)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.tag.$1.html.vue\"}},\"end\":\"(</)(\\\\1)\\\\s*(?=>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"patterns\":[{\"include\":\"#tag-stuff\"},{\"begin\":\"(?<=>)\",\"end\":\"(?=</)\",\"name\":\"text\"}]}]}],\"repository\":{\"html-stuff\":{\"patterns\":[{\"include\":\"#template-tag\"},{\"include\":\"text.html.derivative\"},{\"include\":\"text.html.basic\"}]},\"self-closing-tag\":{\"begin\":\"(<)([-0-:A-Za-z]+)(?=([^>]+/>))\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"end\":\"(/>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.end.html.vue\"}},\"name\":\"self-closing-tag\",\"patterns\":[{\"include\":\"#tag-stuff\"}]},\"tag-stuff\":{\"begin\":\"\\\\G\",\"end\":\"(?=/>)|(>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.end.html.vue\"}},\"name\":\"meta.tag-stuff\",\"patterns\":[{\"include\":\"#vue-directives\"},{\"include\":\"text.html.basic#attribute\"}]},\"template-tag\":{\"patterns\":[{\"include\":\"#template-tag-1\"},{\"include\":\"#template-tag-2\"}]},\"template-tag-1\":{\"begin\":\"(<)(template)\\\\b(>)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"},\"3\":{\"name\":\"punctuation.definition.tag.end.html.vue\"}},\"end\":\"(/?>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.end.html.vue\"}},\"name\":\"meta.template-tag.start\",\"patterns\":[{\"begin\":\"\\\\G\",\"end\":\"(?=/>)|((</)(template)(?=[>\\\\s]))\",\"endCaptures\":{\"2\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"3\":{\"name\":\"entity.name.tag.$3.html.vue\"}},\"name\":\"meta.template-tag.end\",\"patterns\":[{\"include\":\"#html-stuff\"}]}]},\"template-tag-2\":{\"begin\":\"(<)(template)(?=\\\\s|/?>)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"2\":{\"name\":\"entity.name.tag.$2.html.vue\"}},\"end\":\"(/?>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.end.html.vue\"}},\"name\":\"meta.template-tag.start\",\"patterns\":[{\"begin\":\"\\\\G\",\"end\":\"(?=/>)|((</)(template)(?=[>\\\\s]))\",\"endCaptures\":{\"2\":{\"name\":\"punctuation.definition.tag.begin.html.vue\"},\"3\":{\"name\":\"entity.name.tag.$3.html.vue\"}},\"name\":\"meta.template-tag.end\",\"patterns\":[{\"include\":\"#tag-stuff\"},{\"include\":\"#html-stuff\"}]}]},\"vue-comments\":{\"patterns\":[{\"include\":\"#vue-comments-key-value\"},{\"begin\":\"<!--\",\"captures\":{\"0\":{\"name\":\"punctuation.definition.comment.vue\"}},\"end\":\"-->\",\"name\":\"comment.block.vue\"}]},\"vue-comments-key-value\":{\"begin\":\"(<!--)\\\\s*(@)([$\\\\w]+)(?=\\\\s)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.comment.vue\"},\"2\":{\"name\":\"punctuation.definition.block.tag.comment.vue\"},\"3\":{\"name\":\"storage.type.class.comment.vue\"}},\"end\":\"(-->)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.comment.vue\"}},\"name\":\"comment.block.vue\",\"patterns\":[{\"include\":\"source.json#value\"}]},\"vue-directives\":{\"patterns\":[{\"include\":\"#vue-directives-control\"},{\"include\":\"#vue-directives-generic-attr\"},{\"include\":\"#vue-directives-style-attr\"},{\"include\":\"#vue-directives-original\"}]},\"vue-directives-control\":{\"begin\":\"(?:(v-for)|(v-(?:if|else-if|else)))(?=[)/=>\\\\s])\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.loop.vue\"},\"2\":{\"name\":\"keyword.control.conditional.vue\"}},\"end\":\"(?=\\\\s*[^=\\\\s])\",\"name\":\"meta.attribute.directive.control.vue\",\"patterns\":[{\"include\":\"#vue-directives-expression\"}]},\"vue-directives-expression\":{\"patterns\":[{\"begin\":\"(=)\\\\s*([\\\"'`])\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.separator.key-value.html.vue\"},\"2\":{\"name\":\"punctuation.definition.string.begin.html.vue\"}},\"end\":\"(\\\\2)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.end.html.vue\"}},\"patterns\":[{\"begin\":\"(?<=([\\\"'`]))\",\"end\":\"(?=\\\\1)\",\"name\":\"source.ts.embedded.html.vue\",\"patterns\":[{\"include\":\"source.ts#expression\"}]}]},{\"begin\":\"(=)\\\\s*(?=[^\\\"'`])\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.separator.key-value.html.vue\"}},\"end\":\"(?=([>\\\\s]|/>))\",\"patterns\":[{\"begin\":\"(?=[^\\\"'`])\",\"end\":\"(?=([>\\\\s]|/>))\",\"name\":\"source.ts.embedded.html.vue\",\"patterns\":[{\"include\":\"source.ts#expression\"}]}]}]},\"vue-directives-generic-attr\":{\"begin\":\"\\\\b(generic)\\\\s*(=)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.other.attribute-name.html.vue\"},\"2\":{\"name\":\"punctuation.separator.key-value.html.vue\"}},\"end\":\"(?<=[\\\"'])\",\"name\":\"meta.attribute.generic.vue\",\"patterns\":[{\"begin\":\"([\\\"'])\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.begin.html.vue\"}},\"end\":\"(\\\\1)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.end.html.vue\"}},\"name\":\"meta.type.parameters.vue\",\"patterns\":[{\"include\":\"source.ts#comment\"},{\"match\":\"(?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))(extends|in|out)(?![$_[:alnum:]])(?:(?=\\\\.\\\\.\\\\.)|(?!\\\\.))\",\"name\":\"storage.modifier.ts\"},{\"include\":\"source.ts#type\"},{\"include\":\"source.ts#punctuation-comma\"},{\"match\":\"(=)(?!>)\",\"name\":\"keyword.operator.assignment.ts\"}]}]},\"vue-directives-original\":{\"begin\":\"(?:(v-[-\\\\w]+)(:)?|([.:])|(@)|(#))(?:(\\\\[)([^]]*)(])|([-\\\\w]+))?\",\"beginCaptures\":{\"1\":{\"name\":\"entity.other.attribute-name.html.vue\"},\"2\":{\"name\":\"punctuation.separator.key-value.html.vue\"},\"3\":{\"name\":\"punctuation.attribute-shorthand.bind.html.vue\"},\"4\":{\"name\":\"punctuation.attribute-shorthand.event.html.vue\"},\"5\":{\"name\":\"punctuation.attribute-shorthand.slot.html.vue\"},\"6\":{\"name\":\"punctuation.separator.key-value.html.vue\"},\"7\":{\"name\":\"source.ts.embedded.html.vue\",\"patterns\":[{\"include\":\"source.ts#expression\"}]},\"8\":{\"name\":\"punctuation.separator.key-value.html.vue\"},\"9\":{\"name\":\"entity.other.attribute-name.html.vue\"}},\"end\":\"(?=\\\\s*[^=\\\\s])\",\"name\":\"meta.attribute.directive.vue\",\"patterns\":[{\"1\":{\"name\":\"punctuation.separator.key-value.html.vue\"},\"2\":{\"name\":\"entity.other.attribute-name.html.vue\"},\"match\":\"(\\\\.)([-\\\\w]*)\"},{\"include\":\"#vue-directives-expression\"}]},\"vue-directives-style-attr\":{\"begin\":\"\\\\b(style)\\\\s*(=)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.other.attribute-name.html.vue\"},\"2\":{\"name\":\"punctuation.separator.key-value.html.vue\"}},\"end\":\"(?<=[\\\"'])\",\"name\":\"meta.attribute.style.vue\",\"patterns\":[{\"begin\":\"([\\\"'])\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.begin.html.vue\"}},\"end\":\"(\\\\1)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.end.html.vue\"}},\"name\":\"source.css.embedded.html.vue\",\"patterns\":[{\"include\":\"source.css#comment-block\"},{\"include\":\"source.css#escapes\"},{\"include\":\"source.css#font-features\"},{\"match\":\"(?<![-\\\\w])--[-A-Z_a-z[^\\\\x00-\\\\x7F]](?:[-0-9A-Z_a-z[^\\\\x00-\\\\x7F]]|\\\\\\\\(?:\\\\h{1,6}|.))*\",\"name\":\"variable.css\"},{\"begin\":\"(?<![-A-Za-z])(?=[-A-Za-z])\",\"end\":\"$|(?![-A-Za-z])\",\"name\":\"meta.property-name.css\",\"patterns\":[{\"include\":\"source.css#property-names\"}]},{\"begin\":\"(:)\\\\s*\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.separator.key-value.css\"}},\"contentName\":\"meta.property-value.css\",\"end\":\"\\\\s*(;)|\\\\s*(?=[\\\"'])\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.terminator.rule.css\"}},\"patterns\":[{\"include\":\"source.css#comment-block\"},{\"include\":\"source.css#property-values\"}]},{\"match\":\";\",\"name\":\"punctuation.terminator.rule.css\"}]}]},\"vue-interpolations\":{\"patterns\":[{\"begin\":\"(\\\\{\\\\{)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.interpolation.begin.html.vue\"}},\"end\":\"(}})\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.interpolation.end.html.vue\"}},\"name\":\"expression.embedded.vue\",\"patterns\":[{\"begin\":\"\\\\G\",\"end\":\"(?=}})\",\"name\":\"source.ts.embedded.html.vue\",\"patterns\":[{\"include\":\"source.ts#expression\"}]}]}]}},\"scopeName\":\"source.vue\",\"embeddedLangs\":[\"css\",\"javascript\",\"typescript\",\"json\",\"html-derivative\",\"html\",\"markdown-vue\",\"vue-directives\",\"vue-interpolations\",\"vue-sfc-style-variable-injection\"],\"embeddedLangsLazy\":[\"markdown\",\"pug\",\"stylus\",\"sass\",\"scss\",\"less\",\"jsx\",\"tsx\",\"coffee\",\"jsonc\",\"json5\",\"yaml\",\"toml\",\"graphql\"]}"))
13
13
 
14
14
  export default [
15
15
  ...css,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@shikijs/langs",
3
3
  "type": "module",
4
- "version": "3.14.0",
4
+ "version": "3.20.0",
5
5
  "description": "TextMate grammars for Shiki in ESM",
6
6
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
7
7
  "license": "MIT",
@@ -189,6 +189,7 @@
189
189
  "./luau": "./dist/luau.mjs",
190
190
  "./makefile": "./dist/makefile.mjs",
191
191
  "./make": "./dist/make.mjs",
192
+ "./markdown-nix": "./dist/markdown-nix.mjs",
192
193
  "./markdown-vue": "./dist/markdown-vue.mjs",
193
194
  "./md": "./dist/md.mjs",
194
195
  "./markdown": "./dist/markdown.mjs",
@@ -215,6 +216,8 @@
215
216
  "./objective-c": "./dist/objective-c.mjs",
216
217
  "./objective-cpp": "./dist/objective-cpp.mjs",
217
218
  "./ocaml": "./dist/ocaml.mjs",
219
+ "./scad": "./dist/scad.mjs",
220
+ "./openscad": "./dist/openscad.mjs",
218
221
  "./pascal": "./dist/pascal.mjs",
219
222
  "./perl": "./dist/perl.mjs",
220
223
  "./php": "./dist/php.mjs",
@@ -354,10 +357,10 @@
354
357
  "dist"
355
358
  ],
356
359
  "dependencies": {
357
- "@shikijs/types": "3.14.0"
360
+ "@shikijs/types": "3.20.0"
358
361
  },
359
362
  "devDependencies": {
360
- "tm-grammars": "^1.25.1"
363
+ "tm-grammars": "^1.26.0"
361
364
  },
362
365
  "scripts": {
363
366
  "build": "pnpm prepare"
@@ -0,0 +1,2 @@
1
+ /* Theme: material-theme-lighter */
2
+ export default Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#80CBC4\",\"activityBar.background\":\"#FAFAFA\",\"activityBar.border\":\"#FAFAFA60\",\"activityBar.dropBackground\":\"#E5393580\",\"activityBar.foreground\":\"#90A4AE\",\"activityBarBadge.background\":\"#80CBC4\",\"activityBarBadge.foreground\":\"#000000\",\"badge.background\":\"#CCD7DA30\",\"badge.foreground\":\"#90A4AE\",\"breadcrumb.activeSelectionForeground\":\"#80CBC4\",\"breadcrumb.background\":\"#FAFAFA\",\"breadcrumb.focusForeground\":\"#90A4AE\",\"breadcrumb.foreground\":\"#758a95\",\"breadcrumbPicker.background\":\"#FAFAFA\",\"button.background\":\"#80CBC440\",\"button.foreground\":\"#ffffff\",\"debugConsole.errorForeground\":\"#E53935\",\"debugConsole.infoForeground\":\"#39ADB5\",\"debugConsole.warningForeground\":\"#E2931D\",\"debugToolBar.background\":\"#FAFAFA\",\"diffEditor.insertedTextBackground\":\"#39ADB520\",\"diffEditor.removedTextBackground\":\"#FF537020\",\"dropdown.background\":\"#FAFAFA\",\"dropdown.border\":\"#00000010\",\"editor.background\":\"#FAFAFA\",\"editor.findMatchBackground\":\"#00000020\",\"editor.findMatchBorder\":\"#80CBC4\",\"editor.findMatchHighlight\":\"#90A4AE\",\"editor.findMatchHighlightBackground\":\"#00000010\",\"editor.findMatchHighlightBorder\":\"#00000030\",\"editor.findRangeHighlightBackground\":\"#E2931D30\",\"editor.foreground\":\"#90A4AE\",\"editor.lineHighlightBackground\":\"#CCD7DA50\",\"editor.lineHighlightBorder\":\"#CCD7DA00\",\"editor.rangeHighlightBackground\":\"#FFFFFF0d\",\"editor.selectionBackground\":\"#80CBC440\",\"editor.selectionHighlightBackground\":\"#27272720\",\"editor.wordHighlightBackground\":\"#FF537030\",\"editor.wordHighlightStrongBackground\":\"#91B85930\",\"editorBracketMatch.background\":\"#FAFAFA\",\"editorBracketMatch.border\":\"#27272750\",\"editorCursor.foreground\":\"#272727\",\"editorError.foreground\":\"#E5393570\",\"editorGroup.border\":\"#00000020\",\"editorGroup.dropBackground\":\"#E5393580\",\"editorGroup.focusedEmptyBorder\":\"#E53935\",\"editorGroupHeader.tabsBackground\":\"#FAFAFA\",\"editorGutter.addedBackground\":\"#91B85960\",\"editorGutter.deletedBackground\":\"#E5393560\",\"editorGutter.modifiedBackground\":\"#6182B860\",\"editorHoverWidget.background\":\"#FAFAFA\",\"editorHoverWidget.border\":\"#00000010\",\"editorIndentGuide.activeBackground\":\"#B0BEC5\",\"editorIndentGuide.background\":\"#B0BEC570\",\"editorInfo.foreground\":\"#6182B870\",\"editorLineNumber.activeForeground\":\"#758a95\",\"editorLineNumber.foreground\":\"#CFD8DC\",\"editorLink.activeForeground\":\"#90A4AE\",\"editorMarkerNavigation.background\":\"#90A4AE05\",\"editorOverviewRuler.border\":\"#FAFAFA\",\"editorOverviewRuler.errorForeground\":\"#E5393540\",\"editorOverviewRuler.findMatchForeground\":\"#80CBC4\",\"editorOverviewRuler.infoForeground\":\"#6182B840\",\"editorOverviewRuler.warningForeground\":\"#E2931D40\",\"editorRuler.foreground\":\"#B0BEC5\",\"editorSuggestWidget.background\":\"#FAFAFA\",\"editorSuggestWidget.border\":\"#00000010\",\"editorSuggestWidget.foreground\":\"#90A4AE\",\"editorSuggestWidget.highlightForeground\":\"#80CBC4\",\"editorSuggestWidget.selectedBackground\":\"#CCD7DA50\",\"editorWarning.foreground\":\"#E2931D70\",\"editorWhitespace.foreground\":\"#90A4AE40\",\"editorWidget.background\":\"#FAFAFA\",\"editorWidget.border\":\"#80CBC4\",\"editorWidget.resizeBorder\":\"#80CBC4\",\"extensionBadge.remoteForeground\":\"#90A4AE\",\"extensionButton.prominentBackground\":\"#91B85990\",\"extensionButton.prominentForeground\":\"#90A4AE\",\"extensionButton.prominentHoverBackground\":\"#91B859\",\"focusBorder\":\"#FFFFFF00\",\"foreground\":\"#90A4AE\",\"gitDecoration.conflictingResourceForeground\":\"#E2931D90\",\"gitDecoration.deletedResourceForeground\":\"#E5393590\",\"gitDecoration.ignoredResourceForeground\":\"#758a9590\",\"gitDecoration.modifiedResourceForeground\":\"#6182B890\",\"gitDecoration.untrackedResourceForeground\":\"#91B85990\",\"input.background\":\"#EEEEEE\",\"input.border\":\"#00000010\",\"input.foreground\":\"#90A4AE\",\"input.placeholderForeground\":\"#90A4AE60\",\"inputOption.activeBackground\":\"#90A4AE30\",\"inputOption.activeBorder\":\"#90A4AE30\",\"inputValidation.errorBorder\":\"#E53935\",\"inputValidation.infoBorder\":\"#6182B8\",\"inputValidation.warningBorder\":\"#E2931D\",\"list.activeSelectionBackground\":\"#FAFAFA\",\"list.activeSelectionForeground\":\"#80CBC4\",\"list.dropBackground\":\"#E5393580\",\"list.focusBackground\":\"#90A4AE20\",\"list.focusForeground\":\"#90A4AE\",\"list.highlightForeground\":\"#80CBC4\",\"list.hoverBackground\":\"#FAFAFA\",\"list.hoverForeground\":\"#B1C7D3\",\"list.inactiveSelectionBackground\":\"#CCD7DA50\",\"list.inactiveSelectionForeground\":\"#80CBC4\",\"listFilterWidget.background\":\"#CCD7DA50\",\"listFilterWidget.noMatchesOutline\":\"#CCD7DA50\",\"listFilterWidget.outline\":\"#CCD7DA50\",\"menu.background\":\"#FAFAFA\",\"menu.foreground\":\"#90A4AE\",\"menu.selectionBackground\":\"#CCD7DA50\",\"menu.selectionBorder\":\"#CCD7DA50\",\"menu.selectionForeground\":\"#80CBC4\",\"menu.separatorBackground\":\"#90A4AE\",\"menubar.selectionBackground\":\"#CCD7DA50\",\"menubar.selectionBorder\":\"#CCD7DA50\",\"menubar.selectionForeground\":\"#80CBC4\",\"notebook.focusedCellBorder\":\"#80CBC4\",\"notebook.inactiveFocusedCellBorder\":\"#80CBC450\",\"notificationLink.foreground\":\"#80CBC4\",\"notifications.background\":\"#FAFAFA\",\"notifications.foreground\":\"#90A4AE\",\"panel.background\":\"#FAFAFA\",\"panel.border\":\"#FAFAFA60\",\"panel.dropBackground\":\"#90A4AE\",\"panelTitle.activeBorder\":\"#80CBC4\",\"panelTitle.activeForeground\":\"#000000\",\"panelTitle.inactiveForeground\":\"#90A4AE\",\"peekView.border\":\"#00000020\",\"peekViewEditor.background\":\"#EEEEEE\",\"peekViewEditor.matchHighlightBackground\":\"#80CBC440\",\"peekViewEditorGutter.background\":\"#EEEEEE\",\"peekViewResult.background\":\"#EEEEEE\",\"peekViewResult.matchHighlightBackground\":\"#80CBC440\",\"peekViewResult.selectionBackground\":\"#758a9570\",\"peekViewTitle.background\":\"#EEEEEE\",\"peekViewTitleDescription.foreground\":\"#90A4AE60\",\"pickerGroup.border\":\"#FFFFFF1a\",\"pickerGroup.foreground\":\"#80CBC4\",\"progressBar.background\":\"#80CBC4\",\"quickInput.background\":\"#FAFAFA\",\"quickInput.foreground\":\"#758a95\",\"quickInput.list.focusBackground\":\"#90A4AE20\",\"sash.hoverBorder\":\"#80CBC450\",\"scrollbar.shadow\":\"#00000020\",\"scrollbarSlider.activeBackground\":\"#80CBC4\",\"scrollbarSlider.background\":\"#90A4AE20\",\"scrollbarSlider.hoverBackground\":\"#90A4AE10\",\"selection.background\":\"#CCD7DA80\",\"settings.checkboxBackground\":\"#FAFAFA\",\"settings.checkboxForeground\":\"#90A4AE\",\"settings.dropdownBackground\":\"#FAFAFA\",\"settings.dropdownForeground\":\"#90A4AE\",\"settings.headerForeground\":\"#80CBC4\",\"settings.modifiedItemIndicator\":\"#80CBC4\",\"settings.numberInputBackground\":\"#FAFAFA\",\"settings.numberInputForeground\":\"#90A4AE\",\"settings.textInputBackground\":\"#FAFAFA\",\"settings.textInputForeground\":\"#90A4AE\",\"sideBar.background\":\"#FAFAFA\",\"sideBar.border\":\"#FAFAFA60\",\"sideBar.foreground\":\"#758a95\",\"sideBarSectionHeader.background\":\"#FAFAFA\",\"sideBarSectionHeader.border\":\"#FAFAFA60\",\"sideBarTitle.foreground\":\"#90A4AE\",\"statusBar.background\":\"#FAFAFA\",\"statusBar.border\":\"#FAFAFA60\",\"statusBar.debuggingBackground\":\"#9C3EDA\",\"statusBar.debuggingForeground\":\"#FFFFFF\",\"statusBar.foreground\":\"#7E939E\",\"statusBar.noFolderBackground\":\"#FAFAFA\",\"statusBarItem.activeBackground\":\"#E5393580\",\"statusBarItem.hoverBackground\":\"#90A4AE20\",\"statusBarItem.remoteBackground\":\"#80CBC4\",\"statusBarItem.remoteForeground\":\"#000000\",\"tab.activeBackground\":\"#FAFAFA\",\"tab.activeBorder\":\"#80CBC4\",\"tab.activeForeground\":\"#000000\",\"tab.activeModifiedBorder\":\"#758a95\",\"tab.border\":\"#FAFAFA\",\"tab.inactiveBackground\":\"#FAFAFA\",\"tab.inactiveForeground\":\"#758a95\",\"tab.inactiveModifiedBorder\":\"#89221f\",\"tab.unfocusedActiveBorder\":\"#90A4AE\",\"tab.unfocusedActiveForeground\":\"#90A4AE\",\"tab.unfocusedActiveModifiedBorder\":\"#b72d2a\",\"tab.unfocusedInactiveModifiedBorder\":\"#89221f\",\"terminal.ansiBlack\":\"#000000\",\"terminal.ansiBlue\":\"#6182B8\",\"terminal.ansiBrightBlack\":\"#90A4AE\",\"terminal.ansiBrightBlue\":\"#6182B8\",\"terminal.ansiBrightCyan\":\"#39ADB5\",\"terminal.ansiBrightGreen\":\"#91B859\",\"terminal.ansiBrightMagenta\":\"#9C3EDA\",\"terminal.ansiBrightRed\":\"#E53935\",\"terminal.ansiBrightWhite\":\"#FFFFFF\",\"terminal.ansiBrightYellow\":\"#E2931D\",\"terminal.ansiCyan\":\"#39ADB5\",\"terminal.ansiGreen\":\"#91B859\",\"terminal.ansiMagenta\":\"#9C3EDA\",\"terminal.ansiRed\":\"#E53935\",\"terminal.ansiWhite\":\"#FFFFFF\",\"terminal.ansiYellow\":\"#E2931D\",\"terminalCursor.background\":\"#000000\",\"terminalCursor.foreground\":\"#E2931D\",\"textLink.activeForeground\":\"#90A4AE\",\"textLink.foreground\":\"#80CBC4\",\"titleBar.activeBackground\":\"#FAFAFA\",\"titleBar.activeForeground\":\"#90A4AE\",\"titleBar.border\":\"#FAFAFA60\",\"titleBar.inactiveBackground\":\"#FAFAFA\",\"titleBar.inactiveForeground\":\"#758a95\",\"tree.indentGuidesStroke\":\"#B0BEC5\",\"widget.shadow\":\"#00000020\"},\"displayName\":\"Material Theme Lighter\",\"name\":\"material-theme-lighter\",\"semanticHighlighting\":true,\"tokenColors\":[{\"settings\":{\"background\":\"#FAFAFA\",\"foreground\":\"#90A4AE\"}},{\"scope\":\"string\",\"settings\":{\"foreground\":\"#91B859\"}},{\"scope\":\"punctuation, constant.other.symbol\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"constant.character.escape, text.html constant.character.entity.named\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"constant.language.boolean\",\"settings\":{\"foreground\":\"#FF5370\"}},{\"scope\":\"constant.numeric\",\"settings\":{\"foreground\":\"#F76D47\"}},{\"scope\":\"variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"keyword.other\",\"settings\":{\"foreground\":\"#F76D47\"}},{\"scope\":\"keyword, modifier, variable.language.this, support.type.object, constant.language\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"entity.name.function, support.function\",\"settings\":{\"foreground\":\"#6182B8\"}},{\"scope\":\"storage.type, storage.modifier, storage.control\",\"settings\":{\"foreground\":\"#9C3EDA\"}},{\"scope\":\"support.module, support.node\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#E53935\"}},{\"scope\":\"support.type, constant.other.key\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"entity.name.type, entity.other.inherited-class, entity.other\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"comment\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#90A4AE\"}},{\"scope\":\"comment punctuation.definition.comment, string.quoted.docstring\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#90A4AE\"}},{\"scope\":\"punctuation\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"entity.name, entity.name.type.class, support.type, support.class, meta.use\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"variable.object.property, meta.field.declaration entity.name.function\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"meta.definition.method entity.name.function\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"meta.function entity.name.function\",\"settings\":{\"foreground\":\"#6182B8\"}},{\"scope\":\"template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"meta.embedded, source.groovy.embedded, meta.template.expression\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"entity.name.tag.yaml\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"constant.language.json\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"entity.other.attribute-name.class\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"entity.other.attribute-name.id\",\"settings\":{\"foreground\":\"#F76D47\"}},{\"scope\":\"source.css entity.name.tag\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"support.type.property-name.css\",\"settings\":{\"foreground\":\"#8796B0\"}},{\"scope\":\"meta.tag, punctuation.definition.tag\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"entity.name.tag\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"foreground\":\"#9C3EDA\"}},{\"scope\":\"punctuation.definition.entity.html\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"markup.heading\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"text.html.markdown meta.link.inline, meta.link.reference\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"text.html.markdown beginning.punctuation.definition.list\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#E53935\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#E53935\"}},{\"scope\":\"markup.bold markup.italic, markup.italic markup.bold\",\"settings\":{\"fontStyle\":\"italic bold\",\"foreground\":\"#E53935\"}},{\"scope\":\"markup.fenced_code.block.markdown punctuation.definition.markdown\",\"settings\":{\"foreground\":\"#91B859\"}},{\"scope\":\"markup.inline.raw.string.markdown\",\"settings\":{\"foreground\":\"#91B859\"}},{\"scope\":\"keyword.other.definition.ini\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"entity.name.section.group-title.ini\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"source.cs meta.class.identifier storage.type\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"source.cs meta.method.identifier entity.name.function\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"source.cs meta.method-call meta.method, source.cs entity.name.function\",\"settings\":{\"foreground\":\"#6182B8\"}},{\"scope\":\"source.cs storage.type\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"source.cs meta.method.return-type\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"source.cs meta.preprocessor\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"source.cs entity.name.type.namespace\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"meta.jsx.children, SXNested\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"support.class.component\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"source.cpp meta.block variable.other\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"source.python meta.member.access.python\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"source.python meta.function-call.python, meta.function-call.arguments\",\"settings\":{\"foreground\":\"#6182B8\"}},{\"scope\":\"meta.block\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"entity.name.function.call\",\"settings\":{\"foreground\":\"#6182B8\"}},{\"scope\":\"source.php support.other.namespace, source.php meta.use support.class\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"constant.keyword\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#39ADB5\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#6182B8\"}},{\"settings\":{\"background\":\"#FAFAFA\",\"foreground\":\"#90A4AE\"}},{\"scope\":[\"constant.other.placeholder\"],\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":[\"markup.deleted\"],\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":[\"markup.inserted\"],\"settings\":{\"foreground\":\"#91B859\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"keyword.control\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#39ADB5\"}},{\"scope\":[\"variable.parameter\"],\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":[\"variable.parameter.function.language.special.self.python\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#E53935\"}},{\"scope\":[\"constant.character.format.placeholder.other.python\"],\"settings\":{\"foreground\":\"#F76D47\"}},{\"scope\":[\"markup.quote\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#39ADB5\"}},{\"scope\":[\"markup.fenced_code.block\"],\"settings\":{\"foreground\":\"#90A4AE90\"}},{\"scope\":[\"punctuation.definition.quote\"],\"settings\":{\"foreground\":\"#FF5370\"}},{\"scope\":[\"meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#9C3EDA\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#F76D47\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#916b53\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#6182B8\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#FF5370\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#9C3EDA\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#91B859\"}}],\"type\":\"light\"}"))
@@ -0,0 +1,2 @@
1
+ /* Theme: material-theme-palenight */
2
+ export default Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#80CBC4\",\"activityBar.background\":\"#292D3E\",\"activityBar.border\":\"#292D3E60\",\"activityBar.dropBackground\":\"#f0717880\",\"activityBar.foreground\":\"#babed8\",\"activityBarBadge.background\":\"#80CBC4\",\"activityBarBadge.foreground\":\"#000000\",\"badge.background\":\"#00000030\",\"badge.foreground\":\"#676E95\",\"breadcrumb.activeSelectionForeground\":\"#80CBC4\",\"breadcrumb.background\":\"#292D3E\",\"breadcrumb.focusForeground\":\"#babed8\",\"breadcrumb.foreground\":\"#676E95\",\"breadcrumbPicker.background\":\"#292D3E\",\"button.background\":\"#717CB450\",\"button.foreground\":\"#ffffff\",\"debugConsole.errorForeground\":\"#f07178\",\"debugConsole.infoForeground\":\"#89DDFF\",\"debugConsole.warningForeground\":\"#FFCB6B\",\"debugToolBar.background\":\"#292D3E\",\"diffEditor.insertedTextBackground\":\"#89DDFF20\",\"diffEditor.removedTextBackground\":\"#ff9cac20\",\"dropdown.background\":\"#292D3E\",\"dropdown.border\":\"#FFFFFF10\",\"editor.background\":\"#292D3E\",\"editor.findMatchBackground\":\"#000000\",\"editor.findMatchBorder\":\"#80CBC4\",\"editor.findMatchHighlight\":\"#babed8\",\"editor.findMatchHighlightBackground\":\"#00000050\",\"editor.findMatchHighlightBorder\":\"#ffffff30\",\"editor.findRangeHighlightBackground\":\"#FFCB6B30\",\"editor.foreground\":\"#babed8\",\"editor.lineHighlightBackground\":\"#00000050\",\"editor.lineHighlightBorder\":\"#00000000\",\"editor.rangeHighlightBackground\":\"#FFFFFF0d\",\"editor.selectionBackground\":\"#717CB450\",\"editor.selectionHighlightBackground\":\"#FFCC0020\",\"editor.wordHighlightBackground\":\"#ff9cac30\",\"editor.wordHighlightStrongBackground\":\"#C3E88D30\",\"editorBracketMatch.background\":\"#292D3E\",\"editorBracketMatch.border\":\"#FFCC0050\",\"editorCursor.foreground\":\"#FFCC00\",\"editorError.foreground\":\"#f0717870\",\"editorGroup.border\":\"#00000030\",\"editorGroup.dropBackground\":\"#f0717880\",\"editorGroup.focusedEmptyBorder\":\"#f07178\",\"editorGroupHeader.tabsBackground\":\"#292D3E\",\"editorGutter.addedBackground\":\"#C3E88D60\",\"editorGutter.deletedBackground\":\"#f0717860\",\"editorGutter.modifiedBackground\":\"#82AAFF60\",\"editorHoverWidget.background\":\"#292D3E\",\"editorHoverWidget.border\":\"#FFFFFF10\",\"editorIndentGuide.activeBackground\":\"#4E5579\",\"editorIndentGuide.background\":\"#4E557970\",\"editorInfo.foreground\":\"#82AAFF70\",\"editorLineNumber.activeForeground\":\"#676E95\",\"editorLineNumber.foreground\":\"#3A3F58\",\"editorLink.activeForeground\":\"#babed8\",\"editorMarkerNavigation.background\":\"#babed805\",\"editorOverviewRuler.border\":\"#292D3E\",\"editorOverviewRuler.errorForeground\":\"#f0717840\",\"editorOverviewRuler.findMatchForeground\":\"#80CBC4\",\"editorOverviewRuler.infoForeground\":\"#82AAFF40\",\"editorOverviewRuler.warningForeground\":\"#FFCB6B40\",\"editorRuler.foreground\":\"#4E5579\",\"editorSuggestWidget.background\":\"#292D3E\",\"editorSuggestWidget.border\":\"#FFFFFF10\",\"editorSuggestWidget.foreground\":\"#babed8\",\"editorSuggestWidget.highlightForeground\":\"#80CBC4\",\"editorSuggestWidget.selectedBackground\":\"#00000050\",\"editorWarning.foreground\":\"#FFCB6B70\",\"editorWhitespace.foreground\":\"#babed840\",\"editorWidget.background\":\"#292D3E\",\"editorWidget.border\":\"#80CBC4\",\"editorWidget.resizeBorder\":\"#80CBC4\",\"extensionBadge.remoteForeground\":\"#babed8\",\"extensionButton.prominentBackground\":\"#C3E88D90\",\"extensionButton.prominentForeground\":\"#babed8\",\"extensionButton.prominentHoverBackground\":\"#C3E88D\",\"focusBorder\":\"#FFFFFF00\",\"foreground\":\"#babed8\",\"gitDecoration.conflictingResourceForeground\":\"#FFCB6B90\",\"gitDecoration.deletedResourceForeground\":\"#f0717890\",\"gitDecoration.ignoredResourceForeground\":\"#676E9590\",\"gitDecoration.modifiedResourceForeground\":\"#82AAFF90\",\"gitDecoration.untrackedResourceForeground\":\"#C3E88D90\",\"input.background\":\"#333747\",\"input.border\":\"#FFFFFF10\",\"input.foreground\":\"#babed8\",\"input.placeholderForeground\":\"#babed860\",\"inputOption.activeBackground\":\"#babed830\",\"inputOption.activeBorder\":\"#babed830\",\"inputValidation.errorBorder\":\"#f07178\",\"inputValidation.infoBorder\":\"#82AAFF\",\"inputValidation.warningBorder\":\"#FFCB6B\",\"list.activeSelectionBackground\":\"#292D3E\",\"list.activeSelectionForeground\":\"#80CBC4\",\"list.dropBackground\":\"#f0717880\",\"list.focusBackground\":\"#babed820\",\"list.focusForeground\":\"#babed8\",\"list.highlightForeground\":\"#80CBC4\",\"list.hoverBackground\":\"#292D3E\",\"list.hoverForeground\":\"#FFFFFF\",\"list.inactiveSelectionBackground\":\"#00000030\",\"list.inactiveSelectionForeground\":\"#80CBC4\",\"listFilterWidget.background\":\"#00000030\",\"listFilterWidget.noMatchesOutline\":\"#00000030\",\"listFilterWidget.outline\":\"#00000030\",\"menu.background\":\"#292D3E\",\"menu.foreground\":\"#babed8\",\"menu.selectionBackground\":\"#00000050\",\"menu.selectionBorder\":\"#00000030\",\"menu.selectionForeground\":\"#80CBC4\",\"menu.separatorBackground\":\"#babed8\",\"menubar.selectionBackground\":\"#00000030\",\"menubar.selectionBorder\":\"#00000030\",\"menubar.selectionForeground\":\"#80CBC4\",\"notebook.focusedCellBorder\":\"#80CBC4\",\"notebook.inactiveFocusedCellBorder\":\"#80CBC450\",\"notificationLink.foreground\":\"#80CBC4\",\"notifications.background\":\"#292D3E\",\"notifications.foreground\":\"#babed8\",\"panel.background\":\"#292D3E\",\"panel.border\":\"#292D3E60\",\"panel.dropBackground\":\"#babed8\",\"panelTitle.activeBorder\":\"#80CBC4\",\"panelTitle.activeForeground\":\"#FFFFFF\",\"panelTitle.inactiveForeground\":\"#babed8\",\"peekView.border\":\"#00000030\",\"peekViewEditor.background\":\"#333747\",\"peekViewEditor.matchHighlightBackground\":\"#717CB450\",\"peekViewEditorGutter.background\":\"#333747\",\"peekViewResult.background\":\"#333747\",\"peekViewResult.matchHighlightBackground\":\"#717CB450\",\"peekViewResult.selectionBackground\":\"#676E9570\",\"peekViewTitle.background\":\"#333747\",\"peekViewTitleDescription.foreground\":\"#babed860\",\"pickerGroup.border\":\"#FFFFFF1a\",\"pickerGroup.foreground\":\"#80CBC4\",\"progressBar.background\":\"#80CBC4\",\"quickInput.background\":\"#292D3E\",\"quickInput.foreground\":\"#676E95\",\"quickInput.list.focusBackground\":\"#babed820\",\"sash.hoverBorder\":\"#80CBC450\",\"scrollbar.shadow\":\"#00000030\",\"scrollbarSlider.activeBackground\":\"#80CBC4\",\"scrollbarSlider.background\":\"#A6ACCD20\",\"scrollbarSlider.hoverBackground\":\"#A6ACCD10\",\"selection.background\":\"#00000080\",\"settings.checkboxBackground\":\"#292D3E\",\"settings.checkboxForeground\":\"#babed8\",\"settings.dropdownBackground\":\"#292D3E\",\"settings.dropdownForeground\":\"#babed8\",\"settings.headerForeground\":\"#80CBC4\",\"settings.modifiedItemIndicator\":\"#80CBC4\",\"settings.numberInputBackground\":\"#292D3E\",\"settings.numberInputForeground\":\"#babed8\",\"settings.textInputBackground\":\"#292D3E\",\"settings.textInputForeground\":\"#babed8\",\"sideBar.background\":\"#292D3E\",\"sideBar.border\":\"#292D3E60\",\"sideBar.foreground\":\"#676E95\",\"sideBarSectionHeader.background\":\"#292D3E\",\"sideBarSectionHeader.border\":\"#292D3E60\",\"sideBarTitle.foreground\":\"#babed8\",\"statusBar.background\":\"#292D3E\",\"statusBar.border\":\"#292D3E60\",\"statusBar.debuggingBackground\":\"#C792EA\",\"statusBar.debuggingForeground\":\"#ffffff\",\"statusBar.foreground\":\"#676E95\",\"statusBar.noFolderBackground\":\"#292D3E\",\"statusBarItem.activeBackground\":\"#f0717880\",\"statusBarItem.hoverBackground\":\"#676E9520\",\"statusBarItem.remoteBackground\":\"#80CBC4\",\"statusBarItem.remoteForeground\":\"#000000\",\"tab.activeBackground\":\"#292D3E\",\"tab.activeBorder\":\"#80CBC4\",\"tab.activeForeground\":\"#FFFFFF\",\"tab.activeModifiedBorder\":\"#676E95\",\"tab.border\":\"#292D3E\",\"tab.inactiveBackground\":\"#292D3E\",\"tab.inactiveForeground\":\"#676E95\",\"tab.inactiveModifiedBorder\":\"#904348\",\"tab.unfocusedActiveBorder\":\"#676E95\",\"tab.unfocusedActiveForeground\":\"#babed8\",\"tab.unfocusedActiveModifiedBorder\":\"#c05a60\",\"tab.unfocusedInactiveModifiedBorder\":\"#904348\",\"terminal.ansiBlack\":\"#000000\",\"terminal.ansiBlue\":\"#82AAFF\",\"terminal.ansiBrightBlack\":\"#676E95\",\"terminal.ansiBrightBlue\":\"#82AAFF\",\"terminal.ansiBrightCyan\":\"#89DDFF\",\"terminal.ansiBrightGreen\":\"#C3E88D\",\"terminal.ansiBrightMagenta\":\"#C792EA\",\"terminal.ansiBrightRed\":\"#f07178\",\"terminal.ansiBrightWhite\":\"#ffffff\",\"terminal.ansiBrightYellow\":\"#FFCB6B\",\"terminal.ansiCyan\":\"#89DDFF\",\"terminal.ansiGreen\":\"#C3E88D\",\"terminal.ansiMagenta\":\"#C792EA\",\"terminal.ansiRed\":\"#f07178\",\"terminal.ansiWhite\":\"#ffffff\",\"terminal.ansiYellow\":\"#FFCB6B\",\"terminalCursor.background\":\"#000000\",\"terminalCursor.foreground\":\"#FFCB6B\",\"textLink.activeForeground\":\"#babed8\",\"textLink.foreground\":\"#80CBC4\",\"titleBar.activeBackground\":\"#292D3E\",\"titleBar.activeForeground\":\"#babed8\",\"titleBar.border\":\"#292D3E60\",\"titleBar.inactiveBackground\":\"#292D3E\",\"titleBar.inactiveForeground\":\"#676E95\",\"tree.indentGuidesStroke\":\"#4E5579\",\"widget.shadow\":\"#00000030\"},\"displayName\":\"Material Theme Palenight\",\"name\":\"material-theme-palenight\",\"semanticHighlighting\":true,\"tokenColors\":[{\"settings\":{\"background\":\"#292D3E\",\"foreground\":\"#babed8\"}},{\"scope\":\"string\",\"settings\":{\"foreground\":\"#C3E88D\"}},{\"scope\":\"punctuation, constant.other.symbol\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"constant.character.escape, text.html constant.character.entity.named\",\"settings\":{\"foreground\":\"#babed8\"}},{\"scope\":\"constant.language.boolean\",\"settings\":{\"foreground\":\"#ff9cac\"}},{\"scope\":\"constant.numeric\",\"settings\":{\"foreground\":\"#F78C6C\"}},{\"scope\":\"variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments\",\"settings\":{\"foreground\":\"#babed8\"}},{\"scope\":\"keyword.other\",\"settings\":{\"foreground\":\"#F78C6C\"}},{\"scope\":\"keyword, modifier, variable.language.this, support.type.object, constant.language\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"entity.name.function, support.function\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":\"storage.type, storage.modifier, storage.control\",\"settings\":{\"foreground\":\"#C792EA\"}},{\"scope\":\"support.module, support.node\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#f07178\"}},{\"scope\":\"support.type, constant.other.key\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"entity.name.type, entity.other.inherited-class, entity.other\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"comment\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#676E95\"}},{\"scope\":\"comment punctuation.definition.comment, string.quoted.docstring\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#676E95\"}},{\"scope\":\"punctuation\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"entity.name, entity.name.type.class, support.type, support.class, meta.use\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"variable.object.property, meta.field.declaration entity.name.function\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"meta.definition.method entity.name.function\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"meta.function entity.name.function\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":\"template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"meta.embedded, source.groovy.embedded, meta.template.expression\",\"settings\":{\"foreground\":\"#babed8\"}},{\"scope\":\"entity.name.tag.yaml\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"constant.language.json\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"entity.other.attribute-name.class\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"entity.other.attribute-name.id\",\"settings\":{\"foreground\":\"#F78C6C\"}},{\"scope\":\"source.css entity.name.tag\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"support.type.property-name.css\",\"settings\":{\"foreground\":\"#B2CCD6\"}},{\"scope\":\"meta.tag, punctuation.definition.tag\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"entity.name.tag\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"foreground\":\"#C792EA\"}},{\"scope\":\"punctuation.definition.entity.html\",\"settings\":{\"foreground\":\"#babed8\"}},{\"scope\":\"markup.heading\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"text.html.markdown meta.link.inline, meta.link.reference\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"text.html.markdown beginning.punctuation.definition.list\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#f07178\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#f07178\"}},{\"scope\":\"markup.bold markup.italic, markup.italic markup.bold\",\"settings\":{\"fontStyle\":\"italic bold\",\"foreground\":\"#f07178\"}},{\"scope\":\"markup.fenced_code.block.markdown punctuation.definition.markdown\",\"settings\":{\"foreground\":\"#C3E88D\"}},{\"scope\":\"markup.inline.raw.string.markdown\",\"settings\":{\"foreground\":\"#C3E88D\"}},{\"scope\":\"keyword.other.definition.ini\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"entity.name.section.group-title.ini\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"source.cs meta.class.identifier storage.type\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"source.cs meta.method.identifier entity.name.function\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"source.cs meta.method-call meta.method, source.cs entity.name.function\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":\"source.cs storage.type\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"source.cs meta.method.return-type\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"source.cs meta.preprocessor\",\"settings\":{\"foreground\":\"#676E95\"}},{\"scope\":\"source.cs entity.name.type.namespace\",\"settings\":{\"foreground\":\"#babed8\"}},{\"scope\":\"meta.jsx.children, SXNested\",\"settings\":{\"foreground\":\"#babed8\"}},{\"scope\":\"support.class.component\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"source.cpp meta.block variable.other\",\"settings\":{\"foreground\":\"#babed8\"}},{\"scope\":\"source.python meta.member.access.python\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"source.python meta.function-call.python, meta.function-call.arguments\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":\"meta.block\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"entity.name.function.call\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":\"source.php support.other.namespace, source.php meta.use support.class\",\"settings\":{\"foreground\":\"#babed8\"}},{\"scope\":\"constant.keyword\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#89DDFF\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"settings\":{\"background\":\"#292D3E\",\"foreground\":\"#babed8\"}},{\"scope\":[\"constant.other.placeholder\"],\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":[\"markup.deleted\"],\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":[\"markup.inserted\"],\"settings\":{\"foreground\":\"#C3E88D\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"keyword.control\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#89DDFF\"}},{\"scope\":[\"variable.parameter\"],\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":[\"variable.parameter.function.language.special.self.python\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#f07178\"}},{\"scope\":[\"constant.character.format.placeholder.other.python\"],\"settings\":{\"foreground\":\"#F78C6C\"}},{\"scope\":[\"markup.quote\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#89DDFF\"}},{\"scope\":[\"markup.fenced_code.block\"],\"settings\":{\"foreground\":\"#babed890\"}},{\"scope\":[\"punctuation.definition.quote\"],\"settings\":{\"foreground\":\"#ff9cac\"}},{\"scope\":[\"meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#C792EA\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#F78C6C\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#916b53\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#ff9cac\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#C792EA\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#C3E88D\"}}],\"type\":\"dark\"}"))
@@ -0,0 +1,2 @@
1
+ /* Theme: material-theme */
2
+ export default Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#80CBC4\",\"activityBar.background\":\"#263238\",\"activityBar.border\":\"#26323860\",\"activityBar.dropBackground\":\"#f0717880\",\"activityBar.foreground\":\"#EEFFFF\",\"activityBarBadge.background\":\"#80CBC4\",\"activityBarBadge.foreground\":\"#000000\",\"badge.background\":\"#00000030\",\"badge.foreground\":\"#546E7A\",\"breadcrumb.activeSelectionForeground\":\"#80CBC4\",\"breadcrumb.background\":\"#263238\",\"breadcrumb.focusForeground\":\"#EEFFFF\",\"breadcrumb.foreground\":\"#6c8692\",\"breadcrumbPicker.background\":\"#263238\",\"button.background\":\"#80CBC420\",\"button.foreground\":\"#ffffff\",\"debugConsole.errorForeground\":\"#f07178\",\"debugConsole.infoForeground\":\"#89DDFF\",\"debugConsole.warningForeground\":\"#FFCB6B\",\"debugToolBar.background\":\"#263238\",\"diffEditor.insertedTextBackground\":\"#89DDFF20\",\"diffEditor.removedTextBackground\":\"#ff9cac20\",\"dropdown.background\":\"#263238\",\"dropdown.border\":\"#FFFFFF10\",\"editor.background\":\"#263238\",\"editor.findMatchBackground\":\"#000000\",\"editor.findMatchBorder\":\"#80CBC4\",\"editor.findMatchHighlight\":\"#EEFFFF\",\"editor.findMatchHighlightBackground\":\"#00000050\",\"editor.findMatchHighlightBorder\":\"#ffffff30\",\"editor.findRangeHighlightBackground\":\"#FFCB6B30\",\"editor.foreground\":\"#EEFFFF\",\"editor.lineHighlightBackground\":\"#00000050\",\"editor.lineHighlightBorder\":\"#00000000\",\"editor.rangeHighlightBackground\":\"#FFFFFF0d\",\"editor.selectionBackground\":\"#80CBC420\",\"editor.selectionHighlightBackground\":\"#FFCC0020\",\"editor.wordHighlightBackground\":\"#ff9cac30\",\"editor.wordHighlightStrongBackground\":\"#C3E88D30\",\"editorBracketMatch.background\":\"#263238\",\"editorBracketMatch.border\":\"#FFCC0050\",\"editorCursor.foreground\":\"#FFCC00\",\"editorError.foreground\":\"#f0717870\",\"editorGroup.border\":\"#00000030\",\"editorGroup.dropBackground\":\"#f0717880\",\"editorGroup.focusedEmptyBorder\":\"#f07178\",\"editorGroupHeader.tabsBackground\":\"#263238\",\"editorGutter.addedBackground\":\"#C3E88D60\",\"editorGutter.deletedBackground\":\"#f0717860\",\"editorGutter.modifiedBackground\":\"#82AAFF60\",\"editorHoverWidget.background\":\"#263238\",\"editorHoverWidget.border\":\"#FFFFFF10\",\"editorIndentGuide.activeBackground\":\"#37474F\",\"editorIndentGuide.background\":\"#37474F70\",\"editorInfo.foreground\":\"#82AAFF70\",\"editorLineNumber.activeForeground\":\"#6c8692\",\"editorLineNumber.foreground\":\"#465A64\",\"editorLink.activeForeground\":\"#EEFFFF\",\"editorMarkerNavigation.background\":\"#EEFFFF05\",\"editorOverviewRuler.border\":\"#263238\",\"editorOverviewRuler.errorForeground\":\"#f0717840\",\"editorOverviewRuler.findMatchForeground\":\"#80CBC4\",\"editorOverviewRuler.infoForeground\":\"#82AAFF40\",\"editorOverviewRuler.warningForeground\":\"#FFCB6B40\",\"editorRuler.foreground\":\"#37474F\",\"editorSuggestWidget.background\":\"#263238\",\"editorSuggestWidget.border\":\"#FFFFFF10\",\"editorSuggestWidget.foreground\":\"#EEFFFF\",\"editorSuggestWidget.highlightForeground\":\"#80CBC4\",\"editorSuggestWidget.selectedBackground\":\"#00000050\",\"editorWarning.foreground\":\"#FFCB6B70\",\"editorWhitespace.foreground\":\"#EEFFFF40\",\"editorWidget.background\":\"#263238\",\"editorWidget.border\":\"#80CBC4\",\"editorWidget.resizeBorder\":\"#80CBC4\",\"extensionBadge.remoteForeground\":\"#EEFFFF\",\"extensionButton.prominentBackground\":\"#C3E88D90\",\"extensionButton.prominentForeground\":\"#EEFFFF\",\"extensionButton.prominentHoverBackground\":\"#C3E88D\",\"focusBorder\":\"#FFFFFF00\",\"foreground\":\"#EEFFFF\",\"gitDecoration.conflictingResourceForeground\":\"#FFCB6B90\",\"gitDecoration.deletedResourceForeground\":\"#f0717890\",\"gitDecoration.ignoredResourceForeground\":\"#6c869290\",\"gitDecoration.modifiedResourceForeground\":\"#82AAFF90\",\"gitDecoration.untrackedResourceForeground\":\"#C3E88D90\",\"input.background\":\"#303C41\",\"input.border\":\"#FFFFFF10\",\"input.foreground\":\"#EEFFFF\",\"input.placeholderForeground\":\"#EEFFFF60\",\"inputOption.activeBackground\":\"#EEFFFF30\",\"inputOption.activeBorder\":\"#EEFFFF30\",\"inputValidation.errorBorder\":\"#f07178\",\"inputValidation.infoBorder\":\"#82AAFF\",\"inputValidation.warningBorder\":\"#FFCB6B\",\"list.activeSelectionBackground\":\"#263238\",\"list.activeSelectionForeground\":\"#80CBC4\",\"list.dropBackground\":\"#f0717880\",\"list.focusBackground\":\"#EEFFFF20\",\"list.focusForeground\":\"#EEFFFF\",\"list.highlightForeground\":\"#80CBC4\",\"list.hoverBackground\":\"#263238\",\"list.hoverForeground\":\"#FFFFFF\",\"list.inactiveSelectionBackground\":\"#00000030\",\"list.inactiveSelectionForeground\":\"#80CBC4\",\"listFilterWidget.background\":\"#00000030\",\"listFilterWidget.noMatchesOutline\":\"#00000030\",\"listFilterWidget.outline\":\"#00000030\",\"menu.background\":\"#263238\",\"menu.foreground\":\"#EEFFFF\",\"menu.selectionBackground\":\"#00000050\",\"menu.selectionBorder\":\"#00000030\",\"menu.selectionForeground\":\"#80CBC4\",\"menu.separatorBackground\":\"#EEFFFF\",\"menubar.selectionBackground\":\"#00000030\",\"menubar.selectionBorder\":\"#00000030\",\"menubar.selectionForeground\":\"#80CBC4\",\"notebook.focusedCellBorder\":\"#80CBC4\",\"notebook.inactiveFocusedCellBorder\":\"#80CBC450\",\"notificationLink.foreground\":\"#80CBC4\",\"notifications.background\":\"#263238\",\"notifications.foreground\":\"#EEFFFF\",\"panel.background\":\"#263238\",\"panel.border\":\"#26323860\",\"panel.dropBackground\":\"#EEFFFF\",\"panelTitle.activeBorder\":\"#80CBC4\",\"panelTitle.activeForeground\":\"#FFFFFF\",\"panelTitle.inactiveForeground\":\"#EEFFFF\",\"peekView.border\":\"#00000030\",\"peekViewEditor.background\":\"#303C41\",\"peekViewEditor.matchHighlightBackground\":\"#80CBC420\",\"peekViewEditorGutter.background\":\"#303C41\",\"peekViewResult.background\":\"#303C41\",\"peekViewResult.matchHighlightBackground\":\"#80CBC420\",\"peekViewResult.selectionBackground\":\"#6c869270\",\"peekViewTitle.background\":\"#303C41\",\"peekViewTitleDescription.foreground\":\"#EEFFFF60\",\"pickerGroup.border\":\"#FFFFFF1a\",\"pickerGroup.foreground\":\"#80CBC4\",\"progressBar.background\":\"#80CBC4\",\"quickInput.background\":\"#263238\",\"quickInput.foreground\":\"#6c8692\",\"quickInput.list.focusBackground\":\"#EEFFFF20\",\"sash.hoverBorder\":\"#80CBC450\",\"scrollbar.shadow\":\"#00000030\",\"scrollbarSlider.activeBackground\":\"#80CBC4\",\"scrollbarSlider.background\":\"#EEFFFF20\",\"scrollbarSlider.hoverBackground\":\"#EEFFFF10\",\"selection.background\":\"#00000080\",\"settings.checkboxBackground\":\"#263238\",\"settings.checkboxForeground\":\"#EEFFFF\",\"settings.dropdownBackground\":\"#263238\",\"settings.dropdownForeground\":\"#EEFFFF\",\"settings.headerForeground\":\"#80CBC4\",\"settings.modifiedItemIndicator\":\"#80CBC4\",\"settings.numberInputBackground\":\"#263238\",\"settings.numberInputForeground\":\"#EEFFFF\",\"settings.textInputBackground\":\"#263238\",\"settings.textInputForeground\":\"#EEFFFF\",\"sideBar.background\":\"#263238\",\"sideBar.border\":\"#26323860\",\"sideBar.foreground\":\"#6c8692\",\"sideBarSectionHeader.background\":\"#263238\",\"sideBarSectionHeader.border\":\"#26323860\",\"sideBarTitle.foreground\":\"#EEFFFF\",\"statusBar.background\":\"#263238\",\"statusBar.border\":\"#26323860\",\"statusBar.debuggingBackground\":\"#C792EA\",\"statusBar.debuggingForeground\":\"#ffffff\",\"statusBar.foreground\":\"#546E7A\",\"statusBar.noFolderBackground\":\"#263238\",\"statusBarItem.activeBackground\":\"#f0717880\",\"statusBarItem.hoverBackground\":\"#546E7A20\",\"statusBarItem.remoteBackground\":\"#80CBC4\",\"statusBarItem.remoteForeground\":\"#000000\",\"tab.activeBackground\":\"#263238\",\"tab.activeBorder\":\"#80CBC4\",\"tab.activeForeground\":\"#FFFFFF\",\"tab.activeModifiedBorder\":\"#6c8692\",\"tab.border\":\"#263238\",\"tab.inactiveBackground\":\"#263238\",\"tab.inactiveForeground\":\"#6c8692\",\"tab.inactiveModifiedBorder\":\"#904348\",\"tab.unfocusedActiveBorder\":\"#546E7A\",\"tab.unfocusedActiveForeground\":\"#EEFFFF\",\"tab.unfocusedActiveModifiedBorder\":\"#c05a60\",\"tab.unfocusedInactiveModifiedBorder\":\"#904348\",\"terminal.ansiBlack\":\"#000000\",\"terminal.ansiBlue\":\"#82AAFF\",\"terminal.ansiBrightBlack\":\"#546E7A\",\"terminal.ansiBrightBlue\":\"#82AAFF\",\"terminal.ansiBrightCyan\":\"#89DDFF\",\"terminal.ansiBrightGreen\":\"#C3E88D\",\"terminal.ansiBrightMagenta\":\"#C792EA\",\"terminal.ansiBrightRed\":\"#f07178\",\"terminal.ansiBrightWhite\":\"#ffffff\",\"terminal.ansiBrightYellow\":\"#FFCB6B\",\"terminal.ansiCyan\":\"#89DDFF\",\"terminal.ansiGreen\":\"#C3E88D\",\"terminal.ansiMagenta\":\"#C792EA\",\"terminal.ansiRed\":\"#f07178\",\"terminal.ansiWhite\":\"#ffffff\",\"terminal.ansiYellow\":\"#FFCB6B\",\"terminalCursor.background\":\"#000000\",\"terminalCursor.foreground\":\"#FFCB6B\",\"textLink.activeForeground\":\"#EEFFFF\",\"textLink.foreground\":\"#80CBC4\",\"titleBar.activeBackground\":\"#263238\",\"titleBar.activeForeground\":\"#EEFFFF\",\"titleBar.border\":\"#26323860\",\"titleBar.inactiveBackground\":\"#263238\",\"titleBar.inactiveForeground\":\"#6c8692\",\"tree.indentGuidesStroke\":\"#37474F\",\"widget.shadow\":\"#00000030\"},\"displayName\":\"Material Theme\",\"name\":\"material-theme\",\"semanticHighlighting\":true,\"tokenColors\":[{\"settings\":{\"background\":\"#263238\",\"foreground\":\"#EEFFFF\"}},{\"scope\":\"string\",\"settings\":{\"foreground\":\"#C3E88D\"}},{\"scope\":\"punctuation, constant.other.symbol\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"constant.character.escape, text.html constant.character.entity.named\",\"settings\":{\"foreground\":\"#EEFFFF\"}},{\"scope\":\"constant.language.boolean\",\"settings\":{\"foreground\":\"#ff9cac\"}},{\"scope\":\"constant.numeric\",\"settings\":{\"foreground\":\"#F78C6C\"}},{\"scope\":\"variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments\",\"settings\":{\"foreground\":\"#EEFFFF\"}},{\"scope\":\"keyword.other\",\"settings\":{\"foreground\":\"#F78C6C\"}},{\"scope\":\"keyword, modifier, variable.language.this, support.type.object, constant.language\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"entity.name.function, support.function\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":\"storage.type, storage.modifier, storage.control\",\"settings\":{\"foreground\":\"#C792EA\"}},{\"scope\":\"support.module, support.node\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#f07178\"}},{\"scope\":\"support.type, constant.other.key\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"entity.name.type, entity.other.inherited-class, entity.other\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"comment\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#546E7A\"}},{\"scope\":\"comment punctuation.definition.comment, string.quoted.docstring\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#546E7A\"}},{\"scope\":\"punctuation\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"entity.name, entity.name.type.class, support.type, support.class, meta.use\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"variable.object.property, meta.field.declaration entity.name.function\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"meta.definition.method entity.name.function\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"meta.function entity.name.function\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":\"template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"meta.embedded, source.groovy.embedded, meta.template.expression\",\"settings\":{\"foreground\":\"#EEFFFF\"}},{\"scope\":\"entity.name.tag.yaml\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"constant.language.json\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"entity.other.attribute-name.class\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"entity.other.attribute-name.id\",\"settings\":{\"foreground\":\"#F78C6C\"}},{\"scope\":\"source.css entity.name.tag\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"support.type.property-name.css\",\"settings\":{\"foreground\":\"#B2CCD6\"}},{\"scope\":\"meta.tag, punctuation.definition.tag\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"entity.name.tag\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"foreground\":\"#C792EA\"}},{\"scope\":\"punctuation.definition.entity.html\",\"settings\":{\"foreground\":\"#EEFFFF\"}},{\"scope\":\"markup.heading\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"text.html.markdown meta.link.inline, meta.link.reference\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"text.html.markdown beginning.punctuation.definition.list\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#f07178\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#f07178\"}},{\"scope\":\"markup.bold markup.italic, markup.italic markup.bold\",\"settings\":{\"fontStyle\":\"italic bold\",\"foreground\":\"#f07178\"}},{\"scope\":\"markup.fenced_code.block.markdown punctuation.definition.markdown\",\"settings\":{\"foreground\":\"#C3E88D\"}},{\"scope\":\"markup.inline.raw.string.markdown\",\"settings\":{\"foreground\":\"#C3E88D\"}},{\"scope\":\"keyword.other.definition.ini\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"entity.name.section.group-title.ini\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"source.cs meta.class.identifier storage.type\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"source.cs meta.method.identifier entity.name.function\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"source.cs meta.method-call meta.method, source.cs entity.name.function\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":\"source.cs storage.type\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"source.cs meta.method.return-type\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"source.cs meta.preprocessor\",\"settings\":{\"foreground\":\"#546E7A\"}},{\"scope\":\"source.cs entity.name.type.namespace\",\"settings\":{\"foreground\":\"#EEFFFF\"}},{\"scope\":\"meta.jsx.children, SXNested\",\"settings\":{\"foreground\":\"#EEFFFF\"}},{\"scope\":\"support.class.component\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"source.cpp meta.block variable.other\",\"settings\":{\"foreground\":\"#EEFFFF\"}},{\"scope\":\"source.python meta.member.access.python\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"source.python meta.function-call.python, meta.function-call.arguments\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":\"meta.block\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"entity.name.function.call\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":\"source.php support.other.namespace, source.php meta.use support.class\",\"settings\":{\"foreground\":\"#EEFFFF\"}},{\"scope\":\"constant.keyword\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#89DDFF\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"settings\":{\"background\":\"#263238\",\"foreground\":\"#EEFFFF\"}},{\"scope\":[\"constant.other.placeholder\"],\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":[\"markup.deleted\"],\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":[\"markup.inserted\"],\"settings\":{\"foreground\":\"#C3E88D\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"keyword.control\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#89DDFF\"}},{\"scope\":[\"variable.parameter\"],\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":[\"variable.parameter.function.language.special.self.python\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#f07178\"}},{\"scope\":[\"constant.character.format.placeholder.other.python\"],\"settings\":{\"foreground\":\"#F78C6C\"}},{\"scope\":[\"markup.quote\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#89DDFF\"}},{\"scope\":[\"markup.fenced_code.block\"],\"settings\":{\"foreground\":\"#EEFFFF90\"}},{\"scope\":[\"punctuation.definition.quote\"],\"settings\":{\"foreground\":\"#ff9cac\"}},{\"scope\":[\"meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#C792EA\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#F78C6C\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#916b53\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#ff9cac\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#C792EA\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#C3E88D\"}}],\"type\":\"dark\"}"))
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@shikijs/themes",
3
3
  "type": "module",
4
- "version": "3.14.0",
4
+ "version": "3.20.0",
5
5
  "description": "TextMate themes for Shiki in ESM",
6
6
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
7
7
  "license": "MIT",
@@ -87,10 +87,10 @@
87
87
  "dist"
88
88
  ],
89
89
  "dependencies": {
90
- "@shikijs/types": "3.14.0"
90
+ "@shikijs/types": "3.20.0"
91
91
  },
92
92
  "devDependencies": {
93
- "tm-themes": "^1.10.12"
93
+ "tm-themes": "^1.10.13"
94
94
  },
95
95
  "scripts": {
96
96
  "build": "pnpm prepare"
@@ -60,7 +60,32 @@ function parseComments(lines, jsx, matchAlgorithm) {
60
60
  if (head?.type !== "text")
61
61
  continue;
62
62
  const isLast = i === elements.length - 1;
63
- const match = matchToken(head.value, isLast);
63
+ let match = matchToken(head.value, isLast);
64
+ let additionalTokens;
65
+ if (!match && i > 0 && head.value.trim().startsWith("[!code")) {
66
+ const prevToken = elements[i - 1];
67
+ if (prevToken?.type === "element") {
68
+ const prevHead = prevToken.children.at(0);
69
+ if (prevHead?.type === "text" && prevHead.value.includes("//")) {
70
+ const combinedValue = prevHead.value + head.value;
71
+ const combinedMatch = matchToken(combinedValue, isLast);
72
+ if (combinedMatch) {
73
+ match = combinedMatch;
74
+ out.push({
75
+ info: combinedMatch,
76
+ line,
77
+ token: prevToken,
78
+ // Use the previous token as the main token
79
+ isLineCommentOnly: elements.length === 2 && prevToken.children.length === 1 && token.children.length === 1,
80
+ isJsxStyle: false,
81
+ additionalTokens: [token]
82
+ // Current token is the additional one
83
+ });
84
+ continue;
85
+ }
86
+ }
87
+ }
88
+ }
64
89
  if (!match)
65
90
  continue;
66
91
  if (jsx && !isLast && i !== 0) {
@@ -70,7 +95,8 @@ function parseComments(lines, jsx, matchAlgorithm) {
70
95
  line,
71
96
  token,
72
97
  isLineCommentOnly: elements.length === 3 && token.children.length === 1,
73
- isJsxStyle
98
+ isJsxStyle,
99
+ additionalTokens
74
100
  });
75
101
  } else {
76
102
  out.push({
@@ -78,7 +104,8 @@ function parseComments(lines, jsx, matchAlgorithm) {
78
104
  line,
79
105
  token,
80
106
  isLineCommentOnly: elements.length === 1 && token.children.length === 1,
81
- isJsxStyle: false
107
+ isJsxStyle: false,
108
+ additionalTokens
82
109
  });
83
110
  }
84
111
  }
@@ -158,11 +185,28 @@ function createCommentNotationTransformer(name, regex, onMatch, matchAlgorithm)
158
185
  } else if (isEmpty && comment.isJsxStyle) {
159
186
  comment.line.children.splice(comment.line.children.indexOf(comment.token) - 1, 3);
160
187
  } else if (isEmpty) {
188
+ if (comment.additionalTokens) {
189
+ for (let j = comment.additionalTokens.length - 1; j >= 0; j--) {
190
+ const additionalToken = comment.additionalTokens[j];
191
+ const tokenIndex = comment.line.children.indexOf(additionalToken);
192
+ if (tokenIndex !== -1) {
193
+ comment.line.children.splice(tokenIndex, 1);
194
+ }
195
+ }
196
+ }
161
197
  comment.line.children.splice(comment.line.children.indexOf(comment.token), 1);
162
198
  } else {
163
199
  const head = comment.token.children[0];
164
200
  if (head.type === "text") {
165
201
  head.value = comment.info.join("");
202
+ if (comment.additionalTokens) {
203
+ for (const additionalToken of comment.additionalTokens) {
204
+ const additionalHead = additionalToken.children[0];
205
+ if (additionalHead?.type === "text") {
206
+ additionalHead.value = "";
207
+ }
208
+ }
209
+ }
166
210
  }
167
211
  }
168
212
  }
@@ -197,28 +241,24 @@ function parseMetaHighlightString(meta) {
197
241
  if (!match)
198
242
  return null;
199
243
  const lines = match[1].split(",").flatMap((v) => {
200
- const num = v.split("-").map((v2) => Number.parseInt(v2, 10));
201
- if (num.length === 1)
202
- return [num[0]];
203
- return Array.from({ length: num[1] - num[0] + 1 }, (_, i) => i + num[0]);
244
+ const range = v.split("-").map((n) => Number.parseInt(n, 10));
245
+ return range.length === 1 ? [range[0]] : Array.from({ length: range[1] - range[0] + 1 }, (_, i) => range[0] + i);
204
246
  });
205
247
  return lines;
206
248
  }
207
249
  const symbol = Symbol("highlighted-lines");
208
250
  function transformerMetaHighlight(options = {}) {
209
- const {
210
- className = "highlighted"
211
- } = options;
251
+ const { className = "highlighted", zeroIndexed = false } = options;
212
252
  return {
213
253
  name: "@shikijs/transformers:meta-highlight",
214
- line(node, line) {
215
- if (!this.options.meta?.__raw) {
254
+ line(node, lineNumber) {
255
+ if (!this.options.meta?.__raw)
216
256
  return;
217
- }
218
257
  const meta = this.meta;
219
258
  meta[symbol] ??= parseMetaHighlightString(this.options.meta.__raw);
220
- const lines = meta[symbol] ?? [];
221
- if (lines.includes(line))
259
+ const highlightedLines = meta[symbol] ?? [];
260
+ const effectiveLine = zeroIndexed ? lineNumber - 1 : lineNumber;
261
+ if (highlightedLines.includes(effectiveLine))
222
262
  this.addClassToHast(node, className);
223
263
  return node;
224
264
  }
@@ -282,7 +322,7 @@ function transformerNotationMap(options = {}, name = "@shikijs/transformers:nota
282
322
  } = options;
283
323
  return createCommentNotationTransformer(
284
324
  name,
285
- new RegExp(`\\s*\\[!code (${Object.keys(classMap).map(escapeRegExp).join("|")})(:\\d+)?\\]`),
325
+ new RegExp(`#?\\s*\\[!code (${Object.keys(classMap).map(escapeRegExp).join("|")})(:\\d+)?\\]`, "gi"),
286
326
  function([_, match, range = ":1"], _line, _comment, lines, index) {
287
327
  const lineNum = Number.parseInt(range.slice(1), 10);
288
328
  for (let i = index; i < Math.min(index + lineNum, lines.length); i++) {
@@ -489,13 +529,11 @@ function transformerRenderIndentGuides(options = {}) {
489
529
  return {
490
530
  name: "@shikijs/transformers:render-indent-guides",
491
531
  code(hast) {
492
- let { indent = 2 } = options;
493
- const match = this.options.meta?.__raw?.match(/\{indent:(\d+|false)\}/);
494
- if (match) {
495
- if (match[1] === "false") {
496
- return hast;
497
- }
498
- indent = Number(match[1]);
532
+ const indent = Number(
533
+ this.options.meta?.indent ?? this.options.meta?.__raw?.match(/\{indent:(\d+|false)\}/)?.[1] ?? options.indent ?? 2
534
+ );
535
+ if (Number.isNaN(indent) || indent <= 0) {
536
+ return hast;
499
537
  }
500
538
  const indentRegex = new RegExp(` {${indent}}| {0,${indent - 1}} | {1,}$`, "g");
501
539
  const emptyLines = [];
@@ -512,9 +550,9 @@ function transformerRenderIndentGuides(options = {}) {
512
550
  const text = first.children[0];
513
551
  const blanks = text.value.split(/[^ \t]/, 1)[0];
514
552
  const ranges = [];
515
- for (const match2 of blanks.matchAll(indentRegex)) {
516
- const start = match2.index;
517
- const end = start + match2[0].length;
553
+ for (const match of blanks.matchAll(indentRegex)) {
554
+ const start = match.index;
555
+ const end = start + match[0].length;
518
556
  ranges.push([start, end]);
519
557
  }
520
558
  for (const [line2, level2] of emptyLines) {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@shikijs/transformers",
3
3
  "type": "module",
4
- "version": "3.14.0",
4
+ "version": "3.18.0",
5
5
  "description": "Collective of common transformers transformers for Shiki",
6
6
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
7
7
  "license": "MIT",
@@ -27,8 +27,8 @@
27
27
  "dist"
28
28
  ],
29
29
  "dependencies": {
30
- "@shikijs/core": "3.14.0",
31
- "@shikijs/types": "3.14.0"
30
+ "@shikijs/core": "3.18.0",
31
+ "@shikijs/types": "3.18.0"
32
32
  },
33
33
  "scripts": {
34
34
  "build": "unbuild",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@shikijs/types",
3
3
  "type": "module",
4
- "version": "3.14.0",
4
+ "version": "3.18.0",
5
5
  "description": "Type definitions for Shiki",
6
6
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
7
7
  "license": "MIT",