@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,354 @@
|
|
|
1
|
+
import "./util/types.mjs";
|
|
2
|
+
import { c as r } from "./util/create.mjs";
|
|
3
|
+
import { c as t } from "./util/case-insensitive-transform.mjs";
|
|
4
|
+
import { __exports as s } from "../../../_virtual/types.mjs";
|
|
5
|
+
var o = s, i = r, c = t, l = o.boolean, d = o.overloadedBoolean, u = o.booleanish, n = o.number, e = o.spaceSeparated, a = o.commaSeparated, y = i({
|
|
6
|
+
space: "html",
|
|
7
|
+
attributes: {
|
|
8
|
+
acceptcharset: "accept-charset",
|
|
9
|
+
classname: "class",
|
|
10
|
+
htmlfor: "for",
|
|
11
|
+
httpequiv: "http-equiv"
|
|
12
|
+
},
|
|
13
|
+
transform: c,
|
|
14
|
+
mustUseProperty: ["checked", "multiple", "muted", "selected"],
|
|
15
|
+
properties: {
|
|
16
|
+
// Standard Properties.
|
|
17
|
+
abbr: null,
|
|
18
|
+
accept: a,
|
|
19
|
+
acceptCharset: e,
|
|
20
|
+
accessKey: e,
|
|
21
|
+
action: null,
|
|
22
|
+
allow: null,
|
|
23
|
+
allowFullScreen: l,
|
|
24
|
+
allowPaymentRequest: l,
|
|
25
|
+
allowUserMedia: l,
|
|
26
|
+
alt: null,
|
|
27
|
+
as: null,
|
|
28
|
+
async: l,
|
|
29
|
+
autoCapitalize: null,
|
|
30
|
+
autoComplete: e,
|
|
31
|
+
autoFocus: l,
|
|
32
|
+
autoPlay: l,
|
|
33
|
+
capture: l,
|
|
34
|
+
charSet: null,
|
|
35
|
+
checked: l,
|
|
36
|
+
cite: null,
|
|
37
|
+
className: e,
|
|
38
|
+
cols: n,
|
|
39
|
+
colSpan: null,
|
|
40
|
+
content: null,
|
|
41
|
+
contentEditable: u,
|
|
42
|
+
controls: l,
|
|
43
|
+
controlsList: e,
|
|
44
|
+
coords: n | a,
|
|
45
|
+
crossOrigin: null,
|
|
46
|
+
data: null,
|
|
47
|
+
dateTime: null,
|
|
48
|
+
decoding: null,
|
|
49
|
+
default: l,
|
|
50
|
+
defer: l,
|
|
51
|
+
dir: null,
|
|
52
|
+
dirName: null,
|
|
53
|
+
disabled: l,
|
|
54
|
+
download: d,
|
|
55
|
+
draggable: u,
|
|
56
|
+
encType: null,
|
|
57
|
+
enterKeyHint: null,
|
|
58
|
+
form: null,
|
|
59
|
+
formAction: null,
|
|
60
|
+
formEncType: null,
|
|
61
|
+
formMethod: null,
|
|
62
|
+
formNoValidate: l,
|
|
63
|
+
formTarget: null,
|
|
64
|
+
headers: e,
|
|
65
|
+
height: n,
|
|
66
|
+
hidden: l,
|
|
67
|
+
high: n,
|
|
68
|
+
href: null,
|
|
69
|
+
hrefLang: null,
|
|
70
|
+
htmlFor: e,
|
|
71
|
+
httpEquiv: e,
|
|
72
|
+
id: null,
|
|
73
|
+
imageSizes: null,
|
|
74
|
+
imageSrcSet: a,
|
|
75
|
+
inputMode: null,
|
|
76
|
+
integrity: null,
|
|
77
|
+
is: null,
|
|
78
|
+
isMap: l,
|
|
79
|
+
itemId: null,
|
|
80
|
+
itemProp: e,
|
|
81
|
+
itemRef: e,
|
|
82
|
+
itemScope: l,
|
|
83
|
+
itemType: e,
|
|
84
|
+
kind: null,
|
|
85
|
+
label: null,
|
|
86
|
+
lang: null,
|
|
87
|
+
language: null,
|
|
88
|
+
list: null,
|
|
89
|
+
loading: null,
|
|
90
|
+
loop: l,
|
|
91
|
+
low: n,
|
|
92
|
+
manifest: null,
|
|
93
|
+
max: null,
|
|
94
|
+
maxLength: n,
|
|
95
|
+
media: null,
|
|
96
|
+
method: null,
|
|
97
|
+
min: null,
|
|
98
|
+
minLength: n,
|
|
99
|
+
multiple: l,
|
|
100
|
+
muted: l,
|
|
101
|
+
name: null,
|
|
102
|
+
nonce: null,
|
|
103
|
+
noModule: l,
|
|
104
|
+
noValidate: l,
|
|
105
|
+
onAbort: null,
|
|
106
|
+
onAfterPrint: null,
|
|
107
|
+
onAuxClick: null,
|
|
108
|
+
onBeforePrint: null,
|
|
109
|
+
onBeforeUnload: null,
|
|
110
|
+
onBlur: null,
|
|
111
|
+
onCancel: null,
|
|
112
|
+
onCanPlay: null,
|
|
113
|
+
onCanPlayThrough: null,
|
|
114
|
+
onChange: null,
|
|
115
|
+
onClick: null,
|
|
116
|
+
onClose: null,
|
|
117
|
+
onContextMenu: null,
|
|
118
|
+
onCopy: null,
|
|
119
|
+
onCueChange: null,
|
|
120
|
+
onCut: null,
|
|
121
|
+
onDblClick: null,
|
|
122
|
+
onDrag: null,
|
|
123
|
+
onDragEnd: null,
|
|
124
|
+
onDragEnter: null,
|
|
125
|
+
onDragExit: null,
|
|
126
|
+
onDragLeave: null,
|
|
127
|
+
onDragOver: null,
|
|
128
|
+
onDragStart: null,
|
|
129
|
+
onDrop: null,
|
|
130
|
+
onDurationChange: null,
|
|
131
|
+
onEmptied: null,
|
|
132
|
+
onEnded: null,
|
|
133
|
+
onError: null,
|
|
134
|
+
onFocus: null,
|
|
135
|
+
onFormData: null,
|
|
136
|
+
onHashChange: null,
|
|
137
|
+
onInput: null,
|
|
138
|
+
onInvalid: null,
|
|
139
|
+
onKeyDown: null,
|
|
140
|
+
onKeyPress: null,
|
|
141
|
+
onKeyUp: null,
|
|
142
|
+
onLanguageChange: null,
|
|
143
|
+
onLoad: null,
|
|
144
|
+
onLoadedData: null,
|
|
145
|
+
onLoadedMetadata: null,
|
|
146
|
+
onLoadEnd: null,
|
|
147
|
+
onLoadStart: null,
|
|
148
|
+
onMessage: null,
|
|
149
|
+
onMessageError: null,
|
|
150
|
+
onMouseDown: null,
|
|
151
|
+
onMouseEnter: null,
|
|
152
|
+
onMouseLeave: null,
|
|
153
|
+
onMouseMove: null,
|
|
154
|
+
onMouseOut: null,
|
|
155
|
+
onMouseOver: null,
|
|
156
|
+
onMouseUp: null,
|
|
157
|
+
onOffline: null,
|
|
158
|
+
onOnline: null,
|
|
159
|
+
onPageHide: null,
|
|
160
|
+
onPageShow: null,
|
|
161
|
+
onPaste: null,
|
|
162
|
+
onPause: null,
|
|
163
|
+
onPlay: null,
|
|
164
|
+
onPlaying: null,
|
|
165
|
+
onPopState: null,
|
|
166
|
+
onProgress: null,
|
|
167
|
+
onRateChange: null,
|
|
168
|
+
onRejectionHandled: null,
|
|
169
|
+
onReset: null,
|
|
170
|
+
onResize: null,
|
|
171
|
+
onScroll: null,
|
|
172
|
+
onSecurityPolicyViolation: null,
|
|
173
|
+
onSeeked: null,
|
|
174
|
+
onSeeking: null,
|
|
175
|
+
onSelect: null,
|
|
176
|
+
onSlotChange: null,
|
|
177
|
+
onStalled: null,
|
|
178
|
+
onStorage: null,
|
|
179
|
+
onSubmit: null,
|
|
180
|
+
onSuspend: null,
|
|
181
|
+
onTimeUpdate: null,
|
|
182
|
+
onToggle: null,
|
|
183
|
+
onUnhandledRejection: null,
|
|
184
|
+
onUnload: null,
|
|
185
|
+
onVolumeChange: null,
|
|
186
|
+
onWaiting: null,
|
|
187
|
+
onWheel: null,
|
|
188
|
+
open: l,
|
|
189
|
+
optimum: n,
|
|
190
|
+
pattern: null,
|
|
191
|
+
ping: e,
|
|
192
|
+
placeholder: null,
|
|
193
|
+
playsInline: l,
|
|
194
|
+
poster: null,
|
|
195
|
+
preload: null,
|
|
196
|
+
readOnly: l,
|
|
197
|
+
referrerPolicy: null,
|
|
198
|
+
rel: e,
|
|
199
|
+
required: l,
|
|
200
|
+
reversed: l,
|
|
201
|
+
rows: n,
|
|
202
|
+
rowSpan: n,
|
|
203
|
+
sandbox: e,
|
|
204
|
+
scope: null,
|
|
205
|
+
scoped: l,
|
|
206
|
+
seamless: l,
|
|
207
|
+
selected: l,
|
|
208
|
+
shape: null,
|
|
209
|
+
size: n,
|
|
210
|
+
sizes: null,
|
|
211
|
+
slot: null,
|
|
212
|
+
span: n,
|
|
213
|
+
spellCheck: u,
|
|
214
|
+
src: null,
|
|
215
|
+
srcDoc: null,
|
|
216
|
+
srcLang: null,
|
|
217
|
+
srcSet: a,
|
|
218
|
+
start: n,
|
|
219
|
+
step: null,
|
|
220
|
+
style: null,
|
|
221
|
+
tabIndex: n,
|
|
222
|
+
target: null,
|
|
223
|
+
title: null,
|
|
224
|
+
translate: null,
|
|
225
|
+
type: null,
|
|
226
|
+
typeMustMatch: l,
|
|
227
|
+
useMap: null,
|
|
228
|
+
value: u,
|
|
229
|
+
width: n,
|
|
230
|
+
wrap: null,
|
|
231
|
+
// Legacy.
|
|
232
|
+
// See: https://html.spec.whatwg.org/#other-elements,-attributes-and-apis
|
|
233
|
+
align: null,
|
|
234
|
+
// Several. Use CSS `text-align` instead,
|
|
235
|
+
aLink: null,
|
|
236
|
+
// `<body>`. Use CSS `a:active {color}` instead
|
|
237
|
+
archive: e,
|
|
238
|
+
// `<object>`. List of URIs to archives
|
|
239
|
+
axis: null,
|
|
240
|
+
// `<td>` and `<th>`. Use `scope` on `<th>`
|
|
241
|
+
background: null,
|
|
242
|
+
// `<body>`. Use CSS `background-image` instead
|
|
243
|
+
bgColor: null,
|
|
244
|
+
// `<body>` and table elements. Use CSS `background-color` instead
|
|
245
|
+
border: n,
|
|
246
|
+
// `<table>`. Use CSS `border-width` instead,
|
|
247
|
+
borderColor: null,
|
|
248
|
+
// `<table>`. Use CSS `border-color` instead,
|
|
249
|
+
bottomMargin: n,
|
|
250
|
+
// `<body>`
|
|
251
|
+
cellPadding: null,
|
|
252
|
+
// `<table>`
|
|
253
|
+
cellSpacing: null,
|
|
254
|
+
// `<table>`
|
|
255
|
+
char: null,
|
|
256
|
+
// Several table elements. When `align=char`, sets the character to align on
|
|
257
|
+
charOff: null,
|
|
258
|
+
// Several table elements. When `char`, offsets the alignment
|
|
259
|
+
classId: null,
|
|
260
|
+
// `<object>`
|
|
261
|
+
clear: null,
|
|
262
|
+
// `<br>`. Use CSS `clear` instead
|
|
263
|
+
code: null,
|
|
264
|
+
// `<object>`
|
|
265
|
+
codeBase: null,
|
|
266
|
+
// `<object>`
|
|
267
|
+
codeType: null,
|
|
268
|
+
// `<object>`
|
|
269
|
+
color: null,
|
|
270
|
+
// `<font>` and `<hr>`. Use CSS instead
|
|
271
|
+
compact: l,
|
|
272
|
+
// Lists. Use CSS to reduce space between items instead
|
|
273
|
+
declare: l,
|
|
274
|
+
// `<object>`
|
|
275
|
+
event: null,
|
|
276
|
+
// `<script>`
|
|
277
|
+
face: null,
|
|
278
|
+
// `<font>`. Use CSS instead
|
|
279
|
+
frame: null,
|
|
280
|
+
// `<table>`
|
|
281
|
+
frameBorder: null,
|
|
282
|
+
// `<iframe>`. Use CSS `border` instead
|
|
283
|
+
hSpace: n,
|
|
284
|
+
// `<img>` and `<object>`
|
|
285
|
+
leftMargin: n,
|
|
286
|
+
// `<body>`
|
|
287
|
+
link: null,
|
|
288
|
+
// `<body>`. Use CSS `a:link {color: *}` instead
|
|
289
|
+
longDesc: null,
|
|
290
|
+
// `<frame>`, `<iframe>`, and `<img>`. Use an `<a>`
|
|
291
|
+
lowSrc: null,
|
|
292
|
+
// `<img>`. Use a `<picture>`
|
|
293
|
+
marginHeight: n,
|
|
294
|
+
// `<body>`
|
|
295
|
+
marginWidth: n,
|
|
296
|
+
// `<body>`
|
|
297
|
+
noResize: l,
|
|
298
|
+
// `<frame>`
|
|
299
|
+
noHref: l,
|
|
300
|
+
// `<area>`. Use no href instead of an explicit `nohref`
|
|
301
|
+
noShade: l,
|
|
302
|
+
// `<hr>`. Use background-color and height instead of borders
|
|
303
|
+
noWrap: l,
|
|
304
|
+
// `<td>` and `<th>`
|
|
305
|
+
object: null,
|
|
306
|
+
// `<applet>`
|
|
307
|
+
profile: null,
|
|
308
|
+
// `<head>`
|
|
309
|
+
prompt: null,
|
|
310
|
+
// `<isindex>`
|
|
311
|
+
rev: null,
|
|
312
|
+
// `<link>`
|
|
313
|
+
rightMargin: n,
|
|
314
|
+
// `<body>`
|
|
315
|
+
rules: null,
|
|
316
|
+
// `<table>`
|
|
317
|
+
scheme: null,
|
|
318
|
+
// `<meta>`
|
|
319
|
+
scrolling: u,
|
|
320
|
+
// `<frame>`. Use overflow in the child context
|
|
321
|
+
standby: null,
|
|
322
|
+
// `<object>`
|
|
323
|
+
summary: null,
|
|
324
|
+
// `<table>`
|
|
325
|
+
text: null,
|
|
326
|
+
// `<body>`. Use CSS `color` instead
|
|
327
|
+
topMargin: n,
|
|
328
|
+
// `<body>`
|
|
329
|
+
valueType: null,
|
|
330
|
+
// `<param>`
|
|
331
|
+
version: null,
|
|
332
|
+
// `<html>`. Use a doctype.
|
|
333
|
+
vAlign: null,
|
|
334
|
+
// Several. Use CSS `vertical-align` instead
|
|
335
|
+
vLink: null,
|
|
336
|
+
// `<body>`. Use CSS `a:visited {color}` instead
|
|
337
|
+
vSpace: n,
|
|
338
|
+
// `<img>` and `<object>`
|
|
339
|
+
// Non-standard Properties.
|
|
340
|
+
allowTransparency: null,
|
|
341
|
+
autoCorrect: null,
|
|
342
|
+
autoSave: null,
|
|
343
|
+
disablePictureInPicture: l,
|
|
344
|
+
disableRemotePlayback: l,
|
|
345
|
+
prefix: null,
|
|
346
|
+
property: null,
|
|
347
|
+
results: n,
|
|
348
|
+
security: null,
|
|
349
|
+
unselectable: null
|
|
350
|
+
}
|
|
351
|
+
});
|
|
352
|
+
export {
|
|
353
|
+
y as h
|
|
354
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { n as u } from "../../normalize.mjs";
|
|
2
|
+
import { s as c } from "./schema.mjs";
|
|
3
|
+
import { d as i } from "./defined-info.mjs";
|
|
4
|
+
var m = u, y = c, b = i, w = l;
|
|
5
|
+
function l(a) {
|
|
6
|
+
var o = a.space, v = a.mustUseProperty || [], f = a.attributes || {}, s = a.properties, n = a.transform, p = {}, t = {}, r, e;
|
|
7
|
+
for (r in s)
|
|
8
|
+
e = new b(r, n(f, r), s[r], o), v.indexOf(r) !== -1 && (e.mustUseProperty = !0), p[r] = e, t[m(r)] = r, t[m(e.attribute)] = r;
|
|
9
|
+
return new y(p, t, o);
|
|
10
|
+
}
|
|
11
|
+
export {
|
|
12
|
+
w as c
|
|
13
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { i as f } from "./info.mjs";
|
|
2
|
+
import "./types.mjs";
|
|
3
|
+
import { __exports as m } from "../../../../_virtual/types.mjs";
|
|
4
|
+
var c = f, i = m, y = t;
|
|
5
|
+
t.prototype = new c();
|
|
6
|
+
t.prototype.defined = !0;
|
|
7
|
+
var s = ["boolean", "booleanish", "overloadedBoolean", "number", "commaSeparated", "spaceSeparated", "commaOrSpaceSeparated"], h = s.length;
|
|
8
|
+
function t(a, r, e, d) {
|
|
9
|
+
var n = -1, o;
|
|
10
|
+
for (p(this, "space", d), c.call(this, a, r); ++n < h; )
|
|
11
|
+
o = s[n], p(this, o, (e & i[o]) === i[o]);
|
|
12
|
+
}
|
|
13
|
+
function p(a, r, e) {
|
|
14
|
+
e && (a[r] = e);
|
|
15
|
+
}
|
|
16
|
+
export {
|
|
17
|
+
y as d
|
|
18
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
var l = a, e = a.prototype;
|
|
2
|
+
e.space = null;
|
|
3
|
+
e.attribute = null;
|
|
4
|
+
e.property = null;
|
|
5
|
+
e.boolean = !1;
|
|
6
|
+
e.booleanish = !1;
|
|
7
|
+
e.overloadedBoolean = !1;
|
|
8
|
+
e.number = !1;
|
|
9
|
+
e.commaSeparated = !1;
|
|
10
|
+
e.spaceSeparated = !1;
|
|
11
|
+
e.commaOrSpaceSeparated = !1;
|
|
12
|
+
e.mustUseProperty = !1;
|
|
13
|
+
e.defined = !1;
|
|
14
|
+
function a(o, t) {
|
|
15
|
+
this.property = o, this.attribute = t;
|
|
16
|
+
}
|
|
17
|
+
export {
|
|
18
|
+
l as i
|
|
19
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { i as t } from "../../../xtend/immutable.mjs";
|
|
2
|
+
import { s as v } from "./schema.mjs";
|
|
3
|
+
var n = t, s = v, i = h;
|
|
4
|
+
function h(a) {
|
|
5
|
+
for (var o = a.length, e = [], p = [], m = -1, r, l; ++m < o; )
|
|
6
|
+
r = a[m], e.push(r.property), p.push(r.normal), l = r.space;
|
|
7
|
+
return new s(n.apply(null, e), n.apply(null, p), l);
|
|
8
|
+
}
|
|
9
|
+
export {
|
|
10
|
+
i as m
|
|
11
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { __exports as e } from "../../../../_virtual/types.mjs";
|
|
2
|
+
var o = 0;
|
|
3
|
+
e.boolean = a();
|
|
4
|
+
e.booleanish = a();
|
|
5
|
+
e.overloadedBoolean = a();
|
|
6
|
+
e.number = a();
|
|
7
|
+
e.spaceSeparated = a();
|
|
8
|
+
e.commaSeparated = a();
|
|
9
|
+
e.commaOrSpaceSeparated = a();
|
|
10
|
+
function a() {
|
|
11
|
+
return Math.pow(2, ++o);
|
|
12
|
+
}
|
|
13
|
+
export {
|
|
14
|
+
e as default
|
|
15
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { c as l } from "./util/create.mjs";
|
|
2
|
+
var e = l, o = e({
|
|
3
|
+
space: "xlink",
|
|
4
|
+
transform: r,
|
|
5
|
+
properties: {
|
|
6
|
+
xLinkActuate: null,
|
|
7
|
+
xLinkArcRole: null,
|
|
8
|
+
xLinkHref: null,
|
|
9
|
+
xLinkRole: null,
|
|
10
|
+
xLinkShow: null,
|
|
11
|
+
xLinkTitle: null,
|
|
12
|
+
xLinkType: null
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
function r(i, n) {
|
|
16
|
+
return "xlink:" + n.slice(5).toLowerCase();
|
|
17
|
+
}
|
|
18
|
+
export {
|
|
19
|
+
o as x
|
|
20
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { c as e } from "./util/create.mjs";
|
|
2
|
+
var l = e, o = l({
|
|
3
|
+
space: "xml",
|
|
4
|
+
transform: a,
|
|
5
|
+
properties: {
|
|
6
|
+
xmlLang: null,
|
|
7
|
+
xmlBase: null,
|
|
8
|
+
xmlSpace: null
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
function a(m, r) {
|
|
12
|
+
return "xml:" + r.slice(3).toLowerCase();
|
|
13
|
+
}
|
|
14
|
+
export {
|
|
15
|
+
o as x
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { c as s } from "./util/create.mjs";
|
|
2
|
+
import { c as r } from "./util/case-insensitive-transform.mjs";
|
|
3
|
+
var n = s, a = r, l = n({
|
|
4
|
+
space: "xmlns",
|
|
5
|
+
attributes: {
|
|
6
|
+
xmlnsxlink: "xmlns:xlink"
|
|
7
|
+
},
|
|
8
|
+
transform: a,
|
|
9
|
+
properties: {
|
|
10
|
+
xmlns: null,
|
|
11
|
+
xmlnsXLink: null
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
l as x
|
|
16
|
+
};
|