@glodon-aiot/react-components 3.3.0-beta.14 → 3.3.0-beta.17
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.
- package/dist/es/_virtual/_commonjsHelpers.mjs +8 -0
- package/dist/es/_virtual/index.mjs +4 -0
- package/dist/es/_virtual/index2.mjs +4 -0
- package/dist/es/_virtual/index3.mjs +4 -0
- package/dist/es/_virtual/lib.mjs +4 -0
- package/dist/es/_virtual/prism-core.mjs +4 -0
- package/dist/es/_virtual/types.mjs +4 -0
- package/dist/es/_virtual/ua-parser.min.mjs +4 -0
- package/dist/es/components/Copy/index.mjs +44 -0
- package/dist/es/components/Copy/style.less.mjs +4 -0
- package/dist/es/components/Markdown/ATag/index.mjs +47 -0
- package/dist/es/components/Markdown/Code/index.mjs +69 -0
- package/dist/es/components/Markdown/Image/index.mjs +60 -0
- package/dist/es/components/Markdown/Video/index.mjs +22 -0
- package/dist/es/components/Markdown/index.mjs +75 -0
- package/dist/es/components/Markdown/style.less.mjs +4 -0
- package/dist/es/index.mjs +30 -25
- package/dist/es/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.mjs +9 -0
- package/dist/es/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.mjs +8 -0
- package/dist/es/node_modules/@babel/runtime/helpers/esm/defineProperty.mjs +12 -0
- package/dist/es/node_modules/@babel/runtime/helpers/esm/extends.mjs +13 -0
- package/dist/es/node_modules/@babel/runtime/helpers/esm/iterableToArray.mjs +7 -0
- package/dist/es/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.mjs +7 -0
- package/dist/es/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.mjs +15 -0
- package/dist/es/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.mjs +15 -0
- package/dist/es/node_modules/@babel/runtime/helpers/esm/toConsumableArray.mjs +10 -0
- package/dist/es/node_modules/@babel/runtime/helpers/esm/toPrimitive.mjs +16 -0
- package/dist/es/node_modules/@babel/runtime/helpers/esm/toPropertyKey.mjs +9 -0
- package/dist/es/node_modules/@babel/runtime/helpers/esm/typeof.mjs +11 -0
- package/dist/es/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.mjs +12 -0
- package/dist/es/node_modules/@react-spring/animated/dist/react-spring-animated.esm.mjs +201 -0
- package/dist/es/node_modules/@react-spring/core/dist/react-spring-core.esm.mjs +1087 -0
- package/dist/es/node_modules/@react-spring/rafz/dist/react-spring-rafz.esm.mjs +104 -0
- package/dist/es/node_modules/@react-spring/shared/dist/react-spring-shared.esm.mjs +568 -0
- package/dist/es/node_modules/@react-spring/web/dist/react-spring-web.esm.mjs +158 -0
- package/dist/es/node_modules/@use-gesture/core/dist/actions-fe213e88.esm.mjs +908 -0
- package/dist/es/node_modules/@use-gesture/core/dist/maths-0ab39ae9.esm.mjs +35 -0
- package/dist/es/node_modules/@use-gesture/core/dist/use-gesture-core.esm.mjs +242 -0
- package/dist/es/node_modules/@use-gesture/react/dist/use-gesture-react.esm.mjs +33 -0
- package/dist/es/node_modules/antd-mobile/es/components/config-provider/config-provider.mjs +20 -0
- package/dist/es/node_modules/antd-mobile/es/components/image-viewer/image-viewer.css.mjs +4 -0
- package/dist/es/node_modules/antd-mobile/es/components/image-viewer/image-viewer.mjs +78 -0
- package/dist/es/node_modules/antd-mobile/es/components/image-viewer/index.mjs +14 -0
- package/dist/es/node_modules/antd-mobile/es/components/image-viewer/methods.mjs +34 -0
- package/dist/es/node_modules/antd-mobile/es/components/image-viewer/slide.mjs +178 -0
- package/dist/es/node_modules/antd-mobile/es/components/image-viewer/slides.mjs +83 -0
- package/dist/es/node_modules/antd-mobile/es/components/mask/index.mjs +5 -0
- package/dist/es/node_modules/antd-mobile/es/components/mask/mask.css.mjs +4 -0
- package/dist/es/node_modules/antd-mobile/es/components/mask/mask.mjs +84 -0
- package/dist/es/node_modules/antd-mobile/es/components/safe-area/index.mjs +5 -0
- package/dist/es/node_modules/antd-mobile/es/components/safe-area/safe-area.css.mjs +4 -0
- package/dist/es/node_modules/antd-mobile/es/components/safe-area/safe-area.mjs +9 -0
- package/dist/es/node_modules/antd-mobile/es/global/global.css.mjs +4 -0
- package/dist/es/node_modules/antd-mobile/es/global/index.mjs +4 -0
- package/dist/es/node_modules/antd-mobile/es/locales/zh-CN.mjs +141 -0
- package/dist/es/node_modules/antd-mobile/es/utils/attach-properties-to-component.mjs +9 -0
- package/dist/es/node_modules/antd-mobile/es/utils/bound.mjs +7 -0
- package/dist/es/node_modules/antd-mobile/es/utils/can-use-dom.mjs +4 -0
- package/dist/es/node_modules/antd-mobile/es/utils/convert-px.mjs +11 -0
- package/dist/es/node_modules/antd-mobile/es/utils/dev-log.mjs +7 -0
- package/dist/es/node_modules/antd-mobile/es/utils/get-container.mjs +6 -0
- package/dist/es/node_modules/antd-mobile/es/utils/get-scroll-parent.mjs +22 -0
- package/dist/es/node_modules/antd-mobile/es/utils/is-dev.mjs +4 -0
- package/dist/es/node_modules/antd-mobile/es/utils/matrix.mjs +11 -0
- package/dist/es/node_modules/antd-mobile/es/utils/native-props.mjs +12 -0
- package/dist/es/node_modules/antd-mobile/es/utils/render-imperatively.mjs +47 -0
- package/dist/es/node_modules/antd-mobile/es/utils/render-to-body.mjs +12 -0
- package/dist/es/node_modules/antd-mobile/es/utils/render-to-container.mjs +13 -0
- package/dist/es/node_modules/antd-mobile/es/utils/render.mjs +52 -0
- package/dist/es/node_modules/antd-mobile/es/utils/rubberband.mjs +11 -0
- package/dist/es/node_modules/antd-mobile/es/utils/should-render.mjs +10 -0
- package/dist/es/node_modules/antd-mobile/es/utils/supports-passive.mjs +15 -0
- package/dist/es/node_modules/antd-mobile/es/utils/use-drag-and-pinch.mjs +6 -0
- package/dist/es/node_modules/antd-mobile/es/utils/use-initialized.mjs +8 -0
- package/dist/es/node_modules/antd-mobile/es/utils/use-lock-scroll.mjs +54 -0
- package/dist/es/node_modules/antd-mobile/es/utils/use-touch.mjs +32 -0
- package/dist/es/node_modules/antd-mobile/es/utils/with-default-props.mjs +11 -0
- package/dist/es/node_modules/antd-mobile/es/utils/with-stop-propagation.mjs +19 -0
- package/dist/es/node_modules/character-reference-invalid/index.json.mjs +33 -0
- package/dist/es/node_modules/classnames/index.mjs +42 -0
- package/dist/es/node_modules/hast-util-parse-selector/index.mjs +14 -0
- package/dist/es/node_modules/is-alphabetical/index.mjs +8 -0
- package/dist/es/node_modules/is-alphanumerical/index.mjs +9 -0
- package/dist/es/node_modules/is-decimal/index.mjs +8 -0
- package/dist/es/node_modules/is-hexadecimal/index.mjs +8 -0
- package/dist/es/node_modules/parse-entities/decode-entity.browser.mjs +8 -0
- package/dist/es/node_modules/parse-entities/index.mjs +83 -0
- package/dist/es/node_modules/parse-entities/node_modules/character-entities-legacy/index.json.mjs +217 -0
- package/dist/es/node_modules/property-information/find.mjs +25 -0
- package/dist/es/node_modules/property-information/html.mjs +10 -0
- package/dist/es/node_modules/property-information/lib/aria.mjs +63 -0
- package/dist/es/node_modules/property-information/lib/html.mjs +354 -0
- package/dist/es/node_modules/property-information/lib/util/case-insensitive-transform.mjs +8 -0
- package/dist/es/node_modules/property-information/lib/util/case-sensitive-transform.mjs +7 -0
- package/dist/es/node_modules/property-information/lib/util/create.mjs +13 -0
- package/dist/es/node_modules/property-information/lib/util/defined-info.mjs +18 -0
- package/dist/es/node_modules/property-information/lib/util/info.mjs +19 -0
- package/dist/es/node_modules/property-information/lib/util/merge.mjs +11 -0
- package/dist/es/node_modules/property-information/lib/util/schema.mjs +10 -0
- package/dist/es/node_modules/property-information/lib/util/types.mjs +15 -0
- package/dist/es/node_modules/property-information/lib/xlink.mjs +20 -0
- package/dist/es/node_modules/property-information/lib/xml.mjs +16 -0
- package/dist/es/node_modules/property-information/lib/xmlns.mjs +16 -0
- package/dist/es/node_modules/property-information/normalize.mjs +7 -0
- package/dist/es/node_modules/react-device-detect/dist/lib.mjs +723 -0
- package/dist/es/node_modules/react-syntax-highlighter/dist/esm/checkForListedLanguage.mjs +7 -0
- package/dist/es/node_modules/react-syntax-highlighter/dist/esm/create-element.mjs +101 -0
- package/dist/es/node_modules/react-syntax-highlighter/dist/esm/highlight.mjs +283 -0
- package/dist/es/node_modules/react-syntax-highlighter/dist/esm/languages/prism/supported-languages.mjs +4 -0
- package/dist/es/node_modules/react-syntax-highlighter/dist/esm/prism.mjs +10 -0
- package/dist/es/node_modules/react-syntax-highlighter/dist/esm/styles/prism/prism.mjs +195 -0
- package/dist/es/node_modules/refractor/core.mjs +111 -0
- package/dist/es/node_modules/refractor/index.mjs +553 -0
- package/dist/es/node_modules/refractor/lang/abap.mjs +60 -0
- package/dist/es/node_modules/refractor/lang/abnf.mjs +63 -0
- package/dist/es/node_modules/refractor/lang/actionscript.mjs +22 -0
- package/dist/es/node_modules/refractor/lang/ada.mjs +28 -0
- package/dist/es/node_modules/refractor/lang/agda.mjs +35 -0
- package/dist/es/node_modules/refractor/lang/al.mjs +35 -0
- package/dist/es/node_modules/refractor/lang/antlr4.mjs +72 -0
- package/dist/es/node_modules/refractor/lang/apacheconf.mjs +59 -0
- package/dist/es/node_modules/refractor/lang/apex.mjs +69 -0
- package/dist/es/node_modules/refractor/lang/apl.mjs +44 -0
- package/dist/es/node_modules/refractor/lang/applescript.mjs +26 -0
- package/dist/es/node_modules/refractor/lang/aql.mjs +57 -0
- package/dist/es/node_modules/refractor/lang/arduino.mjs +20 -0
- package/dist/es/node_modules/refractor/lang/arff.mjs +22 -0
- package/dist/es/node_modules/refractor/lang/asciidoc.mjs +208 -0
- package/dist/es/node_modules/refractor/lang/asm6502.mjs +41 -0
- package/dist/es/node_modules/refractor/lang/asmatmel.mjs +53 -0
- package/dist/es/node_modules/refractor/lang/aspnet.mjs +53 -0
- package/dist/es/node_modules/refractor/lang/autohotkey.mjs +40 -0
- package/dist/es/node_modules/refractor/lang/autoit.mjs +43 -0
- package/dist/es/node_modules/refractor/lang/avisynth.mjs +167 -0
- package/dist/es/node_modules/refractor/lang/avro-idl.mjs +50 -0
- package/dist/es/node_modules/refractor/lang/bash.mjs +206 -0
- package/dist/es/node_modules/refractor/lang/basic.mjs +29 -0
- package/dist/es/node_modules/refractor/lang/batch.mjs +95 -0
- package/dist/es/node_modules/refractor/lang/bbcode.mjs +36 -0
- package/dist/es/node_modules/refractor/lang/bicep.mjs +72 -0
- package/dist/es/node_modules/refractor/lang/birb.mjs +32 -0
- package/dist/es/node_modules/refractor/lang/bison.mjs +52 -0
- package/dist/es/node_modules/refractor/lang/bnf.mjs +31 -0
- package/dist/es/node_modules/refractor/lang/brainfuck.mjs +32 -0
- package/dist/es/node_modules/refractor/lang/brightscript.mjs +55 -0
- package/dist/es/node_modules/refractor/lang/bro.mjs +39 -0
- package/dist/es/node_modules/refractor/lang/bsl.mjs +77 -0
- package/dist/es/node_modules/refractor/lang/c.mjs +78 -0
- package/dist/es/node_modules/refractor/lang/cfscript.mjs +44 -0
- package/dist/es/node_modules/refractor/lang/chaiscript.mjs +65 -0
- package/dist/es/node_modules/refractor/lang/cil.mjs +31 -0
- package/dist/es/node_modules/refractor/lang/clike.mjs +36 -0
- package/dist/es/node_modules/refractor/lang/clojure.mjs +42 -0
- package/dist/es/node_modules/refractor/lang/cmake.mjs +41 -0
- package/dist/es/node_modules/refractor/lang/cobol.mjs +58 -0
- package/dist/es/node_modules/refractor/lang/coffeescript.mjs +86 -0
- package/dist/es/node_modules/refractor/lang/concurnas.mjs +69 -0
- package/dist/es/node_modules/refractor/lang/coq.mjs +52 -0
- package/dist/es/node_modules/refractor/lang/cpp.mjs +98 -0
- package/dist/es/node_modules/refractor/lang/crystal.mjs +63 -0
- package/dist/es/node_modules/refractor/lang/csharp.mjs +277 -0
- package/dist/es/node_modules/refractor/lang/cshtml.mjs +104 -0
- package/dist/es/node_modules/refractor/lang/csp.mjs +61 -0
- package/dist/es/node_modules/refractor/lang/css-extras.mjs +109 -0
- package/dist/es/node_modules/refractor/lang/css.mjs +63 -0
- package/dist/es/node_modules/refractor/lang/csv.mjs +16 -0
- package/dist/es/node_modules/refractor/lang/cypher.mjs +44 -0
- package/dist/es/node_modules/refractor/lang/d.mjs +77 -0
- package/dist/es/node_modules/refractor/lang/dart.mjs +72 -0
- package/dist/es/node_modules/refractor/lang/dataweave.mjs +49 -0
- package/dist/es/node_modules/refractor/lang/dax.mjs +39 -0
- package/dist/es/node_modules/refractor/lang/dhall.mjs +74 -0
- package/dist/es/node_modules/refractor/lang/diff.mjs +54 -0
- package/dist/es/node_modules/refractor/lang/django.mjs +60 -0
- package/dist/es/node_modules/refractor/lang/dns-zone-file.mjs +40 -0
- package/dist/es/node_modules/refractor/lang/docker.mjs +83 -0
- package/dist/es/node_modules/refractor/lang/dot.mjs +75 -0
- package/dist/es/node_modules/refractor/lang/ebnf.mjs +32 -0
- package/dist/es/node_modules/refractor/lang/editorconfig.mjs +39 -0
- package/dist/es/node_modules/refractor/lang/eiffel.mjs +46 -0
- package/dist/es/node_modules/refractor/lang/ejs.mjs +33 -0
- package/dist/es/node_modules/refractor/lang/elixir.mjs +100 -0
- package/dist/es/node_modules/refractor/lang/elm.mjs +54 -0
- package/dist/es/node_modules/refractor/lang/erb.mjs +35 -0
- package/dist/es/node_modules/refractor/lang/erlang.mjs +47 -0
- package/dist/es/node_modules/refractor/lang/etlua.mjs +33 -0
- package/dist/es/node_modules/refractor/lang/excel-formula.mjs +74 -0
- package/dist/es/node_modules/refractor/lang/factor.mjs +569 -0
- package/dist/es/node_modules/refractor/lang/false.mjs +39 -0
- package/dist/es/node_modules/refractor/lang/firestore-security-rules.mjs +43 -0
- package/dist/es/node_modules/refractor/lang/flow.mjs +31 -0
- package/dist/es/node_modules/refractor/lang/fortran.mjs +49 -0
- package/dist/es/node_modules/refractor/lang/fsharp.mjs +76 -0
- package/dist/es/node_modules/refractor/lang/ftl.mjs +102 -0
- package/dist/es/node_modules/refractor/lang/gap.mjs +57 -0
- package/dist/es/node_modules/refractor/lang/gcode.mjs +28 -0
- package/dist/es/node_modules/refractor/lang/gdscript.mjs +36 -0
- package/dist/es/node_modules/refractor/lang/gedcom.mjs +40 -0
- package/dist/es/node_modules/refractor/lang/gherkin.mjs +94 -0
- package/dist/es/node_modules/refractor/lang/git.mjs +75 -0
- package/dist/es/node_modules/refractor/lang/glsl.mjs +18 -0
- package/dist/es/node_modules/refractor/lang/gml.mjs +19 -0
- package/dist/es/node_modules/refractor/lang/gn.mjs +55 -0
- package/dist/es/node_modules/refractor/lang/go-module.mjs +34 -0
- package/dist/es/node_modules/refractor/lang/go.mjs +36 -0
- package/dist/es/node_modules/refractor/lang/graphql.mjs +133 -0
- package/dist/es/node_modules/refractor/lang/groovy.mjs +58 -0
- package/dist/es/node_modules/refractor/lang/haml.mjs +132 -0
- package/dist/es/node_modules/refractor/lang/handlebars.mjs +46 -0
- package/dist/es/node_modules/refractor/lang/haskell.mjs +76 -0
- package/dist/es/node_modules/refractor/lang/haxe.mjs +84 -0
- package/dist/es/node_modules/refractor/lang/hcl.mjs +68 -0
- package/dist/es/node_modules/refractor/lang/hlsl.mjs +31 -0
- package/dist/es/node_modules/refractor/lang/hoon.mjs +26 -0
- package/dist/es/node_modules/refractor/lang/hpkp.mjs +20 -0
- package/dist/es/node_modules/refractor/lang/hsts.mjs +20 -0
- package/dist/es/node_modules/refractor/lang/http.mjs +126 -0
- package/dist/es/node_modules/refractor/lang/ichigojam.mjs +25 -0
- package/dist/es/node_modules/refractor/lang/icon.mjs +32 -0
- package/dist/es/node_modules/refractor/lang/icu-message-format.mjs +136 -0
- package/dist/es/node_modules/refractor/lang/idris.mjs +30 -0
- package/dist/es/node_modules/refractor/lang/iecst.mjs +38 -0
- package/dist/es/node_modules/refractor/lang/ignore.mjs +30 -0
- package/dist/es/node_modules/refractor/lang/inform7.mjs +69 -0
- package/dist/es/node_modules/refractor/lang/ini.mjs +52 -0
- package/dist/es/node_modules/refractor/lang/io.mjs +34 -0
- package/dist/es/node_modules/refractor/lang/j.mjs +40 -0
- package/dist/es/node_modules/refractor/lang/java.mjs +86 -0
- package/dist/es/node_modules/refractor/lang/javadoc.mjs +89 -0
- package/dist/es/node_modules/refractor/lang/javadoclike.mjs +60 -0
- package/dist/es/node_modules/refractor/lang/javascript.mjs +114 -0
- package/dist/es/node_modules/refractor/lang/javastacktrace.mjs +146 -0
- package/dist/es/node_modules/refractor/lang/jexl.mjs +26 -0
- package/dist/es/node_modules/refractor/lang/jolie.mjs +51 -0
- package/dist/es/node_modules/refractor/lang/jq.mjs +71 -0
- package/dist/es/node_modules/refractor/lang/js-extras.mjs +104 -0
- package/dist/es/node_modules/refractor/lang/js-templates.mjs +153 -0
- package/dist/es/node_modules/refractor/lang/jsdoc.mjs +83 -0
- package/dist/es/node_modules/refractor/lang/json.mjs +36 -0
- package/dist/es/node_modules/refractor/lang/json5.mjs +32 -0
- package/dist/es/node_modules/refractor/lang/jsonp.mjs +20 -0
- package/dist/es/node_modules/refractor/lang/jsstacktrace.mjs +53 -0
- package/dist/es/node_modules/refractor/lang/jsx.mjs +61 -0
- package/dist/es/node_modules/refractor/lang/julia.mjs +47 -0
- package/dist/es/node_modules/refractor/lang/keepalived.mjs +54 -0
- package/dist/es/node_modules/refractor/lang/keyman.mjs +55 -0
- package/dist/es/node_modules/refractor/lang/kotlin.mjs +81 -0
- package/dist/es/node_modules/refractor/lang/kumir.mjs +85 -0
- package/dist/es/node_modules/refractor/lang/kusto.mjs +47 -0
- package/dist/es/node_modules/refractor/lang/latex.mjs +68 -0
- package/dist/es/node_modules/refractor/lang/latte.mjs +68 -0
- package/dist/es/node_modules/refractor/lang/less.mjs +51 -0
- package/dist/es/node_modules/refractor/lang/lilypond.mjs +77 -0
- package/dist/es/node_modules/refractor/lang/liquid.mjs +68 -0
- package/dist/es/node_modules/refractor/lang/lisp.mjs +158 -0
- package/dist/es/node_modules/refractor/lang/livescript.mjs +119 -0
- package/dist/es/node_modules/refractor/lang/llvm.mjs +31 -0
- package/dist/es/node_modules/refractor/lang/log.mjs +103 -0
- package/dist/es/node_modules/refractor/lang/lolcode.mjs +57 -0
- package/dist/es/node_modules/refractor/lang/lua.mjs +29 -0
- package/dist/es/node_modules/refractor/lang/magma.mjs +42 -0
- package/dist/es/node_modules/refractor/lang/makefile.mjs +42 -0
- package/dist/es/node_modules/refractor/lang/markdown.mjs +306 -0
- package/dist/es/node_modules/refractor/lang/markup-templating.mjs +74 -0
- package/dist/es/node_modules/refractor/lang/markup.mjs +154 -0
- package/dist/es/node_modules/refractor/lang/matlab.mjs +25 -0
- package/dist/es/node_modules/refractor/lang/maxscript.mjs +70 -0
- package/dist/es/node_modules/refractor/lang/mel.mjs +49 -0
- package/dist/es/node_modules/refractor/lang/mermaid.mjs +116 -0
- package/dist/es/node_modules/refractor/lang/mizar.mjs +24 -0
- package/dist/es/node_modules/refractor/lang/mongodb.mjs +287 -0
- package/dist/es/node_modules/refractor/lang/monkey.mjs +40 -0
- package/dist/es/node_modules/refractor/lang/moonscript.mjs +63 -0
- package/dist/es/node_modules/refractor/lang/n1ql.mjs +34 -0
- package/dist/es/node_modules/refractor/lang/n4js.mjs +22 -0
- package/dist/es/node_modules/refractor/lang/nand2tetris-hdl.mjs +21 -0
- package/dist/es/node_modules/refractor/lang/naniscript.mjs +140 -0
- package/dist/es/node_modules/refractor/lang/nasm.mjs +31 -0
- package/dist/es/node_modules/refractor/lang/neon.mjs +52 -0
- package/dist/es/node_modules/refractor/lang/nevod.mjs +125 -0
- package/dist/es/node_modules/refractor/lang/nginx.mjs +61 -0
- package/dist/es/node_modules/refractor/lang/nim.mjs +54 -0
- package/dist/es/node_modules/refractor/lang/nix.mjs +45 -0
- package/dist/es/node_modules/refractor/lang/nsis.mjs +37 -0
- package/dist/es/node_modules/refractor/lang/objectivec.mjs +23 -0
- package/dist/es/node_modules/refractor/lang/ocaml.mjs +64 -0
- package/dist/es/node_modules/refractor/lang/opencl.mjs +62 -0
- package/dist/es/node_modules/refractor/lang/openqasm.mjs +29 -0
- package/dist/es/node_modules/refractor/lang/oz.mjs +37 -0
- package/dist/es/node_modules/refractor/lang/parigp.mjs +36 -0
- package/dist/es/node_modules/refractor/lang/parser.mjs +80 -0
- package/dist/es/node_modules/refractor/lang/pascal.mjs +66 -0
- package/dist/es/node_modules/refractor/lang/pascaligo.mjs +70 -0
- package/dist/es/node_modules/refractor/lang/pcaxis.mjs +63 -0
- package/dist/es/node_modules/refractor/lang/peoplecode.mjs +51 -0
- package/dist/es/node_modules/refractor/lang/perl.mjs +134 -0
- package/dist/es/node_modules/refractor/lang/php-extras.mjs +29 -0
- package/dist/es/node_modules/refractor/lang/php.mjs +301 -0
- package/dist/es/node_modules/refractor/lang/phpdoc.mjs +34 -0
- package/dist/es/node_modules/refractor/lang/plsql.mjs +30 -0
- package/dist/es/node_modules/refractor/lang/powerquery.mjs +44 -0
- package/dist/es/node_modules/refractor/lang/powershell.mjs +58 -0
- package/dist/es/node_modules/refractor/lang/processing.mjs +25 -0
- package/dist/es/node_modules/refractor/lang/prolog.mjs +31 -0
- package/dist/es/node_modules/refractor/lang/promql.mjs +74 -0
- package/dist/es/node_modules/refractor/lang/properties.mjs +21 -0
- package/dist/es/node_modules/refractor/lang/protobuf.mjs +47 -0
- package/dist/es/node_modules/refractor/lang/psl.mjs +47 -0
- package/dist/es/node_modules/refractor/lang/pug.mjs +173 -0
- package/dist/es/node_modules/refractor/lang/puppet.mjs +140 -0
- package/dist/es/node_modules/refractor/lang/pure.mjs +72 -0
- package/dist/es/node_modules/refractor/lang/purebasic.mjs +63 -0
- package/dist/es/node_modules/refractor/lang/purescript.mjs +41 -0
- package/dist/es/node_modules/refractor/lang/python.mjs +73 -0
- package/dist/es/node_modules/refractor/lang/q.mjs +62 -0
- package/dist/es/node_modules/refractor/lang/qml.mjs +67 -0
- package/dist/es/node_modules/refractor/lang/qore.mjs +32 -0
- package/dist/es/node_modules/refractor/lang/qsharp.mjs +93 -0
- package/dist/es/node_modules/refractor/lang/r.mjs +31 -0
- package/dist/es/node_modules/refractor/lang/racket.mjs +29 -0
- package/dist/es/node_modules/refractor/lang/reason.mjs +33 -0
- package/dist/es/node_modules/refractor/lang/regex.mjs +97 -0
- package/dist/es/node_modules/refractor/lang/rego.mjs +37 -0
- package/dist/es/node_modules/refractor/lang/renpy.mjs +30 -0
- package/dist/es/node_modules/refractor/lang/rest.mjs +199 -0
- package/dist/es/node_modules/refractor/lang/rip.mjs +41 -0
- package/dist/es/node_modules/refractor/lang/roboconf.mjs +39 -0
- package/dist/es/node_modules/refractor/lang/robotframework.mjs +95 -0
- package/dist/es/node_modules/refractor/lang/ruby.mjs +159 -0
- package/dist/es/node_modules/refractor/lang/rust.mjs +122 -0
- package/dist/es/node_modules/refractor/lang/sas.mjs +305 -0
- package/dist/es/node_modules/refractor/lang/sass.mjs +69 -0
- package/dist/es/node_modules/refractor/lang/scala.mjs +59 -0
- package/dist/es/node_modules/refractor/lang/scheme.mjs +120 -0
- package/dist/es/node_modules/refractor/lang/scss.mjs +82 -0
- package/dist/es/node_modules/refractor/lang/shell-session.mjs +69 -0
- package/dist/es/node_modules/refractor/lang/smali.mjs +84 -0
- package/dist/es/node_modules/refractor/lang/smalltalk.mjs +47 -0
- package/dist/es/node_modules/refractor/lang/smarty.mjs +106 -0
- package/dist/es/node_modules/refractor/lang/sml.mjs +64 -0
- package/dist/es/node_modules/refractor/lang/solidity.mjs +28 -0
- package/dist/es/node_modules/refractor/lang/solution-file.mjs +58 -0
- package/dist/es/node_modules/refractor/lang/soy.mjs +77 -0
- package/dist/es/node_modules/refractor/lang/sparql.mjs +24 -0
- package/dist/es/node_modules/refractor/lang/splunk-spl.mjs +36 -0
- package/dist/es/node_modules/refractor/lang/sqf.mjs +42 -0
- package/dist/es/node_modules/refractor/lang/sql.mjs +42 -0
- package/dist/es/node_modules/refractor/lang/squirrel.mjs +50 -0
- package/dist/es/node_modules/refractor/lang/stan.mjs +63 -0
- package/dist/es/node_modules/refractor/lang/stylus.mjs +141 -0
- package/dist/es/node_modules/refractor/lang/swift.mjs +125 -0
- package/dist/es/node_modules/refractor/lang/systemd.mjs +65 -0
- package/dist/es/node_modules/refractor/lang/t4-cs.mjs +17 -0
- package/dist/es/node_modules/refractor/lang/t4-templating.mjs +57 -0
- package/dist/es/node_modules/refractor/lang/t4-vb.mjs +17 -0
- package/dist/es/node_modules/refractor/lang/tap.mjs +35 -0
- package/dist/es/node_modules/refractor/lang/tcl.mjs +51 -0
- package/dist/es/node_modules/refractor/lang/textile.mjs +248 -0
- package/dist/es/node_modules/refractor/lang/toml.mjs +54 -0
- package/dist/es/node_modules/refractor/lang/tremor.mjs +67 -0
- package/dist/es/node_modules/refractor/lang/tsx.mjs +22 -0
- package/dist/es/node_modules/refractor/lang/tt2.mjs +53 -0
- package/dist/es/node_modules/refractor/lang/turtle.mjs +62 -0
- package/dist/es/node_modules/refractor/lang/twig.mjs +48 -0
- package/dist/es/node_modules/refractor/lang/typescript.mjs +57 -0
- package/dist/es/node_modules/refractor/lang/typoscript.mjs +81 -0
- package/dist/es/node_modules/refractor/lang/unrealscript.mjs +50 -0
- package/dist/es/node_modules/refractor/lang/uorazor.mjs +57 -0
- package/dist/es/node_modules/refractor/lang/uri.mjs +92 -0
- package/dist/es/node_modules/refractor/lang/v.mjs +85 -0
- package/dist/es/node_modules/refractor/lang/vala.mjs +87 -0
- package/dist/es/node_modules/refractor/lang/vbnet.mjs +34 -0
- package/dist/es/node_modules/refractor/lang/velocity.mjs +75 -0
- package/dist/es/node_modules/refractor/lang/verilog.mjs +38 -0
- package/dist/es/node_modules/refractor/lang/vhdl.mjs +35 -0
- package/dist/es/node_modules/refractor/lang/vim.mjs +22 -0
- package/dist/es/node_modules/refractor/lang/visual-basic.mjs +38 -0
- package/dist/es/node_modules/refractor/lang/warpscript.mjs +33 -0
- package/dist/es/node_modules/refractor/lang/wasm.mjs +36 -0
- package/dist/es/node_modules/refractor/lang/web-idl.mjs +89 -0
- package/dist/es/node_modules/refractor/lang/wiki.mjs +86 -0
- package/dist/es/node_modules/refractor/lang/wolfram.mjs +37 -0
- package/dist/es/node_modules/refractor/lang/wren.mjs +97 -0
- package/dist/es/node_modules/refractor/lang/xeora.mjs +121 -0
- package/dist/es/node_modules/refractor/lang/xml-doc.mjs +35 -0
- package/dist/es/node_modules/refractor/lang/xojo.mjs +30 -0
- package/dist/es/node_modules/refractor/lang/xquery.mjs +89 -0
- package/dist/es/node_modules/refractor/lang/yaml.mjs +78 -0
- package/dist/es/node_modules/refractor/lang/yang.mjs +32 -0
- package/dist/es/node_modules/refractor/lang/zig.mjs +80 -0
- package/dist/es/node_modules/refractor/node_modules/comma-separated-tokens/index.mjs +16 -0
- package/dist/es/node_modules/refractor/node_modules/hastscript/factory.mjs +77 -0
- package/dist/es/node_modules/refractor/node_modules/hastscript/html.mjs +8 -0
- package/dist/es/node_modules/refractor/node_modules/hastscript/index.mjs +5 -0
- package/dist/es/node_modules/refractor/node_modules/prismjs/components/prism-core.mjs +720 -0
- package/dist/es/node_modules/refractor/node_modules/space-separated-tokens/index.mjs +14 -0
- package/dist/es/node_modules/tslib/tslib.es6.mjs +30 -0
- package/dist/es/node_modules/ua-parser-js/dist/ua-parser.min.mjs +123 -0
- package/dist/es/node_modules/xtend/immutable.mjs +12 -0
- package/dist/es/utils/clipboard.mjs +38 -0
- package/dist/es/utils/markdown/index.mjs +29 -0
- package/dist/lib/index.js +25 -1
- package/dist/src/components/Copy/index.d.ts +5 -0
- package/dist/src/components/Markdown/ATag/index.d.ts +2 -0
- package/dist/src/components/Markdown/Code/index.d.ts +2 -0
- package/dist/src/components/Markdown/Image/index.d.ts +2 -0
- package/dist/src/components/Markdown/Video/index.d.ts +2 -0
- package/dist/src/components/Markdown/index.d.ts +9 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/utils/clipboard.d.ts +11 -0
- package/dist/src/utils/markdown/index.d.ts +10 -0
- package/package.json +18 -2
- package/dist/es/style.css +0 -1
- package/dist/lib/style.css +0 -1
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { commonjsGlobal as p } from "../../_virtual/_commonjsHelpers.mjs";
|
|
2
|
+
import { h } from "./node_modules/hastscript/index.mjs";
|
|
3
|
+
import { p as y } from "../parse-entities/index.mjs";
|
|
4
|
+
import { p as v } from "./node_modules/prismjs/components/prism-core.mjs";
|
|
5
|
+
import { m as w } from "./lang/markup.mjs";
|
|
6
|
+
import { c as m } from "./lang/css.mjs";
|
|
7
|
+
import { c as b } from "./lang/clike.mjs";
|
|
8
|
+
import { j as k } from "./lang/javascript.mjs";
|
|
9
|
+
var a = typeof globalThis == "object" ? globalThis : typeof self == "object" ? self : typeof window == "object" ? window : typeof p == "object" ? p : {}, j = U();
|
|
10
|
+
a.Prism = {
|
|
11
|
+
manual: !0,
|
|
12
|
+
disableWorkerMessageHandler: !0
|
|
13
|
+
};
|
|
14
|
+
var E = h, x = y, u = v, P = w, T = m, _ = b, A = k;
|
|
15
|
+
j();
|
|
16
|
+
var c = {}.hasOwnProperty;
|
|
17
|
+
function d() {
|
|
18
|
+
}
|
|
19
|
+
d.prototype = u;
|
|
20
|
+
var n = new d(), K = n;
|
|
21
|
+
n.highlight = N;
|
|
22
|
+
n.register = f;
|
|
23
|
+
n.alias = L;
|
|
24
|
+
n.registered = O;
|
|
25
|
+
n.listLanguages = C;
|
|
26
|
+
f(P);
|
|
27
|
+
f(T);
|
|
28
|
+
f(_);
|
|
29
|
+
f(A);
|
|
30
|
+
n.util.encode = M;
|
|
31
|
+
n.Token.stringify = G;
|
|
32
|
+
function f(r) {
|
|
33
|
+
if (typeof r != "function" || !r.displayName)
|
|
34
|
+
throw new Error("Expected `function` for `grammar`, got `" + r + "`");
|
|
35
|
+
n.languages[r.displayName] === void 0 && r(n);
|
|
36
|
+
}
|
|
37
|
+
function L(r, t) {
|
|
38
|
+
var e = n.languages, i = r, s, o, g, l;
|
|
39
|
+
t && (i = {}, i[r] = t);
|
|
40
|
+
for (s in i)
|
|
41
|
+
for (o = i[s], o = typeof o == "string" ? [o] : o, g = o.length, l = -1; ++l < g; )
|
|
42
|
+
e[o[l]] = e[s];
|
|
43
|
+
}
|
|
44
|
+
function N(r, t) {
|
|
45
|
+
var e = u.highlight, i;
|
|
46
|
+
if (typeof r != "string")
|
|
47
|
+
throw new Error("Expected `string` for `value`, got `" + r + "`");
|
|
48
|
+
if (n.util.type(t) === "Object")
|
|
49
|
+
i = t, t = null;
|
|
50
|
+
else {
|
|
51
|
+
if (typeof t != "string")
|
|
52
|
+
throw new Error("Expected `string` for `name`, got `" + t + "`");
|
|
53
|
+
if (c.call(n.languages, t))
|
|
54
|
+
i = n.languages[t];
|
|
55
|
+
else
|
|
56
|
+
throw new Error("Unknown language: `" + t + "` is not registered");
|
|
57
|
+
}
|
|
58
|
+
return e.call(this, r, i, t);
|
|
59
|
+
}
|
|
60
|
+
function O(r) {
|
|
61
|
+
if (typeof r != "string")
|
|
62
|
+
throw new Error("Expected `string` for `language`, got `" + r + "`");
|
|
63
|
+
return c.call(n.languages, r);
|
|
64
|
+
}
|
|
65
|
+
function C() {
|
|
66
|
+
var r = n.languages, t = [], e;
|
|
67
|
+
for (e in r)
|
|
68
|
+
c.call(r, e) && typeof r[e] == "object" && t.push(e);
|
|
69
|
+
return t;
|
|
70
|
+
}
|
|
71
|
+
function G(r, t, e) {
|
|
72
|
+
var i;
|
|
73
|
+
return typeof r == "string" ? {
|
|
74
|
+
type: "text",
|
|
75
|
+
value: r
|
|
76
|
+
} : n.util.type(r) === "Array" ? H(r, t) : (i = {
|
|
77
|
+
type: r.type,
|
|
78
|
+
content: n.Token.stringify(r.content, t, e),
|
|
79
|
+
tag: "span",
|
|
80
|
+
classes: ["token", r.type],
|
|
81
|
+
attributes: {},
|
|
82
|
+
language: t,
|
|
83
|
+
parent: e
|
|
84
|
+
}, r.alias && (i.classes = i.classes.concat(r.alias)), n.hooks.run("wrap", i), E(i.tag + "." + i.classes.join("."), R(i.attributes), i.content));
|
|
85
|
+
}
|
|
86
|
+
function H(r, t) {
|
|
87
|
+
for (var e = [], i = r.length, s = -1, o; ++s < i; )
|
|
88
|
+
o = r[s], o !== "" && o !== null && o !== void 0 && e.push(o);
|
|
89
|
+
for (s = -1, i = e.length; ++s < i; )
|
|
90
|
+
o = e[s], e[s] = n.Token.stringify(o, t, e);
|
|
91
|
+
return e;
|
|
92
|
+
}
|
|
93
|
+
function M(r) {
|
|
94
|
+
return r;
|
|
95
|
+
}
|
|
96
|
+
function R(r) {
|
|
97
|
+
var t;
|
|
98
|
+
for (t in r)
|
|
99
|
+
r[t] = x(r[t]);
|
|
100
|
+
return r;
|
|
101
|
+
}
|
|
102
|
+
function U() {
|
|
103
|
+
var r = "Prism" in a, t = r ? a.Prism : void 0;
|
|
104
|
+
return e;
|
|
105
|
+
function e() {
|
|
106
|
+
r ? a.Prism = t : delete a.Prism, r = void 0, t = void 0;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
export {
|
|
110
|
+
K as c
|
|
111
|
+
};
|
|
@@ -0,0 +1,553 @@
|
|
|
1
|
+
import { getDefaultExportFromCjs as e } from "../../_virtual/_commonjsHelpers.mjs";
|
|
2
|
+
import { c as i } from "./core.mjs";
|
|
3
|
+
import { __require as o } from "./lang/abap.mjs";
|
|
4
|
+
import { __require as s } from "./lang/abnf.mjs";
|
|
5
|
+
import { __require as t } from "./lang/actionscript.mjs";
|
|
6
|
+
import { __require as m } from "./lang/ada.mjs";
|
|
7
|
+
import { __require as u } from "./lang/agda.mjs";
|
|
8
|
+
import { __require as q } from "./lang/al.mjs";
|
|
9
|
+
import { __require as _ } from "./lang/antlr4.mjs";
|
|
10
|
+
import { __require as a } from "./lang/apacheconf.mjs";
|
|
11
|
+
import { __require as p } from "./lang/apex.mjs";
|
|
12
|
+
import { __require as f } from "./lang/apl.mjs";
|
|
13
|
+
import { __require as g } from "./lang/applescript.mjs";
|
|
14
|
+
import { __require as l } from "./lang/aql.mjs";
|
|
15
|
+
import { __require as c } from "./lang/arduino.mjs";
|
|
16
|
+
import { __require as n } from "./lang/arff.mjs";
|
|
17
|
+
import { __require as d } from "./lang/asciidoc.mjs";
|
|
18
|
+
import { __require as P } from "./lang/asm6502.mjs";
|
|
19
|
+
import { __require as S } from "./lang/asmatmel.mjs";
|
|
20
|
+
import { __require as h } from "./lang/aspnet.mjs";
|
|
21
|
+
import { __require as y } from "./lang/autohotkey.mjs";
|
|
22
|
+
import { __require as A } from "./lang/autoit.mjs";
|
|
23
|
+
import { __require as x } from "./lang/avisynth.mjs";
|
|
24
|
+
import { __require as C } from "./lang/avro-idl.mjs";
|
|
25
|
+
import { __require as b } from "./lang/bash.mjs";
|
|
26
|
+
import { __require as k } from "./lang/basic.mjs";
|
|
27
|
+
import { __require as J } from "./lang/batch.mjs";
|
|
28
|
+
import { __require as T } from "./lang/bbcode.mjs";
|
|
29
|
+
import { __require as v } from "./lang/bicep.mjs";
|
|
30
|
+
import { __require as E } from "./lang/birb.mjs";
|
|
31
|
+
import { __require as M } from "./lang/bison.mjs";
|
|
32
|
+
import { __require as B } from "./lang/bnf.mjs";
|
|
33
|
+
import { __require as G } from "./lang/brainfuck.mjs";
|
|
34
|
+
import { __require as R } from "./lang/brightscript.mjs";
|
|
35
|
+
import { __require as D } from "./lang/bro.mjs";
|
|
36
|
+
import { __require as F } from "./lang/bsl.mjs";
|
|
37
|
+
import { __require as H } from "./lang/c.mjs";
|
|
38
|
+
import { __require as I } from "./lang/cfscript.mjs";
|
|
39
|
+
import { __require as L } from "./lang/chaiscript.mjs";
|
|
40
|
+
import { __require as N } from "./lang/cil.mjs";
|
|
41
|
+
import { __require as V } from "./lang/clojure.mjs";
|
|
42
|
+
import { __require as j } from "./lang/cmake.mjs";
|
|
43
|
+
import { __require as w } from "./lang/cobol.mjs";
|
|
44
|
+
import { __require as W } from "./lang/coffeescript.mjs";
|
|
45
|
+
import { __require as K } from "./lang/concurnas.mjs";
|
|
46
|
+
import { __require as O } from "./lang/coq.mjs";
|
|
47
|
+
import { __require as Q } from "./lang/cpp.mjs";
|
|
48
|
+
import { __require as X } from "./lang/crystal.mjs";
|
|
49
|
+
import { __require as z } from "./lang/csharp.mjs";
|
|
50
|
+
import { __require as U } from "./lang/cshtml.mjs";
|
|
51
|
+
import { __require as Y } from "./lang/csp.mjs";
|
|
52
|
+
import { __require as Z } from "./lang/css-extras.mjs";
|
|
53
|
+
import { __require as $ } from "./lang/csv.mjs";
|
|
54
|
+
import { __require as rr } from "./lang/cypher.mjs";
|
|
55
|
+
import { __require as er } from "./lang/d.mjs";
|
|
56
|
+
import { __require as ir } from "./lang/dart.mjs";
|
|
57
|
+
import { __require as or } from "./lang/dataweave.mjs";
|
|
58
|
+
import { __require as sr } from "./lang/dax.mjs";
|
|
59
|
+
import { __require as tr } from "./lang/dhall.mjs";
|
|
60
|
+
import { __require as mr } from "./lang/diff.mjs";
|
|
61
|
+
import { __require as ur } from "./lang/django.mjs";
|
|
62
|
+
import { __require as qr } from "./lang/dns-zone-file.mjs";
|
|
63
|
+
import { __require as _r } from "./lang/docker.mjs";
|
|
64
|
+
import { __require as ar } from "./lang/dot.mjs";
|
|
65
|
+
import { __require as pr } from "./lang/ebnf.mjs";
|
|
66
|
+
import { __require as fr } from "./lang/editorconfig.mjs";
|
|
67
|
+
import { __require as gr } from "./lang/eiffel.mjs";
|
|
68
|
+
import { __require as lr } from "./lang/ejs.mjs";
|
|
69
|
+
import { __require as cr } from "./lang/elixir.mjs";
|
|
70
|
+
import { __require as nr } from "./lang/elm.mjs";
|
|
71
|
+
import { __require as dr } from "./lang/erb.mjs";
|
|
72
|
+
import { __require as Pr } from "./lang/erlang.mjs";
|
|
73
|
+
import { __require as Sr } from "./lang/etlua.mjs";
|
|
74
|
+
import { __require as hr } from "./lang/excel-formula.mjs";
|
|
75
|
+
import { __require as yr } from "./lang/factor.mjs";
|
|
76
|
+
import { __require as Ar } from "./lang/false.mjs";
|
|
77
|
+
import { __require as xr } from "./lang/firestore-security-rules.mjs";
|
|
78
|
+
import { __require as Cr } from "./lang/flow.mjs";
|
|
79
|
+
import { __require as br } from "./lang/fortran.mjs";
|
|
80
|
+
import { __require as kr } from "./lang/fsharp.mjs";
|
|
81
|
+
import { __require as Jr } from "./lang/ftl.mjs";
|
|
82
|
+
import { __require as Tr } from "./lang/gap.mjs";
|
|
83
|
+
import { __require as vr } from "./lang/gcode.mjs";
|
|
84
|
+
import { __require as Er } from "./lang/gdscript.mjs";
|
|
85
|
+
import { __require as Mr } from "./lang/gedcom.mjs";
|
|
86
|
+
import { __require as Br } from "./lang/gherkin.mjs";
|
|
87
|
+
import { __require as Gr } from "./lang/git.mjs";
|
|
88
|
+
import { __require as Rr } from "./lang/glsl.mjs";
|
|
89
|
+
import { __require as Dr } from "./lang/gml.mjs";
|
|
90
|
+
import { __require as Fr } from "./lang/gn.mjs";
|
|
91
|
+
import { __require as Hr } from "./lang/go-module.mjs";
|
|
92
|
+
import { __require as Ir } from "./lang/go.mjs";
|
|
93
|
+
import { __require as Lr } from "./lang/graphql.mjs";
|
|
94
|
+
import { __require as Nr } from "./lang/groovy.mjs";
|
|
95
|
+
import { __require as Vr } from "./lang/haml.mjs";
|
|
96
|
+
import { __require as jr } from "./lang/handlebars.mjs";
|
|
97
|
+
import { __require as wr } from "./lang/haskell.mjs";
|
|
98
|
+
import { __require as Wr } from "./lang/haxe.mjs";
|
|
99
|
+
import { __require as Kr } from "./lang/hcl.mjs";
|
|
100
|
+
import { __require as Or } from "./lang/hlsl.mjs";
|
|
101
|
+
import { __require as Qr } from "./lang/hoon.mjs";
|
|
102
|
+
import { __require as Xr } from "./lang/hpkp.mjs";
|
|
103
|
+
import { __require as zr } from "./lang/hsts.mjs";
|
|
104
|
+
import { __require as Ur } from "./lang/http.mjs";
|
|
105
|
+
import { __require as Yr } from "./lang/ichigojam.mjs";
|
|
106
|
+
import { __require as Zr } from "./lang/icon.mjs";
|
|
107
|
+
import { __require as $r } from "./lang/icu-message-format.mjs";
|
|
108
|
+
import { __require as re } from "./lang/idris.mjs";
|
|
109
|
+
import { __require as ee } from "./lang/iecst.mjs";
|
|
110
|
+
import { __require as ie } from "./lang/ignore.mjs";
|
|
111
|
+
import { __require as oe } from "./lang/inform7.mjs";
|
|
112
|
+
import { __require as se } from "./lang/ini.mjs";
|
|
113
|
+
import { __require as te } from "./lang/io.mjs";
|
|
114
|
+
import { __require as me } from "./lang/j.mjs";
|
|
115
|
+
import { __require as ue } from "./lang/java.mjs";
|
|
116
|
+
import { __require as qe } from "./lang/javadoc.mjs";
|
|
117
|
+
import { __require as _e } from "./lang/javadoclike.mjs";
|
|
118
|
+
import { __require as ae } from "./lang/javastacktrace.mjs";
|
|
119
|
+
import { __require as pe } from "./lang/jexl.mjs";
|
|
120
|
+
import { __require as fe } from "./lang/jolie.mjs";
|
|
121
|
+
import { __require as ge } from "./lang/jq.mjs";
|
|
122
|
+
import { __require as le } from "./lang/js-extras.mjs";
|
|
123
|
+
import { __require as ce } from "./lang/js-templates.mjs";
|
|
124
|
+
import { __require as ne } from "./lang/jsdoc.mjs";
|
|
125
|
+
import { __require as de } from "./lang/json.mjs";
|
|
126
|
+
import { __require as Pe } from "./lang/json5.mjs";
|
|
127
|
+
import { __require as Se } from "./lang/jsonp.mjs";
|
|
128
|
+
import { __require as he } from "./lang/jsstacktrace.mjs";
|
|
129
|
+
import { __require as ye } from "./lang/jsx.mjs";
|
|
130
|
+
import { __require as Ae } from "./lang/julia.mjs";
|
|
131
|
+
import { __require as xe } from "./lang/keepalived.mjs";
|
|
132
|
+
import { __require as Ce } from "./lang/keyman.mjs";
|
|
133
|
+
import { __require as be } from "./lang/kotlin.mjs";
|
|
134
|
+
import { __require as ke } from "./lang/kumir.mjs";
|
|
135
|
+
import { __require as Je } from "./lang/kusto.mjs";
|
|
136
|
+
import { __require as Te } from "./lang/latex.mjs";
|
|
137
|
+
import { __require as ve } from "./lang/latte.mjs";
|
|
138
|
+
import { __require as Ee } from "./lang/less.mjs";
|
|
139
|
+
import { __require as Me } from "./lang/lilypond.mjs";
|
|
140
|
+
import { __require as Be } from "./lang/liquid.mjs";
|
|
141
|
+
import { __require as Ge } from "./lang/lisp.mjs";
|
|
142
|
+
import { __require as Re } from "./lang/livescript.mjs";
|
|
143
|
+
import { __require as De } from "./lang/llvm.mjs";
|
|
144
|
+
import { __require as Fe } from "./lang/log.mjs";
|
|
145
|
+
import { __require as He } from "./lang/lolcode.mjs";
|
|
146
|
+
import { __require as Ie } from "./lang/lua.mjs";
|
|
147
|
+
import { __require as Le } from "./lang/magma.mjs";
|
|
148
|
+
import { __require as Ne } from "./lang/makefile.mjs";
|
|
149
|
+
import { __require as Ve } from "./lang/markdown.mjs";
|
|
150
|
+
import { __require as je } from "./lang/markup-templating.mjs";
|
|
151
|
+
import { __require as we } from "./lang/matlab.mjs";
|
|
152
|
+
import { __require as We } from "./lang/maxscript.mjs";
|
|
153
|
+
import { __require as Ke } from "./lang/mel.mjs";
|
|
154
|
+
import { __require as Oe } from "./lang/mermaid.mjs";
|
|
155
|
+
import { __require as Qe } from "./lang/mizar.mjs";
|
|
156
|
+
import { __require as Xe } from "./lang/mongodb.mjs";
|
|
157
|
+
import { __require as ze } from "./lang/monkey.mjs";
|
|
158
|
+
import { __require as Ue } from "./lang/moonscript.mjs";
|
|
159
|
+
import { __require as Ye } from "./lang/n1ql.mjs";
|
|
160
|
+
import { __require as Ze } from "./lang/n4js.mjs";
|
|
161
|
+
import { __require as $e } from "./lang/nand2tetris-hdl.mjs";
|
|
162
|
+
import { __require as ri } from "./lang/naniscript.mjs";
|
|
163
|
+
import { __require as ei } from "./lang/nasm.mjs";
|
|
164
|
+
import { __require as ii } from "./lang/neon.mjs";
|
|
165
|
+
import { __require as oi } from "./lang/nevod.mjs";
|
|
166
|
+
import { __require as si } from "./lang/nginx.mjs";
|
|
167
|
+
import { __require as ti } from "./lang/nim.mjs";
|
|
168
|
+
import { __require as mi } from "./lang/nix.mjs";
|
|
169
|
+
import { __require as ui } from "./lang/nsis.mjs";
|
|
170
|
+
import { __require as qi } from "./lang/objectivec.mjs";
|
|
171
|
+
import { __require as _i } from "./lang/ocaml.mjs";
|
|
172
|
+
import { __require as ai } from "./lang/opencl.mjs";
|
|
173
|
+
import { __require as pi } from "./lang/openqasm.mjs";
|
|
174
|
+
import { __require as fi } from "./lang/oz.mjs";
|
|
175
|
+
import { __require as gi } from "./lang/parigp.mjs";
|
|
176
|
+
import { __require as li } from "./lang/parser.mjs";
|
|
177
|
+
import { __require as ci } from "./lang/pascal.mjs";
|
|
178
|
+
import { __require as ni } from "./lang/pascaligo.mjs";
|
|
179
|
+
import { __require as di } from "./lang/pcaxis.mjs";
|
|
180
|
+
import { __require as Pi } from "./lang/peoplecode.mjs";
|
|
181
|
+
import { __require as Si } from "./lang/perl.mjs";
|
|
182
|
+
import { __require as hi } from "./lang/php-extras.mjs";
|
|
183
|
+
import { __require as yi } from "./lang/php.mjs";
|
|
184
|
+
import { __require as Ai } from "./lang/phpdoc.mjs";
|
|
185
|
+
import { __require as xi } from "./lang/plsql.mjs";
|
|
186
|
+
import { __require as Ci } from "./lang/powerquery.mjs";
|
|
187
|
+
import { __require as bi } from "./lang/powershell.mjs";
|
|
188
|
+
import { __require as ki } from "./lang/processing.mjs";
|
|
189
|
+
import { __require as Ji } from "./lang/prolog.mjs";
|
|
190
|
+
import { __require as Ti } from "./lang/promql.mjs";
|
|
191
|
+
import { __require as vi } from "./lang/properties.mjs";
|
|
192
|
+
import { __require as Ei } from "./lang/protobuf.mjs";
|
|
193
|
+
import { __require as Mi } from "./lang/psl.mjs";
|
|
194
|
+
import { __require as Bi } from "./lang/pug.mjs";
|
|
195
|
+
import { __require as Gi } from "./lang/puppet.mjs";
|
|
196
|
+
import { __require as Ri } from "./lang/pure.mjs";
|
|
197
|
+
import { __require as Di } from "./lang/purebasic.mjs";
|
|
198
|
+
import { __require as Fi } from "./lang/purescript.mjs";
|
|
199
|
+
import { __require as Hi } from "./lang/python.mjs";
|
|
200
|
+
import { __require as Ii } from "./lang/q.mjs";
|
|
201
|
+
import { __require as Li } from "./lang/qml.mjs";
|
|
202
|
+
import { __require as Ni } from "./lang/qore.mjs";
|
|
203
|
+
import { __require as Vi } from "./lang/qsharp.mjs";
|
|
204
|
+
import { __require as ji } from "./lang/r.mjs";
|
|
205
|
+
import { __require as wi } from "./lang/racket.mjs";
|
|
206
|
+
import { __require as Wi } from "./lang/reason.mjs";
|
|
207
|
+
import { __require as Ki } from "./lang/regex.mjs";
|
|
208
|
+
import { __require as Oi } from "./lang/rego.mjs";
|
|
209
|
+
import { __require as Qi } from "./lang/renpy.mjs";
|
|
210
|
+
import { __require as Xi } from "./lang/rest.mjs";
|
|
211
|
+
import { __require as zi } from "./lang/rip.mjs";
|
|
212
|
+
import { __require as Ui } from "./lang/roboconf.mjs";
|
|
213
|
+
import { __require as Yi } from "./lang/robotframework.mjs";
|
|
214
|
+
import { __require as Zi } from "./lang/ruby.mjs";
|
|
215
|
+
import { __require as $i } from "./lang/rust.mjs";
|
|
216
|
+
import { __require as ro } from "./lang/sas.mjs";
|
|
217
|
+
import { __require as eo } from "./lang/sass.mjs";
|
|
218
|
+
import { __require as io } from "./lang/scala.mjs";
|
|
219
|
+
import { __require as oo } from "./lang/scheme.mjs";
|
|
220
|
+
import { __require as so } from "./lang/scss.mjs";
|
|
221
|
+
import { __require as to } from "./lang/shell-session.mjs";
|
|
222
|
+
import { __require as mo } from "./lang/smali.mjs";
|
|
223
|
+
import { __require as uo } from "./lang/smalltalk.mjs";
|
|
224
|
+
import { __require as qo } from "./lang/smarty.mjs";
|
|
225
|
+
import { __require as _o } from "./lang/sml.mjs";
|
|
226
|
+
import { __require as ao } from "./lang/solidity.mjs";
|
|
227
|
+
import { __require as po } from "./lang/solution-file.mjs";
|
|
228
|
+
import { __require as fo } from "./lang/soy.mjs";
|
|
229
|
+
import { __require as go } from "./lang/sparql.mjs";
|
|
230
|
+
import { __require as lo } from "./lang/splunk-spl.mjs";
|
|
231
|
+
import { __require as co } from "./lang/sqf.mjs";
|
|
232
|
+
import { __require as no } from "./lang/sql.mjs";
|
|
233
|
+
import { __require as Po } from "./lang/squirrel.mjs";
|
|
234
|
+
import { __require as So } from "./lang/stan.mjs";
|
|
235
|
+
import { __require as ho } from "./lang/stylus.mjs";
|
|
236
|
+
import { __require as yo } from "./lang/swift.mjs";
|
|
237
|
+
import { __require as Ao } from "./lang/systemd.mjs";
|
|
238
|
+
import { __require as xo } from "./lang/t4-cs.mjs";
|
|
239
|
+
import { __require as Co } from "./lang/t4-templating.mjs";
|
|
240
|
+
import { __require as bo } from "./lang/t4-vb.mjs";
|
|
241
|
+
import { __require as ko } from "./lang/tap.mjs";
|
|
242
|
+
import { __require as Jo } from "./lang/tcl.mjs";
|
|
243
|
+
import { __require as To } from "./lang/textile.mjs";
|
|
244
|
+
import { __require as vo } from "./lang/toml.mjs";
|
|
245
|
+
import { __require as Eo } from "./lang/tremor.mjs";
|
|
246
|
+
import { __require as Mo } from "./lang/tsx.mjs";
|
|
247
|
+
import { __require as Bo } from "./lang/tt2.mjs";
|
|
248
|
+
import { __require as Go } from "./lang/turtle.mjs";
|
|
249
|
+
import { __require as Ro } from "./lang/twig.mjs";
|
|
250
|
+
import { __require as Do } from "./lang/typescript.mjs";
|
|
251
|
+
import { __require as Fo } from "./lang/typoscript.mjs";
|
|
252
|
+
import { __require as Ho } from "./lang/unrealscript.mjs";
|
|
253
|
+
import { __require as Io } from "./lang/uorazor.mjs";
|
|
254
|
+
import { __require as Lo } from "./lang/uri.mjs";
|
|
255
|
+
import { __require as No } from "./lang/v.mjs";
|
|
256
|
+
import { __require as Vo } from "./lang/vala.mjs";
|
|
257
|
+
import { __require as jo } from "./lang/vbnet.mjs";
|
|
258
|
+
import { __require as wo } from "./lang/velocity.mjs";
|
|
259
|
+
import { __require as Wo } from "./lang/verilog.mjs";
|
|
260
|
+
import { __require as Ko } from "./lang/vhdl.mjs";
|
|
261
|
+
import { __require as Oo } from "./lang/vim.mjs";
|
|
262
|
+
import { __require as Qo } from "./lang/visual-basic.mjs";
|
|
263
|
+
import { __require as Xo } from "./lang/warpscript.mjs";
|
|
264
|
+
import { __require as zo } from "./lang/wasm.mjs";
|
|
265
|
+
import { __require as Uo } from "./lang/web-idl.mjs";
|
|
266
|
+
import { __require as Yo } from "./lang/wiki.mjs";
|
|
267
|
+
import { __require as Zo } from "./lang/wolfram.mjs";
|
|
268
|
+
import { __require as $o } from "./lang/wren.mjs";
|
|
269
|
+
import { __require as rs } from "./lang/xeora.mjs";
|
|
270
|
+
import { __require as es } from "./lang/xml-doc.mjs";
|
|
271
|
+
import { __require as is } from "./lang/xojo.mjs";
|
|
272
|
+
import { __require as os } from "./lang/xquery.mjs";
|
|
273
|
+
import { __require as ss } from "./lang/yaml.mjs";
|
|
274
|
+
import { __require as ts } from "./lang/yang.mjs";
|
|
275
|
+
import { __require as ms } from "./lang/zig.mjs";
|
|
276
|
+
var r = i, us = r;
|
|
277
|
+
r.register(o());
|
|
278
|
+
r.register(s());
|
|
279
|
+
r.register(t());
|
|
280
|
+
r.register(m());
|
|
281
|
+
r.register(u());
|
|
282
|
+
r.register(q());
|
|
283
|
+
r.register(_());
|
|
284
|
+
r.register(a());
|
|
285
|
+
r.register(p());
|
|
286
|
+
r.register(f());
|
|
287
|
+
r.register(g());
|
|
288
|
+
r.register(l());
|
|
289
|
+
r.register(c());
|
|
290
|
+
r.register(n());
|
|
291
|
+
r.register(d());
|
|
292
|
+
r.register(P());
|
|
293
|
+
r.register(S());
|
|
294
|
+
r.register(h());
|
|
295
|
+
r.register(y());
|
|
296
|
+
r.register(A());
|
|
297
|
+
r.register(x());
|
|
298
|
+
r.register(C());
|
|
299
|
+
r.register(b());
|
|
300
|
+
r.register(k());
|
|
301
|
+
r.register(J());
|
|
302
|
+
r.register(T());
|
|
303
|
+
r.register(v());
|
|
304
|
+
r.register(E());
|
|
305
|
+
r.register(M());
|
|
306
|
+
r.register(B());
|
|
307
|
+
r.register(G());
|
|
308
|
+
r.register(R());
|
|
309
|
+
r.register(D());
|
|
310
|
+
r.register(F());
|
|
311
|
+
r.register(H());
|
|
312
|
+
r.register(I());
|
|
313
|
+
r.register(L());
|
|
314
|
+
r.register(N());
|
|
315
|
+
r.register(V());
|
|
316
|
+
r.register(j());
|
|
317
|
+
r.register(w());
|
|
318
|
+
r.register(W());
|
|
319
|
+
r.register(K());
|
|
320
|
+
r.register(O());
|
|
321
|
+
r.register(Q());
|
|
322
|
+
r.register(X());
|
|
323
|
+
r.register(z());
|
|
324
|
+
r.register(U());
|
|
325
|
+
r.register(Y());
|
|
326
|
+
r.register(Z());
|
|
327
|
+
r.register($());
|
|
328
|
+
r.register(rr());
|
|
329
|
+
r.register(er());
|
|
330
|
+
r.register(ir());
|
|
331
|
+
r.register(or());
|
|
332
|
+
r.register(sr());
|
|
333
|
+
r.register(tr());
|
|
334
|
+
r.register(mr());
|
|
335
|
+
r.register(ur());
|
|
336
|
+
r.register(qr());
|
|
337
|
+
r.register(_r());
|
|
338
|
+
r.register(ar());
|
|
339
|
+
r.register(pr());
|
|
340
|
+
r.register(fr());
|
|
341
|
+
r.register(gr());
|
|
342
|
+
r.register(lr());
|
|
343
|
+
r.register(cr());
|
|
344
|
+
r.register(nr());
|
|
345
|
+
r.register(dr());
|
|
346
|
+
r.register(Pr());
|
|
347
|
+
r.register(Sr());
|
|
348
|
+
r.register(hr());
|
|
349
|
+
r.register(yr());
|
|
350
|
+
r.register(Ar());
|
|
351
|
+
r.register(xr());
|
|
352
|
+
r.register(Cr());
|
|
353
|
+
r.register(br());
|
|
354
|
+
r.register(kr());
|
|
355
|
+
r.register(Jr());
|
|
356
|
+
r.register(Tr());
|
|
357
|
+
r.register(vr());
|
|
358
|
+
r.register(Er());
|
|
359
|
+
r.register(Mr());
|
|
360
|
+
r.register(Br());
|
|
361
|
+
r.register(Gr());
|
|
362
|
+
r.register(Rr());
|
|
363
|
+
r.register(Dr());
|
|
364
|
+
r.register(Fr());
|
|
365
|
+
r.register(Hr());
|
|
366
|
+
r.register(Ir());
|
|
367
|
+
r.register(Lr());
|
|
368
|
+
r.register(Nr());
|
|
369
|
+
r.register(Vr());
|
|
370
|
+
r.register(jr());
|
|
371
|
+
r.register(wr());
|
|
372
|
+
r.register(Wr());
|
|
373
|
+
r.register(Kr());
|
|
374
|
+
r.register(Or());
|
|
375
|
+
r.register(Qr());
|
|
376
|
+
r.register(Xr());
|
|
377
|
+
r.register(zr());
|
|
378
|
+
r.register(Ur());
|
|
379
|
+
r.register(Yr());
|
|
380
|
+
r.register(Zr());
|
|
381
|
+
r.register($r());
|
|
382
|
+
r.register(re());
|
|
383
|
+
r.register(ee());
|
|
384
|
+
r.register(ie());
|
|
385
|
+
r.register(oe());
|
|
386
|
+
r.register(se());
|
|
387
|
+
r.register(te());
|
|
388
|
+
r.register(me());
|
|
389
|
+
r.register(ue());
|
|
390
|
+
r.register(qe());
|
|
391
|
+
r.register(_e());
|
|
392
|
+
r.register(ae());
|
|
393
|
+
r.register(pe());
|
|
394
|
+
r.register(fe());
|
|
395
|
+
r.register(ge());
|
|
396
|
+
r.register(le());
|
|
397
|
+
r.register(ce());
|
|
398
|
+
r.register(ne());
|
|
399
|
+
r.register(de());
|
|
400
|
+
r.register(Pe());
|
|
401
|
+
r.register(Se());
|
|
402
|
+
r.register(he());
|
|
403
|
+
r.register(ye());
|
|
404
|
+
r.register(Ae());
|
|
405
|
+
r.register(xe());
|
|
406
|
+
r.register(Ce());
|
|
407
|
+
r.register(be());
|
|
408
|
+
r.register(ke());
|
|
409
|
+
r.register(Je());
|
|
410
|
+
r.register(Te());
|
|
411
|
+
r.register(ve());
|
|
412
|
+
r.register(Ee());
|
|
413
|
+
r.register(Me());
|
|
414
|
+
r.register(Be());
|
|
415
|
+
r.register(Ge());
|
|
416
|
+
r.register(Re());
|
|
417
|
+
r.register(De());
|
|
418
|
+
r.register(Fe());
|
|
419
|
+
r.register(He());
|
|
420
|
+
r.register(Ie());
|
|
421
|
+
r.register(Le());
|
|
422
|
+
r.register(Ne());
|
|
423
|
+
r.register(Ve());
|
|
424
|
+
r.register(je());
|
|
425
|
+
r.register(we());
|
|
426
|
+
r.register(We());
|
|
427
|
+
r.register(Ke());
|
|
428
|
+
r.register(Oe());
|
|
429
|
+
r.register(Qe());
|
|
430
|
+
r.register(Xe());
|
|
431
|
+
r.register(ze());
|
|
432
|
+
r.register(Ue());
|
|
433
|
+
r.register(Ye());
|
|
434
|
+
r.register(Ze());
|
|
435
|
+
r.register($e());
|
|
436
|
+
r.register(ri());
|
|
437
|
+
r.register(ei());
|
|
438
|
+
r.register(ii());
|
|
439
|
+
r.register(oi());
|
|
440
|
+
r.register(si());
|
|
441
|
+
r.register(ti());
|
|
442
|
+
r.register(mi());
|
|
443
|
+
r.register(ui());
|
|
444
|
+
r.register(qi());
|
|
445
|
+
r.register(_i());
|
|
446
|
+
r.register(ai());
|
|
447
|
+
r.register(pi());
|
|
448
|
+
r.register(fi());
|
|
449
|
+
r.register(gi());
|
|
450
|
+
r.register(li());
|
|
451
|
+
r.register(ci());
|
|
452
|
+
r.register(ni());
|
|
453
|
+
r.register(di());
|
|
454
|
+
r.register(Pi());
|
|
455
|
+
r.register(Si());
|
|
456
|
+
r.register(hi());
|
|
457
|
+
r.register(yi());
|
|
458
|
+
r.register(Ai());
|
|
459
|
+
r.register(xi());
|
|
460
|
+
r.register(Ci());
|
|
461
|
+
r.register(bi());
|
|
462
|
+
r.register(ki());
|
|
463
|
+
r.register(Ji());
|
|
464
|
+
r.register(Ti());
|
|
465
|
+
r.register(vi());
|
|
466
|
+
r.register(Ei());
|
|
467
|
+
r.register(Mi());
|
|
468
|
+
r.register(Bi());
|
|
469
|
+
r.register(Gi());
|
|
470
|
+
r.register(Ri());
|
|
471
|
+
r.register(Di());
|
|
472
|
+
r.register(Fi());
|
|
473
|
+
r.register(Hi());
|
|
474
|
+
r.register(Ii());
|
|
475
|
+
r.register(Li());
|
|
476
|
+
r.register(Ni());
|
|
477
|
+
r.register(Vi());
|
|
478
|
+
r.register(ji());
|
|
479
|
+
r.register(wi());
|
|
480
|
+
r.register(Wi());
|
|
481
|
+
r.register(Ki());
|
|
482
|
+
r.register(Oi());
|
|
483
|
+
r.register(Qi());
|
|
484
|
+
r.register(Xi());
|
|
485
|
+
r.register(zi());
|
|
486
|
+
r.register(Ui());
|
|
487
|
+
r.register(Yi());
|
|
488
|
+
r.register(Zi());
|
|
489
|
+
r.register($i());
|
|
490
|
+
r.register(ro());
|
|
491
|
+
r.register(eo());
|
|
492
|
+
r.register(io());
|
|
493
|
+
r.register(oo());
|
|
494
|
+
r.register(so());
|
|
495
|
+
r.register(to());
|
|
496
|
+
r.register(mo());
|
|
497
|
+
r.register(uo());
|
|
498
|
+
r.register(qo());
|
|
499
|
+
r.register(_o());
|
|
500
|
+
r.register(ao());
|
|
501
|
+
r.register(po());
|
|
502
|
+
r.register(fo());
|
|
503
|
+
r.register(go());
|
|
504
|
+
r.register(lo());
|
|
505
|
+
r.register(co());
|
|
506
|
+
r.register(no());
|
|
507
|
+
r.register(Po());
|
|
508
|
+
r.register(So());
|
|
509
|
+
r.register(ho());
|
|
510
|
+
r.register(yo());
|
|
511
|
+
r.register(Ao());
|
|
512
|
+
r.register(xo());
|
|
513
|
+
r.register(Co());
|
|
514
|
+
r.register(bo());
|
|
515
|
+
r.register(ko());
|
|
516
|
+
r.register(Jo());
|
|
517
|
+
r.register(To());
|
|
518
|
+
r.register(vo());
|
|
519
|
+
r.register(Eo());
|
|
520
|
+
r.register(Mo());
|
|
521
|
+
r.register(Bo());
|
|
522
|
+
r.register(Go());
|
|
523
|
+
r.register(Ro());
|
|
524
|
+
r.register(Do());
|
|
525
|
+
r.register(Fo());
|
|
526
|
+
r.register(Ho());
|
|
527
|
+
r.register(Io());
|
|
528
|
+
r.register(Lo());
|
|
529
|
+
r.register(No());
|
|
530
|
+
r.register(Vo());
|
|
531
|
+
r.register(jo());
|
|
532
|
+
r.register(wo());
|
|
533
|
+
r.register(Wo());
|
|
534
|
+
r.register(Ko());
|
|
535
|
+
r.register(Oo());
|
|
536
|
+
r.register(Qo());
|
|
537
|
+
r.register(Xo());
|
|
538
|
+
r.register(zo());
|
|
539
|
+
r.register(Uo());
|
|
540
|
+
r.register(Yo());
|
|
541
|
+
r.register(Zo());
|
|
542
|
+
r.register($o());
|
|
543
|
+
r.register(rs());
|
|
544
|
+
r.register(es());
|
|
545
|
+
r.register(is());
|
|
546
|
+
r.register(os());
|
|
547
|
+
r.register(ss());
|
|
548
|
+
r.register(ts());
|
|
549
|
+
r.register(ms());
|
|
550
|
+
const g_ = /* @__PURE__ */ e(us);
|
|
551
|
+
export {
|
|
552
|
+
g_ as default
|
|
553
|
+
};
|