@depup/typedoc 0.28.17-depup.0
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/LICENSE +201 -0
- package/README.md +34 -0
- package/bin/package.json +3 -0
- package/bin/typedoc +24 -0
- package/changes.json +22 -0
- package/dist/browser-locales/de.d.ts +2 -0
- package/dist/browser-locales/de.js +62 -0
- package/dist/browser-locales/en.d.ts +2 -0
- package/dist/browser-locales/en.js +62 -0
- package/dist/browser-locales/ja.d.ts +2 -0
- package/dist/browser-locales/ja.js +62 -0
- package/dist/browser-locales/ko.d.ts +2 -0
- package/dist/browser-locales/ko.js +62 -0
- package/dist/browser-locales/zh.d.ts +2 -0
- package/dist/browser-locales/zh.js +62 -0
- package/dist/browser-utils.d.ts +3 -0
- package/dist/browser-utils.js +3 -0
- package/dist/index.d.ts +49 -0
- package/dist/index.js +46 -0
- package/dist/lib/application-events.d.ts +5 -0
- package/dist/lib/application-events.js +5 -0
- package/dist/lib/application.d.ts +195 -0
- package/dist/lib/application.js +715 -0
- package/dist/lib/cli.d.ts +1 -0
- package/dist/lib/cli.js +111 -0
- package/dist/lib/converter/comments/blockLexer.d.ts +4 -0
- package/dist/lib/converter/comments/blockLexer.js +391 -0
- package/dist/lib/converter/comments/declarationReferenceResolver.d.ts +3 -0
- package/dist/lib/converter/comments/declarationReferenceResolver.js +218 -0
- package/dist/lib/converter/comments/discovery.d.ts +14 -0
- package/dist/lib/converter/comments/discovery.js +563 -0
- package/dist/lib/converter/comments/index.d.ts +37 -0
- package/dist/lib/converter/comments/index.js +241 -0
- package/dist/lib/converter/comments/lexer.d.ts +17 -0
- package/dist/lib/converter/comments/lexer.js +10 -0
- package/dist/lib/converter/comments/lineLexer.d.ts +3 -0
- package/dist/lib/converter/comments/lineLexer.js +279 -0
- package/dist/lib/converter/comments/linkResolver.d.ts +20 -0
- package/dist/lib/converter/comments/linkResolver.js +186 -0
- package/dist/lib/converter/comments/parser.d.ts +18 -0
- package/dist/lib/converter/comments/parser.js +538 -0
- package/dist/lib/converter/comments/rawLexer.d.ts +8 -0
- package/dist/lib/converter/comments/rawLexer.js +218 -0
- package/dist/lib/converter/comments/tagName.d.ts +8 -0
- package/dist/lib/converter/comments/tagName.js +58 -0
- package/dist/lib/converter/comments/textParser.d.ts +33 -0
- package/dist/lib/converter/comments/textParser.js +372 -0
- package/dist/lib/converter/components.d.ts +4 -0
- package/dist/lib/converter/components.js +3 -0
- package/dist/lib/converter/context.d.ts +101 -0
- package/dist/lib/converter/context.js +311 -0
- package/dist/lib/converter/convert-expression.d.ts +9 -0
- package/dist/lib/converter/convert-expression.js +58 -0
- package/dist/lib/converter/converter-events.d.ts +13 -0
- package/dist/lib/converter/converter-events.js +13 -0
- package/dist/lib/converter/converter.d.ts +238 -0
- package/dist/lib/converter/converter.js +705 -0
- package/dist/lib/converter/factories/index-signature.d.ts +3 -0
- package/dist/lib/converter/factories/index-signature.js +50 -0
- package/dist/lib/converter/factories/signature.d.ts +14 -0
- package/dist/lib/converter/factories/signature.js +353 -0
- package/dist/lib/converter/factories/symbol-id.d.ts +3 -0
- package/dist/lib/converter/factories/symbol-id.js +47 -0
- package/dist/lib/converter/index.d.ts +5 -0
- package/dist/lib/converter/index.js +3 -0
- package/dist/lib/converter/jsdoc.d.ts +4 -0
- package/dist/lib/converter/jsdoc.js +135 -0
- package/dist/lib/converter/plugins/CategoryPlugin.d.ts +48 -0
- package/dist/lib/converter/plugins/CategoryPlugin.js +278 -0
- package/dist/lib/converter/plugins/CommentPlugin.d.ts +128 -0
- package/dist/lib/converter/plugins/CommentPlugin.js +770 -0
- package/dist/lib/converter/plugins/GroupPlugin.d.ts +48 -0
- package/dist/lib/converter/plugins/GroupPlugin.js +281 -0
- package/dist/lib/converter/plugins/ImplementsPlugin.d.ts +42 -0
- package/dist/lib/converter/plugins/ImplementsPlugin.js +438 -0
- package/dist/lib/converter/plugins/IncludePlugin.d.ts +14 -0
- package/dist/lib/converter/plugins/IncludePlugin.js +254 -0
- package/dist/lib/converter/plugins/InheritDocPlugin.d.ts +32 -0
- package/dist/lib/converter/plugins/InheritDocPlugin.js +220 -0
- package/dist/lib/converter/plugins/LinkResolverPlugin.d.ts +13 -0
- package/dist/lib/converter/plugins/LinkResolverPlugin.js +88 -0
- package/dist/lib/converter/plugins/MergeModuleWithPlugin.d.ts +12 -0
- package/dist/lib/converter/plugins/MergeModuleWithPlugin.js +50 -0
- package/dist/lib/converter/plugins/PackagePlugin.d.ts +31 -0
- package/dist/lib/converter/plugins/PackagePlugin.js +188 -0
- package/dist/lib/converter/plugins/SourcePlugin.d.ts +36 -0
- package/dist/lib/converter/plugins/SourcePlugin.js +215 -0
- package/dist/lib/converter/plugins/TypePlugin.d.ts +16 -0
- package/dist/lib/converter/plugins/TypePlugin.js +108 -0
- package/dist/lib/converter/plugins/index.d.ts +10 -0
- package/dist/lib/converter/plugins/index.js +10 -0
- package/dist/lib/converter/symbols.d.ts +3 -0
- package/dist/lib/converter/symbols.js +861 -0
- package/dist/lib/converter/types.d.ts +10 -0
- package/dist/lib/converter/types.js +833 -0
- package/dist/lib/converter/utils/nodes.d.ts +7 -0
- package/dist/lib/converter/utils/nodes.js +26 -0
- package/dist/lib/converter/utils/reflections.d.ts +2 -0
- package/dist/lib/converter/utils/reflections.js +17 -0
- package/dist/lib/converter/utils/repository.d.ts +96 -0
- package/dist/lib/converter/utils/repository.js +295 -0
- package/dist/lib/converter/utils/symbols.d.ts +2 -0
- package/dist/lib/converter/utils/symbols.js +12 -0
- package/dist/lib/debug/index.d.ts +2 -0
- package/dist/lib/debug/index.js +2 -0
- package/dist/lib/debug/reflectionLifetimes.d.ts +3 -0
- package/dist/lib/debug/reflectionLifetimes.js +27 -0
- package/dist/lib/debug/rendererUrls.d.ts +6 -0
- package/dist/lib/debug/rendererUrls.js +68 -0
- package/dist/lib/internationalization/index.d.ts +7 -0
- package/dist/lib/internationalization/index.js +7 -0
- package/dist/lib/internationalization/internationalization.d.ts +65 -0
- package/dist/lib/internationalization/internationalization.js +64 -0
- package/dist/lib/internationalization/locale-utils.cjs +8 -0
- package/dist/lib/internationalization/locale-utils.d.cts +8 -0
- package/dist/lib/internationalization/locales/de.cjs +401 -0
- package/dist/lib/internationalization/locales/de.d.cts +368 -0
- package/dist/lib/internationalization/locales/en.cjs +411 -0
- package/dist/lib/internationalization/locales/en.d.cts +380 -0
- package/dist/lib/internationalization/locales/ja.cjs +320 -0
- package/dist/lib/internationalization/locales/ja.d.cts +307 -0
- package/dist/lib/internationalization/locales/ko.cjs +233 -0
- package/dist/lib/internationalization/locales/ko.d.cts +221 -0
- package/dist/lib/internationalization/locales/zh.cjs +488 -0
- package/dist/lib/internationalization/locales/zh.d.cts +452 -0
- package/dist/lib/internationalization/translatable.d.ts +21 -0
- package/dist/lib/internationalization/translatable.js +8 -0
- package/dist/lib/models/Comment.d.ts +241 -0
- package/dist/lib/models/Comment.js +534 -0
- package/dist/lib/models/ContainerReflection.d.ts +56 -0
- package/dist/lib/models/ContainerReflection.js +159 -0
- package/dist/lib/models/DeclarationReflection.d.ts +149 -0
- package/dist/lib/models/DeclarationReflection.js +287 -0
- package/dist/lib/models/DocumentReflection.d.ts +32 -0
- package/dist/lib/models/DocumentReflection.js +66 -0
- package/dist/lib/models/FileRegistry.d.ts +46 -0
- package/dist/lib/models/FileRegistry.js +133 -0
- package/dist/lib/models/ParameterReflection.d.ts +21 -0
- package/dist/lib/models/ParameterReflection.js +39 -0
- package/dist/lib/models/ProjectReflection.d.ts +112 -0
- package/dist/lib/models/ProjectReflection.js +417 -0
- package/dist/lib/models/ReferenceReflection.d.ts +49 -0
- package/dist/lib/models/ReferenceReflection.js +85 -0
- package/dist/lib/models/Reflection.d.ts +229 -0
- package/dist/lib/models/Reflection.js +495 -0
- package/dist/lib/models/ReflectionCategory.d.ts +31 -0
- package/dist/lib/models/ReflectionCategory.js +56 -0
- package/dist/lib/models/ReflectionGroup.d.ts +38 -0
- package/dist/lib/models/ReflectionGroup.js +72 -0
- package/dist/lib/models/ReflectionSymbolId.d.ts +63 -0
- package/dist/lib/models/ReflectionSymbolId.js +85 -0
- package/dist/lib/models/SignatureReflection.d.ts +50 -0
- package/dist/lib/models/SignatureReflection.js +96 -0
- package/dist/lib/models/SourceReference.d.ts +33 -0
- package/dist/lib/models/SourceReference.js +50 -0
- package/dist/lib/models/TypeParameterReflection.d.ts +30 -0
- package/dist/lib/models/TypeParameterReflection.js +45 -0
- package/dist/lib/models/index.d.ts +19 -0
- package/dist/lib/models/index.js +19 -0
- package/dist/lib/models/kind.d.ts +84 -0
- package/dist/lib/models/kind.js +231 -0
- package/dist/lib/models/types.d.ts +553 -0
- package/dist/lib/models/types.js +1296 -0
- package/dist/lib/models/utils.d.ts +1 -0
- package/dist/lib/models/utils.js +26 -0
- package/dist/lib/models/variant.d.ts +21 -0
- package/dist/lib/models/variant.js +1 -0
- package/dist/lib/output/components.d.ts +53 -0
- package/dist/lib/output/components.js +133 -0
- package/dist/lib/output/events.d.ts +175 -0
- package/dist/lib/output/events.js +195 -0
- package/dist/lib/output/formatter.d.ts +88 -0
- package/dist/lib/output/formatter.js +660 -0
- package/dist/lib/output/index.d.ts +9 -0
- package/dist/lib/output/index.js +7 -0
- package/dist/lib/output/output.d.ts +14 -0
- package/dist/lib/output/output.js +92 -0
- package/dist/lib/output/plugins/AssetsPlugin.d.ts +20 -0
- package/dist/lib/output/plugins/AssetsPlugin.js +160 -0
- package/dist/lib/output/plugins/HierarchyPlugin.d.ts +7 -0
- package/dist/lib/output/plugins/HierarchyPlugin.js +65 -0
- package/dist/lib/output/plugins/IconsPlugin.d.ts +12 -0
- package/dist/lib/output/plugins/IconsPlugin.js +54 -0
- package/dist/lib/output/plugins/JavascriptIndexPlugin.d.ts +22 -0
- package/dist/lib/output/plugins/JavascriptIndexPlugin.js +222 -0
- package/dist/lib/output/plugins/NavigationPlugin.d.ts +7 -0
- package/dist/lib/output/plugins/NavigationPlugin.js +23 -0
- package/dist/lib/output/plugins/SitemapPlugin.d.ts +8 -0
- package/dist/lib/output/plugins/SitemapPlugin.js +82 -0
- package/dist/lib/output/plugins/index.d.ts +7 -0
- package/dist/lib/output/plugins/index.js +7 -0
- package/dist/lib/output/renderer.d.ts +227 -0
- package/dist/lib/output/renderer.js +387 -0
- package/dist/lib/output/router.d.ts +187 -0
- package/dist/lib/output/router.js +520 -0
- package/dist/lib/output/theme.d.ts +22 -0
- package/dist/lib/output/theme.js +17 -0
- package/dist/lib/output/themes/MarkedPlugin.d.ts +62 -0
- package/dist/lib/output/themes/MarkedPlugin.js +461 -0
- package/dist/lib/output/themes/default/DefaultTheme.d.ts +72 -0
- package/dist/lib/output/themes/default/DefaultTheme.js +367 -0
- package/dist/lib/output/themes/default/DefaultThemeRenderContext.d.ts +105 -0
- package/dist/lib/output/themes/default/DefaultThemeRenderContext.js +151 -0
- package/dist/lib/output/themes/default/Slugger.d.ts +13 -0
- package/dist/lib/output/themes/default/Slugger.js +60 -0
- package/dist/lib/output/themes/default/layouts/default.d.ts +6 -0
- package/dist/lib/output/themes/default/layouts/default.js +89 -0
- package/dist/lib/output/themes/default/partials/anchor-icon.d.ts +5 -0
- package/dist/lib/output/themes/default/partials/anchor-icon.js +9 -0
- package/dist/lib/output/themes/default/partials/breadcrumb.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/breadcrumb.js +11 -0
- package/dist/lib/output/themes/default/partials/comment.d.ts +8 -0
- package/dist/lib/output/themes/default/partials/comment.js +80 -0
- package/dist/lib/output/themes/default/partials/footer.d.ts +3 -0
- package/dist/lib/output/themes/default/partials/footer.js +37 -0
- package/dist/lib/output/themes/default/partials/header.d.ts +5 -0
- package/dist/lib/output/themes/default/partials/header.js +39 -0
- package/dist/lib/output/themes/default/partials/hierarchy.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/hierarchy.js +32 -0
- package/dist/lib/output/themes/default/partials/icon.d.ts +20 -0
- package/dist/lib/output/themes/default/partials/icon.js +101 -0
- package/dist/lib/output/themes/default/partials/index.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/index.js +24 -0
- package/dist/lib/output/themes/default/partials/member.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/member.declaration.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/member.declaration.js +35 -0
- package/dist/lib/output/themes/default/partials/member.getterSetter.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/member.getterSetter.js +12 -0
- package/dist/lib/output/themes/default/partials/member.js +36 -0
- package/dist/lib/output/themes/default/partials/member.signature.body.d.ts +6 -0
- package/dist/lib/output/themes/default/partials/member.signature.body.js +33 -0
- package/dist/lib/output/themes/default/partials/member.signature.title.d.ts +5 -0
- package/dist/lib/output/themes/default/partials/member.signature.title.js +9 -0
- package/dist/lib/output/themes/default/partials/member.signatures.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/member.signatures.js +9 -0
- package/dist/lib/output/themes/default/partials/member.sources.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/member.sources.js +55 -0
- package/dist/lib/output/themes/default/partials/members.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/members.js +17 -0
- package/dist/lib/output/themes/default/partials/moduleReflection.d.ts +5 -0
- package/dist/lib/output/themes/default/partials/moduleReflection.js +68 -0
- package/dist/lib/output/themes/default/partials/navigation.d.ts +10 -0
- package/dist/lib/output/themes/default/partials/navigation.js +144 -0
- package/dist/lib/output/themes/default/partials/reflectionPreview.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/reflectionPreview.js +26 -0
- package/dist/lib/output/themes/default/partials/toolbar.d.ts +5 -0
- package/dist/lib/output/themes/default/partials/toolbar.js +13 -0
- package/dist/lib/output/themes/default/partials/type.d.ts +5 -0
- package/dist/lib/output/themes/default/partials/type.js +9 -0
- package/dist/lib/output/themes/default/partials/typeAndParent.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/typeAndParent.js +28 -0
- package/dist/lib/output/themes/default/partials/typeDetails.d.ts +8 -0
- package/dist/lib/output/themes/default/partials/typeDetails.js +284 -0
- package/dist/lib/output/themes/default/partials/typeParameters.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/typeParameters.js +26 -0
- package/dist/lib/output/themes/default/templates/document.d.ts +5 -0
- package/dist/lib/output/themes/default/templates/document.js +3 -0
- package/dist/lib/output/themes/default/templates/hierarchy.d.ts +5 -0
- package/dist/lib/output/themes/default/templates/hierarchy.js +31 -0
- package/dist/lib/output/themes/default/templates/index.d.ts +5 -0
- package/dist/lib/output/themes/default/templates/index.js +3 -0
- package/dist/lib/output/themes/default/templates/reflection.d.ts +5 -0
- package/dist/lib/output/themes/default/templates/reflection.js +53 -0
- package/dist/lib/output/themes/lib.d.ts +44 -0
- package/dist/lib/output/themes/lib.js +218 -0
- package/dist/lib/serialization/components.d.ts +22 -0
- package/dist/lib/serialization/components.js +1 -0
- package/dist/lib/serialization/deserializer.d.ts +70 -0
- package/dist/lib/serialization/deserializer.js +235 -0
- package/dist/lib/serialization/events.d.ts +17 -0
- package/dist/lib/serialization/events.js +18 -0
- package/dist/lib/serialization/index.d.ts +5 -0
- package/dist/lib/serialization/index.js +4 -0
- package/dist/lib/serialization/schema.d.ts +283 -0
- package/dist/lib/serialization/schema.js +32 -0
- package/dist/lib/serialization/serializer.d.ts +52 -0
- package/dist/lib/serialization/serializer.js +65 -0
- package/dist/lib/utils/ValidatingFileRegistry.d.ts +12 -0
- package/dist/lib/utils/ValidatingFileRegistry.js +52 -0
- package/dist/lib/utils/component.d.ts +38 -0
- package/dist/lib/utils/component.js +41 -0
- package/dist/lib/utils/compress.d.ts +7 -0
- package/dist/lib/utils/compress.js +13 -0
- package/dist/lib/utils/declaration-maps.d.ts +3 -0
- package/dist/lib/utils/declaration-maps.js +51 -0
- package/dist/lib/utils/entry-point.d.ts +50 -0
- package/dist/lib/utils/entry-point.js +330 -0
- package/dist/lib/utils/fs.d.ts +65 -0
- package/dist/lib/utils/fs.js +372 -0
- package/dist/lib/utils/general.d.ts +4 -0
- package/dist/lib/utils/general.js +25 -0
- package/dist/lib/utils/highlighter.d.ts +9 -0
- package/dist/lib/utils/highlighter.js +150 -0
- package/dist/lib/utils/html-entities.d.ts +8926 -0
- package/dist/lib/utils/html-entities.js +2329 -0
- package/dist/lib/utils/html.d.ts +67 -0
- package/dist/lib/utils/html.js +635 -0
- package/dist/lib/utils/index.d.ts +17 -0
- package/dist/lib/utils/index.js +15 -0
- package/dist/lib/utils/loggers.d.ts +10 -0
- package/dist/lib/utils/loggers.js +71 -0
- package/dist/lib/utils/options/declaration.d.ts +514 -0
- package/dist/lib/utils/options/declaration.js +443 -0
- package/dist/lib/utils/options/defaults.d.ts +20 -0
- package/dist/lib/utils/options/defaults.js +104 -0
- package/dist/lib/utils/options/help.d.ts +7 -0
- package/dist/lib/utils/options/help.js +63 -0
- package/dist/lib/utils/options/index.d.ts +6 -0
- package/dist/lib/utils/options/index.js +4 -0
- package/dist/lib/utils/options/options.d.ts +199 -0
- package/dist/lib/utils/options/options.js +273 -0
- package/dist/lib/utils/options/readers/arguments.d.ts +15 -0
- package/dist/lib/utils/options/readers/arguments.js +109 -0
- package/dist/lib/utils/options/readers/index.d.ts +4 -0
- package/dist/lib/utils/options/readers/index.js +4 -0
- package/dist/lib/utils/options/readers/package-json.d.ts +9 -0
- package/dist/lib/utils/options/readers/package-json.js +40 -0
- package/dist/lib/utils/options/readers/tsconfig.d.ts +14 -0
- package/dist/lib/utils/options/readers/tsconfig.js +172 -0
- package/dist/lib/utils/options/readers/typedoc.d.ts +33 -0
- package/dist/lib/utils/options/readers/typedoc.js +136 -0
- package/dist/lib/utils/options/sources/index.d.ts +1 -0
- package/dist/lib/utils/options/sources/index.js +1 -0
- package/dist/lib/utils/options/sources/typedoc.d.ts +2 -0
- package/dist/lib/utils/options/sources/typedoc.js +876 -0
- package/dist/lib/utils/options/tsdoc-defaults.d.ts +6 -0
- package/dist/lib/utils/options/tsdoc-defaults.js +94 -0
- package/dist/lib/utils/package-manifest.d.ts +11 -0
- package/dist/lib/utils/package-manifest.js +84 -0
- package/dist/lib/utils/paths.d.ts +27 -0
- package/dist/lib/utils/paths.js +127 -0
- package/dist/lib/utils/perf.d.ts +6 -0
- package/dist/lib/utils/perf.js +86 -0
- package/dist/lib/utils/plugins.d.ts +3 -0
- package/dist/lib/utils/plugins.js +61 -0
- package/dist/lib/utils/reflections.d.ts +5 -0
- package/dist/lib/utils/reflections.js +64 -0
- package/dist/lib/utils/sort.d.ts +11 -0
- package/dist/lib/utils/sort.js +153 -0
- package/dist/lib/utils/tsconfig.d.ts +5 -0
- package/dist/lib/utils/tsconfig.js +60 -0
- package/dist/lib/utils/tsutils.d.ts +3 -0
- package/dist/lib/utils/tsutils.js +23 -0
- package/dist/lib/utils-common/array.d.ts +57 -0
- package/dist/lib/utils-common/array.js +152 -0
- package/dist/lib/utils-common/declarationReference.d.ts +42 -0
- package/dist/lib/utils-common/declarationReference.js +341 -0
- package/dist/lib/utils-common/enum.d.ts +9 -0
- package/dist/lib/utils-common/enum.js +27 -0
- package/dist/lib/utils-common/events.d.ts +29 -0
- package/dist/lib/utils-common/events.js +49 -0
- package/dist/lib/utils-common/general.d.ts +40 -0
- package/dist/lib/utils-common/general.js +22 -0
- package/dist/lib/utils-common/hooks.d.ts +51 -0
- package/dist/lib/utils-common/hooks.js +90 -0
- package/dist/lib/utils-common/i18n.d.ts +18 -0
- package/dist/lib/utils-common/i18n.js +39 -0
- package/dist/lib/utils-common/index.d.ts +16 -0
- package/dist/lib/utils-common/index.js +17 -0
- package/dist/lib/utils-common/jsx.d.ts +53 -0
- package/dist/lib/utils-common/jsx.elements.d.ts +949 -0
- package/dist/lib/utils-common/jsx.elements.js +3 -0
- package/dist/lib/utils-common/jsx.js +187 -0
- package/dist/lib/utils-common/logger.d.ts +97 -0
- package/dist/lib/utils-common/logger.js +129 -0
- package/dist/lib/utils-common/map.d.ts +23 -0
- package/dist/lib/utils-common/map.js +63 -0
- package/dist/lib/utils-common/minimalSourceFile.d.ts +12 -0
- package/dist/lib/utils-common/minimalSourceFile.js +43 -0
- package/dist/lib/utils-common/path.d.ts +42 -0
- package/dist/lib/utils-common/path.js +130 -0
- package/dist/lib/utils-common/set.d.ts +3 -0
- package/dist/lib/utils-common/set.js +23 -0
- package/dist/lib/utils-common/string.d.ts +11 -0
- package/dist/lib/utils-common/string.js +84 -0
- package/dist/lib/utils-common/validation.d.ts +33 -0
- package/dist/lib/utils-common/validation.js +50 -0
- package/dist/lib/validation/documentation.d.ts +3 -0
- package/dist/lib/validation/documentation.js +91 -0
- package/dist/lib/validation/exports.d.ts +3 -0
- package/dist/lib/validation/exports.js +65 -0
- package/dist/lib/validation/links.d.ts +3 -0
- package/dist/lib/validation/links.js +78 -0
- package/dist/lib/validation/unusedMergeModuleWith.d.ts +3 -0
- package/dist/lib/validation/unusedMergeModuleWith.js +12 -0
- package/package.json +161 -0
- package/static/main.js +58 -0
- package/static/style.css +1633 -0
- package/tsdoc.json +247 -0
- package/typedoc-config.schema.json +941 -0
|
@@ -0,0 +1,949 @@
|
|
|
1
|
+
export interface IntrinsicElements {
|
|
2
|
+
a: JsxAElementProps;
|
|
3
|
+
abbr: JsxHtmlGlobalProps;
|
|
4
|
+
address: JsxHtmlGlobalProps;
|
|
5
|
+
area: JsxAreaElementProps;
|
|
6
|
+
article: JsxHtmlGlobalProps;
|
|
7
|
+
aside: JsxHtmlGlobalProps;
|
|
8
|
+
audio: JsxAudioElementProps;
|
|
9
|
+
b: JsxHtmlGlobalProps;
|
|
10
|
+
base: JsxBaseElementProps;
|
|
11
|
+
bdi: JsxHtmlGlobalProps;
|
|
12
|
+
bdo: JsxHtmlGlobalProps;
|
|
13
|
+
blockquote: JsxBlockquoteElementProps;
|
|
14
|
+
body: JsxHtmlGlobalProps;
|
|
15
|
+
br: JsxBrElementProps;
|
|
16
|
+
button: JsxButtonElementProps;
|
|
17
|
+
canvas: JsxCanvasElementProps;
|
|
18
|
+
caption: JsxHtmlGlobalProps;
|
|
19
|
+
cite: JsxHtmlGlobalProps;
|
|
20
|
+
code: JsxHtmlGlobalProps;
|
|
21
|
+
col: JsxColElementProps;
|
|
22
|
+
colgroup: JsxColgroupElementProps;
|
|
23
|
+
data: JsxDataElementProps;
|
|
24
|
+
datalist: JsxHtmlGlobalProps;
|
|
25
|
+
dd: JsxHtmlGlobalProps;
|
|
26
|
+
del: JsxDelElementProps;
|
|
27
|
+
details: JsxDetailsElementProps;
|
|
28
|
+
dfn: JsxHtmlGlobalProps;
|
|
29
|
+
dialog: JsxDialogElementProps;
|
|
30
|
+
div: JsxHtmlGlobalProps;
|
|
31
|
+
dl: JsxHtmlGlobalProps;
|
|
32
|
+
dt: JsxHtmlGlobalProps;
|
|
33
|
+
em: JsxHtmlGlobalProps;
|
|
34
|
+
embed: JsxEmbedElementProps;
|
|
35
|
+
fieldset: JsxFieldsetElementProps;
|
|
36
|
+
figcaption: JsxHtmlGlobalProps;
|
|
37
|
+
figure: JsxHtmlGlobalProps;
|
|
38
|
+
footer: JsxHtmlGlobalProps;
|
|
39
|
+
form: JsxFormElementProps;
|
|
40
|
+
h1: JsxFormElementProps;
|
|
41
|
+
h2: JsxFormElementProps;
|
|
42
|
+
h3: JsxFormElementProps;
|
|
43
|
+
h4: JsxFormElementProps;
|
|
44
|
+
h5: JsxFormElementProps;
|
|
45
|
+
h6: JsxFormElementProps;
|
|
46
|
+
head: JsxHtmlGlobalProps;
|
|
47
|
+
header: JsxHtmlGlobalProps;
|
|
48
|
+
hgroup: JsxHtmlGlobalProps;
|
|
49
|
+
hr: JsxHtmlGlobalProps;
|
|
50
|
+
html: JsxHtmlElementProps;
|
|
51
|
+
i: JsxHtmlGlobalProps;
|
|
52
|
+
iframe: JsxIframeElementProps;
|
|
53
|
+
img: JsxImgElementProps;
|
|
54
|
+
input: JsxInputElementProps;
|
|
55
|
+
ins: JsxInsElementProps;
|
|
56
|
+
kbd: JsxHtmlGlobalProps;
|
|
57
|
+
label: JsxLabelElementProps;
|
|
58
|
+
legend: JsxHtmlGlobalProps;
|
|
59
|
+
li: JsxLiElementProps;
|
|
60
|
+
link: JsxLinkElementProps;
|
|
61
|
+
main: JsxHtmlGlobalProps;
|
|
62
|
+
map: JsxMapElementProps;
|
|
63
|
+
mark: JsxHtmlGlobalProps;
|
|
64
|
+
meta: JsxMetaElementProps;
|
|
65
|
+
meter: JsxMeterElementProps;
|
|
66
|
+
nav: JsxHtmlGlobalProps;
|
|
67
|
+
noscript: JsxHtmlGlobalProps;
|
|
68
|
+
object: JsxObjectElementProps;
|
|
69
|
+
ol: JsxOlElementProps;
|
|
70
|
+
optgroup: JsxOptgroupElementProps;
|
|
71
|
+
option: JsxOptionElementProps;
|
|
72
|
+
output: JsxOutputElementProps;
|
|
73
|
+
p: JsxHtmlGlobalProps;
|
|
74
|
+
param: JsxParamElementProps;
|
|
75
|
+
picture: JsxHtmlGlobalProps;
|
|
76
|
+
portal: JsxPortalElementProps;
|
|
77
|
+
pre: JsxHtmlGlobalProps;
|
|
78
|
+
progress: JsxProgressElementProps;
|
|
79
|
+
q: JsxQElementProps;
|
|
80
|
+
rp: JsxHtmlGlobalProps;
|
|
81
|
+
rt: JsxHtmlGlobalProps;
|
|
82
|
+
ruby: JsxHtmlGlobalProps;
|
|
83
|
+
s: JsxHtmlGlobalProps;
|
|
84
|
+
samp: JsxHtmlGlobalProps;
|
|
85
|
+
script: JsxScriptElementProps;
|
|
86
|
+
section: JsxHtmlGlobalProps;
|
|
87
|
+
select: JsxSelectElementProps;
|
|
88
|
+
slot: JsxSlotElementProps;
|
|
89
|
+
small: JsxHtmlGlobalProps;
|
|
90
|
+
source: JsxSourceElementProps;
|
|
91
|
+
span: JsxHtmlGlobalProps;
|
|
92
|
+
strong: JsxHtmlGlobalProps;
|
|
93
|
+
style: JsxStyleElementProps;
|
|
94
|
+
sub: JsxHtmlGlobalProps;
|
|
95
|
+
summary: JsxHtmlGlobalProps;
|
|
96
|
+
sup: JsxHtmlGlobalProps;
|
|
97
|
+
table: JsxHtmlGlobalProps;
|
|
98
|
+
tbody: JsxHtmlGlobalProps;
|
|
99
|
+
td: JsxTdElementProps;
|
|
100
|
+
template: JsxHtmlGlobalProps;
|
|
101
|
+
textarea: JsxTextareaElementProps;
|
|
102
|
+
tfoot: JsxHtmlGlobalProps;
|
|
103
|
+
th: JsxThElementProps;
|
|
104
|
+
thead: JsxHtmlGlobalProps;
|
|
105
|
+
time: JsxTimeElementProps;
|
|
106
|
+
title: JsxHtmlGlobalProps;
|
|
107
|
+
tr: JsxHtmlGlobalProps;
|
|
108
|
+
track: JsxTrackElementProps;
|
|
109
|
+
u: JsxHtmlGlobalProps;
|
|
110
|
+
ul: JsxHtmlGlobalProps;
|
|
111
|
+
var: JsxHtmlGlobalProps;
|
|
112
|
+
video: JsxVideoElementProps;
|
|
113
|
+
wbr: JsxHtmlGlobalProps;
|
|
114
|
+
svg: JsxSvgElementProps;
|
|
115
|
+
g: JsxGElementProps;
|
|
116
|
+
path: JsxPathElementProps;
|
|
117
|
+
rect: JsxRectElementProps;
|
|
118
|
+
circle: JsxCircleElementProps;
|
|
119
|
+
ellipse: JsxEllipseElementProps;
|
|
120
|
+
polygon: JsxPolygonElementProps;
|
|
121
|
+
polyline: JsxPolylineElementProps;
|
|
122
|
+
line: JsxLineElementProps;
|
|
123
|
+
use: JsxUseElementProps;
|
|
124
|
+
text: JsxTextElementProps;
|
|
125
|
+
image: JsxImageElementProps;
|
|
126
|
+
}
|
|
127
|
+
export declare function JsxFragment(): never;
|
|
128
|
+
export type JsxComponent<P> = (props: P) => JsxElement | null | undefined;
|
|
129
|
+
export interface JsxElement {
|
|
130
|
+
tag: typeof JsxFragment | string | JsxComponent<any>;
|
|
131
|
+
props: object | null;
|
|
132
|
+
children: JsxChildren[];
|
|
133
|
+
}
|
|
134
|
+
export type JsxChildren = JsxElement | string | number | boolean | bigint | null | undefined | JsxChildren[];
|
|
135
|
+
/**
|
|
136
|
+
* The common properties that may appear on any HTML element.
|
|
137
|
+
*
|
|
138
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes#list_of_global_attributes
|
|
139
|
+
*/
|
|
140
|
+
export interface JsxHtmlGlobalProps {
|
|
141
|
+
accessKey?: string;
|
|
142
|
+
autocapitalize?: string;
|
|
143
|
+
children?: JsxChildren;
|
|
144
|
+
class?: string;
|
|
145
|
+
contentEditable?: string;
|
|
146
|
+
[data: `data-${string}`]: string;
|
|
147
|
+
dir?: string;
|
|
148
|
+
draggable?: boolean;
|
|
149
|
+
enterKeyHint?: string;
|
|
150
|
+
hidden?: boolean;
|
|
151
|
+
id?: string;
|
|
152
|
+
inputMode?: string;
|
|
153
|
+
is?: string;
|
|
154
|
+
itemId?: string;
|
|
155
|
+
itemProp?: string;
|
|
156
|
+
itemRef?: string;
|
|
157
|
+
itemScope?: string;
|
|
158
|
+
itemType?: string;
|
|
159
|
+
lang?: string;
|
|
160
|
+
nonce?: string;
|
|
161
|
+
part?: string;
|
|
162
|
+
role?: string;
|
|
163
|
+
slot?: string;
|
|
164
|
+
spellcheck?: boolean;
|
|
165
|
+
style?: string;
|
|
166
|
+
tabIndex?: number;
|
|
167
|
+
title?: string;
|
|
168
|
+
translate?: boolean;
|
|
169
|
+
/**
|
|
170
|
+
* Default: 'auto'. true and 'auto' are equivalent
|
|
171
|
+
*
|
|
172
|
+
* See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Popover_API) for more details
|
|
173
|
+
*/
|
|
174
|
+
popover?: boolean | "auto" | "manual";
|
|
175
|
+
/**
|
|
176
|
+
* It must be the popover element id, see [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Popover_API)
|
|
177
|
+
*/
|
|
178
|
+
popovertarget?: string;
|
|
179
|
+
popovertargetaction?: "hide" | "show" | "toggle";
|
|
180
|
+
}
|
|
181
|
+
/**
|
|
182
|
+
* Properties permitted on the `<a>` element.
|
|
183
|
+
*
|
|
184
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a
|
|
185
|
+
*/
|
|
186
|
+
export interface JsxAElementProps extends JsxHtmlGlobalProps {
|
|
187
|
+
download?: string;
|
|
188
|
+
href?: string;
|
|
189
|
+
hreflang?: string;
|
|
190
|
+
ping?: string;
|
|
191
|
+
referrerPolicy?: string;
|
|
192
|
+
rel?: string;
|
|
193
|
+
target?: string;
|
|
194
|
+
type?: string;
|
|
195
|
+
}
|
|
196
|
+
/**
|
|
197
|
+
* Properties permitted on the `<area>` element.
|
|
198
|
+
*
|
|
199
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/area
|
|
200
|
+
*/
|
|
201
|
+
export interface JsxAreaElementProps extends JsxHtmlGlobalProps {
|
|
202
|
+
alt?: string;
|
|
203
|
+
coords?: string;
|
|
204
|
+
download?: string;
|
|
205
|
+
href?: string;
|
|
206
|
+
hreflang?: string;
|
|
207
|
+
ping?: string;
|
|
208
|
+
referrerPolicy?: string;
|
|
209
|
+
rel?: string;
|
|
210
|
+
shape?: "rect" | "circle" | "poly" | "default";
|
|
211
|
+
target?: "_self" | "_blank" | "_parent" | "_top";
|
|
212
|
+
}
|
|
213
|
+
/**
|
|
214
|
+
* Properties permitted on the `<audio>` element.
|
|
215
|
+
*
|
|
216
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio
|
|
217
|
+
*/
|
|
218
|
+
export interface JsxAudioElementProps extends JsxHtmlGlobalProps {
|
|
219
|
+
autoplay?: boolean;
|
|
220
|
+
controls?: boolean;
|
|
221
|
+
crossOrigin?: "anonymous" | "use-credentials";
|
|
222
|
+
loop?: boolean;
|
|
223
|
+
muted?: boolean;
|
|
224
|
+
preload?: "none" | "metadata" | "auto" | "";
|
|
225
|
+
src?: string;
|
|
226
|
+
}
|
|
227
|
+
/**
|
|
228
|
+
* Properties permitted on the `<base>` element.
|
|
229
|
+
*
|
|
230
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
|
|
231
|
+
*/
|
|
232
|
+
export interface JsxBaseElementProps extends JsxHtmlGlobalProps {
|
|
233
|
+
href?: string;
|
|
234
|
+
target?: string;
|
|
235
|
+
}
|
|
236
|
+
/**
|
|
237
|
+
* Properties permitted on the `<blockquote>` element.
|
|
238
|
+
*
|
|
239
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote
|
|
240
|
+
*/
|
|
241
|
+
export interface JsxBlockquoteElementProps extends JsxHtmlGlobalProps {
|
|
242
|
+
cite?: string;
|
|
243
|
+
}
|
|
244
|
+
/**
|
|
245
|
+
* Properties permitted on the `<br>` element.
|
|
246
|
+
*
|
|
247
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/br
|
|
248
|
+
*/
|
|
249
|
+
export interface JsxBrElementProps extends JsxHtmlGlobalProps {
|
|
250
|
+
clear?: string;
|
|
251
|
+
}
|
|
252
|
+
/**
|
|
253
|
+
* Properties permitted on the `<button>` element.
|
|
254
|
+
*
|
|
255
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button
|
|
256
|
+
*/
|
|
257
|
+
export interface JsxButtonElementProps extends JsxHtmlGlobalProps {
|
|
258
|
+
autofocus?: boolean;
|
|
259
|
+
disabled?: boolean;
|
|
260
|
+
form?: string;
|
|
261
|
+
formAction?: string;
|
|
262
|
+
formEnctype?: "application/x-www-form-urlencoded" | "multipart/form-data" | "text/plain";
|
|
263
|
+
formMethod?: "get" | "post";
|
|
264
|
+
formNoValidate?: boolean;
|
|
265
|
+
formTarget?: "_self" | "_blank" | "_parent" | "_top";
|
|
266
|
+
name?: string;
|
|
267
|
+
type?: "submit" | "reset" | "button";
|
|
268
|
+
value?: string;
|
|
269
|
+
}
|
|
270
|
+
/**
|
|
271
|
+
* Properties permitted on the `<canvas>` element.
|
|
272
|
+
*
|
|
273
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/canvas
|
|
274
|
+
*/
|
|
275
|
+
export interface JsxCanvasElementProps extends JsxHtmlGlobalProps {
|
|
276
|
+
height?: number;
|
|
277
|
+
width?: number;
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* Properties permitted on the `<col>` element.
|
|
281
|
+
*
|
|
282
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col
|
|
283
|
+
*/
|
|
284
|
+
export interface JsxColElementProps extends JsxHtmlGlobalProps {
|
|
285
|
+
span?: number;
|
|
286
|
+
}
|
|
287
|
+
/**
|
|
288
|
+
* Properties permitted on the `<colgroup>` element.
|
|
289
|
+
*
|
|
290
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup
|
|
291
|
+
*/
|
|
292
|
+
export interface JsxColgroupElementProps extends JsxHtmlGlobalProps {
|
|
293
|
+
span?: number;
|
|
294
|
+
}
|
|
295
|
+
/**
|
|
296
|
+
* Properties permitted on the `<data>` element.
|
|
297
|
+
*
|
|
298
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/data
|
|
299
|
+
*/
|
|
300
|
+
export interface JsxDataElementProps extends JsxHtmlGlobalProps {
|
|
301
|
+
value?: string;
|
|
302
|
+
}
|
|
303
|
+
/**
|
|
304
|
+
* Properties permitted on the `<del>` element.
|
|
305
|
+
*
|
|
306
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/del
|
|
307
|
+
*/
|
|
308
|
+
export interface JsxDelElementProps extends JsxHtmlGlobalProps {
|
|
309
|
+
cite?: string;
|
|
310
|
+
dateTime?: string;
|
|
311
|
+
}
|
|
312
|
+
/**
|
|
313
|
+
* Properties permitted on the `<details>` element.
|
|
314
|
+
*
|
|
315
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details
|
|
316
|
+
*/
|
|
317
|
+
export interface JsxDetailsElementProps extends JsxHtmlGlobalProps {
|
|
318
|
+
open?: boolean;
|
|
319
|
+
}
|
|
320
|
+
/**
|
|
321
|
+
* Properties permitted on the `<dialog>` element.
|
|
322
|
+
*
|
|
323
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog
|
|
324
|
+
*/
|
|
325
|
+
export interface JsxDialogElementProps extends JsxHtmlGlobalProps {
|
|
326
|
+
open?: boolean;
|
|
327
|
+
}
|
|
328
|
+
/**
|
|
329
|
+
* Properties permitted on the `<embed>` element.
|
|
330
|
+
*
|
|
331
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/embed
|
|
332
|
+
*/
|
|
333
|
+
export interface JsxEmbedElementProps extends JsxHtmlGlobalProps {
|
|
334
|
+
height?: number;
|
|
335
|
+
src?: string;
|
|
336
|
+
type?: string;
|
|
337
|
+
width?: number;
|
|
338
|
+
}
|
|
339
|
+
/**
|
|
340
|
+
* Properties permitted on the `<fieldset>` element.
|
|
341
|
+
*
|
|
342
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset
|
|
343
|
+
*/
|
|
344
|
+
export interface JsxFieldsetElementProps extends JsxHtmlGlobalProps {
|
|
345
|
+
disabled?: boolean;
|
|
346
|
+
form?: string;
|
|
347
|
+
name?: string;
|
|
348
|
+
}
|
|
349
|
+
/**
|
|
350
|
+
* Properties permitted on the `<form>` element.
|
|
351
|
+
*
|
|
352
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form
|
|
353
|
+
*/
|
|
354
|
+
export interface JsxFormElementProps extends JsxHtmlGlobalProps {
|
|
355
|
+
"accept-charset"?: string;
|
|
356
|
+
action?: string;
|
|
357
|
+
enctype?: "application/x-www-form-urlencoded" | "multipart/form-data" | "text/plain";
|
|
358
|
+
autocomplete?: string;
|
|
359
|
+
method?: "get" | "post" | "dialog";
|
|
360
|
+
name?: string;
|
|
361
|
+
noValidate?: boolean;
|
|
362
|
+
rel?: string;
|
|
363
|
+
target?: "_self" | "_blank" | "_parent" | "_top";
|
|
364
|
+
}
|
|
365
|
+
/**
|
|
366
|
+
* Properties permitted on the `<html>` element.
|
|
367
|
+
*
|
|
368
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/html
|
|
369
|
+
*/
|
|
370
|
+
export interface JsxHtmlElementProps extends JsxHtmlGlobalProps {
|
|
371
|
+
xmlns?: string;
|
|
372
|
+
}
|
|
373
|
+
/**
|
|
374
|
+
* Properties permitted on the `<iframe>` element.
|
|
375
|
+
*
|
|
376
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe
|
|
377
|
+
*/
|
|
378
|
+
export interface JsxIframeElementProps extends JsxHtmlGlobalProps {
|
|
379
|
+
allow?: string;
|
|
380
|
+
height?: number;
|
|
381
|
+
name?: string;
|
|
382
|
+
referrerPolicy?: "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
|
|
383
|
+
sandbox?: string;
|
|
384
|
+
src?: string;
|
|
385
|
+
srcdoc?: string;
|
|
386
|
+
width?: number;
|
|
387
|
+
}
|
|
388
|
+
/**
|
|
389
|
+
* Properties permitted on the `<img>` element.
|
|
390
|
+
*
|
|
391
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img
|
|
392
|
+
*/
|
|
393
|
+
export interface JsxImgElementProps extends JsxHtmlGlobalProps {
|
|
394
|
+
alt?: string;
|
|
395
|
+
crossOrigin?: "anonymous" | "use-credentials";
|
|
396
|
+
decoding?: "async" | "sync" | "auto";
|
|
397
|
+
height?: number;
|
|
398
|
+
isMap?: boolean;
|
|
399
|
+
referrerPolicy?: "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
|
|
400
|
+
sizes?: string;
|
|
401
|
+
src: string;
|
|
402
|
+
srcset?: string;
|
|
403
|
+
width?: number;
|
|
404
|
+
}
|
|
405
|
+
/**
|
|
406
|
+
* Properties permitted on the `<input>` element.
|
|
407
|
+
*
|
|
408
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input
|
|
409
|
+
*/
|
|
410
|
+
export interface JsxInputElementProps extends JsxHtmlGlobalProps {
|
|
411
|
+
accept?: string;
|
|
412
|
+
alt?: string;
|
|
413
|
+
autocomplete?: string;
|
|
414
|
+
autofocus?: boolean;
|
|
415
|
+
capture?: string;
|
|
416
|
+
checked?: boolean;
|
|
417
|
+
dirName?: string;
|
|
418
|
+
disabled?: boolean;
|
|
419
|
+
form?: string;
|
|
420
|
+
formAction?: string;
|
|
421
|
+
formEnctype?: string;
|
|
422
|
+
formMethod?: string;
|
|
423
|
+
formNoValidate?: boolean;
|
|
424
|
+
formTarget?: string;
|
|
425
|
+
height?: number;
|
|
426
|
+
list?: string;
|
|
427
|
+
max?: number;
|
|
428
|
+
maxLength?: number;
|
|
429
|
+
min?: string;
|
|
430
|
+
minLength?: number;
|
|
431
|
+
multiple?: boolean;
|
|
432
|
+
name?: string;
|
|
433
|
+
pattern?: string;
|
|
434
|
+
placeholder?: string;
|
|
435
|
+
readOnly?: boolean;
|
|
436
|
+
required?: boolean;
|
|
437
|
+
size?: number;
|
|
438
|
+
src?: string;
|
|
439
|
+
step?: number;
|
|
440
|
+
type?: "button" | "checkbox" | "color" | "date" | "datetime-local" | "email" | "file" | "hidden" | "image" | "month" | "number" | "password" | "radio" | "range" | "reset" | "search" | "submit" | "tel" | "text" | "time" | "url" | "week";
|
|
441
|
+
value?: string;
|
|
442
|
+
width?: number;
|
|
443
|
+
}
|
|
444
|
+
/**
|
|
445
|
+
* Properties permitted on the `<ins>` element.
|
|
446
|
+
*
|
|
447
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ins
|
|
448
|
+
*/
|
|
449
|
+
export interface JsxInsElementProps extends JsxHtmlGlobalProps {
|
|
450
|
+
cite?: string;
|
|
451
|
+
dateTime?: string;
|
|
452
|
+
}
|
|
453
|
+
/**
|
|
454
|
+
* Properties permitted on the `<label>` element.
|
|
455
|
+
*
|
|
456
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label
|
|
457
|
+
*/
|
|
458
|
+
export interface JsxLabelElementProps extends JsxHtmlGlobalProps {
|
|
459
|
+
for?: string;
|
|
460
|
+
}
|
|
461
|
+
/**
|
|
462
|
+
* Properties permitted on the `<li>` element.
|
|
463
|
+
*
|
|
464
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/li
|
|
465
|
+
*/
|
|
466
|
+
export interface JsxLiElementProps extends JsxHtmlGlobalProps {
|
|
467
|
+
value?: number;
|
|
468
|
+
}
|
|
469
|
+
/**
|
|
470
|
+
* Properties permitted on the `<link>` element.
|
|
471
|
+
*
|
|
472
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link
|
|
473
|
+
*/
|
|
474
|
+
export interface JsxLinkElementProps extends JsxHtmlGlobalProps {
|
|
475
|
+
as?: "audio" | "document" | "embed" | "fetch" | "font" | "image" | "object" | "script" | "style" | "track" | "video" | "worker";
|
|
476
|
+
crossOrigin?: "anonymous" | "use-credentials";
|
|
477
|
+
disabled?: boolean;
|
|
478
|
+
href?: string;
|
|
479
|
+
hreflang?: string;
|
|
480
|
+
imageSizes?: string;
|
|
481
|
+
imageSrcset?: string;
|
|
482
|
+
media?: string;
|
|
483
|
+
rel?: string;
|
|
484
|
+
sizes?: string;
|
|
485
|
+
type?: string;
|
|
486
|
+
}
|
|
487
|
+
/**
|
|
488
|
+
* Properties permitted on the `<map>` element.
|
|
489
|
+
*
|
|
490
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/map
|
|
491
|
+
*/
|
|
492
|
+
export interface JsxMapElementProps extends JsxHtmlGlobalProps {
|
|
493
|
+
name?: string;
|
|
494
|
+
}
|
|
495
|
+
/**
|
|
496
|
+
* Properties permitted on the `<meta>` element.
|
|
497
|
+
*
|
|
498
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
|
|
499
|
+
*/
|
|
500
|
+
export interface JsxMetaElementProps extends JsxHtmlGlobalProps {
|
|
501
|
+
"http-equiv"?: "content-security-policy" | "content-type" | "default-style" | "x-ua-compatible" | "refresh";
|
|
502
|
+
charset?: "utf-8";
|
|
503
|
+
content?: string;
|
|
504
|
+
name?: string;
|
|
505
|
+
}
|
|
506
|
+
/**
|
|
507
|
+
* Properties permitted on the `<meter>` element.
|
|
508
|
+
*
|
|
509
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meter
|
|
510
|
+
*/
|
|
511
|
+
export interface JsxMeterElementProps extends JsxHtmlGlobalProps {
|
|
512
|
+
form?: string;
|
|
513
|
+
high?: number;
|
|
514
|
+
low?: number;
|
|
515
|
+
max?: number;
|
|
516
|
+
min?: number;
|
|
517
|
+
optimum?: number;
|
|
518
|
+
value?: number;
|
|
519
|
+
}
|
|
520
|
+
/**
|
|
521
|
+
* Properties permitted on the `<object>` element.
|
|
522
|
+
*
|
|
523
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/object
|
|
524
|
+
*/
|
|
525
|
+
export interface JsxObjectElementProps extends JsxHtmlGlobalProps {
|
|
526
|
+
data?: string;
|
|
527
|
+
form?: string;
|
|
528
|
+
height?: number;
|
|
529
|
+
name?: string;
|
|
530
|
+
type?: string;
|
|
531
|
+
useMap?: string;
|
|
532
|
+
width?: number;
|
|
533
|
+
}
|
|
534
|
+
/**
|
|
535
|
+
* Properties permitted on the `<ol>` element.
|
|
536
|
+
*
|
|
537
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol
|
|
538
|
+
*/
|
|
539
|
+
export interface JsxOlElementProps extends JsxHtmlGlobalProps {
|
|
540
|
+
reversed?: boolean;
|
|
541
|
+
start?: number;
|
|
542
|
+
type?: "a" | "A" | "i" | "I" | "1";
|
|
543
|
+
}
|
|
544
|
+
/**
|
|
545
|
+
* Properties permitted on the `<optgroup>` element.
|
|
546
|
+
*
|
|
547
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/optgroup
|
|
548
|
+
*/
|
|
549
|
+
export interface JsxOptgroupElementProps extends JsxHtmlGlobalProps {
|
|
550
|
+
disabled?: boolean;
|
|
551
|
+
label: string;
|
|
552
|
+
}
|
|
553
|
+
/**
|
|
554
|
+
* Properties permitted on the `<option>` element.
|
|
555
|
+
*
|
|
556
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
|
|
557
|
+
*/
|
|
558
|
+
export interface JsxOptionElementProps extends JsxHtmlGlobalProps {
|
|
559
|
+
disabled?: boolean;
|
|
560
|
+
label?: string;
|
|
561
|
+
selected?: boolean;
|
|
562
|
+
value?: string;
|
|
563
|
+
}
|
|
564
|
+
/**
|
|
565
|
+
* Properties permitted on the `<output>` element.
|
|
566
|
+
*
|
|
567
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/output
|
|
568
|
+
*/
|
|
569
|
+
export interface JsxOutputElementProps extends JsxHtmlGlobalProps {
|
|
570
|
+
for?: string;
|
|
571
|
+
form?: string;
|
|
572
|
+
name?: string;
|
|
573
|
+
}
|
|
574
|
+
/**
|
|
575
|
+
* Properties permitted on the `<param>` element.
|
|
576
|
+
*
|
|
577
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/param
|
|
578
|
+
*/
|
|
579
|
+
export interface JsxParamElementProps extends JsxHtmlGlobalProps {
|
|
580
|
+
name?: string;
|
|
581
|
+
value?: string;
|
|
582
|
+
}
|
|
583
|
+
/**
|
|
584
|
+
* Properties permitted on the `<portal>` element.
|
|
585
|
+
*
|
|
586
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/portal
|
|
587
|
+
*/
|
|
588
|
+
export interface JsxPortalElementProps extends JsxHtmlGlobalProps {
|
|
589
|
+
referrerPolicy?: "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
|
|
590
|
+
src: string;
|
|
591
|
+
}
|
|
592
|
+
/**
|
|
593
|
+
* Properties permitted on the `<progress>` element.
|
|
594
|
+
*
|
|
595
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress
|
|
596
|
+
*/
|
|
597
|
+
export interface JsxProgressElementProps extends JsxHtmlGlobalProps {
|
|
598
|
+
max?: number;
|
|
599
|
+
value?: number;
|
|
600
|
+
}
|
|
601
|
+
/**
|
|
602
|
+
* Properties permitted on the `<q>` element.
|
|
603
|
+
*
|
|
604
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/q
|
|
605
|
+
*/
|
|
606
|
+
export interface JsxQElementProps extends JsxHtmlGlobalProps {
|
|
607
|
+
cite?: string;
|
|
608
|
+
}
|
|
609
|
+
/**
|
|
610
|
+
* Properties permitted on the `<script>` element.
|
|
611
|
+
*
|
|
612
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script
|
|
613
|
+
*/
|
|
614
|
+
export interface JsxScriptElementProps extends JsxHtmlGlobalProps {
|
|
615
|
+
async?: boolean;
|
|
616
|
+
crossOrigin?: "anonymous" | "use-credentials";
|
|
617
|
+
defer?: boolean;
|
|
618
|
+
integrity?: string;
|
|
619
|
+
noModule?: boolean;
|
|
620
|
+
referrerPolicy?: "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
|
|
621
|
+
src?: string;
|
|
622
|
+
type?: "module" | (string & {});
|
|
623
|
+
}
|
|
624
|
+
/**
|
|
625
|
+
* Properties permitted on the `<select>` element.
|
|
626
|
+
*
|
|
627
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select
|
|
628
|
+
*/
|
|
629
|
+
export interface JsxSelectElementProps extends JsxHtmlGlobalProps {
|
|
630
|
+
autocomplete?: string;
|
|
631
|
+
autofocus?: boolean;
|
|
632
|
+
disabled?: boolean;
|
|
633
|
+
form?: string;
|
|
634
|
+
multiple?: boolean;
|
|
635
|
+
name?: string;
|
|
636
|
+
required?: boolean;
|
|
637
|
+
size?: number;
|
|
638
|
+
}
|
|
639
|
+
/**
|
|
640
|
+
* Properties permitted on the `<slot>` element.
|
|
641
|
+
*
|
|
642
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot
|
|
643
|
+
*/
|
|
644
|
+
export interface JsxSlotElementProps extends JsxHtmlGlobalProps {
|
|
645
|
+
name?: string;
|
|
646
|
+
}
|
|
647
|
+
/**
|
|
648
|
+
* Properties permitted on the `<source>` element.
|
|
649
|
+
*
|
|
650
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/source
|
|
651
|
+
*/
|
|
652
|
+
export interface JsxSourceElementProps extends JsxHtmlGlobalProps {
|
|
653
|
+
media?: string;
|
|
654
|
+
sizes?: string;
|
|
655
|
+
src?: string;
|
|
656
|
+
srcset?: string;
|
|
657
|
+
type?: string;
|
|
658
|
+
}
|
|
659
|
+
/**
|
|
660
|
+
* Properties permitted on the `<style>` element.
|
|
661
|
+
*
|
|
662
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style
|
|
663
|
+
*/
|
|
664
|
+
export interface JsxStyleElementProps extends JsxHtmlGlobalProps {
|
|
665
|
+
media?: string;
|
|
666
|
+
type?: string;
|
|
667
|
+
nonce?: string;
|
|
668
|
+
}
|
|
669
|
+
/**
|
|
670
|
+
* Properties permitted on the `<td>` element.
|
|
671
|
+
*
|
|
672
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td
|
|
673
|
+
*/
|
|
674
|
+
export interface JsxTdElementProps extends JsxHtmlGlobalProps {
|
|
675
|
+
colSpan?: number;
|
|
676
|
+
headers?: string;
|
|
677
|
+
rowSpan?: number;
|
|
678
|
+
}
|
|
679
|
+
/**
|
|
680
|
+
* Properties permitted on the `<textarea>` element.
|
|
681
|
+
*
|
|
682
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea
|
|
683
|
+
*/
|
|
684
|
+
export interface JsxTextareaElementProps extends JsxHtmlGlobalProps {
|
|
685
|
+
autocomplete?: string;
|
|
686
|
+
autofocus?: boolean;
|
|
687
|
+
cols?: number;
|
|
688
|
+
disabled?: boolean;
|
|
689
|
+
maxLength?: number;
|
|
690
|
+
minLength?: number;
|
|
691
|
+
name?: string;
|
|
692
|
+
placeholder?: string;
|
|
693
|
+
readOnly?: boolean;
|
|
694
|
+
required?: boolean;
|
|
695
|
+
rows?: number;
|
|
696
|
+
wrap?: "hard" | "soft";
|
|
697
|
+
}
|
|
698
|
+
/**
|
|
699
|
+
* Properties permitted on the `<th>` element.
|
|
700
|
+
*
|
|
701
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th
|
|
702
|
+
*/
|
|
703
|
+
export interface JsxThElementProps extends JsxHtmlGlobalProps {
|
|
704
|
+
abbr?: string;
|
|
705
|
+
colSpan?: number;
|
|
706
|
+
headers?: string;
|
|
707
|
+
rowSpan?: number;
|
|
708
|
+
scope?: "row" | "col" | "rowgroup" | "colgroup";
|
|
709
|
+
}
|
|
710
|
+
/**
|
|
711
|
+
* Properties permitted on the `<time>` element.
|
|
712
|
+
*
|
|
713
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/time
|
|
714
|
+
*/
|
|
715
|
+
export interface JsxTimeElementProps extends JsxHtmlGlobalProps {
|
|
716
|
+
dateTime?: string;
|
|
717
|
+
}
|
|
718
|
+
/**
|
|
719
|
+
* Properties permitted on the `<track>` element.
|
|
720
|
+
*
|
|
721
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/track
|
|
722
|
+
*/
|
|
723
|
+
export interface JsxTrackElementProps extends JsxHtmlGlobalProps {
|
|
724
|
+
default?: boolean;
|
|
725
|
+
kind?: "subtitles" | "captions" | "descriptions" | "chapters" | "metadata";
|
|
726
|
+
label?: string;
|
|
727
|
+
src?: string;
|
|
728
|
+
srclang?: string;
|
|
729
|
+
}
|
|
730
|
+
/**
|
|
731
|
+
* Properties permitted on the `<video>` element.
|
|
732
|
+
*
|
|
733
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video
|
|
734
|
+
*/
|
|
735
|
+
export interface JsxVideoElementProps extends JsxHtmlGlobalProps {
|
|
736
|
+
autoplay?: boolean;
|
|
737
|
+
controls?: boolean;
|
|
738
|
+
crossOrigin?: "anonymous" | "use-credentials";
|
|
739
|
+
height?: number;
|
|
740
|
+
loop?: boolean;
|
|
741
|
+
muted?: boolean;
|
|
742
|
+
playsInline?: boolean;
|
|
743
|
+
poster?: string;
|
|
744
|
+
preload?: string;
|
|
745
|
+
src?: string;
|
|
746
|
+
width?: number;
|
|
747
|
+
}
|
|
748
|
+
export interface JsxSvgCoreProps {
|
|
749
|
+
id?: string;
|
|
750
|
+
lang?: string;
|
|
751
|
+
tabindex?: string;
|
|
752
|
+
"xml:base"?: string;
|
|
753
|
+
xmlns?: string;
|
|
754
|
+
}
|
|
755
|
+
export interface JsxSvgStyleProps {
|
|
756
|
+
class?: string;
|
|
757
|
+
style?: string;
|
|
758
|
+
}
|
|
759
|
+
export interface JsxSvgConditionalProcessingProps {
|
|
760
|
+
systemLanguage?: string;
|
|
761
|
+
}
|
|
762
|
+
export interface JsxSvgPresentationProps {
|
|
763
|
+
"alignment-baseline"?: "baseline" | "text-bottom" | "text-before-edge" | "middle" | "central" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "top" | "center" | "bottom";
|
|
764
|
+
"baseline-shift"?: number | "sub" | "super";
|
|
765
|
+
"clip-path"?: string;
|
|
766
|
+
"clip-rule"?: "nonzero" | "evenodd" | "inherit";
|
|
767
|
+
color?: string;
|
|
768
|
+
"color-interpolation"?: "auto" | "sRGB" | "linearRGB";
|
|
769
|
+
"color-interpolation-filters"?: "auto" | "sRGB" | "linearRGB";
|
|
770
|
+
cursor?: string;
|
|
771
|
+
direction?: "ltr" | "rtl";
|
|
772
|
+
display?: string;
|
|
773
|
+
"dominant-baseline"?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging" | "text-top";
|
|
774
|
+
dy?: string;
|
|
775
|
+
fill?: string;
|
|
776
|
+
"fill-opacity"?: number;
|
|
777
|
+
"fill-rule"?: "nonzero" | "evenodd";
|
|
778
|
+
filter?: string;
|
|
779
|
+
"flood-color"?: string;
|
|
780
|
+
"flood-opacity"?: number;
|
|
781
|
+
"font-family"?: string;
|
|
782
|
+
"font-size"?: string;
|
|
783
|
+
"font-size-adjust"?: "none" | number;
|
|
784
|
+
"font-stretch"?: string;
|
|
785
|
+
"font-style"?: "normal" | "italic" | "oblique" | string;
|
|
786
|
+
"font-variant"?: string;
|
|
787
|
+
"font-weight"?: "normal" | "bold" | "bolder" | "lighter" | number | string;
|
|
788
|
+
"image-rendering"?: "auto" | "optimizeSpeed" | "optimizeQuality";
|
|
789
|
+
"letter-spacing"?: string;
|
|
790
|
+
"lighting-color"?: string;
|
|
791
|
+
"marker-end"?: string;
|
|
792
|
+
"marker-mid"?: string;
|
|
793
|
+
"marker-start"?: string;
|
|
794
|
+
mask?: string;
|
|
795
|
+
opacity?: number;
|
|
796
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto";
|
|
797
|
+
"pointer-events"?: "bounding-box" | "visiblePainted" | "visibleFill" | "visibleStroke" | "visible" | "painted" | "fill" | "stroke" | "all" | "none";
|
|
798
|
+
"shape-rendering"?: "auto" | "optimizeSpeed" | "crispEdges" | "geometricPrecision";
|
|
799
|
+
"stop-color"?: string;
|
|
800
|
+
"stop-opacity"?: string;
|
|
801
|
+
stroke?: string;
|
|
802
|
+
"stroke-dasharray"?: string;
|
|
803
|
+
"stroke-dashoffset"?: string;
|
|
804
|
+
"stroke-linecap"?: "butt" | "round" | "square";
|
|
805
|
+
"stroke-linejoin"?: "arcs" | "bevel |miter" | "miter-clip" | "round";
|
|
806
|
+
"stroke-miterlimit"?: number;
|
|
807
|
+
"stroke-opacity"?: string | number;
|
|
808
|
+
"stroke-width"?: string | number;
|
|
809
|
+
"text-anchor"?: "start" | "middle" | "end";
|
|
810
|
+
"text-decoration"?: string;
|
|
811
|
+
"text-rendering"?: "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision";
|
|
812
|
+
transform?: string;
|
|
813
|
+
"transform-origin"?: string;
|
|
814
|
+
"unicode-bidi"?: "normal" | "embed" | "isolate" | "bidi-override" | "isolate-override" | "plaintext";
|
|
815
|
+
"vector-effect"?: "none" | "non-scaling-stroke" | "non-scaling-size" | "non-rotation" | "fixed-position";
|
|
816
|
+
visibility?: "visible" | "hidden" | "collapse";
|
|
817
|
+
"word-spacing"?: string;
|
|
818
|
+
"writing-mode"?: "horizontal-tb" | "vertical-rl" | "vertical-lr";
|
|
819
|
+
}
|
|
820
|
+
/**
|
|
821
|
+
* Properties permitted on the `<svg>` element.
|
|
822
|
+
*
|
|
823
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/svg
|
|
824
|
+
*/
|
|
825
|
+
export interface JsxSvgElementProps extends JsxSvgCoreProps, JsxSvgStyleProps, JsxSvgPresentationProps {
|
|
826
|
+
height?: string | number;
|
|
827
|
+
preserveAspectRatio?: `${"none" | "xMinYMin" | "xMaxYMin" | "xMinYMid" | "xMaxYMid" | "xMinYMax" | "xMidYMax" | "xMaxYMax"}${"" | " meet" | " slice"}`;
|
|
828
|
+
viewBox?: string;
|
|
829
|
+
width?: string | number;
|
|
830
|
+
x?: string | number;
|
|
831
|
+
y?: string | number;
|
|
832
|
+
}
|
|
833
|
+
/**
|
|
834
|
+
* Properties permitted on the `<g>` element.
|
|
835
|
+
*
|
|
836
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/g
|
|
837
|
+
*/
|
|
838
|
+
export interface JsxGElementProps extends JsxSvgCoreProps, JsxSvgStyleProps, JsxSvgConditionalProcessingProps, JsxSvgPresentationProps {
|
|
839
|
+
}
|
|
840
|
+
/**
|
|
841
|
+
* Properties permitted on the `<path>` element.
|
|
842
|
+
*
|
|
843
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/path
|
|
844
|
+
*/
|
|
845
|
+
export interface JsxPathElementProps extends JsxSvgCoreProps, JsxSvgStyleProps, JsxSvgConditionalProcessingProps, JsxSvgPresentationProps {
|
|
846
|
+
d: string;
|
|
847
|
+
pathLength?: number;
|
|
848
|
+
}
|
|
849
|
+
/**
|
|
850
|
+
* Properties permitted on the `<rect>` element.
|
|
851
|
+
*
|
|
852
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/rect
|
|
853
|
+
*/
|
|
854
|
+
export interface JsxRectElementProps extends JsxSvgCoreProps, JsxSvgStyleProps, JsxSvgConditionalProcessingProps, JsxSvgPresentationProps {
|
|
855
|
+
height?: string | number;
|
|
856
|
+
pathLength?: number;
|
|
857
|
+
rx?: string | number;
|
|
858
|
+
ry?: string | number;
|
|
859
|
+
width?: string | number;
|
|
860
|
+
x?: string | number;
|
|
861
|
+
y?: string | number;
|
|
862
|
+
}
|
|
863
|
+
/**
|
|
864
|
+
* Properties permitted on the `<circle>` element.
|
|
865
|
+
*
|
|
866
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/circle
|
|
867
|
+
*/
|
|
868
|
+
export interface JsxCircleElementProps extends JsxSvgCoreProps, JsxSvgStyleProps, JsxSvgConditionalProcessingProps, JsxSvgPresentationProps {
|
|
869
|
+
cx?: string | number;
|
|
870
|
+
cy?: string | number;
|
|
871
|
+
r?: string | number;
|
|
872
|
+
pathLength?: number;
|
|
873
|
+
}
|
|
874
|
+
/**
|
|
875
|
+
* Properties permitted on the `<ellipse>` element.
|
|
876
|
+
*
|
|
877
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/ellipse
|
|
878
|
+
*/
|
|
879
|
+
export interface JsxEllipseElementProps extends JsxSvgCoreProps, JsxSvgStyleProps, JsxSvgConditionalProcessingProps, JsxSvgPresentationProps {
|
|
880
|
+
cx?: string | number;
|
|
881
|
+
cy?: string | number;
|
|
882
|
+
rx?: string | number;
|
|
883
|
+
ry?: string | number;
|
|
884
|
+
pathLength?: number;
|
|
885
|
+
}
|
|
886
|
+
/**
|
|
887
|
+
* Properties permitted on the `<polygon>` element.
|
|
888
|
+
*
|
|
889
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polygon
|
|
890
|
+
*/
|
|
891
|
+
export interface JsxPolygonElementProps extends JsxSvgCoreProps, JsxSvgStyleProps, JsxSvgConditionalProcessingProps, JsxSvgPresentationProps {
|
|
892
|
+
points?: string;
|
|
893
|
+
pathLength?: number;
|
|
894
|
+
}
|
|
895
|
+
/** Properties permitted on the `<polyline>` element.
|
|
896
|
+
*
|
|
897
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polyline
|
|
898
|
+
*/
|
|
899
|
+
export interface JsxPolylineElementProps extends JsxSvgCoreProps, JsxSvgStyleProps, JsxSvgConditionalProcessingProps, JsxSvgPresentationProps {
|
|
900
|
+
points?: string;
|
|
901
|
+
pathLength?: number;
|
|
902
|
+
}
|
|
903
|
+
/** Properties permitted on the `<line>` element.
|
|
904
|
+
*
|
|
905
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/line
|
|
906
|
+
*/
|
|
907
|
+
export interface JsxLineElementProps extends JsxSvgCoreProps, JsxSvgStyleProps, JsxSvgConditionalProcessingProps, JsxSvgPresentationProps {
|
|
908
|
+
x1?: string | number;
|
|
909
|
+
y1?: string | number;
|
|
910
|
+
x2?: string | number;
|
|
911
|
+
y2?: string | number;
|
|
912
|
+
pathLength?: number;
|
|
913
|
+
}
|
|
914
|
+
/**
|
|
915
|
+
* Properties permitted on the `<use>` element.
|
|
916
|
+
*
|
|
917
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use
|
|
918
|
+
*/
|
|
919
|
+
export interface JsxUseElementProps extends JsxSvgCoreProps, JsxSvgStyleProps, JsxSvgConditionalProcessingProps, JsxSvgPresentationProps {
|
|
920
|
+
href: string;
|
|
921
|
+
x?: string | number;
|
|
922
|
+
y?: string | number;
|
|
923
|
+
width?: string | number;
|
|
924
|
+
height?: string | number;
|
|
925
|
+
}
|
|
926
|
+
/**
|
|
927
|
+
* Properties permitted on the `<text>` element.
|
|
928
|
+
*
|
|
929
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/text
|
|
930
|
+
*/
|
|
931
|
+
export interface JsxTextElementProps extends JsxSvgCoreProps, JsxSvgStyleProps, JsxSvgPresentationProps {
|
|
932
|
+
x?: string | number;
|
|
933
|
+
y?: string | number;
|
|
934
|
+
}
|
|
935
|
+
/**
|
|
936
|
+
* Properties permitted on the `<image>` element.
|
|
937
|
+
*
|
|
938
|
+
* Reference: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/image
|
|
939
|
+
*/
|
|
940
|
+
export interface JsxImageElementProps extends JsxSvgCoreProps {
|
|
941
|
+
x?: string | number;
|
|
942
|
+
y?: string | number;
|
|
943
|
+
width?: string | number;
|
|
944
|
+
height?: string | number;
|
|
945
|
+
href: string;
|
|
946
|
+
preserveAspectRatio?: string;
|
|
947
|
+
crossorigin?: "anonymous" | "use-credentials";
|
|
948
|
+
decoding?: "async" | "sync" | "auto";
|
|
949
|
+
}
|