@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,287 @@
|
|
|
1
|
+
var a, r;
|
|
2
|
+
function l() {
|
|
3
|
+
if (r)
|
|
4
|
+
return a;
|
|
5
|
+
r = 1, a = $, $.displayName = "mongodb", $.aliases = [];
|
|
6
|
+
function $(n) {
|
|
7
|
+
(function(e) {
|
|
8
|
+
var t = [
|
|
9
|
+
// query and projection
|
|
10
|
+
"$eq",
|
|
11
|
+
"$gt",
|
|
12
|
+
"$gte",
|
|
13
|
+
"$in",
|
|
14
|
+
"$lt",
|
|
15
|
+
"$lte",
|
|
16
|
+
"$ne",
|
|
17
|
+
"$nin",
|
|
18
|
+
"$and",
|
|
19
|
+
"$not",
|
|
20
|
+
"$nor",
|
|
21
|
+
"$or",
|
|
22
|
+
"$exists",
|
|
23
|
+
"$type",
|
|
24
|
+
"$expr",
|
|
25
|
+
"$jsonSchema",
|
|
26
|
+
"$mod",
|
|
27
|
+
"$regex",
|
|
28
|
+
"$text",
|
|
29
|
+
"$where",
|
|
30
|
+
"$geoIntersects",
|
|
31
|
+
"$geoWithin",
|
|
32
|
+
"$near",
|
|
33
|
+
"$nearSphere",
|
|
34
|
+
"$all",
|
|
35
|
+
"$elemMatch",
|
|
36
|
+
"$size",
|
|
37
|
+
"$bitsAllClear",
|
|
38
|
+
"$bitsAllSet",
|
|
39
|
+
"$bitsAnyClear",
|
|
40
|
+
"$bitsAnySet",
|
|
41
|
+
"$comment",
|
|
42
|
+
"$elemMatch",
|
|
43
|
+
"$meta",
|
|
44
|
+
"$slice",
|
|
45
|
+
// update
|
|
46
|
+
"$currentDate",
|
|
47
|
+
"$inc",
|
|
48
|
+
"$min",
|
|
49
|
+
"$max",
|
|
50
|
+
"$mul",
|
|
51
|
+
"$rename",
|
|
52
|
+
"$set",
|
|
53
|
+
"$setOnInsert",
|
|
54
|
+
"$unset",
|
|
55
|
+
"$addToSet",
|
|
56
|
+
"$pop",
|
|
57
|
+
"$pull",
|
|
58
|
+
"$push",
|
|
59
|
+
"$pullAll",
|
|
60
|
+
"$each",
|
|
61
|
+
"$position",
|
|
62
|
+
"$slice",
|
|
63
|
+
"$sort",
|
|
64
|
+
"$bit",
|
|
65
|
+
// aggregation pipeline stages
|
|
66
|
+
"$addFields",
|
|
67
|
+
"$bucket",
|
|
68
|
+
"$bucketAuto",
|
|
69
|
+
"$collStats",
|
|
70
|
+
"$count",
|
|
71
|
+
"$currentOp",
|
|
72
|
+
"$facet",
|
|
73
|
+
"$geoNear",
|
|
74
|
+
"$graphLookup",
|
|
75
|
+
"$group",
|
|
76
|
+
"$indexStats",
|
|
77
|
+
"$limit",
|
|
78
|
+
"$listLocalSessions",
|
|
79
|
+
"$listSessions",
|
|
80
|
+
"$lookup",
|
|
81
|
+
"$match",
|
|
82
|
+
"$merge",
|
|
83
|
+
"$out",
|
|
84
|
+
"$planCacheStats",
|
|
85
|
+
"$project",
|
|
86
|
+
"$redact",
|
|
87
|
+
"$replaceRoot",
|
|
88
|
+
"$replaceWith",
|
|
89
|
+
"$sample",
|
|
90
|
+
"$set",
|
|
91
|
+
"$skip",
|
|
92
|
+
"$sort",
|
|
93
|
+
"$sortByCount",
|
|
94
|
+
"$unionWith",
|
|
95
|
+
"$unset",
|
|
96
|
+
"$unwind",
|
|
97
|
+
"$setWindowFields",
|
|
98
|
+
// aggregation pipeline operators
|
|
99
|
+
"$abs",
|
|
100
|
+
"$accumulator",
|
|
101
|
+
"$acos",
|
|
102
|
+
"$acosh",
|
|
103
|
+
"$add",
|
|
104
|
+
"$addToSet",
|
|
105
|
+
"$allElementsTrue",
|
|
106
|
+
"$and",
|
|
107
|
+
"$anyElementTrue",
|
|
108
|
+
"$arrayElemAt",
|
|
109
|
+
"$arrayToObject",
|
|
110
|
+
"$asin",
|
|
111
|
+
"$asinh",
|
|
112
|
+
"$atan",
|
|
113
|
+
"$atan2",
|
|
114
|
+
"$atanh",
|
|
115
|
+
"$avg",
|
|
116
|
+
"$binarySize",
|
|
117
|
+
"$bsonSize",
|
|
118
|
+
"$ceil",
|
|
119
|
+
"$cmp",
|
|
120
|
+
"$concat",
|
|
121
|
+
"$concatArrays",
|
|
122
|
+
"$cond",
|
|
123
|
+
"$convert",
|
|
124
|
+
"$cos",
|
|
125
|
+
"$dateFromParts",
|
|
126
|
+
"$dateToParts",
|
|
127
|
+
"$dateFromString",
|
|
128
|
+
"$dateToString",
|
|
129
|
+
"$dayOfMonth",
|
|
130
|
+
"$dayOfWeek",
|
|
131
|
+
"$dayOfYear",
|
|
132
|
+
"$degreesToRadians",
|
|
133
|
+
"$divide",
|
|
134
|
+
"$eq",
|
|
135
|
+
"$exp",
|
|
136
|
+
"$filter",
|
|
137
|
+
"$first",
|
|
138
|
+
"$floor",
|
|
139
|
+
"$function",
|
|
140
|
+
"$gt",
|
|
141
|
+
"$gte",
|
|
142
|
+
"$hour",
|
|
143
|
+
"$ifNull",
|
|
144
|
+
"$in",
|
|
145
|
+
"$indexOfArray",
|
|
146
|
+
"$indexOfBytes",
|
|
147
|
+
"$indexOfCP",
|
|
148
|
+
"$isArray",
|
|
149
|
+
"$isNumber",
|
|
150
|
+
"$isoDayOfWeek",
|
|
151
|
+
"$isoWeek",
|
|
152
|
+
"$isoWeekYear",
|
|
153
|
+
"$last",
|
|
154
|
+
"$last",
|
|
155
|
+
"$let",
|
|
156
|
+
"$literal",
|
|
157
|
+
"$ln",
|
|
158
|
+
"$log",
|
|
159
|
+
"$log10",
|
|
160
|
+
"$lt",
|
|
161
|
+
"$lte",
|
|
162
|
+
"$ltrim",
|
|
163
|
+
"$map",
|
|
164
|
+
"$max",
|
|
165
|
+
"$mergeObjects",
|
|
166
|
+
"$meta",
|
|
167
|
+
"$min",
|
|
168
|
+
"$millisecond",
|
|
169
|
+
"$minute",
|
|
170
|
+
"$mod",
|
|
171
|
+
"$month",
|
|
172
|
+
"$multiply",
|
|
173
|
+
"$ne",
|
|
174
|
+
"$not",
|
|
175
|
+
"$objectToArray",
|
|
176
|
+
"$or",
|
|
177
|
+
"$pow",
|
|
178
|
+
"$push",
|
|
179
|
+
"$radiansToDegrees",
|
|
180
|
+
"$range",
|
|
181
|
+
"$reduce",
|
|
182
|
+
"$regexFind",
|
|
183
|
+
"$regexFindAll",
|
|
184
|
+
"$regexMatch",
|
|
185
|
+
"$replaceOne",
|
|
186
|
+
"$replaceAll",
|
|
187
|
+
"$reverseArray",
|
|
188
|
+
"$round",
|
|
189
|
+
"$rtrim",
|
|
190
|
+
"$second",
|
|
191
|
+
"$setDifference",
|
|
192
|
+
"$setEquals",
|
|
193
|
+
"$setIntersection",
|
|
194
|
+
"$setIsSubset",
|
|
195
|
+
"$setUnion",
|
|
196
|
+
"$size",
|
|
197
|
+
"$sin",
|
|
198
|
+
"$slice",
|
|
199
|
+
"$split",
|
|
200
|
+
"$sqrt",
|
|
201
|
+
"$stdDevPop",
|
|
202
|
+
"$stdDevSamp",
|
|
203
|
+
"$strcasecmp",
|
|
204
|
+
"$strLenBytes",
|
|
205
|
+
"$strLenCP",
|
|
206
|
+
"$substr",
|
|
207
|
+
"$substrBytes",
|
|
208
|
+
"$substrCP",
|
|
209
|
+
"$subtract",
|
|
210
|
+
"$sum",
|
|
211
|
+
"$switch",
|
|
212
|
+
"$tan",
|
|
213
|
+
"$toBool",
|
|
214
|
+
"$toDate",
|
|
215
|
+
"$toDecimal",
|
|
216
|
+
"$toDouble",
|
|
217
|
+
"$toInt",
|
|
218
|
+
"$toLong",
|
|
219
|
+
"$toObjectId",
|
|
220
|
+
"$toString",
|
|
221
|
+
"$toLower",
|
|
222
|
+
"$toUpper",
|
|
223
|
+
"$trim",
|
|
224
|
+
"$trunc",
|
|
225
|
+
"$type",
|
|
226
|
+
"$week",
|
|
227
|
+
"$year",
|
|
228
|
+
"$zip",
|
|
229
|
+
"$count",
|
|
230
|
+
"$dateAdd",
|
|
231
|
+
"$dateDiff",
|
|
232
|
+
"$dateSubtract",
|
|
233
|
+
"$dateTrunc",
|
|
234
|
+
"$getField",
|
|
235
|
+
"$rand",
|
|
236
|
+
"$sampleRate",
|
|
237
|
+
"$setField",
|
|
238
|
+
"$unsetField",
|
|
239
|
+
// aggregation pipeline query modifiers
|
|
240
|
+
"$comment",
|
|
241
|
+
"$explain",
|
|
242
|
+
"$hint",
|
|
243
|
+
"$max",
|
|
244
|
+
"$maxTimeMS",
|
|
245
|
+
"$min",
|
|
246
|
+
"$orderby",
|
|
247
|
+
"$query",
|
|
248
|
+
"$returnKey",
|
|
249
|
+
"$showDiskLoc",
|
|
250
|
+
"$natural"
|
|
251
|
+
], o = ["ObjectId", "Code", "BinData", "DBRef", "Timestamp", "NumberLong", "NumberDecimal", "MaxKey", "MinKey", "RegExp", "ISODate", "UUID"];
|
|
252
|
+
t = t.map(function(i) {
|
|
253
|
+
return i.replace("$", "\\$");
|
|
254
|
+
});
|
|
255
|
+
var s = "(?:" + t.join("|") + ")\\b";
|
|
256
|
+
e.languages.mongodb = e.languages.extend("javascript", {}), e.languages.insertBefore("mongodb", "string", {
|
|
257
|
+
property: {
|
|
258
|
+
pattern: /(?:(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)(?=\s*:)/,
|
|
259
|
+
greedy: !0,
|
|
260
|
+
inside: {
|
|
261
|
+
keyword: RegExp(`^(['"])?` + s + "(?:\\1)?$")
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}), e.languages.mongodb.string.inside = {
|
|
265
|
+
url: {
|
|
266
|
+
// url pattern
|
|
267
|
+
pattern: /https?:\/\/[-\w@:%.+~#=]{1,256}\.[a-z0-9()]{1,6}\b[-\w()@:%+.~#?&/=]*/i,
|
|
268
|
+
greedy: !0
|
|
269
|
+
},
|
|
270
|
+
entity: {
|
|
271
|
+
// ipv4
|
|
272
|
+
pattern: /\b(?:(?:[01]?\d\d?|2[0-4]\d|25[0-5])\.){3}(?:[01]?\d\d?|2[0-4]\d|25[0-5])\b/,
|
|
273
|
+
greedy: !0
|
|
274
|
+
}
|
|
275
|
+
}, e.languages.insertBefore("mongodb", "constant", {
|
|
276
|
+
builtin: {
|
|
277
|
+
pattern: RegExp("\\b(?:" + o.join("|") + ")\\b"),
|
|
278
|
+
alias: "keyword"
|
|
279
|
+
}
|
|
280
|
+
});
|
|
281
|
+
})(n);
|
|
282
|
+
}
|
|
283
|
+
return a;
|
|
284
|
+
}
|
|
285
|
+
export {
|
|
286
|
+
l as __require
|
|
287
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
var r, t;
|
|
2
|
+
function o() {
|
|
3
|
+
if (t)
|
|
4
|
+
return r;
|
|
5
|
+
t = 1, r = e, e.displayName = "monkey", e.aliases = [];
|
|
6
|
+
function e(n) {
|
|
7
|
+
n.languages.monkey = {
|
|
8
|
+
comment: {
|
|
9
|
+
pattern: /^#Rem\s[\s\S]*?^#End|'.+/im,
|
|
10
|
+
greedy: !0
|
|
11
|
+
},
|
|
12
|
+
string: {
|
|
13
|
+
pattern: /"[^"\r\n]*"/,
|
|
14
|
+
greedy: !0
|
|
15
|
+
},
|
|
16
|
+
preprocessor: {
|
|
17
|
+
pattern: /(^[ \t]*)#.+/m,
|
|
18
|
+
lookbehind: !0,
|
|
19
|
+
greedy: !0,
|
|
20
|
+
alias: "property"
|
|
21
|
+
},
|
|
22
|
+
function: /\b\w+(?=\()/,
|
|
23
|
+
"type-char": {
|
|
24
|
+
pattern: /\b[?%#$]/,
|
|
25
|
+
alias: "class-name"
|
|
26
|
+
},
|
|
27
|
+
number: {
|
|
28
|
+
pattern: /((?:\.\.)?)(?:(?:\b|\B-\.?|\B\.)\d+(?:(?!\.\.)\.\d*)?|\$[\da-f]+)/i,
|
|
29
|
+
lookbehind: !0
|
|
30
|
+
},
|
|
31
|
+
keyword: /\b(?:Abstract|Array|Bool|Case|Catch|Class|Const|Continue|Default|Eachin|Else|ElseIf|End|EndIf|Exit|Extends|Extern|False|Field|Final|Float|For|Forever|Function|Global|If|Implements|Import|Inline|Int|Interface|Local|Method|Module|New|Next|Null|Object|Private|Property|Public|Repeat|Return|Select|Self|Step|Strict|String|Super|Then|Throw|To|True|Try|Until|Void|Wend|While)\b/i,
|
|
32
|
+
operator: /\.\.|<[=>]?|>=?|:?=|(?:[+\-*\/&~|]|\b(?:Mod|Shl|Shr)\b)=?|\b(?:And|Not|Or)\b/i,
|
|
33
|
+
punctuation: /[.,:;()\[\]]/
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
return r;
|
|
37
|
+
}
|
|
38
|
+
export {
|
|
39
|
+
o as __require
|
|
40
|
+
};
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
var n, a;
|
|
2
|
+
function o() {
|
|
3
|
+
if (a)
|
|
4
|
+
return n;
|
|
5
|
+
a = 1, n = t, t.displayName = "moonscript", t.aliases = ["moon"];
|
|
6
|
+
function t(e) {
|
|
7
|
+
e.languages.moonscript = {
|
|
8
|
+
comment: /--.*/,
|
|
9
|
+
string: [{
|
|
10
|
+
pattern: /'[^']*'|\[(=*)\[[\s\S]*?\]\1\]/,
|
|
11
|
+
greedy: !0
|
|
12
|
+
}, {
|
|
13
|
+
pattern: /"[^"]*"/,
|
|
14
|
+
greedy: !0,
|
|
15
|
+
inside: {
|
|
16
|
+
interpolation: {
|
|
17
|
+
pattern: /#\{[^{}]*\}/,
|
|
18
|
+
inside: {
|
|
19
|
+
moonscript: {
|
|
20
|
+
pattern: /(^#\{)[\s\S]+(?=\})/,
|
|
21
|
+
lookbehind: !0,
|
|
22
|
+
inside: null
|
|
23
|
+
// see beow
|
|
24
|
+
},
|
|
25
|
+
"interpolation-punctuation": {
|
|
26
|
+
pattern: /#\{|\}/,
|
|
27
|
+
alias: "punctuation"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}],
|
|
33
|
+
"class-name": [
|
|
34
|
+
{
|
|
35
|
+
pattern: /(\b(?:class|extends)[ \t]+)\w+/,
|
|
36
|
+
lookbehind: !0
|
|
37
|
+
},
|
|
38
|
+
// class-like names start with a capital letter
|
|
39
|
+
/\b[A-Z]\w*/
|
|
40
|
+
],
|
|
41
|
+
keyword: /\b(?:class|continue|do|else|elseif|export|extends|for|from|if|import|in|local|nil|return|self|super|switch|then|unless|using|when|while|with)\b/,
|
|
42
|
+
variable: /@@?\w*/,
|
|
43
|
+
property: {
|
|
44
|
+
pattern: /\b(?!\d)\w+(?=:)|(:)(?!\d)\w+/,
|
|
45
|
+
lookbehind: !0
|
|
46
|
+
},
|
|
47
|
+
function: {
|
|
48
|
+
pattern: /\b(?:_G|_VERSION|assert|collectgarbage|coroutine\.(?:create|resume|running|status|wrap|yield)|debug\.(?:debug|getfenv|gethook|getinfo|getlocal|getmetatable|getregistry|getupvalue|setfenv|sethook|setlocal|setmetatable|setupvalue|traceback)|dofile|error|getfenv|getmetatable|io\.(?:close|flush|input|lines|open|output|popen|read|stderr|stdin|stdout|tmpfile|type|write)|ipairs|load|loadfile|loadstring|math\.(?:abs|acos|asin|atan|atan2|ceil|cos|cosh|deg|exp|floor|fmod|frexp|ldexp|log|log10|max|min|modf|pi|pow|rad|random|randomseed|sin|sinh|sqrt|tan|tanh)|module|next|os\.(?:clock|date|difftime|execute|exit|getenv|remove|rename|setlocale|time|tmpname)|package\.(?:cpath|loaded|loadlib|path|preload|seeall)|pairs|pcall|print|rawequal|rawget|rawset|require|select|setfenv|setmetatable|string\.(?:byte|char|dump|find|format|gmatch|gsub|len|lower|match|rep|reverse|sub|upper)|table\.(?:concat|insert|maxn|remove|sort)|tonumber|tostring|type|unpack|xpcall)\b/,
|
|
49
|
+
inside: {
|
|
50
|
+
punctuation: /\./
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
boolean: /\b(?:false|true)\b/,
|
|
54
|
+
number: /(?:\B\.\d+|\b\d+\.\d+|\b\d+(?=[eE]))(?:[eE][-+]?\d+)?\b|\b(?:0x[a-fA-F\d]+|\d+)(?:U?LL)?\b/,
|
|
55
|
+
operator: /\.{3}|[-=]>|~=|(?:[-+*/%<>!=]|\.\.)=?|[:#^]|\b(?:and|or)\b=?|\b(?:not)\b/,
|
|
56
|
+
punctuation: /[.,()[\]{}\\]/
|
|
57
|
+
}, e.languages.moonscript.string[1].inside.interpolation.inside.moonscript.inside = e.languages.moonscript, e.languages.moon = e.languages.moonscript;
|
|
58
|
+
}
|
|
59
|
+
return n;
|
|
60
|
+
}
|
|
61
|
+
export {
|
|
62
|
+
o as __require
|
|
63
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
var T, N;
|
|
2
|
+
function I() {
|
|
3
|
+
if (N)
|
|
4
|
+
return T;
|
|
5
|
+
N = 1, T = E, E.displayName = "n1ql", E.aliases = [];
|
|
6
|
+
function E(R) {
|
|
7
|
+
R.languages.n1ql = {
|
|
8
|
+
comment: {
|
|
9
|
+
pattern: /\/\*[\s\S]*?(?:$|\*\/)|--.*/,
|
|
10
|
+
greedy: !0
|
|
11
|
+
},
|
|
12
|
+
string: {
|
|
13
|
+
pattern: /(["'])(?:\\[\s\S]|(?!\1)[^\\]|\1\1)*\1/,
|
|
14
|
+
greedy: !0
|
|
15
|
+
},
|
|
16
|
+
identifier: {
|
|
17
|
+
pattern: /`(?:\\[\s\S]|[^\\`]|``)*`/,
|
|
18
|
+
greedy: !0
|
|
19
|
+
},
|
|
20
|
+
parameter: /\$[\w.]+/,
|
|
21
|
+
// https://docs.couchbase.com/server/current/n1ql/n1ql-language-reference/reservedwords.html#n1ql-reserved-words
|
|
22
|
+
keyword: /\b(?:ADVISE|ALL|ALTER|ANALYZE|AS|ASC|AT|BEGIN|BINARY|BOOLEAN|BREAK|BUCKET|BUILD|BY|CALL|CAST|CLUSTER|COLLATE|COLLECTION|COMMIT|COMMITTED|CONNECT|CONTINUE|CORRELATE|CORRELATED|COVER|CREATE|CURRENT|DATABASE|DATASET|DATASTORE|DECLARE|DECREMENT|DELETE|DERIVED|DESC|DESCRIBE|DISTINCT|DO|DROP|EACH|ELEMENT|EXCEPT|EXCLUDE|EXECUTE|EXPLAIN|FETCH|FILTER|FLATTEN|FLUSH|FOLLOWING|FOR|FORCE|FROM|FTS|FUNCTION|GOLANG|GRANT|GROUP|GROUPS|GSI|HASH|HAVING|IF|IGNORE|ILIKE|INCLUDE|INCREMENT|INDEX|INFER|INLINE|INNER|INSERT|INTERSECT|INTO|IS|ISOLATION|JAVASCRIPT|JOIN|KEY|KEYS|KEYSPACE|KNOWN|LANGUAGE|LAST|LEFT|LET|LETTING|LEVEL|LIMIT|LSM|MAP|MAPPING|MATCHED|MATERIALIZED|MERGE|MINUS|MISSING|NAMESPACE|NEST|NL|NO|NTH_VALUE|NULL|NULLS|NUMBER|OBJECT|OFFSET|ON|OPTION|OPTIONS|ORDER|OTHERS|OUTER|OVER|PARSE|PARTITION|PASSWORD|PATH|POOL|PRECEDING|PREPARE|PRIMARY|PRIVATE|PRIVILEGE|PROBE|PROCEDURE|PUBLIC|RANGE|RAW|REALM|REDUCE|RENAME|RESPECT|RETURN|RETURNING|REVOKE|RIGHT|ROLE|ROLLBACK|ROW|ROWS|SATISFIES|SAVEPOINT|SCHEMA|SCOPE|SELECT|SELF|SEMI|SET|SHOW|SOME|START|STATISTICS|STRING|SYSTEM|TIES|TO|TRAN|TRANSACTION|TRIGGER|TRUNCATE|UNBOUNDED|UNDER|UNION|UNIQUE|UNKNOWN|UNNEST|UNSET|UPDATE|UPSERT|USE|USER|USING|VALIDATE|VALUE|VALUES|VIA|VIEW|WHERE|WHILE|WINDOW|WITH|WORK|XOR)\b/i,
|
|
23
|
+
function: /\b[a-z_]\w*(?=\s*\()/i,
|
|
24
|
+
boolean: /\b(?:FALSE|TRUE)\b/i,
|
|
25
|
+
number: /(?:\b\d+\.|\B\.)\d+e[+\-]?\d+\b|\b\d+(?:\.\d*)?|\B\.\d+\b/i,
|
|
26
|
+
operator: /[-+*\/%]|!=|==?|\|\||<[>=]?|>=?|\b(?:AND|ANY|ARRAY|BETWEEN|CASE|ELSE|END|EVERY|EXISTS|FIRST|IN|LIKE|NOT|OR|THEN|VALUED|WHEN|WITHIN)\b/i,
|
|
27
|
+
punctuation: /[;[\](),.{}:]/
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
return T;
|
|
31
|
+
}
|
|
32
|
+
export {
|
|
33
|
+
I as __require
|
|
34
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
var t, a;
|
|
2
|
+
function r() {
|
|
3
|
+
if (a)
|
|
4
|
+
return t;
|
|
5
|
+
a = 1, t = n, n.displayName = "n4js", n.aliases = ["n4jsd"];
|
|
6
|
+
function n(e) {
|
|
7
|
+
e.languages.n4js = e.languages.extend("javascript", {
|
|
8
|
+
// Keywords from N4JS language spec: https://numberfour.github.io/n4js/spec/N4JSSpec.html
|
|
9
|
+
keyword: /\b(?:Array|any|boolean|break|case|catch|class|const|constructor|continue|debugger|declare|default|delete|do|else|enum|export|extends|false|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|module|new|null|number|package|private|protected|public|return|set|static|string|super|switch|this|throw|true|try|typeof|var|void|while|with|yield)\b/
|
|
10
|
+
}), e.languages.insertBefore("n4js", "constant", {
|
|
11
|
+
// Annotations in N4JS spec: https://numberfour.github.io/n4js/spec/N4JSSpec.html#_annotations
|
|
12
|
+
annotation: {
|
|
13
|
+
pattern: /@+\w+/,
|
|
14
|
+
alias: "operator"
|
|
15
|
+
}
|
|
16
|
+
}), e.languages.n4jsd = e.languages.n4js;
|
|
17
|
+
}
|
|
18
|
+
return t;
|
|
19
|
+
}
|
|
20
|
+
export {
|
|
21
|
+
r as __require
|
|
22
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
var n, r;
|
|
2
|
+
function a() {
|
|
3
|
+
if (r)
|
|
4
|
+
return n;
|
|
5
|
+
r = 1, n = e, e.displayName = "nand2tetrisHdl", e.aliases = [];
|
|
6
|
+
function e(t) {
|
|
7
|
+
t.languages["nand2tetris-hdl"] = {
|
|
8
|
+
comment: /\/\/.*|\/\*[\s\S]*?(?:\*\/|$)/,
|
|
9
|
+
keyword: /\b(?:BUILTIN|CHIP|CLOCKED|IN|OUT|PARTS)\b/,
|
|
10
|
+
boolean: /\b(?:false|true)\b/,
|
|
11
|
+
function: /\b[A-Za-z][A-Za-z0-9]*(?=\()/,
|
|
12
|
+
number: /\b\d+\b/,
|
|
13
|
+
operator: /=|\.\./,
|
|
14
|
+
punctuation: /[{}[\];(),:]/
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
return n;
|
|
18
|
+
}
|
|
19
|
+
export {
|
|
20
|
+
a as __require
|
|
21
|
+
};
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
var l, c;
|
|
2
|
+
function g() {
|
|
3
|
+
if (c)
|
|
4
|
+
return l;
|
|
5
|
+
c = 1, l = i, i.displayName = "naniscript", i.aliases = [];
|
|
6
|
+
function i(d) {
|
|
7
|
+
(function(r) {
|
|
8
|
+
var s = /\{[^\r\n\[\]{}]*\}/, u = {
|
|
9
|
+
"quoted-string": {
|
|
10
|
+
pattern: /"(?:[^"\\]|\\.)*"/,
|
|
11
|
+
alias: "operator"
|
|
12
|
+
},
|
|
13
|
+
"command-param-id": {
|
|
14
|
+
pattern: /(\s)\w+:/,
|
|
15
|
+
lookbehind: !0,
|
|
16
|
+
alias: "property"
|
|
17
|
+
},
|
|
18
|
+
"command-param-value": [{
|
|
19
|
+
pattern: s,
|
|
20
|
+
alias: "selector"
|
|
21
|
+
}, {
|
|
22
|
+
pattern: /([\t ])\S+/,
|
|
23
|
+
lookbehind: !0,
|
|
24
|
+
greedy: !0,
|
|
25
|
+
alias: "operator"
|
|
26
|
+
}, {
|
|
27
|
+
pattern: /\S(?:.*\S)?/,
|
|
28
|
+
alias: "operator"
|
|
29
|
+
}]
|
|
30
|
+
};
|
|
31
|
+
r.languages.naniscript = {
|
|
32
|
+
// ; ...
|
|
33
|
+
comment: {
|
|
34
|
+
pattern: /^([\t ]*);.*/m,
|
|
35
|
+
lookbehind: !0
|
|
36
|
+
},
|
|
37
|
+
// > ...
|
|
38
|
+
// Define is a control line starting with '>' followed by a word, a space and a text.
|
|
39
|
+
define: {
|
|
40
|
+
pattern: /^>.+/m,
|
|
41
|
+
alias: "tag",
|
|
42
|
+
inside: {
|
|
43
|
+
value: {
|
|
44
|
+
pattern: /(^>\w+[\t ]+)(?!\s)[^{}\r\n]+/,
|
|
45
|
+
lookbehind: !0,
|
|
46
|
+
alias: "operator"
|
|
47
|
+
},
|
|
48
|
+
key: {
|
|
49
|
+
pattern: /(^>)\w+/,
|
|
50
|
+
lookbehind: !0
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
// # ...
|
|
55
|
+
label: {
|
|
56
|
+
pattern: /^([\t ]*)#[\t ]*\w+[\t ]*$/m,
|
|
57
|
+
lookbehind: !0,
|
|
58
|
+
alias: "regex"
|
|
59
|
+
},
|
|
60
|
+
command: {
|
|
61
|
+
pattern: /^([\t ]*)@\w+(?=[\t ]|$).*/m,
|
|
62
|
+
lookbehind: !0,
|
|
63
|
+
alias: "function",
|
|
64
|
+
inside: {
|
|
65
|
+
"command-name": /^@\w+/,
|
|
66
|
+
expression: {
|
|
67
|
+
pattern: s,
|
|
68
|
+
greedy: !0,
|
|
69
|
+
alias: "selector"
|
|
70
|
+
},
|
|
71
|
+
"command-params": {
|
|
72
|
+
pattern: /\s*\S[\s\S]*/,
|
|
73
|
+
inside: u
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
// Generic is any line that doesn't start with operators: ;>#@
|
|
78
|
+
"generic-text": {
|
|
79
|
+
pattern: /(^[ \t]*)[^#@>;\s].*/m,
|
|
80
|
+
lookbehind: !0,
|
|
81
|
+
alias: "punctuation",
|
|
82
|
+
inside: {
|
|
83
|
+
// \{ ... \} ... \[ ... \] ... \"
|
|
84
|
+
"escaped-char": /\\[{}\[\]"]/,
|
|
85
|
+
expression: {
|
|
86
|
+
pattern: s,
|
|
87
|
+
greedy: !0,
|
|
88
|
+
alias: "selector"
|
|
89
|
+
},
|
|
90
|
+
"inline-command": {
|
|
91
|
+
pattern: /\[[\t ]*\w[^\r\n\[\]]*\]/,
|
|
92
|
+
greedy: !0,
|
|
93
|
+
alias: "function",
|
|
94
|
+
inside: {
|
|
95
|
+
"command-params": {
|
|
96
|
+
pattern: /(^\[[\t ]*\w+\b)[\s\S]+(?=\]$)/,
|
|
97
|
+
lookbehind: !0,
|
|
98
|
+
inside: u
|
|
99
|
+
},
|
|
100
|
+
"command-param-name": {
|
|
101
|
+
pattern: /^(\[[\t ]*)\w+/,
|
|
102
|
+
lookbehind: !0,
|
|
103
|
+
alias: "name"
|
|
104
|
+
},
|
|
105
|
+
"start-stop-char": /[\[\]]/
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}, r.languages.nani = r.languages.naniscript, r.hooks.add("after-tokenize", function(e) {
|
|
111
|
+
var p = e.tokens;
|
|
112
|
+
p.forEach(function(a) {
|
|
113
|
+
if (typeof a != "string" && a.type === "generic-text") {
|
|
114
|
+
var t = o(a);
|
|
115
|
+
m(t) || (a.type = "bad-line", a.content = t);
|
|
116
|
+
}
|
|
117
|
+
});
|
|
118
|
+
});
|
|
119
|
+
function m(e) {
|
|
120
|
+
for (var p = "[]{}", a = [], t = 0; t < e.length; t++) {
|
|
121
|
+
var f = e[t], n = p.indexOf(f);
|
|
122
|
+
if (n !== -1) {
|
|
123
|
+
if (n % 2 === 0)
|
|
124
|
+
a.push(n + 1);
|
|
125
|
+
else if (a.pop() !== n)
|
|
126
|
+
return !1;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
return a.length === 0;
|
|
130
|
+
}
|
|
131
|
+
function o(e) {
|
|
132
|
+
return typeof e == "string" ? e : Array.isArray(e) ? e.map(o).join("") : o(e.content);
|
|
133
|
+
}
|
|
134
|
+
})(d);
|
|
135
|
+
}
|
|
136
|
+
return l;
|
|
137
|
+
}
|
|
138
|
+
export {
|
|
139
|
+
g as __require
|
|
140
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
var e, d;
|
|
2
|
+
function n() {
|
|
3
|
+
if (d)
|
|
4
|
+
return e;
|
|
5
|
+
d = 1, e = a, a.displayName = "nasm", a.aliases = [];
|
|
6
|
+
function a(r) {
|
|
7
|
+
r.languages.nasm = {
|
|
8
|
+
comment: /;.*$/m,
|
|
9
|
+
string: /(["'`])(?:\\.|(?!\1)[^\\\r\n])*\1/,
|
|
10
|
+
label: {
|
|
11
|
+
pattern: /(^\s*)[A-Za-z._?$][\w.?$@~#]*:/m,
|
|
12
|
+
lookbehind: !0,
|
|
13
|
+
alias: "function"
|
|
14
|
+
},
|
|
15
|
+
keyword: [/\[?BITS (?:16|32|64)\]?/, {
|
|
16
|
+
pattern: /(^\s*)section\s*[a-z.]+:?/im,
|
|
17
|
+
lookbehind: !0
|
|
18
|
+
}, /(?:extern|global)[^;\r\n]*/i, /(?:CPU|DEFAULT|FLOAT).*$/m],
|
|
19
|
+
register: {
|
|
20
|
+
pattern: /\b(?:st\d|[xyz]mm\d\d?|[cdt]r\d|r\d\d?[bwd]?|[er]?[abcd]x|[abcd][hl]|[er]?(?:bp|di|si|sp)|[cdefgs]s)\b/i,
|
|
21
|
+
alias: "variable"
|
|
22
|
+
},
|
|
23
|
+
number: /(?:\b|(?=\$))(?:0[hx](?:\.[\da-f]+|[\da-f]+(?:\.[\da-f]+)?)(?:p[+-]?\d+)?|\d[\da-f]+[hx]|\$\d[\da-f]*|0[oq][0-7]+|[0-7]+[oq]|0[by][01]+|[01]+[by]|0[dt]\d+|(?:\d+(?:\.\d+)?|\.\d+)(?:\.?e[+-]?\d+)?[dt]?)\b/i,
|
|
24
|
+
operator: /[\[\]*+\-\/%<>=&|$!]/
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
return e;
|
|
28
|
+
}
|
|
29
|
+
export {
|
|
30
|
+
n as __require
|
|
31
|
+
};
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
var n, r;
|
|
2
|
+
function d() {
|
|
3
|
+
if (r)
|
|
4
|
+
return n;
|
|
5
|
+
r = 1, n = e, e.displayName = "neon", e.aliases = [];
|
|
6
|
+
function e(t) {
|
|
7
|
+
t.languages.neon = {
|
|
8
|
+
comment: {
|
|
9
|
+
pattern: /#.*/,
|
|
10
|
+
greedy: !0
|
|
11
|
+
},
|
|
12
|
+
datetime: {
|
|
13
|
+
pattern: /(^|[[{(=:,\s])\d\d\d\d-\d\d?-\d\d?(?:(?:[Tt]| +)\d\d?:\d\d:\d\d(?:\.\d*)? *(?:Z|[-+]\d\d?(?::?\d\d)?)?)?(?=$|[\]}),\s])/,
|
|
14
|
+
lookbehind: !0,
|
|
15
|
+
alias: "number"
|
|
16
|
+
},
|
|
17
|
+
key: {
|
|
18
|
+
pattern: /(^|[[{(,\s])[^,:=[\]{}()'"\s]+(?=\s*:(?:$|[\]}),\s])|\s*=)/,
|
|
19
|
+
lookbehind: !0,
|
|
20
|
+
alias: "atrule"
|
|
21
|
+
},
|
|
22
|
+
number: {
|
|
23
|
+
pattern: /(^|[[{(=:,\s])[+-]?(?:0x[\da-fA-F]+|0o[0-7]+|0b[01]+|(?:\d+(?:\.\d*)?|\.?\d+)(?:[eE][+-]?\d+)?)(?=$|[\]}),:=\s])/,
|
|
24
|
+
lookbehind: !0
|
|
25
|
+
},
|
|
26
|
+
boolean: {
|
|
27
|
+
pattern: /(^|[[{(=:,\s])(?:false|no|true|yes)(?=$|[\]}),:=\s])/i,
|
|
28
|
+
lookbehind: !0
|
|
29
|
+
},
|
|
30
|
+
null: {
|
|
31
|
+
pattern: /(^|[[{(=:,\s])(?:null)(?=$|[\]}),:=\s])/i,
|
|
32
|
+
lookbehind: !0,
|
|
33
|
+
alias: "keyword"
|
|
34
|
+
},
|
|
35
|
+
string: {
|
|
36
|
+
pattern: /(^|[[{(=:,\s])(?:('''|""")\r?\n(?:(?:[^\r\n]|\r?\n(?![\t ]*\2))*\r?\n)?[\t ]*\2|'[^'\r\n]*'|"(?:\\.|[^\\"\r\n])*")/,
|
|
37
|
+
lookbehind: !0,
|
|
38
|
+
greedy: !0
|
|
39
|
+
},
|
|
40
|
+
literal: {
|
|
41
|
+
pattern: /(^|[[{(=:,\s])(?:[^#"',:=[\]{}()\s`-]|[:-][^"',=[\]{}()\s])(?:[^,:=\]})(\s]|:(?![\s,\]})]|$)|[ \t]+[^#,:=\]})(\s])*/,
|
|
42
|
+
lookbehind: !0,
|
|
43
|
+
alias: "string"
|
|
44
|
+
},
|
|
45
|
+
punctuation: /[,:=[\]{}()-]/
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
return n;
|
|
49
|
+
}
|
|
50
|
+
export {
|
|
51
|
+
d as __require
|
|
52
|
+
};
|