@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,68 @@
|
|
|
1
|
+
import { __require as s } from "./markup-templating.mjs";
|
|
2
|
+
import { __require as g } from "./php.mjs";
|
|
3
|
+
var n, u;
|
|
4
|
+
function h() {
|
|
5
|
+
if (u)
|
|
6
|
+
return n;
|
|
7
|
+
u = 1;
|
|
8
|
+
var l = s(), p = g();
|
|
9
|
+
n = t, t.displayName = "latte", t.aliases = [];
|
|
10
|
+
function t(r) {
|
|
11
|
+
r.register(l), r.register(p), function(a) {
|
|
12
|
+
a.languages.latte = {
|
|
13
|
+
comment: /^\{\*[\s\S]*/,
|
|
14
|
+
"latte-tag": {
|
|
15
|
+
// https://latte.nette.org/en/tags
|
|
16
|
+
pattern: /(^\{(?:\/(?=[a-z]))?)(?:[=_]|[a-z]\w*\b(?!\())/i,
|
|
17
|
+
lookbehind: !0,
|
|
18
|
+
alias: "important"
|
|
19
|
+
},
|
|
20
|
+
delimiter: {
|
|
21
|
+
pattern: /^\{\/?|\}$/,
|
|
22
|
+
alias: "punctuation"
|
|
23
|
+
},
|
|
24
|
+
php: {
|
|
25
|
+
pattern: /\S(?:[\s\S]*\S)?/,
|
|
26
|
+
alias: "language-php",
|
|
27
|
+
inside: a.languages.php
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
var i = a.languages.extend("markup", {});
|
|
31
|
+
a.languages.insertBefore("inside", "attr-value", {
|
|
32
|
+
"n-attr": {
|
|
33
|
+
pattern: /n:[\w-]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+))?/,
|
|
34
|
+
inside: {
|
|
35
|
+
"attr-name": {
|
|
36
|
+
pattern: /^[^\s=]+/,
|
|
37
|
+
alias: "important"
|
|
38
|
+
},
|
|
39
|
+
"attr-value": {
|
|
40
|
+
pattern: /=[\s\S]+/,
|
|
41
|
+
inside: {
|
|
42
|
+
punctuation: [/^=/, {
|
|
43
|
+
pattern: /^(\s*)["']|["']$/,
|
|
44
|
+
lookbehind: !0
|
|
45
|
+
}],
|
|
46
|
+
php: {
|
|
47
|
+
pattern: /\S(?:[\s\S]*\S)?/,
|
|
48
|
+
inside: a.languages.php
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}, i.tag), a.hooks.add("before-tokenize", function(e) {
|
|
55
|
+
if (e.language === "latte") {
|
|
56
|
+
var o = /\{\*[\s\S]*?\*\}|\{[^'"\s{}*](?:[^"'/{}]|\/(?![*/])|("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|\/\*(?:[^*]|\*(?!\/))*\*\/)*\}/g;
|
|
57
|
+
a.languages["markup-templating"].buildPlaceholders(e, "latte", o), e.grammar = i;
|
|
58
|
+
}
|
|
59
|
+
}), a.hooks.add("after-tokenize", function(e) {
|
|
60
|
+
a.languages["markup-templating"].tokenizePlaceholders(e, "latte");
|
|
61
|
+
});
|
|
62
|
+
}(r);
|
|
63
|
+
}
|
|
64
|
+
return n;
|
|
65
|
+
}
|
|
66
|
+
export {
|
|
67
|
+
h as __require
|
|
68
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
var a, t;
|
|
2
|
+
function n() {
|
|
3
|
+
if (t)
|
|
4
|
+
return a;
|
|
5
|
+
t = 1, a = e, e.displayName = "less", e.aliases = [];
|
|
6
|
+
function e(s) {
|
|
7
|
+
s.languages.less = s.languages.extend("css", {
|
|
8
|
+
comment: [/\/\*[\s\S]*?\*\//, {
|
|
9
|
+
pattern: /(^|[^\\])\/\/.*/,
|
|
10
|
+
lookbehind: !0
|
|
11
|
+
}],
|
|
12
|
+
atrule: {
|
|
13
|
+
pattern: /@[\w-](?:\((?:[^(){}]|\([^(){}]*\))*\)|[^(){};\s]|\s+(?!\s))*?(?=\s*\{)/,
|
|
14
|
+
inside: {
|
|
15
|
+
punctuation: /[:()]/
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
// selectors and mixins are considered the same
|
|
19
|
+
selector: {
|
|
20
|
+
pattern: /(?:@\{[\w-]+\}|[^{};\s@])(?:@\{[\w-]+\}|\((?:[^(){}]|\([^(){}]*\))*\)|[^(){};@\s]|\s+(?!\s))*?(?=\s*\{)/,
|
|
21
|
+
inside: {
|
|
22
|
+
// mixin parameters
|
|
23
|
+
variable: /@+[\w-]+/
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
property: /(?:@\{[\w-]+\}|[\w-])+(?:\+_?)?(?=\s*:)/,
|
|
27
|
+
operator: /[+\-*\/]/
|
|
28
|
+
}), s.languages.insertBefore("less", "property", {
|
|
29
|
+
variable: [
|
|
30
|
+
// Variable declaration (the colon must be consumed!)
|
|
31
|
+
{
|
|
32
|
+
pattern: /@[\w-]+\s*:/,
|
|
33
|
+
inside: {
|
|
34
|
+
punctuation: /:/
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
// Variable usage
|
|
38
|
+
/@@?[\w-]+/
|
|
39
|
+
],
|
|
40
|
+
"mixin-usage": {
|
|
41
|
+
pattern: /([{;]\s*)[.#](?!\d)[\w-].*?(?=[(;])/,
|
|
42
|
+
lookbehind: !0,
|
|
43
|
+
alias: "function"
|
|
44
|
+
}
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
return a;
|
|
48
|
+
}
|
|
49
|
+
export {
|
|
50
|
+
n as __require
|
|
51
|
+
};
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { __require as u } from "./scheme.mjs";
|
|
2
|
+
var a, d;
|
|
3
|
+
function c() {
|
|
4
|
+
if (d)
|
|
5
|
+
return a;
|
|
6
|
+
d = 1;
|
|
7
|
+
var o = u();
|
|
8
|
+
a = n, n.displayName = "lilypond", n.aliases = [];
|
|
9
|
+
function n(s) {
|
|
10
|
+
s.register(o), function(r) {
|
|
11
|
+
for (var e = /\((?:[^();"#\\]|\\[\s\S]|;.*(?!.)|"(?:[^"\\]|\\.)*"|#(?:\{(?:(?!#\})[\s\S])*#\}|[^{])|<expr>)*\)/.source, l = 5, t = 0; t < l; t++)
|
|
12
|
+
e = e.replace(/<expr>/g, function() {
|
|
13
|
+
return e;
|
|
14
|
+
});
|
|
15
|
+
e = e.replace(/<expr>/g, /[^\s\S]/.source);
|
|
16
|
+
var i = r.languages.lilypond = {
|
|
17
|
+
comment: /%(?:(?!\{).*|\{[\s\S]*?%\})/,
|
|
18
|
+
"embedded-scheme": {
|
|
19
|
+
pattern: RegExp(/(^|[=\s])#(?:"(?:[^"\\]|\\.)*"|[^\s()"]*(?:[^\s()]|<expr>))/.source.replace(/<expr>/g, function() {
|
|
20
|
+
return e;
|
|
21
|
+
}), "m"),
|
|
22
|
+
lookbehind: !0,
|
|
23
|
+
greedy: !0,
|
|
24
|
+
inside: {
|
|
25
|
+
scheme: {
|
|
26
|
+
pattern: /^(#)[\s\S]+$/,
|
|
27
|
+
lookbehind: !0,
|
|
28
|
+
alias: "language-scheme",
|
|
29
|
+
inside: {
|
|
30
|
+
"embedded-lilypond": {
|
|
31
|
+
pattern: /#\{[\s\S]*?#\}/,
|
|
32
|
+
greedy: !0,
|
|
33
|
+
inside: {
|
|
34
|
+
punctuation: /^#\{|#\}$/,
|
|
35
|
+
lilypond: {
|
|
36
|
+
pattern: /[\s\S]+/,
|
|
37
|
+
alias: "language-lilypond",
|
|
38
|
+
inside: null
|
|
39
|
+
// see below
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
rest: r.languages.scheme
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
punctuation: /#/
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
string: {
|
|
50
|
+
pattern: /"(?:[^"\\]|\\.)*"/,
|
|
51
|
+
greedy: !0
|
|
52
|
+
},
|
|
53
|
+
"class-name": {
|
|
54
|
+
pattern: /(\\new\s+)[\w-]+/,
|
|
55
|
+
lookbehind: !0
|
|
56
|
+
},
|
|
57
|
+
keyword: {
|
|
58
|
+
pattern: /\\[a-z][-\w]*/i,
|
|
59
|
+
inside: {
|
|
60
|
+
punctuation: /^\\/
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
operator: /[=|]|<<|>>/,
|
|
64
|
+
punctuation: {
|
|
65
|
+
pattern: /(^|[a-z\d])(?:'+|,+|[_^]?-[_^]?(?:[-+^!>._]|(?=\d))|[_^]\.?|[.!])|[{}()[\]<>^~]|\\[()[\]<>\\!]|--|__/,
|
|
66
|
+
lookbehind: !0
|
|
67
|
+
},
|
|
68
|
+
number: /\b\d+(?:\/\d+)?\b/
|
|
69
|
+
};
|
|
70
|
+
i["embedded-scheme"].inside.scheme.inside["embedded-lilypond"].inside.lilypond.inside = i, r.languages.ly = i;
|
|
71
|
+
}(s);
|
|
72
|
+
}
|
|
73
|
+
return a;
|
|
74
|
+
}
|
|
75
|
+
export {
|
|
76
|
+
c as __require
|
|
77
|
+
};
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { __require as d } from "./markup-templating.mjs";
|
|
2
|
+
var i, l;
|
|
3
|
+
function m() {
|
|
4
|
+
if (l)
|
|
5
|
+
return i;
|
|
6
|
+
l = 1;
|
|
7
|
+
var s = d();
|
|
8
|
+
i = r, r.displayName = "liquid", r.aliases = [];
|
|
9
|
+
function r(e) {
|
|
10
|
+
e.register(s), e.languages.liquid = {
|
|
11
|
+
comment: {
|
|
12
|
+
pattern: /(^\{%\s*comment\s*%\})[\s\S]+(?=\{%\s*endcomment\s*%\}$)/,
|
|
13
|
+
lookbehind: !0
|
|
14
|
+
},
|
|
15
|
+
delimiter: {
|
|
16
|
+
pattern: /^\{(?:\{\{|[%\{])-?|-?(?:\}\}|[%\}])\}$/,
|
|
17
|
+
alias: "punctuation"
|
|
18
|
+
},
|
|
19
|
+
string: {
|
|
20
|
+
pattern: /"[^"]*"|'[^']*'/,
|
|
21
|
+
greedy: !0
|
|
22
|
+
},
|
|
23
|
+
keyword: /\b(?:as|assign|break|(?:end)?(?:capture|case|comment|for|form|if|paginate|raw|style|tablerow|unless)|continue|cycle|decrement|echo|else|elsif|in|include|increment|limit|liquid|offset|range|render|reversed|section|when|with)\b/,
|
|
24
|
+
object: /\b(?:address|all_country_option_tags|article|block|blog|cart|checkout|collection|color|country|country_option_tags|currency|current_page|current_tags|customer|customer_address|date|discount_allocation|discount_application|external_video|filter|filter_value|font|forloop|fulfillment|generic_file|gift_card|group|handle|image|line_item|link|linklist|localization|location|measurement|media|metafield|model|model_source|order|page|page_description|page_image|page_title|part|policy|product|product_option|recommendations|request|robots|routes|rule|script|search|selling_plan|selling_plan_allocation|selling_plan_group|shipping_method|shop|shop_locale|sitemap|store_availability|tax_line|template|theme|transaction|unit_price_measurement|user_agent|variant|video|video_source)\b/,
|
|
25
|
+
function: [{
|
|
26
|
+
pattern: /(\|\s*)\w+/,
|
|
27
|
+
lookbehind: !0,
|
|
28
|
+
alias: "filter"
|
|
29
|
+
}, {
|
|
30
|
+
// array functions
|
|
31
|
+
pattern: /(\.\s*)(?:first|last|size)/,
|
|
32
|
+
lookbehind: !0
|
|
33
|
+
}],
|
|
34
|
+
boolean: /\b(?:false|nil|true)\b/,
|
|
35
|
+
range: {
|
|
36
|
+
pattern: /\.\./,
|
|
37
|
+
alias: "operator"
|
|
38
|
+
},
|
|
39
|
+
// https://github.com/Shopify/liquid/blob/698f5e0d967423e013f6169d9111bd969bd78337/lib/liquid/lexer.rb#L21
|
|
40
|
+
number: /\b\d+(?:\.\d+)?\b/,
|
|
41
|
+
operator: /[!=]=|<>|[<>]=?|[|?:=-]|\b(?:and|contains(?=\s)|or)\b/,
|
|
42
|
+
punctuation: /[.,\[\]()]/,
|
|
43
|
+
empty: {
|
|
44
|
+
pattern: /\bempty\b/,
|
|
45
|
+
alias: "keyword"
|
|
46
|
+
}
|
|
47
|
+
}, e.hooks.add("before-tokenize", function(a) {
|
|
48
|
+
var u = /\{%\s*comment\s*%\}[\s\S]*?\{%\s*endcomment\s*%\}|\{(?:%[\s\S]*?%|\{\{[\s\S]*?\}\}|\{[\s\S]*?\})\}/g, t = !1;
|
|
49
|
+
e.languages["markup-templating"].buildPlaceholders(a, "liquid", u, function(c) {
|
|
50
|
+
var n = /^\{%-?\s*(\w+)/.exec(c);
|
|
51
|
+
if (n) {
|
|
52
|
+
var o = n[1];
|
|
53
|
+
if (o === "raw" && !t)
|
|
54
|
+
return t = !0, !0;
|
|
55
|
+
if (o === "endraw")
|
|
56
|
+
return t = !1, !0;
|
|
57
|
+
}
|
|
58
|
+
return !t;
|
|
59
|
+
});
|
|
60
|
+
}), e.hooks.add("after-tokenize", function(a) {
|
|
61
|
+
e.languages["markup-templating"].tokenizePlaceholders(a, "liquid");
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
return i;
|
|
65
|
+
}
|
|
66
|
+
export {
|
|
67
|
+
m as __require
|
|
68
|
+
};
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
var p, b;
|
|
2
|
+
function x() {
|
|
3
|
+
if (b)
|
|
4
|
+
return p;
|
|
5
|
+
b = 1, p = n, n.displayName = "lisp", n.aliases = [];
|
|
6
|
+
function n(m) {
|
|
7
|
+
(function(t) {
|
|
8
|
+
function d(u) {
|
|
9
|
+
return RegExp(/(\()/.source + "(?:" + u + ")" + /(?=[\s\)])/.source);
|
|
10
|
+
}
|
|
11
|
+
function c(u) {
|
|
12
|
+
return RegExp(/([\s([])/.source + "(?:" + u + ")" + /(?=[\s)])/.source);
|
|
13
|
+
}
|
|
14
|
+
var e = /(?!\d)[-+*/~!@$%^=<>{}\w]+/.source, k = "&" + e, a = "(\\()", v = "(?=\\))", g = "(?=\\s)", s = /(?:[^()]|\((?:[^()]|\((?:[^()]|\((?:[^()]|\((?:[^()]|\([^()]*\))*\))*\))*\))*\))*/.source, r = {
|
|
15
|
+
// Three or four semicolons are considered a heading.
|
|
16
|
+
// See https://www.gnu.org/software/emacs/manual/html_node/elisp/Comment-Tips.html
|
|
17
|
+
heading: {
|
|
18
|
+
pattern: /;;;.*/,
|
|
19
|
+
alias: ["comment", "title"]
|
|
20
|
+
},
|
|
21
|
+
comment: /;.*/,
|
|
22
|
+
string: {
|
|
23
|
+
pattern: /"(?:[^"\\]|\\.)*"/,
|
|
24
|
+
greedy: !0,
|
|
25
|
+
inside: {
|
|
26
|
+
argument: /[-A-Z]+(?=[.,\s])/,
|
|
27
|
+
symbol: RegExp("`" + e + "'")
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"quoted-symbol": {
|
|
31
|
+
pattern: RegExp("#?'" + e),
|
|
32
|
+
alias: ["variable", "symbol"]
|
|
33
|
+
},
|
|
34
|
+
"lisp-property": {
|
|
35
|
+
pattern: RegExp(":" + e),
|
|
36
|
+
alias: "property"
|
|
37
|
+
},
|
|
38
|
+
splice: {
|
|
39
|
+
pattern: RegExp(",@?" + e),
|
|
40
|
+
alias: ["symbol", "variable"]
|
|
41
|
+
},
|
|
42
|
+
keyword: [{
|
|
43
|
+
pattern: RegExp(a + "(?:and|(?:cl-)?letf|cl-loop|cond|cons|error|if|(?:lexical-)?let\\*?|message|not|null|or|provide|require|setq|unless|use-package|when|while)" + g),
|
|
44
|
+
lookbehind: !0
|
|
45
|
+
}, {
|
|
46
|
+
pattern: RegExp(a + "(?:append|by|collect|concat|do|finally|for|in|return)" + g),
|
|
47
|
+
lookbehind: !0
|
|
48
|
+
}],
|
|
49
|
+
declare: {
|
|
50
|
+
pattern: d(/declare/.source),
|
|
51
|
+
lookbehind: !0,
|
|
52
|
+
alias: "keyword"
|
|
53
|
+
},
|
|
54
|
+
interactive: {
|
|
55
|
+
pattern: d(/interactive/.source),
|
|
56
|
+
lookbehind: !0,
|
|
57
|
+
alias: "keyword"
|
|
58
|
+
},
|
|
59
|
+
boolean: {
|
|
60
|
+
pattern: c(/nil|t/.source),
|
|
61
|
+
lookbehind: !0
|
|
62
|
+
},
|
|
63
|
+
number: {
|
|
64
|
+
pattern: c(/[-+]?\d+(?:\.\d*)?/.source),
|
|
65
|
+
lookbehind: !0
|
|
66
|
+
},
|
|
67
|
+
defvar: {
|
|
68
|
+
pattern: RegExp(a + "def(?:const|custom|group|var)\\s+" + e),
|
|
69
|
+
lookbehind: !0,
|
|
70
|
+
inside: {
|
|
71
|
+
keyword: /^def[a-z]+/,
|
|
72
|
+
variable: RegExp(e)
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
defun: {
|
|
76
|
+
pattern: RegExp(a + /(?:cl-)?(?:defmacro|defun\*?)\s+/.source + e + /\s+\(/.source + s + /\)/.source),
|
|
77
|
+
lookbehind: !0,
|
|
78
|
+
greedy: !0,
|
|
79
|
+
inside: {
|
|
80
|
+
keyword: /^(?:cl-)?def\S+/,
|
|
81
|
+
// See below, this property needs to be defined later so that it can
|
|
82
|
+
// reference the language object.
|
|
83
|
+
arguments: null,
|
|
84
|
+
function: {
|
|
85
|
+
pattern: RegExp("(^\\s)" + e),
|
|
86
|
+
lookbehind: !0
|
|
87
|
+
},
|
|
88
|
+
punctuation: /[()]/
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
lambda: {
|
|
92
|
+
pattern: RegExp(a + "lambda\\s+\\(\\s*(?:&?" + e + "(?:\\s+&?" + e + ")*\\s*)?\\)"),
|
|
93
|
+
lookbehind: !0,
|
|
94
|
+
greedy: !0,
|
|
95
|
+
inside: {
|
|
96
|
+
keyword: /^lambda/,
|
|
97
|
+
// See below, this property needs to be defined later so that it can
|
|
98
|
+
// reference the language object.
|
|
99
|
+
arguments: null,
|
|
100
|
+
punctuation: /[()]/
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
car: {
|
|
104
|
+
pattern: RegExp(a + e),
|
|
105
|
+
lookbehind: !0
|
|
106
|
+
},
|
|
107
|
+
punctuation: [
|
|
108
|
+
// open paren, brackets, and close paren
|
|
109
|
+
/(?:['`,]?\(|[)\[\]])/,
|
|
110
|
+
// cons
|
|
111
|
+
{
|
|
112
|
+
pattern: /(\s)\.(?=\s)/,
|
|
113
|
+
lookbehind: !0
|
|
114
|
+
}
|
|
115
|
+
]
|
|
116
|
+
}, o = {
|
|
117
|
+
"lisp-marker": RegExp(k),
|
|
118
|
+
varform: {
|
|
119
|
+
pattern: RegExp(/\(/.source + e + /\s+(?=\S)/.source + s + /\)/.source),
|
|
120
|
+
inside: r
|
|
121
|
+
},
|
|
122
|
+
argument: {
|
|
123
|
+
pattern: RegExp(/(^|[\s(])/.source + e),
|
|
124
|
+
lookbehind: !0,
|
|
125
|
+
alias: "variable"
|
|
126
|
+
},
|
|
127
|
+
rest: r
|
|
128
|
+
}, i = "\\S+(?:\\s+\\S+)*", l = {
|
|
129
|
+
pattern: RegExp(a + s + v),
|
|
130
|
+
lookbehind: !0,
|
|
131
|
+
inside: {
|
|
132
|
+
"rest-vars": {
|
|
133
|
+
pattern: RegExp("&(?:body|rest)\\s+" + i),
|
|
134
|
+
inside: o
|
|
135
|
+
},
|
|
136
|
+
"other-marker-vars": {
|
|
137
|
+
pattern: RegExp("&(?:aux|optional)\\s+" + i),
|
|
138
|
+
inside: o
|
|
139
|
+
},
|
|
140
|
+
keys: {
|
|
141
|
+
pattern: RegExp("&key\\s+" + i + "(?:\\s+&allow-other-keys)?"),
|
|
142
|
+
inside: o
|
|
143
|
+
},
|
|
144
|
+
argument: {
|
|
145
|
+
pattern: RegExp(e),
|
|
146
|
+
alias: "variable"
|
|
147
|
+
},
|
|
148
|
+
punctuation: /[()]/
|
|
149
|
+
}
|
|
150
|
+
};
|
|
151
|
+
r.lambda.inside.arguments = l, r.defun.inside.arguments = t.util.clone(l), r.defun.inside.arguments.inside.sublist = l, t.languages.lisp = r, t.languages.elisp = r, t.languages.emacs = r, t.languages["emacs-lisp"] = r;
|
|
152
|
+
})(m);
|
|
153
|
+
}
|
|
154
|
+
return p;
|
|
155
|
+
}
|
|
156
|
+
export {
|
|
157
|
+
x as __require
|
|
158
|
+
};
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
var r, n;
|
|
2
|
+
function i() {
|
|
3
|
+
if (n)
|
|
4
|
+
return r;
|
|
5
|
+
n = 1, r = e, e.displayName = "livescript", e.aliases = [];
|
|
6
|
+
function e(t) {
|
|
7
|
+
t.languages.livescript = {
|
|
8
|
+
comment: [{
|
|
9
|
+
pattern: /(^|[^\\])\/\*[\s\S]*?\*\//,
|
|
10
|
+
lookbehind: !0
|
|
11
|
+
}, {
|
|
12
|
+
pattern: /(^|[^\\])#.*/,
|
|
13
|
+
lookbehind: !0
|
|
14
|
+
}],
|
|
15
|
+
"interpolated-string": {
|
|
16
|
+
/* Look-behind and look-ahead prevents wrong behavior of the greedy pattern
|
|
17
|
+
* forcing it to match """-quoted string when it would otherwise match "-quoted first. */
|
|
18
|
+
pattern: /(^|[^"])("""|")(?:\\[\s\S]|(?!\2)[^\\])*\2(?!")/,
|
|
19
|
+
lookbehind: !0,
|
|
20
|
+
greedy: !0,
|
|
21
|
+
inside: {
|
|
22
|
+
variable: {
|
|
23
|
+
pattern: /(^|[^\\])#[a-z_](?:-?[a-z]|[\d_])*/m,
|
|
24
|
+
lookbehind: !0
|
|
25
|
+
},
|
|
26
|
+
interpolation: {
|
|
27
|
+
pattern: /(^|[^\\])#\{[^}]+\}/m,
|
|
28
|
+
lookbehind: !0,
|
|
29
|
+
inside: {
|
|
30
|
+
"interpolation-punctuation": {
|
|
31
|
+
pattern: /^#\{|\}$/,
|
|
32
|
+
alias: "variable"
|
|
33
|
+
}
|
|
34
|
+
// See rest below
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
string: /[\s\S]+/
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
string: [{
|
|
41
|
+
pattern: /('''|')(?:\\[\s\S]|(?!\1)[^\\])*\1/,
|
|
42
|
+
greedy: !0
|
|
43
|
+
}, {
|
|
44
|
+
pattern: /<\[[\s\S]*?\]>/,
|
|
45
|
+
greedy: !0
|
|
46
|
+
}, /\\[^\s,;\])}]+/],
|
|
47
|
+
regex: [{
|
|
48
|
+
pattern: /\/\/(?:\[[^\r\n\]]*\]|\\.|(?!\/\/)[^\\\[])+\/\/[gimyu]{0,5}/,
|
|
49
|
+
greedy: !0,
|
|
50
|
+
inside: {
|
|
51
|
+
comment: {
|
|
52
|
+
pattern: /(^|[^\\])#.*/,
|
|
53
|
+
lookbehind: !0
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}, {
|
|
57
|
+
pattern: /\/(?:\[[^\r\n\]]*\]|\\.|[^/\\\r\n\[])+\/[gimyu]{0,5}/,
|
|
58
|
+
greedy: !0
|
|
59
|
+
}],
|
|
60
|
+
keyword: {
|
|
61
|
+
pattern: /(^|(?!-).)\b(?:break|case|catch|class|const|continue|default|do|else|extends|fallthrough|finally|for(?: ever)?|function|if|implements|it|let|loop|new|null|otherwise|own|return|super|switch|that|then|this|throw|try|unless|until|var|void|when|while|yield)(?!-)\b/m,
|
|
62
|
+
lookbehind: !0
|
|
63
|
+
},
|
|
64
|
+
"keyword-operator": {
|
|
65
|
+
pattern: /(^|[^-])\b(?:(?:delete|require|typeof)!|(?:and|by|delete|export|from|import(?: all)?|in|instanceof|is(?: not|nt)?|not|of|or|til|to|typeof|with|xor)(?!-)\b)/m,
|
|
66
|
+
lookbehind: !0,
|
|
67
|
+
alias: "operator"
|
|
68
|
+
},
|
|
69
|
+
boolean: {
|
|
70
|
+
pattern: /(^|[^-])\b(?:false|no|off|on|true|yes)(?!-)\b/m,
|
|
71
|
+
lookbehind: !0
|
|
72
|
+
},
|
|
73
|
+
argument: {
|
|
74
|
+
// Don't match .&. nor &&
|
|
75
|
+
pattern: /(^|(?!\.&\.)[^&])&(?!&)\d*/m,
|
|
76
|
+
lookbehind: !0,
|
|
77
|
+
alias: "variable"
|
|
78
|
+
},
|
|
79
|
+
number: /\b(?:\d+~[\da-z]+|\d[\d_]*(?:\.\d[\d_]*)?(?:[a-z]\w*)?)/i,
|
|
80
|
+
identifier: /[a-z_](?:-?[a-z]|[\d_])*/i,
|
|
81
|
+
operator: [
|
|
82
|
+
// Spaced .
|
|
83
|
+
{
|
|
84
|
+
pattern: /( )\.(?= )/,
|
|
85
|
+
lookbehind: !0
|
|
86
|
+
},
|
|
87
|
+
// Full list, in order:
|
|
88
|
+
// .= .~ .. ...
|
|
89
|
+
// .&. .^. .<<. .>>. .>>>.
|
|
90
|
+
// := :: ::=
|
|
91
|
+
// &&
|
|
92
|
+
// || |>
|
|
93
|
+
// < << <<< <<<<
|
|
94
|
+
// <- <-- <-! <--!
|
|
95
|
+
// <~ <~~ <~! <~~!
|
|
96
|
+
// <| <= <?
|
|
97
|
+
// > >> >= >?
|
|
98
|
+
// - -- -> -->
|
|
99
|
+
// + ++
|
|
100
|
+
// @ @@
|
|
101
|
+
// % %%
|
|
102
|
+
// * **
|
|
103
|
+
// ! != !~=
|
|
104
|
+
// !~> !~~>
|
|
105
|
+
// !-> !-->
|
|
106
|
+
// ~ ~> ~~> ~=
|
|
107
|
+
// = ==
|
|
108
|
+
// ^ ^^
|
|
109
|
+
// / ?
|
|
110
|
+
/\.(?:[=~]|\.\.?)|\.(?:[&|^]|<<|>>>?)\.|:(?:=|:=?)|&&|\|[|>]|<(?:<<?<?|--?!?|~~?!?|[|=?])?|>[>=?]?|-(?:->?|>)?|\+\+?|@@?|%%?|\*\*?|!(?:~?=|--?>|~?~>)?|~(?:~?>|=)?|==?|\^\^?|[\/?]/
|
|
111
|
+
],
|
|
112
|
+
punctuation: /[(){}\[\]|.,:;`]/
|
|
113
|
+
}, t.languages.livescript["interpolated-string"].inside.interpolation.inside.rest = t.languages.livescript;
|
|
114
|
+
}
|
|
115
|
+
return r;
|
|
116
|
+
}
|
|
117
|
+
export {
|
|
118
|
+
i as __require
|
|
119
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
var e, l;
|
|
2
|
+
function t() {
|
|
3
|
+
if (l)
|
|
4
|
+
return e;
|
|
5
|
+
l = 1, e = a, a.displayName = "llvm", a.aliases = [];
|
|
6
|
+
function a(b) {
|
|
7
|
+
(function(r) {
|
|
8
|
+
r.languages.llvm = {
|
|
9
|
+
comment: /;.*/,
|
|
10
|
+
string: {
|
|
11
|
+
pattern: /"[^"]*"/,
|
|
12
|
+
greedy: !0
|
|
13
|
+
},
|
|
14
|
+
boolean: /\b(?:false|true)\b/,
|
|
15
|
+
variable: /[%@!#](?:(?!\d)(?:[-$.\w]|\\[a-f\d]{2})+|\d+)/i,
|
|
16
|
+
label: /(?!\d)(?:[-$.\w]|\\[a-f\d]{2})+:/i,
|
|
17
|
+
type: {
|
|
18
|
+
pattern: /\b(?:double|float|fp128|half|i[1-9]\d*|label|metadata|ppc_fp128|token|void|x86_fp80|x86_mmx)\b/,
|
|
19
|
+
alias: "class-name"
|
|
20
|
+
},
|
|
21
|
+
keyword: /\b[a-z_][a-z_0-9]*\b/,
|
|
22
|
+
number: /[+-]?\b\d+(?:\.\d+)?(?:[eE][+-]?\d+)?\b|\b0x[\dA-Fa-f]+\b|\b0xK[\dA-Fa-f]{20}\b|\b0x[ML][\dA-Fa-f]{32}\b|\b0xH[\dA-Fa-f]{4}\b/,
|
|
23
|
+
punctuation: /[{}[\];(),.!*=<>]/
|
|
24
|
+
};
|
|
25
|
+
})(b);
|
|
26
|
+
}
|
|
27
|
+
return e;
|
|
28
|
+
}
|
|
29
|
+
export {
|
|
30
|
+
t as __require
|
|
31
|
+
};
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
var e, r;
|
|
2
|
+
function n() {
|
|
3
|
+
if (r)
|
|
4
|
+
return e;
|
|
5
|
+
r = 1, e = a, a.displayName = "log", a.aliases = [];
|
|
6
|
+
function a(t) {
|
|
7
|
+
t.languages.log = {
|
|
8
|
+
string: {
|
|
9
|
+
// Single-quoted strings must not be confused with plain text. E.g. Can't isn't Susan's Chris' toy
|
|
10
|
+
pattern: /"(?:[^"\\\r\n]|\\.)*"|'(?![st] | \w)(?:[^'\\\r\n]|\\.)*'/,
|
|
11
|
+
greedy: !0
|
|
12
|
+
},
|
|
13
|
+
exception: {
|
|
14
|
+
pattern: /(^|[^\w.])[a-z][\w.]*(?:Error|Exception):.*(?:(?:\r\n?|\n)[ \t]*(?:at[ \t].+|\.{3}.*|Caused by:.*))+(?:(?:\r\n?|\n)[ \t]*\.\.\. .*)?/,
|
|
15
|
+
lookbehind: !0,
|
|
16
|
+
greedy: !0,
|
|
17
|
+
alias: ["javastacktrace", "language-javastacktrace"],
|
|
18
|
+
inside: t.languages.javastacktrace || {
|
|
19
|
+
keyword: /\bat\b/,
|
|
20
|
+
function: /[a-z_][\w$]*(?=\()/,
|
|
21
|
+
punctuation: /[.:()]/
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
level: [{
|
|
25
|
+
pattern: /\b(?:ALERT|CRIT|CRITICAL|EMERG|EMERGENCY|ERR|ERROR|FAILURE|FATAL|SEVERE)\b/,
|
|
26
|
+
alias: ["error", "important"]
|
|
27
|
+
}, {
|
|
28
|
+
pattern: /\b(?:WARN|WARNING|WRN)\b/,
|
|
29
|
+
alias: ["warning", "important"]
|
|
30
|
+
}, {
|
|
31
|
+
pattern: /\b(?:DISPLAY|INF|INFO|NOTICE|STATUS)\b/,
|
|
32
|
+
alias: ["info", "keyword"]
|
|
33
|
+
}, {
|
|
34
|
+
pattern: /\b(?:DBG|DEBUG|FINE)\b/,
|
|
35
|
+
alias: ["debug", "keyword"]
|
|
36
|
+
}, {
|
|
37
|
+
pattern: /\b(?:FINER|FINEST|TRACE|TRC|VERBOSE|VRB)\b/,
|
|
38
|
+
alias: ["trace", "comment"]
|
|
39
|
+
}],
|
|
40
|
+
property: {
|
|
41
|
+
pattern: /((?:^|[\]|])[ \t]*)[a-z_](?:[\w-]|\b\/\b)*(?:[. ]\(?\w(?:[\w-]|\b\/\b)*\)?)*:(?=\s)/im,
|
|
42
|
+
lookbehind: !0
|
|
43
|
+
},
|
|
44
|
+
separator: {
|
|
45
|
+
pattern: /(^|[^-+])-{3,}|={3,}|\*{3,}|- - /m,
|
|
46
|
+
lookbehind: !0,
|
|
47
|
+
alias: "comment"
|
|
48
|
+
},
|
|
49
|
+
url: /\b(?:file|ftp|https?):\/\/[^\s|,;'"]*[^\s|,;'">.]/,
|
|
50
|
+
email: {
|
|
51
|
+
pattern: /(^|\s)[-\w+.]+@[a-z][a-z0-9-]*(?:\.[a-z][a-z0-9-]*)+(?=\s)/,
|
|
52
|
+
lookbehind: !0,
|
|
53
|
+
alias: "url"
|
|
54
|
+
},
|
|
55
|
+
"ip-address": {
|
|
56
|
+
pattern: /\b(?:\d{1,3}(?:\.\d{1,3}){3})\b/,
|
|
57
|
+
alias: "constant"
|
|
58
|
+
},
|
|
59
|
+
"mac-address": {
|
|
60
|
+
pattern: /\b[a-f0-9]{2}(?::[a-f0-9]{2}){5}\b/i,
|
|
61
|
+
alias: "constant"
|
|
62
|
+
},
|
|
63
|
+
domain: {
|
|
64
|
+
pattern: /(^|\s)[a-z][a-z0-9-]*(?:\.[a-z][a-z0-9-]*)*\.[a-z][a-z0-9-]+(?=\s)/,
|
|
65
|
+
lookbehind: !0,
|
|
66
|
+
alias: "constant"
|
|
67
|
+
},
|
|
68
|
+
uuid: {
|
|
69
|
+
pattern: /\b[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\b/i,
|
|
70
|
+
alias: "constant"
|
|
71
|
+
},
|
|
72
|
+
hash: {
|
|
73
|
+
pattern: /\b(?:[a-f0-9]{32}){1,2}\b/i,
|
|
74
|
+
alias: "constant"
|
|
75
|
+
},
|
|
76
|
+
"file-path": {
|
|
77
|
+
pattern: /\b[a-z]:[\\/][^\s|,;:(){}\[\]"']+|(^|[\s:\[\](>|])\.{0,2}\/\w[^\s|,;:(){}\[\]"']*/i,
|
|
78
|
+
lookbehind: !0,
|
|
79
|
+
greedy: !0,
|
|
80
|
+
alias: "string"
|
|
81
|
+
},
|
|
82
|
+
date: {
|
|
83
|
+
pattern: RegExp(/\b\d{4}[-/]\d{2}[-/]\d{2}(?:T(?=\d{1,2}:)|(?=\s\d{1,2}:))/.source + "|" + /\b\d{1,4}[-/ ](?:\d{1,2}|Apr|Aug|Dec|Feb|Jan|Jul|Jun|Mar|May|Nov|Oct|Sep)[-/ ]\d{2,4}T?\b/.source + "|" + /\b(?:(?:Fri|Mon|Sat|Sun|Thu|Tue|Wed)(?:\s{1,2}(?:Apr|Aug|Dec|Feb|Jan|Jul|Jun|Mar|May|Nov|Oct|Sep))?|Apr|Aug|Dec|Feb|Jan|Jul|Jun|Mar|May|Nov|Oct|Sep)\s{1,2}\d{1,2}\b/.source, "i"),
|
|
84
|
+
alias: "number"
|
|
85
|
+
},
|
|
86
|
+
time: {
|
|
87
|
+
pattern: /\b\d{1,2}:\d{1,2}:\d{1,2}(?:[.,:]\d+)?(?:\s?[+-]\d{2}:?\d{2}|Z)?\b/,
|
|
88
|
+
alias: "number"
|
|
89
|
+
},
|
|
90
|
+
boolean: /\b(?:false|null|true)\b/i,
|
|
91
|
+
number: {
|
|
92
|
+
pattern: /(^|[^.\w])(?:0x[a-f0-9]+|0o[0-7]+|0b[01]+|v?\d[\da-f]*(?:\.\d+)*(?:e[+-]?\d+)?[a-z]{0,3}\b)\b(?!\.\w)/i,
|
|
93
|
+
lookbehind: !0
|
|
94
|
+
},
|
|
95
|
+
operator: /[;:?<=>~/@!$%&+\-|^(){}*#]/,
|
|
96
|
+
punctuation: /[\[\].,]/
|
|
97
|
+
};
|
|
98
|
+
}
|
|
99
|
+
return e;
|
|
100
|
+
}
|
|
101
|
+
export {
|
|
102
|
+
n as __require
|
|
103
|
+
};
|