@rindo/core 1.8.12 → 2.5.2
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.md +27 -27
- package/bin/cli.ts +20 -0
- package/bin/rindo +51 -22
- package/cli/index.cjs +1263 -0
- package/cli/index.d.ts +15 -0
- package/cli/index.js +1237 -0
- package/cli/package.json +14 -0
- package/compiler/lib.d.ts +24 -0
- package/compiler/lib.dom.d.ts +20230 -0
- package/compiler/lib.dom.iterable.d.ts +351 -0
- package/compiler/lib.es2015.collection.d.ts +89 -0
- package/compiler/lib.es2015.core.d.ts +517 -0
- package/compiler/lib.es2015.d.ts +30 -0
- package/compiler/lib.es2015.generator.d.ts +79 -0
- package/compiler/lib.es2015.iterable.d.ts +505 -0
- package/compiler/lib.es2015.promise.d.ts +150 -0
- package/compiler/lib.es2015.proxy.d.ts +41 -0
- package/compiler/lib.es2015.reflect.d.ts +123 -0
- package/compiler/lib.es2015.symbol.d.ts +48 -0
- package/compiler/lib.es2015.symbol.wellknown.d.ts +324 -0
- package/compiler/lib.es2016.array.include.d.ts +118 -0
- package/compiler/lib.es2016.d.ts +22 -0
- package/compiler/lib.es2016.full.d.ts +25 -0
- package/compiler/lib.es2017.d.ts +26 -0
- package/compiler/lib.es2017.full.d.ts +25 -0
- package/compiler/lib.es2017.intl.d.ts +32 -0
- package/compiler/lib.es2017.object.d.ts +51 -0
- package/compiler/lib.es2017.sharedmemory.d.ts +137 -0
- package/compiler/lib.es2017.string.d.ts +47 -0
- package/compiler/lib.es2017.typedarrays.d.ts +55 -0
- package/compiler/lib.es2018.asyncgenerator.d.ts +79 -0
- package/compiler/lib.es2018.asynciterable.d.ts +45 -0
- package/compiler/lib.es2018.d.ts +26 -0
- package/compiler/lib.es2018.full.d.ts +25 -0
- package/compiler/lib.es2018.intl.d.ts +61 -0
- package/compiler/lib.es2018.promise.d.ts +32 -0
- package/compiler/lib.es2018.regexp.d.ts +39 -0
- package/compiler/lib.es2019.array.d.ts +85 -0
- package/compiler/lib.es2019.d.ts +25 -0
- package/compiler/lib.es2019.full.d.ts +25 -0
- package/compiler/lib.es2019.object.d.ts +35 -0
- package/compiler/lib.es2019.string.d.ts +33 -0
- package/compiler/lib.es2019.symbol.d.ts +26 -0
- package/compiler/lib.es2020.bigint.d.ts +728 -0
- package/compiler/lib.es2020.d.ts +27 -0
- package/compiler/lib.es2020.full.d.ts +25 -0
- package/compiler/lib.es2020.intl.d.ts +310 -0
- package/compiler/lib.es2020.promise.d.ts +50 -0
- package/compiler/lib.es2020.sharedmemory.d.ts +99 -0
- package/compiler/lib.es2020.string.d.ts +30 -0
- package/compiler/lib.es2020.symbol.wellknown.d.ts +39 -0
- package/compiler/lib.es5.d.ts +4435 -0
- package/compiler/lib.es6.d.ts +25 -0
- package/compiler/lib.esnext.d.ts +25 -0
- package/compiler/lib.esnext.full.d.ts +25 -0
- package/compiler/lib.esnext.intl.d.ts +32 -0
- package/compiler/lib.esnext.promise.d.ts +43 -0
- package/compiler/lib.esnext.string.d.ts +35 -0
- package/compiler/lib.esnext.weakref.d.ts +75 -0
- package/compiler/lib.scripthost.d.ts +327 -0
- package/compiler/lib.webworker.d.ts +6042 -0
- package/compiler/lib.webworker.importscripts.d.ts +26 -0
- package/compiler/lib.webworker.iterable.d.ts +166 -0
- package/compiler/package.json +8 -6
- package/compiler/rindo.d.ts +95 -0
- package/compiler/rindo.js +65051 -6657
- package/compiler/rindo.min.js +4 -0
- package/dependencies.json +103 -0
- package/dev-server/client/app-error.d.ts +18 -0
- package/dev-server/client/events.d.ts +6 -0
- package/dev-server/client/hmr-components.d.ts +1 -0
- package/dev-server/client/hmr-external-styles.d.ts +1 -0
- package/dev-server/client/hmr-images.d.ts +1 -0
- package/dev-server/client/hmr-inline-styles.d.ts +1 -0
- package/dev-server/client/hmr-util.d.ts +9 -0
- package/dev-server/client/hmr-window.d.ts +10 -0
- package/dev-server/client/index.d.ts +6 -0
- package/dev-server/client/index.js +808 -0
- package/dev-server/client/logger.d.ts +5 -0
- package/dev-server/client/package.json +8 -0
- package/dev-server/client/progress.d.ts +3 -0
- package/dev-server/client/status.d.ts +4 -0
- package/dev-server/connector.html +6 -0
- package/dev-server/index.d.ts +3 -0
- package/dev-server/index.js +264 -0
- package/dev-server/open-in-editor-api.js +1 -0
- package/dev-server/package.json +8 -0
- package/dev-server/server-process.js +1738 -0
- package/dev-server/server-worker-thread.js +39 -0
- package/{dist/dev-server → dev-server}/templates/directory-index.html +132 -132
- package/{dist/dev-server → dev-server}/templates/initial-load.html +160 -160
- package/dev-server/ws.js +1 -0
- package/internal/app-data/index.cjs +90 -0
- package/internal/app-data/index.d.ts +4 -0
- package/internal/{client/build-conditionals.mjs → app-data/index.js} +25 -21
- package/internal/app-data/package.json +15 -0
- package/internal/client/css-shim.js +4 -0
- package/internal/client/{dom.rindo-client.mjs → dom.js} +73 -137
- package/{dist/client/index.mjs → internal/client/index.js} +863 -789
- package/internal/client/package.json +8 -0
- package/internal/client/patch-browser.js +120 -0
- package/internal/client/patch-esm.js +23 -0
- package/internal/client/polyfills/core-js.js +11 -10
- package/internal/client/polyfills/css-shim.js +1 -656
- package/internal/client/polyfills/dom.js +79 -146
- package/internal/client/polyfills/es5-html-element.js +1 -18
- package/internal/client/polyfills/index.js +34 -35
- package/internal/client/{shadow-css.rindo-client.mjs → shadow-css.js} +20 -17
- package/internal/hydrate/index.js +1097 -0
- package/internal/hydrate/package.json +7 -0
- package/internal/hydrate/runner.d.ts +217 -0
- package/internal/hydrate/runner.js +777 -0
- package/internal/hydrate/shadow-css.js +146 -0
- package/internal/index.d.ts +4 -18
- package/internal/index.js +1 -1
- package/internal/package.json +9 -6
- package/internal/rindo-core/index.cjs +1 -0
- package/internal/rindo-core/index.d.ts +51 -0
- package/internal/rindo-core/index.js +15 -0
- package/internal/rindo-ext-modules.d.ts +41 -0
- package/internal/rindo-private.d.ts +2128 -0
- package/internal/rindo-public-compiler.d.ts +2170 -0
- package/{dist/declarations/docs.d.ts → internal/rindo-public-docs.d.ts} +13 -1
- package/internal/rindo-public-runtime.d.ts +1555 -0
- package/internal/testing/index.js +1055 -0
- package/internal/testing/package.json +7 -0
- package/internal/testing/shadow-css.js +146 -0
- package/mock-doc/index.cjs +4610 -0
- package/mock-doc/index.d.ts +916 -0
- package/mock-doc/index.js +4574 -2
- package/mock-doc/package.json +15 -10
- package/package.json +132 -186
- package/readme.md +21 -174
- package/screenshot/compare/build/app.css +1 -1
- package/screenshot/compare/build/app.esm.js +1 -1
- package/screenshot/compare/build/app.js +33 -818
- package/screenshot/compare/build/{p-113f7459.js → p-081b0641.js} +1 -1
- package/screenshot/compare/build/p-227a1e18.entry.js +1 -0
- package/screenshot/compare/build/p-2c298727.entry.js +1 -0
- package/screenshot/compare/build/p-5479268c.entry.js +1 -0
- package/screenshot/compare/build/p-573ec8a4.entry.js +1 -0
- package/screenshot/compare/build/p-6ba08604.entry.js +1 -0
- package/screenshot/compare/build/p-6bc63295.entry.js +1 -0
- package/screenshot/compare/build/p-7a3759fd.entry.js +1 -0
- package/screenshot/compare/build/{p-ejpsp3kx.js → p-7b4e3ba7.js} +1 -1
- package/screenshot/compare/build/p-988eb362.css +1 -0
- package/screenshot/compare/build/p-9b6a9315.js +1 -0
- package/screenshot/compare/build/p-b4cc611c.entry.js +1 -0
- package/screenshot/compare/build/p-d1bf53f5.entry.js +1 -0
- package/screenshot/compare/build/{p-efb0eac6.js → p-e2efe0df.js} +1 -1
- package/screenshot/compare/build/p-e8ca6d97.entry.js +1 -0
- package/screenshot/compare/build/p-ec2f13e0.entry.js +1 -0
- package/screenshot/compare/build/p-f0b99977.entry.js +1 -0
- package/screenshot/compare/build/p-f4745c2f.entry.js +1 -0
- package/screenshot/compare/build/p-fbbae598.js +1 -0
- package/screenshot/compare/host.config.json +14 -14
- package/screenshot/compare/index.html +1 -1
- package/{dist/screenshot → screenshot}/connector-base.d.ts +1 -1
- package/{dist/screenshot → screenshot}/connector-local.d.ts +1 -1
- package/screenshot/connector.js +2 -3
- package/{dist/screenshot → screenshot}/index.d.ts +1 -1
- package/screenshot/index.js +659 -2
- package/screenshot/local-connector.js +2 -3
- package/screenshot/package.json +15 -13
- package/screenshot/pixel-match.js +62 -49
- package/screenshot/screenshot-compare.d.ts +3 -0
- package/{dist/screenshot → screenshot}/screenshot-fs.d.ts +1 -1
- package/sys/deno/index.js +1785 -0
- package/sys/deno/node-compat.js +2654 -0
- package/sys/deno/worker.js +44 -0
- package/sys/node/autoprefixer.js +8 -0
- package/sys/node/glob.js +1 -0
- package/sys/node/graceful-fs.js +1 -0
- package/sys/node/index.d.ts +18 -0
- package/sys/node/index.js +1386 -2
- package/sys/node/node-fetch.js +1 -0
- package/sys/node/package.json +8 -5
- package/sys/node/prompts.js +1 -0
- package/sys/node/worker.js +52 -0
- package/{dist/testing → testing}/index.d.ts +5 -6
- package/testing/index.js +4017 -2
- package/testing/jest/jest-config.d.ts +5 -0
- package/{dist/testing → testing}/jest/jest-environment.d.ts +4 -2
- package/{dist/testing → testing}/jest/jest-preprocessor.d.ts +1 -0
- package/{dist/testing → testing}/jest/jest-runner.d.ts +1 -1
- package/{dist/testing → testing}/jest/jest-screenshot.d.ts +1 -1
- package/{dist/testing → testing}/jest/jest-serializer.d.ts +1 -1
- package/testing/jest-environment.js +3 -3
- package/testing/jest-preprocessor.js +3 -3
- package/testing/jest-preset.js +32 -40
- package/testing/jest-runner.js +3 -3
- package/testing/jest-setuptestframework.js +3 -3
- package/{dist/testing → testing}/matchers/events.d.ts +9 -1
- package/{dist/testing → testing}/matchers/index.d.ts +3 -1
- package/{dist/testing → testing}/matchers/screenshot.d.ts +1 -1
- package/testing/mock-fetch.d.ts +11 -0
- package/testing/mocks.d.ts +14 -0
- package/testing/package.json +8 -6
- package/testing/puppeteer/index.d.ts +2 -0
- package/{dist/testing → testing}/puppeteer/puppeteer-browser.d.ts +3 -3
- package/{dist/testing → testing}/puppeteer/puppeteer-declarations.d.ts +18 -18
- package/{dist/testing → testing}/puppeteer/puppeteer-element.d.ts +7 -5
- package/testing/puppeteer/puppeteer-emulate.d.ts +2 -0
- package/{dist/testing → testing}/puppeteer/puppeteer-events.d.ts +9 -9
- package/testing/puppeteer/puppeteer-page.d.ts +2 -0
- package/testing/puppeteer/puppeteer-screenshot.d.ts +4 -0
- package/testing/reset-build-conditionals.d.ts +2 -0
- package/testing/spec-page.d.ts +2 -0
- package/testing/test-transpile.d.ts +2 -0
- package/{dist/testing → testing}/testing-logger.d.ts +10 -8
- package/testing/testing-sys.d.ts +1 -0
- package/{dist/testing → testing}/testing-utils.d.ts +3 -2
- package/testing/testing.d.ts +2 -0
- package/build-conditionals/index.d.ts +0 -2
- package/build-conditionals/index.mjs +0 -66
- package/build-conditionals/package.json +0 -6
- package/compiler/index.js +0 -2
- package/dist/cli/index.js +0 -6068
- package/dist/client/css-shim-14a9812e.js +0 -656
- package/dist/client/css-shim-69821662.js +0 -658
- package/dist/client/declarations/rindo.core.d.ts +0 -1347
- package/dist/client/dom-68c8fe31.js +0 -139
- package/dist/client/dom-af01458a.js +0 -137
- package/dist/client/index.js +0 -2937
- package/dist/client/polyfills/core-js.js +0 -10
- package/dist/client/polyfills/css-shim.js +0 -656
- package/dist/client/polyfills/dom.js +0 -146
- package/dist/client/polyfills/es5-html-element.js +0 -18
- package/dist/client/polyfills/index.js +0 -35
- package/dist/client/polyfills/promise.js +0 -9
- package/dist/client/polyfills/system.js +0 -6
- package/dist/client/shadow-css-6ef31c68.js +0 -386
- package/dist/client/shadow-css-8fd1a9e4.js +0 -388
- package/dist/compiler/app-core/app-es5-disabled.d.ts +0 -2
- package/dist/compiler/app-core/app-polyfills.d.ts +0 -3
- package/dist/compiler/app-core/build-conditionals.d.ts +0 -6
- package/dist/compiler/app-core/bundle-app-core.d.ts +0 -6
- package/dist/compiler/app-core/component-styles.d.ts +0 -4
- package/dist/compiler/app-core/format-component-runtime-meta.d.ts +0 -4
- package/dist/compiler/app-core/optimize-module.d.ts +0 -7
- package/dist/compiler/browser/build-conditionals-client.d.ts +0 -3
- package/dist/compiler/browser/compile-options.d.ts +0 -12
- package/dist/compiler/browser/compile.d.ts +0 -2
- package/dist/compiler/browser/create-compiler.d.ts +0 -14
- package/dist/compiler/browser/index.d.ts +0 -11
- package/dist/compiler/build/build-ctx.d.ts +0 -74
- package/dist/compiler/build/build-finish.d.ts +0 -3
- package/dist/compiler/build/build-hmr.d.ts +0 -2
- package/dist/compiler/build/build-results.d.ts +0 -2
- package/dist/compiler/build/build-stats.d.ts +0 -3
- package/dist/compiler/build/build.d.ts +0 -2
- package/dist/compiler/build/cache-stats.d.ts +0 -4
- package/dist/compiler/build/compiler-build-id.d.ts +0 -6
- package/dist/compiler/build/compiler-ctx.d.ts +0 -44
- package/dist/compiler/build/init-index-html.d.ts +0 -2
- package/dist/compiler/build/validate-files.d.ts +0 -2
- package/dist/compiler/build/write-build.d.ts +0 -2
- package/dist/compiler/cache.d.ts +0 -22
- package/dist/compiler/compiler.d.ts +0 -27
- package/dist/compiler/component-hydrate/bundle-hydrate-factory.d.ts +0 -3
- package/dist/compiler/component-hydrate/generate-hydrate-app.d.ts +0 -2
- package/dist/compiler/component-hydrate/hydrate-factory-closure.d.ts +0 -2
- package/dist/compiler/component-hydrate/update-to-hydrate-components.d.ts +0 -2
- package/dist/compiler/component-hydrate/write-hydrate-outputs.d.ts +0 -3
- package/dist/compiler/component-lazy/generate-cjs.d.ts +0 -3
- package/dist/compiler/component-lazy/generate-esm-browser.d.ts +0 -3
- package/dist/compiler/component-lazy/generate-esm.d.ts +0 -3
- package/dist/compiler/component-lazy/generate-lazy-app.d.ts +0 -3
- package/dist/compiler/component-lazy/generate-lazy-module.d.ts +0 -4
- package/dist/compiler/component-lazy/generate-system.d.ts +0 -3
- package/dist/compiler/component-lazy/update-to-lazy-component.d.ts +0 -2
- package/dist/compiler/component-lazy/write-lazy-entry-module.d.ts +0 -2
- package/dist/compiler/component-native/update-to-native-component.d.ts +0 -2
- package/dist/compiler/config/config-reload.d.ts +0 -3
- package/dist/compiler/config/config-utils.d.ts +0 -4
- package/dist/compiler/config/validate-config.d.ts +0 -4
- package/dist/compiler/config/validate-copy.d.ts +0 -2
- package/dist/compiler/config/validate-dev-server.d.ts +0 -2
- package/dist/compiler/config/validate-docs.d.ts +0 -2
- package/dist/compiler/config/validate-namespace.d.ts +0 -3
- package/dist/compiler/config/validate-output-stats.d.ts +0 -2
- package/dist/compiler/config/validate-outputs-angular.d.ts +0 -2
- package/dist/compiler/config/validate-outputs-custom.d.ts +0 -2
- package/dist/compiler/config/validate-outputs-dist-module.d.ts +0 -2
- package/dist/compiler/config/validate-outputs-dist.d.ts +0 -2
- package/dist/compiler/config/validate-outputs-hydrate-script.d.ts +0 -2
- package/dist/compiler/config/validate-outputs-www.d.ts +0 -2
- package/dist/compiler/config/validate-outputs.d.ts +0 -2
- package/dist/compiler/config/validate-paths.d.ts +0 -2
- package/dist/compiler/config/validate-plugins.d.ts +0 -2
- package/dist/compiler/config/validate-prerender.d.ts +0 -2
- package/dist/compiler/config/validate-rollup-config.d.ts +0 -2
- package/dist/compiler/config/validate-service-worker.d.ts +0 -2
- package/dist/compiler/config/validate-testing.d.ts +0 -2
- package/dist/compiler/config/validate-workers.d.ts +0 -2
- package/dist/compiler/copy/assets-copy-tasks.d.ts +0 -3
- package/dist/compiler/copy/hashed-copy.d.ts +0 -2
- package/dist/compiler/copy/local-copy-tasks.d.ts +0 -3
- package/dist/compiler/docs/constants.d.ts +0 -2
- package/dist/compiler/docs/custom/index.d.ts +0 -2
- package/dist/compiler/docs/docs.d.ts +0 -2
- package/dist/compiler/docs/generate-doc-data.d.ts +0 -3
- package/dist/compiler/docs/json/index.d.ts +0 -3
- package/dist/compiler/docs/readme/docs-util.d.ts +0 -13
- package/dist/compiler/docs/readme/index.d.ts +0 -3
- package/dist/compiler/docs/readme/markdown-css-props.d.ts +0 -2
- package/dist/compiler/docs/readme/markdown-dependencies.d.ts +0 -2
- package/dist/compiler/docs/readme/markdown-events.d.ts +0 -2
- package/dist/compiler/docs/readme/markdown-methods.d.ts +0 -2
- package/dist/compiler/docs/readme/markdown-props.d.ts +0 -2
- package/dist/compiler/docs/readme/markdown-slots.d.ts +0 -2
- package/dist/compiler/docs/readme/markdown-usage.d.ts +0 -6
- package/dist/compiler/docs/readme/output-docs.d.ts +0 -3
- package/dist/compiler/docs/style-docs.d.ts +0 -2
- package/dist/compiler/docs/vscode/index.d.ts +0 -2
- package/dist/compiler/entries/component-bundles.d.ts +0 -3
- package/dist/compiler/entries/component-graph.d.ts +0 -2
- package/dist/compiler/entries/default-bundles.d.ts +0 -3
- package/dist/compiler/entries/entry-modules.d.ts +0 -6
- package/dist/compiler/entries/resolve-component-dependencies.d.ts +0 -2
- package/dist/compiler/events.d.ts +0 -15
- package/dist/compiler/fs-watch/fs-watch-init.d.ts +0 -2
- package/dist/compiler/fs-watch/fs-watch-log.d.ts +0 -2
- package/dist/compiler/fs-watch/fs-watch-rebuild.d.ts +0 -7
- package/dist/compiler/html/inject-module-preloads.d.ts +0 -3
- package/dist/compiler/html/inject-sw-script.d.ts +0 -4
- package/dist/compiler/html/inline-esm-import.d.ts +0 -2
- package/dist/compiler/html/inline-style-sheets.d.ts +0 -2
- package/dist/compiler/html/update-global-styles-link.d.ts +0 -2
- package/dist/compiler/html/used-components.d.ts +0 -2
- package/dist/compiler/html/utils.d.ts +0 -2
- package/dist/compiler/html/validate-manifest-json.d.ts +0 -2
- package/dist/compiler/index.d.ts +0 -10
- package/dist/compiler/index.js +0 -18008
- package/dist/compiler/output-targets/empty-dir.d.ts +0 -6
- package/dist/compiler/output-targets/index.d.ts +0 -2
- package/dist/compiler/output-targets/output-angular.d.ts +0 -4
- package/dist/compiler/output-targets/output-app.d.ts +0 -4
- package/dist/compiler/output-targets/output-collection.d.ts +0 -3
- package/dist/compiler/output-targets/output-copy.d.ts +0 -2
- package/dist/compiler/output-targets/output-custom.d.ts +0 -2
- package/dist/compiler/output-targets/output-docs.d.ts +0 -2
- package/dist/compiler/output-targets/output-hydrate.d.ts +0 -2
- package/dist/compiler/output-targets/output-lazy-loader.d.ts +0 -2
- package/dist/compiler/output-targets/output-module.d.ts +0 -4
- package/dist/compiler/output-targets/output-prerender.d.ts +0 -2
- package/dist/compiler/output-targets/output-service-workers.d.ts +0 -2
- package/dist/compiler/output-targets/output-types.d.ts +0 -2
- package/dist/compiler/output-targets/output-utils.d.ts +0 -54
- package/dist/compiler/output-targets/output-www.d.ts +0 -2
- package/dist/compiler/plugin/plugin.d.ts +0 -6
- package/dist/compiler/prerender/crawl-urls.d.ts +0 -3
- package/dist/compiler/prerender/host-config.d.ts +0 -12
- package/dist/compiler/prerender/prerender-config.d.ts +0 -2
- package/dist/compiler/prerender/prerender-main.d.ts +0 -2
- package/dist/compiler/prerender/prerender-queue.d.ts +0 -3
- package/dist/compiler/prerender/prerender-template-html.d.ts +0 -2
- package/dist/compiler/prerender/prerendered-write-path.d.ts +0 -2
- package/dist/compiler/prerender/robots-txt.d.ts +0 -2
- package/dist/compiler/prerender/sitemap-xml.d.ts +0 -3
- package/dist/compiler/rollup-plugins/component-entry.d.ts +0 -3
- package/dist/compiler/rollup-plugins/css-transformer.d.ts +0 -3
- package/dist/compiler/rollup-plugins/global-scripts.d.ts +0 -4
- package/dist/compiler/rollup-plugins/image-plugin.d.ts +0 -3
- package/dist/compiler/rollup-plugins/in-memory-fs-read.d.ts +0 -3
- package/dist/compiler/rollup-plugins/loader.d.ts +0 -4
- package/dist/compiler/rollup-plugins/plugin-helper.d.ts +0 -5
- package/dist/compiler/rollup-plugins/rindo-build-conditionals.d.ts +0 -7
- package/dist/compiler/rollup-plugins/rindo-client.d.ts +0 -3
- package/dist/compiler/rollup-plugins/rindo-external-runtime.d.ts +0 -2
- package/dist/compiler/rollup-plugins/rindo-hydrate.d.ts +0 -3
- package/dist/compiler/rollup-plugins/rindo-public-plugin.d.ts +0 -2
- package/dist/compiler/service-worker/generate-sw.d.ts +0 -7
- package/dist/compiler/service-worker/service-worker-util.d.ts +0 -2
- package/dist/compiler/style/cached-styles.d.ts +0 -5
- package/dist/compiler/style/component-styles.d.ts +0 -2
- package/dist/compiler/style/css-imports.d.ts +0 -9
- package/dist/compiler/style/css-to-esm.d.ts +0 -5
- package/dist/compiler/style/generate-styles.d.ts +0 -2
- package/dist/compiler/style/global-styles.d.ts +0 -3
- package/dist/compiler/style/normalize-styles.d.ts +0 -2
- package/dist/compiler/style/optimize-css.d.ts +0 -2
- package/dist/compiler/style/scope-css.d.ts +0 -3
- package/dist/compiler/style/style-utils.d.ts +0 -10
- package/dist/compiler/transformers/add-component-meta-proxy.d.ts +0 -3
- package/dist/compiler/transformers/add-component-meta-static.d.ts +0 -4
- package/dist/compiler/transformers/add-imports.d.ts +0 -3
- package/dist/compiler/transformers/collections/add-external-import.d.ts +0 -2
- package/dist/compiler/transformers/collections/parse-collection-components.d.ts +0 -2
- package/dist/compiler/transformers/collections/parse-collection-deprecated.d.ts +0 -2
- package/dist/compiler/transformers/collections/parse-collection-manifest.d.ts +0 -7
- package/dist/compiler/transformers/collections/parse-collection-module.d.ts +0 -2
- package/dist/compiler/transformers/component-build-conditionals.d.ts +0 -2
- package/dist/compiler/transformers/component-hydrate/hydrate-component.d.ts +0 -3
- package/dist/compiler/transformers/component-hydrate/hydrate-runtime-cmp-meta.d.ts +0 -3
- package/dist/compiler/transformers/component-hydrate/tranform-to-hydrate-component.d.ts +0 -2
- package/dist/compiler/transformers/component-lazy/lazy-component.d.ts +0 -3
- package/dist/compiler/transformers/component-lazy/lazy-constructor.d.ts +0 -3
- package/dist/compiler/transformers/component-lazy/lazy-element-getter.d.ts +0 -3
- package/dist/compiler/transformers/component-lazy/transform-lazy-component.d.ts +0 -4
- package/dist/compiler/transformers/component-native/native-component.d.ts +0 -3
- package/dist/compiler/transformers/component-native/native-connected-callback.d.ts +0 -3
- package/dist/compiler/transformers/component-native/native-constructor.d.ts +0 -3
- package/dist/compiler/transformers/component-native/native-element-getter.d.ts +0 -3
- package/dist/compiler/transformers/component-native/native-static-style.d.ts +0 -3
- package/dist/compiler/transformers/component-native/tranform-to-native-component.d.ts +0 -4
- package/dist/compiler/transformers/core-runtime-apis.d.ts +0 -30
- package/dist/compiler/transformers/create-event.d.ts +0 -3
- package/dist/compiler/transformers/decorators-to-static/component-decorator.d.ts +0 -3
- package/dist/compiler/transformers/decorators-to-static/convert-decorators.d.ts +0 -3
- package/dist/compiler/transformers/decorators-to-static/decorator-utils.d.ts +0 -10
- package/dist/compiler/transformers/decorators-to-static/element-decorator.d.ts +0 -3
- package/dist/compiler/transformers/decorators-to-static/event-decorator.d.ts +0 -4
- package/dist/compiler/transformers/decorators-to-static/listen-decorator.d.ts +0 -6
- package/dist/compiler/transformers/decorators-to-static/method-decorator.d.ts +0 -3
- package/dist/compiler/transformers/decorators-to-static/prop-decorator.d.ts +0 -4
- package/dist/compiler/transformers/decorators-to-static/state-decorator.d.ts +0 -3
- package/dist/compiler/transformers/decorators-to-static/style-to-static.d.ts +0 -3
- package/dist/compiler/transformers/decorators-to-static/watch-decorator.d.ts +0 -3
- package/dist/compiler/transformers/define-custom-element.d.ts +0 -3
- package/dist/compiler/transformers/host-data-transform.d.ts +0 -3
- package/dist/compiler/transformers/legacy-props.d.ts +0 -3
- package/dist/compiler/transformers/remove-static-meta-properties.d.ts +0 -2
- package/dist/compiler/transformers/reserved-public-members.d.ts +0 -3
- package/dist/compiler/transformers/rindo-import-path.d.ts +0 -3
- package/dist/compiler/transformers/static-to-meta/call-expression.d.ts +0 -3
- package/dist/compiler/transformers/static-to-meta/class-methods.d.ts +0 -3
- package/dist/compiler/transformers/static-to-meta/component.d.ts +0 -3
- package/dist/compiler/transformers/static-to-meta/element-ref.d.ts +0 -2
- package/dist/compiler/transformers/static-to-meta/encapsulation.d.ts +0 -3
- package/dist/compiler/transformers/static-to-meta/events.d.ts +0 -3
- package/dist/compiler/transformers/static-to-meta/import.d.ts +0 -3
- package/dist/compiler/transformers/static-to-meta/listeners.d.ts +0 -3
- package/dist/compiler/transformers/static-to-meta/methods.d.ts +0 -3
- package/dist/compiler/transformers/static-to-meta/props.d.ts +0 -3
- package/dist/compiler/transformers/static-to-meta/states.d.ts +0 -3
- package/dist/compiler/transformers/static-to-meta/string-literal.d.ts +0 -3
- package/dist/compiler/transformers/static-to-meta/styles.d.ts +0 -3
- package/dist/compiler/transformers/static-to-meta/vdom.d.ts +0 -3
- package/dist/compiler/transformers/static-to-meta/visitor.d.ts +0 -3
- package/dist/compiler/transformers/static-to-meta/watchers.d.ts +0 -3
- package/dist/compiler/transformers/style-imports.d.ts +0 -3
- package/dist/compiler/transformers/transform-utils.d.ts +0 -31
- package/dist/compiler/transformers/update-component-class.d.ts +0 -3
- package/dist/compiler/transformers/update-rindo-core-import.d.ts +0 -3
- package/dist/compiler/transformers/watcher-meta-transform.d.ts +0 -3
- package/dist/compiler/transpile/compiler-options.d.ts +0 -4
- package/dist/compiler/transpile/transpile-app.d.ts +0 -2
- package/dist/compiler/transpile/transpile-module.d.ts +0 -5
- package/dist/compiler/transpile/transpile-service.d.ts +0 -3
- package/dist/compiler/transpile/transpile-to-es5-main.d.ts +0 -2
- package/dist/compiler/transpile/validate-types-main.d.ts +0 -2
- package/dist/compiler/types/generate-app-types.d.ts +0 -2
- package/dist/compiler/types/generate-component-types.d.ts +0 -8
- package/dist/compiler/types/generate-event-types.d.ts +0 -2
- package/dist/compiler/types/generate-method-types.d.ts +0 -2
- package/dist/compiler/types/generate-prop-types.d.ts +0 -2
- package/dist/compiler/types/generate-types.d.ts +0 -2
- package/dist/compiler/types/rindo-types.d.ts +0 -3
- package/dist/compiler/types/types-utils.d.ts +0 -4
- package/dist/compiler/types/update-import-refs.d.ts +0 -11
- package/dist/compiler/types/validate-package-json.d.ts +0 -9
- package/dist/declarations/assets.d.ts +0 -17
- package/dist/declarations/browser-compile.d.ts +0 -47
- package/dist/declarations/build-conditionals.d.ts +0 -91
- package/dist/declarations/build-events.d.ts +0 -19
- package/dist/declarations/build.d.ts +0 -247
- package/dist/declarations/cache.d.ts +0 -11
- package/dist/declarations/collection-manifest.d.ts +0 -106
- package/dist/declarations/collection.d.ts +0 -139
- package/dist/declarations/compiler.d.ts +0 -53
- package/dist/declarations/component-compiler-meta.d.ts +0 -198
- package/dist/declarations/component-constructor.d.ts +0 -61
- package/dist/declarations/component-interfaces.d.ts +0 -123
- package/dist/declarations/config.d.ts +0 -409
- package/dist/declarations/css-var-shim.d.ts +0 -9
- package/dist/declarations/decorators.d.ts +0 -150
- package/dist/declarations/dev-server.d.ts +0 -135
- package/dist/declarations/diagnostics.d.ts +0 -21
- package/dist/declarations/entry.d.ts +0 -28
- package/dist/declarations/events.d.ts +0 -13
- package/dist/declarations/file-system.d.ts +0 -91
- package/dist/declarations/fs-watch.d.ts +0 -15
- package/dist/declarations/host-element.d.ts +0 -53
- package/dist/declarations/hydrate.d.ts +0 -99
- package/dist/declarations/in-memory-fs.d.ts +0 -59
- package/dist/declarations/index.d.ts +0 -45
- package/dist/declarations/jsdoc.d.ts +0 -16
- package/dist/declarations/jsx.d.ts +0 -1050
- package/dist/declarations/logger.d.ts +0 -25
- package/dist/declarations/minify-js.d.ts +0 -11
- package/dist/declarations/module.d.ts +0 -35
- package/dist/declarations/optimize-css.d.ts +0 -12
- package/dist/declarations/output-targets.d.ts +0 -189
- package/dist/declarations/plugin.d.ts +0 -23
- package/dist/declarations/prerender.d.ts +0 -79
- package/dist/declarations/render.d.ts +0 -62
- package/dist/declarations/runtime.d.ts +0 -92
- package/dist/declarations/screenshots.d.ts +0 -192
- package/dist/declarations/server.d.ts +0 -19
- package/dist/declarations/style.d.ts +0 -35
- package/dist/declarations/system.d.ts +0 -174
- package/dist/declarations/testing.d.ts +0 -523
- package/dist/declarations/transpile.d.ts +0 -24
- package/dist/declarations/types.d.ts +0 -24
- package/dist/declarations/vdom.d.ts +0 -55
- package/dist/declarations/worker.d.ts +0 -33
- package/dist/dev-server/content-type-db.json +0 -1
- package/dist/dev-server/index.js +0 -887
- package/dist/dev-server/static/app-error.css +0 -257
- package/dist/dev-server/static/dev-server-client.html +0 -13
- package/dist/hydrate/index.d.ts +0 -101
- package/dist/hydrate/index.mjs +0 -1281
- package/dist/hydrate/platform.mjs +0 -347
- package/dist/index.d.ts +0 -99
- package/dist/index.js +0 -1
- package/dist/mock-doc/index.d.ts +0 -851
- package/dist/mock-doc/index.js +0 -3982
- package/dist/mock-doc/index.mjs +0 -3954
- package/dist/runtime/index.js +0 -2576
- package/dist/runtime/index.mjs +0 -2521
- package/dist/runtime/shadow-css-6ef31c68.js +0 -386
- package/dist/runtime/shadow-css-8fd1a9e4.js +0 -388
- package/dist/screenshot/index.js +0 -520
- package/dist/sys/node/graceful-fs.js +0 -975
- package/dist/sys/node/index.js +0 -33545
- package/dist/sys/node/node-fetch.js +0 -1779
- package/dist/sys/node/open-in-editor.js +0 -734
- package/dist/sys/node/sys-worker.js +0 -67035
- package/dist/sys/node/websocket.js +0 -3728
- package/dist/testing/build-conditionals.d.ts +0 -4
- package/dist/testing/build-conditionals.js +0 -43
- package/dist/testing/core.d.ts +0 -35
- package/dist/testing/core.js +0 -52
- package/dist/testing/index.js +0 -40511
- package/dist/testing/jest/jest-config.d.ts +0 -4
- package/dist/testing/mock-fetch.d.ts +0 -46
- package/dist/testing/mocks.d.ts +0 -12
- package/dist/testing/platform.d.ts +0 -23
- package/dist/testing/platform.js +0 -321
- package/dist/testing/puppeteer/puppeteer-emulate.d.ts +0 -2
- package/dist/testing/puppeteer/puppeteer-find.d.ts +0 -5
- package/dist/testing/puppeteer/puppeteer-page.d.ts +0 -2
- package/dist/testing/puppeteer/puppeteer-screenshot.d.ts +0 -4
- package/dist/testing/spec-page.d.ts +0 -5
- package/dist/testing/task-queue.d.ts +0 -15
- package/dist/testing/test-transpile.d.ts +0 -5
- package/dist/testing/testing-fs.d.ts +0 -31
- package/dist/testing/testing-sys.d.ts +0 -19
- package/dist/testing/testing.d.ts +0 -12
- package/dist/utils/index.js +0 -1575
- package/dist/utils/index.mjs +0 -1511
- package/internal/client/css-shim.rindo-client.mjs +0 -656
- package/internal/client/index.mjs +0 -2859
- package/internal/client/polyfills/promise.js +0 -9
- package/internal/images.d.ts +0 -5
- package/runtime/package.json +0 -5
- package/screenshot/compare/build/p-020f8d73.js +0 -1
- package/screenshot/compare/build/p-09qdknbg.system.entry.js +0 -1
- package/screenshot/compare/build/p-0a13mpsc.system.entry.js +0 -1
- package/screenshot/compare/build/p-168ec2c4.system.js +0 -1
- package/screenshot/compare/build/p-2ab1fdf1.system.js +0 -1
- package/screenshot/compare/build/p-2pxcsgrj.entry.js +0 -1
- package/screenshot/compare/build/p-42fb7034.system.js +0 -1
- package/screenshot/compare/build/p-54d9d7c2.system.js +0 -1
- package/screenshot/compare/build/p-67c1f911.js +0 -1
- package/screenshot/compare/build/p-68613371.system.js +0 -1
- package/screenshot/compare/build/p-7dvsjpu0.entry.js +0 -1
- package/screenshot/compare/build/p-aa67fb06.js +0 -1
- package/screenshot/compare/build/p-aeb3cec1.system.js +0 -1
- package/screenshot/compare/build/p-b6e44a24.js +0 -1
- package/screenshot/compare/build/p-c1c25b8a.js +0 -1
- package/screenshot/compare/build/p-c9bopbjy.system.entry.js +0 -1
- package/screenshot/compare/build/p-c9iqz1pp.system.entry.js +0 -1
- package/screenshot/compare/build/p-dizjz8rg.entry.js +0 -1
- package/screenshot/compare/build/p-dnta0rwp.system.entry.js +0 -1
- package/screenshot/compare/build/p-e9670d22.system.js +0 -1
- package/screenshot/compare/build/p-ei9jkpd0.system.entry.js +0 -1
- package/screenshot/compare/build/p-ejwcppol.entry.js +0 -1
- package/screenshot/compare/build/p-f6612d5d.system.js +0 -1
- package/screenshot/compare/build/p-foiivsfc.css +0 -1
- package/screenshot/compare/build/p-gpjjyogx.entry.js +0 -1
- package/screenshot/compare/build/p-howklem2.system.entry.js +0 -1
- package/screenshot/compare/build/p-knv9wvoc.entry.js +0 -1
- package/screenshot/compare/build/p-nsqsfhhy.entry.js +0 -1
- package/screenshot/compare/build/p-ojt278pp.entry.js +0 -1
- package/screenshot/compare/build/p-oywass99.entry.js +0 -1
- package/screenshot/compare/build/p-q3ujhub6.entry.js +0 -1
- package/screenshot/compare/build/p-qw4xnmxv.entry.js +0 -1
- package/screenshot/compare/build/p-t1wvevhc.system.entry.js +0 -1
- package/screenshot/compare/build/p-tnjarrex.system.entry.js +0 -1
- package/screenshot/compare/build/p-vhfpd6kk.system.entry.js +0 -1
- package/screenshot/compare/build/p-vk6rhemd.system.entry.js +0 -1
- package/screenshot/compare/build/p-w6bnm16k.entry.js +0 -1
- package/screenshot/compare/build/p-xje6d7zl.system.entry.js +0 -1
- package/screenshot/compare/build/p-y5jlrcha.system.entry.js +0 -1
- package/screenshot/compare/build/p-yh170wkt.entry.js +0 -1
- package/testing/jest.preprocessor.js +0 -7
- /package/{dist/dev-server → dev-server}/static/favicon.ico +0 -0
- /package/{dist/sys/node → dev-server}/visualstudio.vbs +0 -0
- /package/{dist/sys/node → dev-server}/xdg-open +0 -0
- /package/{dist/compiler/polyfills.d.ts → screenshot/compare/build/index.esm.js} +0 -0
- /package/{dist/screenshot → screenshot}/pixel-match.d.ts +0 -0
- /package/{dist/testing → testing}/jest/jest-setup-test-framework.d.ts +0 -0
- /package/{dist/testing → testing}/matchers/attributes.d.ts +0 -0
- /package/{dist/testing → testing}/matchers/class-list.d.ts +0 -0
- /package/{dist/testing → testing}/matchers/html.d.ts +0 -0
- /package/{dist/testing → testing}/matchers/text.d.ts +0 -0
|
@@ -1,1050 +0,0 @@
|
|
|
1
|
-
declare namespace LocalJSX {
|
|
2
|
-
interface Element {
|
|
3
|
-
}
|
|
4
|
-
interface IntrinsicElements {
|
|
5
|
-
}
|
|
6
|
-
}
|
|
7
|
-
export { LocalJSX as JSX };
|
|
8
|
-
export declare namespace JSXBase {
|
|
9
|
-
interface IntrinsicElements {
|
|
10
|
-
slot: JSXBase.SlotAttributes;
|
|
11
|
-
a: JSXBase.AnchorHTMLAttributes<HTMLAnchorElement>;
|
|
12
|
-
abbr: JSXBase.HTMLAttributes;
|
|
13
|
-
address: JSXBase.HTMLAttributes;
|
|
14
|
-
area: JSXBase.AreaHTMLAttributes<HTMLAreaElement>;
|
|
15
|
-
article: JSXBase.HTMLAttributes;
|
|
16
|
-
aside: JSXBase.HTMLAttributes;
|
|
17
|
-
audio: JSXBase.AudioHTMLAttributes<HTMLAudioElement>;
|
|
18
|
-
b: JSXBase.HTMLAttributes;
|
|
19
|
-
base: JSXBase.BaseHTMLAttributes<HTMLBaseElement>;
|
|
20
|
-
bdi: JSXBase.HTMLAttributes;
|
|
21
|
-
bdo: JSXBase.HTMLAttributes;
|
|
22
|
-
big: JSXBase.HTMLAttributes;
|
|
23
|
-
blockquote: JSXBase.BlockquoteHTMLAttributes<HTMLQuoteElement>;
|
|
24
|
-
body: JSXBase.HTMLAttributes<HTMLBodyElement>;
|
|
25
|
-
br: JSXBase.HTMLAttributes<HTMLBRElement>;
|
|
26
|
-
button: JSXBase.ButtonHTMLAttributes<HTMLButtonElement>;
|
|
27
|
-
canvas: JSXBase.CanvasHTMLAttributes<HTMLCanvasElement>;
|
|
28
|
-
caption: JSXBase.HTMLAttributes<HTMLTableCaptionElement>;
|
|
29
|
-
cite: JSXBase.HTMLAttributes;
|
|
30
|
-
code: JSXBase.HTMLAttributes;
|
|
31
|
-
col: JSXBase.ColHTMLAttributes<HTMLTableColElement>;
|
|
32
|
-
colgroup: JSXBase.ColgroupHTMLAttributes<HTMLTableColElement>;
|
|
33
|
-
data: JSXBase.HTMLAttributes<HTMLDataElement>;
|
|
34
|
-
datalist: JSXBase.HTMLAttributes<HTMLDataListElement>;
|
|
35
|
-
dd: JSXBase.HTMLAttributes;
|
|
36
|
-
del: JSXBase.DelHTMLAttributes<HTMLModElement>;
|
|
37
|
-
details: JSXBase.DetailsHTMLAttributes<HTMLElement>;
|
|
38
|
-
dfn: JSXBase.HTMLAttributes;
|
|
39
|
-
dialog: JSXBase.DialogHTMLAttributes<HTMLDialogElement>;
|
|
40
|
-
div: JSXBase.HTMLAttributes<HTMLDivElement>;
|
|
41
|
-
dl: JSXBase.HTMLAttributes<HTMLDListElement>;
|
|
42
|
-
dt: JSXBase.HTMLAttributes;
|
|
43
|
-
em: JSXBase.HTMLAttributes;
|
|
44
|
-
embed: JSXBase.EmbedHTMLAttributes<HTMLEmbedElement>;
|
|
45
|
-
fieldset: JSXBase.FieldsetHTMLAttributes<HTMLFieldSetElement>;
|
|
46
|
-
figcaption: JSXBase.HTMLAttributes;
|
|
47
|
-
figure: JSXBase.HTMLAttributes;
|
|
48
|
-
footer: JSXBase.HTMLAttributes;
|
|
49
|
-
form: JSXBase.FormHTMLAttributes<HTMLFormElement>;
|
|
50
|
-
h1: JSXBase.HTMLAttributes<HTMLHeadingElement>;
|
|
51
|
-
h2: JSXBase.HTMLAttributes<HTMLHeadingElement>;
|
|
52
|
-
h3: JSXBase.HTMLAttributes<HTMLHeadingElement>;
|
|
53
|
-
h4: JSXBase.HTMLAttributes<HTMLHeadingElement>;
|
|
54
|
-
h5: JSXBase.HTMLAttributes<HTMLHeadingElement>;
|
|
55
|
-
h6: JSXBase.HTMLAttributes<HTMLHeadingElement>;
|
|
56
|
-
head: JSXBase.HTMLAttributes<HTMLHeadElement>;
|
|
57
|
-
header: JSXBase.HTMLAttributes;
|
|
58
|
-
hgroup: JSXBase.HTMLAttributes;
|
|
59
|
-
hr: JSXBase.HTMLAttributes<HTMLHRElement>;
|
|
60
|
-
html: JSXBase.HTMLAttributes<HTMLHtmlElement>;
|
|
61
|
-
i: JSXBase.HTMLAttributes;
|
|
62
|
-
iframe: JSXBase.IframeHTMLAttributes<HTMLIFrameElement>;
|
|
63
|
-
img: JSXBase.ImgHTMLAttributes<HTMLImageElement>;
|
|
64
|
-
input: JSXBase.InputHTMLAttributes<HTMLInputElement>;
|
|
65
|
-
ins: JSXBase.InsHTMLAttributes<HTMLModElement>;
|
|
66
|
-
kbd: JSXBase.HTMLAttributes;
|
|
67
|
-
keygen: JSXBase.KeygenHTMLAttributes<HTMLElement>;
|
|
68
|
-
label: JSXBase.LabelHTMLAttributes<HTMLLabelElement>;
|
|
69
|
-
legend: JSXBase.HTMLAttributes<HTMLLegendElement>;
|
|
70
|
-
li: JSXBase.LiHTMLAttributes<HTMLLIElement>;
|
|
71
|
-
link: JSXBase.LinkHTMLAttributes<HTMLLinkElement>;
|
|
72
|
-
main: JSXBase.HTMLAttributes;
|
|
73
|
-
map: JSXBase.MapHTMLAttributes<HTMLMapElement>;
|
|
74
|
-
mark: JSXBase.HTMLAttributes;
|
|
75
|
-
menu: JSXBase.MenuHTMLAttributes<HTMLMenuElement>;
|
|
76
|
-
menuitem: JSXBase.HTMLAttributes;
|
|
77
|
-
meta: JSXBase.MetaHTMLAttributes<HTMLMetaElement>;
|
|
78
|
-
meter: JSXBase.MeterHTMLAttributes<HTMLMeterElement>;
|
|
79
|
-
nav: JSXBase.HTMLAttributes;
|
|
80
|
-
noscript: JSXBase.HTMLAttributes;
|
|
81
|
-
object: JSXBase.ObjectHTMLAttributes<HTMLObjectElement>;
|
|
82
|
-
ol: JSXBase.OlHTMLAttributes<HTMLOListElement>;
|
|
83
|
-
optgroup: JSXBase.OptgroupHTMLAttributes<HTMLOptGroupElement>;
|
|
84
|
-
option: JSXBase.OptionHTMLAttributes<HTMLOptionElement>;
|
|
85
|
-
output: JSXBase.OutputHTMLAttributes<HTMLOutputElement>;
|
|
86
|
-
p: JSXBase.HTMLAttributes<HTMLParagraphElement>;
|
|
87
|
-
param: JSXBase.ParamHTMLAttributes<HTMLParamElement>;
|
|
88
|
-
picture: JSXBase.HTMLAttributes<HTMLPictureElement>;
|
|
89
|
-
pre: JSXBase.HTMLAttributes<HTMLPreElement>;
|
|
90
|
-
progress: JSXBase.ProgressHTMLAttributes<HTMLProgressElement>;
|
|
91
|
-
q: JSXBase.QuoteHTMLAttributes<HTMLQuoteElement>;
|
|
92
|
-
rp: JSXBase.HTMLAttributes;
|
|
93
|
-
rt: JSXBase.HTMLAttributes;
|
|
94
|
-
ruby: JSXBase.HTMLAttributes;
|
|
95
|
-
s: JSXBase.HTMLAttributes;
|
|
96
|
-
samp: JSXBase.HTMLAttributes;
|
|
97
|
-
script: JSXBase.ScriptHTMLAttributes<HTMLScriptElement>;
|
|
98
|
-
section: JSXBase.HTMLAttributes;
|
|
99
|
-
select: JSXBase.SelectHTMLAttributes<HTMLSelectElement>;
|
|
100
|
-
small: JSXBase.HTMLAttributes;
|
|
101
|
-
source: JSXBase.SourceHTMLAttributes<HTMLSourceElement>;
|
|
102
|
-
span: JSXBase.HTMLAttributes<HTMLSpanElement>;
|
|
103
|
-
strong: JSXBase.HTMLAttributes;
|
|
104
|
-
style: JSXBase.StyleHTMLAttributes<HTMLStyleElement>;
|
|
105
|
-
sub: JSXBase.HTMLAttributes;
|
|
106
|
-
summary: JSXBase.HTMLAttributes;
|
|
107
|
-
sup: JSXBase.HTMLAttributes;
|
|
108
|
-
table: JSXBase.TableHTMLAttributes<HTMLTableElement>;
|
|
109
|
-
tbody: JSXBase.HTMLAttributes<HTMLTableSectionElement>;
|
|
110
|
-
td: JSXBase.TdHTMLAttributes<HTMLTableDataCellElement>;
|
|
111
|
-
textarea: JSXBase.TextareaHTMLAttributes<HTMLTextAreaElement>;
|
|
112
|
-
tfoot: JSXBase.HTMLAttributes<HTMLTableSectionElement>;
|
|
113
|
-
th: JSXBase.ThHTMLAttributes<HTMLTableHeaderCellElement>;
|
|
114
|
-
thead: JSXBase.HTMLAttributes<HTMLTableSectionElement>;
|
|
115
|
-
time: JSXBase.TimeHTMLAttributes<HTMLTimeElement>;
|
|
116
|
-
title: JSXBase.HTMLAttributes<HTMLTitleElement>;
|
|
117
|
-
tr: JSXBase.HTMLAttributes<HTMLTableRowElement>;
|
|
118
|
-
track: JSXBase.TrackHTMLAttributes<HTMLTrackElement>;
|
|
119
|
-
u: JSXBase.HTMLAttributes;
|
|
120
|
-
ul: JSXBase.HTMLAttributes<HTMLUListElement>;
|
|
121
|
-
'var': JSXBase.HTMLAttributes;
|
|
122
|
-
video: JSXBase.VideoHTMLAttributes<HTMLVideoElement>;
|
|
123
|
-
wbr: JSXBase.HTMLAttributes;
|
|
124
|
-
animate: JSXBase.SVGAttributes;
|
|
125
|
-
circle: JSXBase.SVGAttributes;
|
|
126
|
-
clipPath: JSXBase.SVGAttributes;
|
|
127
|
-
defs: JSXBase.SVGAttributes;
|
|
128
|
-
desc: JSXBase.SVGAttributes;
|
|
129
|
-
ellipse: JSXBase.SVGAttributes;
|
|
130
|
-
feBlend: JSXBase.SVGAttributes;
|
|
131
|
-
feColorMatrix: JSXBase.SVGAttributes;
|
|
132
|
-
feComponentTransfer: JSXBase.SVGAttributes;
|
|
133
|
-
feComposite: JSXBase.SVGAttributes;
|
|
134
|
-
feConvolveMatrix: JSXBase.SVGAttributes;
|
|
135
|
-
feDiffuseLighting: JSXBase.SVGAttributes;
|
|
136
|
-
feDisplacementMap: JSXBase.SVGAttributes;
|
|
137
|
-
feDistantLight: JSXBase.SVGAttributes;
|
|
138
|
-
feDropShadow: JSXBase.SVGAttributes;
|
|
139
|
-
feFlood: JSXBase.SVGAttributes;
|
|
140
|
-
feFuncA: JSXBase.SVGAttributes;
|
|
141
|
-
feFuncB: JSXBase.SVGAttributes;
|
|
142
|
-
feFuncG: JSXBase.SVGAttributes;
|
|
143
|
-
feFuncR: JSXBase.SVGAttributes;
|
|
144
|
-
feGaussianBlur: JSXBase.SVGAttributes;
|
|
145
|
-
feImage: JSXBase.SVGAttributes;
|
|
146
|
-
feMerge: JSXBase.SVGAttributes;
|
|
147
|
-
feMergeNode: JSXBase.SVGAttributes;
|
|
148
|
-
feMorphology: JSXBase.SVGAttributes;
|
|
149
|
-
feOffset: JSXBase.SVGAttributes;
|
|
150
|
-
fePointLight: JSXBase.SVGAttributes;
|
|
151
|
-
feSpecularLighting: JSXBase.SVGAttributes;
|
|
152
|
-
feSpotLight: JSXBase.SVGAttributes;
|
|
153
|
-
feTile: JSXBase.SVGAttributes;
|
|
154
|
-
feTurbulence: JSXBase.SVGAttributes;
|
|
155
|
-
filter: JSXBase.SVGAttributes;
|
|
156
|
-
foreignObject: JSXBase.SVGAttributes;
|
|
157
|
-
g: JSXBase.SVGAttributes;
|
|
158
|
-
image: JSXBase.SVGAttributes;
|
|
159
|
-
line: JSXBase.SVGAttributes;
|
|
160
|
-
linearGradient: JSXBase.SVGAttributes;
|
|
161
|
-
marker: JSXBase.SVGAttributes;
|
|
162
|
-
mask: JSXBase.SVGAttributes;
|
|
163
|
-
metadata: JSXBase.SVGAttributes;
|
|
164
|
-
path: JSXBase.SVGAttributes;
|
|
165
|
-
pattern: JSXBase.SVGAttributes;
|
|
166
|
-
polygon: JSXBase.SVGAttributes;
|
|
167
|
-
polyline: JSXBase.SVGAttributes;
|
|
168
|
-
radialGradient: JSXBase.SVGAttributes;
|
|
169
|
-
rect: JSXBase.SVGAttributes;
|
|
170
|
-
stop: JSXBase.SVGAttributes;
|
|
171
|
-
svg: JSXBase.SVGAttributes;
|
|
172
|
-
switch: JSXBase.SVGAttributes;
|
|
173
|
-
symbol: JSXBase.SVGAttributes;
|
|
174
|
-
text: JSXBase.SVGAttributes;
|
|
175
|
-
textPath: JSXBase.SVGAttributes;
|
|
176
|
-
tspan: JSXBase.SVGAttributes;
|
|
177
|
-
use: JSXBase.SVGAttributes;
|
|
178
|
-
view: JSXBase.SVGAttributes;
|
|
179
|
-
}
|
|
180
|
-
interface SlotAttributes {
|
|
181
|
-
name?: string;
|
|
182
|
-
slot?: string;
|
|
183
|
-
}
|
|
184
|
-
interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
185
|
-
download?: any;
|
|
186
|
-
href?: string;
|
|
187
|
-
hrefLang?: string;
|
|
188
|
-
hreflang?: string;
|
|
189
|
-
media?: string;
|
|
190
|
-
rel?: string;
|
|
191
|
-
target?: string;
|
|
192
|
-
}
|
|
193
|
-
interface AudioHTMLAttributes<T> extends MediaHTMLAttributes<T> {
|
|
194
|
-
}
|
|
195
|
-
interface AreaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
196
|
-
alt?: string;
|
|
197
|
-
coords?: string;
|
|
198
|
-
download?: any;
|
|
199
|
-
href?: string;
|
|
200
|
-
hrefLang?: string;
|
|
201
|
-
hreflang?: string;
|
|
202
|
-
media?: string;
|
|
203
|
-
rel?: string;
|
|
204
|
-
shape?: string;
|
|
205
|
-
target?: string;
|
|
206
|
-
}
|
|
207
|
-
interface BaseHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
208
|
-
href?: string;
|
|
209
|
-
target?: string;
|
|
210
|
-
}
|
|
211
|
-
interface BlockquoteHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
212
|
-
cite?: string;
|
|
213
|
-
}
|
|
214
|
-
interface ButtonHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
215
|
-
autoFocus?: boolean;
|
|
216
|
-
disabled?: boolean;
|
|
217
|
-
form?: string;
|
|
218
|
-
formAction?: string;
|
|
219
|
-
formaction?: string;
|
|
220
|
-
formEncType?: string;
|
|
221
|
-
formenctype?: string;
|
|
222
|
-
formMethod?: string;
|
|
223
|
-
formmethod?: string;
|
|
224
|
-
formNoValidate?: boolean;
|
|
225
|
-
formnovalidate?: boolean;
|
|
226
|
-
formTarget?: string;
|
|
227
|
-
formtarget?: string;
|
|
228
|
-
name?: string;
|
|
229
|
-
type?: string;
|
|
230
|
-
value?: string | string[] | number;
|
|
231
|
-
}
|
|
232
|
-
interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
233
|
-
height?: number | string;
|
|
234
|
-
width?: number | string;
|
|
235
|
-
}
|
|
236
|
-
interface ColHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
237
|
-
span?: number;
|
|
238
|
-
}
|
|
239
|
-
interface ColgroupHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
240
|
-
span?: number;
|
|
241
|
-
}
|
|
242
|
-
interface DetailsHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
243
|
-
open?: boolean;
|
|
244
|
-
}
|
|
245
|
-
interface DelHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
246
|
-
cite?: string;
|
|
247
|
-
dateTime?: string;
|
|
248
|
-
datetime?: string;
|
|
249
|
-
}
|
|
250
|
-
interface DialogHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
251
|
-
onClose?: (event: Event) => void;
|
|
252
|
-
open?: boolean;
|
|
253
|
-
returnValue?: string;
|
|
254
|
-
}
|
|
255
|
-
interface EmbedHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
256
|
-
height?: number | string;
|
|
257
|
-
src?: string;
|
|
258
|
-
type?: string;
|
|
259
|
-
width?: number | string;
|
|
260
|
-
}
|
|
261
|
-
interface FieldsetHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
262
|
-
disabled?: boolean;
|
|
263
|
-
form?: string;
|
|
264
|
-
name?: string;
|
|
265
|
-
}
|
|
266
|
-
interface FormHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
267
|
-
acceptCharset?: string;
|
|
268
|
-
acceptcharset?: string;
|
|
269
|
-
action?: string;
|
|
270
|
-
autoComplete?: string;
|
|
271
|
-
autocomplete?: string;
|
|
272
|
-
encType?: string;
|
|
273
|
-
enctype?: string;
|
|
274
|
-
method?: string;
|
|
275
|
-
name?: string;
|
|
276
|
-
noValidate?: boolean;
|
|
277
|
-
novalidate?: boolean | string;
|
|
278
|
-
target?: string;
|
|
279
|
-
}
|
|
280
|
-
interface HtmlHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
281
|
-
manifest?: string;
|
|
282
|
-
}
|
|
283
|
-
interface IframeHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
284
|
-
allowFullScreen?: boolean;
|
|
285
|
-
allowfullScreen?: string | boolean;
|
|
286
|
-
allowTransparency?: boolean;
|
|
287
|
-
allowtransparency?: string | boolean;
|
|
288
|
-
frameBorder?: number | string;
|
|
289
|
-
frameborder?: number | string;
|
|
290
|
-
importance?: 'low' | 'auto' | 'high';
|
|
291
|
-
height?: number | string;
|
|
292
|
-
loading?: 'lazy' | 'auto' | 'eager';
|
|
293
|
-
marginHeight?: number;
|
|
294
|
-
marginheight?: string | number;
|
|
295
|
-
marginWidth?: number;
|
|
296
|
-
marginwidth?: string | number;
|
|
297
|
-
name?: string;
|
|
298
|
-
referrerPolicy?: ReferrerPolicy;
|
|
299
|
-
sandbox?: string;
|
|
300
|
-
scrolling?: string;
|
|
301
|
-
seamless?: boolean;
|
|
302
|
-
src?: string;
|
|
303
|
-
srcDoc?: string;
|
|
304
|
-
srcdoc?: string;
|
|
305
|
-
width?: number | string;
|
|
306
|
-
}
|
|
307
|
-
interface ImgHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
308
|
-
alt?: string;
|
|
309
|
-
decoding?: 'async' | 'auto' | 'sync';
|
|
310
|
-
importance?: 'low' | 'auto' | 'high';
|
|
311
|
-
height?: number | string;
|
|
312
|
-
loading?: 'lazy' | 'auto' | 'eager';
|
|
313
|
-
sizes?: string;
|
|
314
|
-
src?: string;
|
|
315
|
-
srcSet?: string;
|
|
316
|
-
srcset?: string;
|
|
317
|
-
useMap?: string;
|
|
318
|
-
usemap?: string;
|
|
319
|
-
width?: number | string;
|
|
320
|
-
}
|
|
321
|
-
interface InsHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
322
|
-
cite?: string;
|
|
323
|
-
dateTime?: string;
|
|
324
|
-
datetime?: string;
|
|
325
|
-
}
|
|
326
|
-
interface InputHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
327
|
-
accept?: string;
|
|
328
|
-
allowdirs?: boolean;
|
|
329
|
-
alt?: string;
|
|
330
|
-
autoCapitalize?: string;
|
|
331
|
-
autocapitalize?: string;
|
|
332
|
-
autoComplete?: string;
|
|
333
|
-
autocomplete?: string;
|
|
334
|
-
autoFocus?: boolean;
|
|
335
|
-
autofocus?: boolean | string;
|
|
336
|
-
capture?: string;
|
|
337
|
-
checked?: boolean;
|
|
338
|
-
crossOrigin?: string;
|
|
339
|
-
crossorigin?: string;
|
|
340
|
-
defaultChecked?: boolean;
|
|
341
|
-
defaultValue?: string;
|
|
342
|
-
dirName?: string;
|
|
343
|
-
disabled?: boolean;
|
|
344
|
-
files?: any;
|
|
345
|
-
form?: string;
|
|
346
|
-
formAction?: string;
|
|
347
|
-
formaction?: string;
|
|
348
|
-
formEncType?: string;
|
|
349
|
-
formenctype?: string;
|
|
350
|
-
formMethod?: string;
|
|
351
|
-
formmethod?: string;
|
|
352
|
-
formNoValidate?: boolean;
|
|
353
|
-
formnovalidate?: boolean;
|
|
354
|
-
formTarget?: string;
|
|
355
|
-
formtarget?: string;
|
|
356
|
-
height?: number | string;
|
|
357
|
-
indeterminate?: boolean;
|
|
358
|
-
inputmode?: string;
|
|
359
|
-
list?: string;
|
|
360
|
-
max?: number | string;
|
|
361
|
-
maxLength?: number;
|
|
362
|
-
maxlength?: number | string;
|
|
363
|
-
min?: number | string;
|
|
364
|
-
minLength?: number;
|
|
365
|
-
minlength?: number | string;
|
|
366
|
-
multiple?: boolean;
|
|
367
|
-
name?: string;
|
|
368
|
-
pattern?: string;
|
|
369
|
-
placeholder?: string;
|
|
370
|
-
readOnly?: boolean;
|
|
371
|
-
readonly?: boolean | string;
|
|
372
|
-
required?: boolean;
|
|
373
|
-
selectionStart?: number | string;
|
|
374
|
-
selectionEnd?: number | string;
|
|
375
|
-
selectionDirection?: string;
|
|
376
|
-
size?: number;
|
|
377
|
-
src?: string;
|
|
378
|
-
step?: number | string;
|
|
379
|
-
type?: string;
|
|
380
|
-
value?: string | string[] | number;
|
|
381
|
-
valueAsDate?: any;
|
|
382
|
-
valueAsNumber?: any;
|
|
383
|
-
webkitdirectory?: boolean;
|
|
384
|
-
webkitEntries?: any;
|
|
385
|
-
width?: number | string;
|
|
386
|
-
}
|
|
387
|
-
interface KeygenHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
388
|
-
autoFocus?: boolean;
|
|
389
|
-
autofocus?: boolean | string;
|
|
390
|
-
challenge?: string;
|
|
391
|
-
disabled?: boolean;
|
|
392
|
-
form?: string;
|
|
393
|
-
keyType?: string;
|
|
394
|
-
keytype?: string;
|
|
395
|
-
keyParams?: string;
|
|
396
|
-
keyparams?: string;
|
|
397
|
-
name?: string;
|
|
398
|
-
}
|
|
399
|
-
interface LabelHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
400
|
-
form?: string;
|
|
401
|
-
htmlFor?: string;
|
|
402
|
-
htmlfor?: string;
|
|
403
|
-
}
|
|
404
|
-
interface LiHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
405
|
-
value?: string | string[] | number;
|
|
406
|
-
}
|
|
407
|
-
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
408
|
-
href?: string;
|
|
409
|
-
hrefLang?: string;
|
|
410
|
-
hreflang?: string;
|
|
411
|
-
importance?: 'low' | 'auto' | 'high';
|
|
412
|
-
integrity?: string;
|
|
413
|
-
media?: string;
|
|
414
|
-
rel?: string;
|
|
415
|
-
sizes?: string;
|
|
416
|
-
type?: string;
|
|
417
|
-
}
|
|
418
|
-
interface MapHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
419
|
-
name?: string;
|
|
420
|
-
}
|
|
421
|
-
interface MenuHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
422
|
-
type?: string;
|
|
423
|
-
}
|
|
424
|
-
interface MediaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
425
|
-
autoPlay?: boolean;
|
|
426
|
-
autoplay?: boolean | string;
|
|
427
|
-
controls?: boolean;
|
|
428
|
-
crossOrigin?: string;
|
|
429
|
-
crossorigin?: string;
|
|
430
|
-
loop?: boolean;
|
|
431
|
-
mediaGroup?: string;
|
|
432
|
-
mediagroup?: string;
|
|
433
|
-
muted?: boolean;
|
|
434
|
-
preload?: string;
|
|
435
|
-
src?: string;
|
|
436
|
-
onAbort?: (event: Event) => void;
|
|
437
|
-
onCanPlay?: (event: Event) => void;
|
|
438
|
-
onCanPlayThrough?: (event: Event) => void;
|
|
439
|
-
onDurationChange?: (event: Event) => void;
|
|
440
|
-
onEmptied?: (event: Event) => void;
|
|
441
|
-
onEnded?: (event: Event) => void;
|
|
442
|
-
onError?: (event: Event) => void;
|
|
443
|
-
onInterruptBegin?: (event: Event) => void;
|
|
444
|
-
onInterruptEnd?: (event: Event) => void;
|
|
445
|
-
onLoadedData?: (event: Event) => void;
|
|
446
|
-
onLoadedMetaData?: (event: Event) => void;
|
|
447
|
-
onLoadStart?: (event: Event) => void;
|
|
448
|
-
onMozAudioAvailable?: (event: Event) => void;
|
|
449
|
-
onPause?: (event: Event) => void;
|
|
450
|
-
onPlay?: (event: Event) => void;
|
|
451
|
-
onPlaying?: (event: Event) => void;
|
|
452
|
-
onProgress?: (event: Event) => void;
|
|
453
|
-
onRateChange?: (event: Event) => void;
|
|
454
|
-
onSeeked?: (event: Event) => void;
|
|
455
|
-
onSeeking?: (event: Event) => void;
|
|
456
|
-
onStalled?: (event: Event) => void;
|
|
457
|
-
onSuspend?: (event: Event) => void;
|
|
458
|
-
onTimeUpdate?: (event: Event) => void;
|
|
459
|
-
onVolumeChange?: (event: Event) => void;
|
|
460
|
-
onWaiting?: (event: Event) => void;
|
|
461
|
-
}
|
|
462
|
-
interface MetaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
463
|
-
charSet?: string;
|
|
464
|
-
charset?: string;
|
|
465
|
-
content?: string;
|
|
466
|
-
httpEquiv?: string;
|
|
467
|
-
httpequiv?: string;
|
|
468
|
-
name?: string;
|
|
469
|
-
}
|
|
470
|
-
interface MeterHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
471
|
-
form?: string;
|
|
472
|
-
high?: number;
|
|
473
|
-
low?: number;
|
|
474
|
-
max?: number | string;
|
|
475
|
-
min?: number | string;
|
|
476
|
-
optimum?: number;
|
|
477
|
-
value?: string | string[] | number;
|
|
478
|
-
}
|
|
479
|
-
interface QuoteHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
480
|
-
cite?: string;
|
|
481
|
-
}
|
|
482
|
-
interface ObjectHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
483
|
-
classID?: string;
|
|
484
|
-
classid?: string;
|
|
485
|
-
data?: string;
|
|
486
|
-
form?: string;
|
|
487
|
-
height?: number | string;
|
|
488
|
-
name?: string;
|
|
489
|
-
type?: string;
|
|
490
|
-
useMap?: string;
|
|
491
|
-
usemap?: string;
|
|
492
|
-
width?: number | string;
|
|
493
|
-
wmode?: string;
|
|
494
|
-
}
|
|
495
|
-
interface OlHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
496
|
-
reversed?: boolean;
|
|
497
|
-
start?: number;
|
|
498
|
-
}
|
|
499
|
-
interface OptgroupHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
500
|
-
disabled?: boolean;
|
|
501
|
-
label?: string;
|
|
502
|
-
}
|
|
503
|
-
interface OptionHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
504
|
-
disabled?: boolean;
|
|
505
|
-
label?: string;
|
|
506
|
-
selected?: boolean;
|
|
507
|
-
value?: string | string[] | number;
|
|
508
|
-
}
|
|
509
|
-
interface OutputHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
510
|
-
form?: string;
|
|
511
|
-
htmlFor?: string;
|
|
512
|
-
htmlfor?: string;
|
|
513
|
-
name?: string;
|
|
514
|
-
}
|
|
515
|
-
interface ParamHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
516
|
-
name?: string;
|
|
517
|
-
value?: string | string[] | number;
|
|
518
|
-
}
|
|
519
|
-
interface ProgressHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
520
|
-
max?: number | string;
|
|
521
|
-
value?: string | string[] | number;
|
|
522
|
-
}
|
|
523
|
-
interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
524
|
-
async?: boolean;
|
|
525
|
-
charSet?: string;
|
|
526
|
-
charset?: string;
|
|
527
|
-
crossOrigin?: string;
|
|
528
|
-
crossorigin?: string;
|
|
529
|
-
defer?: boolean;
|
|
530
|
-
importance?: 'low' | 'auto' | 'high';
|
|
531
|
-
integrity?: string;
|
|
532
|
-
nonce?: string;
|
|
533
|
-
src?: string;
|
|
534
|
-
type?: string;
|
|
535
|
-
}
|
|
536
|
-
interface SelectHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
537
|
-
autoFocus?: boolean;
|
|
538
|
-
disabled?: boolean;
|
|
539
|
-
form?: string;
|
|
540
|
-
multiple?: boolean;
|
|
541
|
-
name?: string;
|
|
542
|
-
required?: boolean;
|
|
543
|
-
size?: number;
|
|
544
|
-
}
|
|
545
|
-
interface SourceHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
546
|
-
media?: string;
|
|
547
|
-
sizes?: string;
|
|
548
|
-
src?: string;
|
|
549
|
-
srcSet?: string;
|
|
550
|
-
type?: string;
|
|
551
|
-
}
|
|
552
|
-
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
553
|
-
media?: string;
|
|
554
|
-
nonce?: string;
|
|
555
|
-
scoped?: boolean;
|
|
556
|
-
type?: string;
|
|
557
|
-
}
|
|
558
|
-
interface TableHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
559
|
-
cellPadding?: number | string;
|
|
560
|
-
cellpadding?: number | string;
|
|
561
|
-
cellSpacing?: number | string;
|
|
562
|
-
cellspacing?: number | string;
|
|
563
|
-
summary?: string;
|
|
564
|
-
}
|
|
565
|
-
interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
566
|
-
autoFocus?: boolean;
|
|
567
|
-
autofocus?: boolean | string;
|
|
568
|
-
cols?: number;
|
|
569
|
-
disabled?: boolean;
|
|
570
|
-
form?: string;
|
|
571
|
-
maxLength?: number;
|
|
572
|
-
maxlength?: number | string;
|
|
573
|
-
minLength?: number;
|
|
574
|
-
minlength?: number | string;
|
|
575
|
-
name?: string;
|
|
576
|
-
placeholder?: string;
|
|
577
|
-
readOnly?: boolean;
|
|
578
|
-
readonly?: boolean | string;
|
|
579
|
-
required?: boolean;
|
|
580
|
-
rows?: number;
|
|
581
|
-
value?: string | string[] | number;
|
|
582
|
-
wrap?: string;
|
|
583
|
-
}
|
|
584
|
-
interface TdHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
585
|
-
colSpan?: number;
|
|
586
|
-
headers?: string;
|
|
587
|
-
rowSpan?: number;
|
|
588
|
-
}
|
|
589
|
-
interface ThHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
590
|
-
colSpan?: number;
|
|
591
|
-
headers?: string;
|
|
592
|
-
rowSpan?: number;
|
|
593
|
-
rowspan?: number | string;
|
|
594
|
-
scope?: string;
|
|
595
|
-
}
|
|
596
|
-
interface TimeHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
597
|
-
dateTime?: string;
|
|
598
|
-
}
|
|
599
|
-
interface TrackHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
600
|
-
default?: boolean;
|
|
601
|
-
kind?: string;
|
|
602
|
-
label?: string;
|
|
603
|
-
src?: string;
|
|
604
|
-
srcLang?: string;
|
|
605
|
-
srclang?: string;
|
|
606
|
-
}
|
|
607
|
-
interface VideoHTMLAttributes<T> extends MediaHTMLAttributes<T> {
|
|
608
|
-
height?: number | string;
|
|
609
|
-
playsInline?: boolean;
|
|
610
|
-
playsinline?: boolean | string;
|
|
611
|
-
poster?: string;
|
|
612
|
-
width?: number | string;
|
|
613
|
-
}
|
|
614
|
-
interface HTMLAttributes<T = HTMLElement> extends DOMAttributes<T> {
|
|
615
|
-
innerHTML?: string;
|
|
616
|
-
key?: string | number;
|
|
617
|
-
accessKey?: string;
|
|
618
|
-
class?: string | {
|
|
619
|
-
[className: string]: boolean;
|
|
620
|
-
};
|
|
621
|
-
contentEditable?: boolean | string;
|
|
622
|
-
contenteditable?: boolean | string;
|
|
623
|
-
contextMenu?: string;
|
|
624
|
-
contextmenu?: string;
|
|
625
|
-
dir?: string;
|
|
626
|
-
draggable?: boolean;
|
|
627
|
-
hidden?: boolean;
|
|
628
|
-
id?: string;
|
|
629
|
-
lang?: string;
|
|
630
|
-
spellCheck?: boolean;
|
|
631
|
-
spellcheck?: boolean | string;
|
|
632
|
-
style?: {
|
|
633
|
-
[key: string]: string | undefined;
|
|
634
|
-
};
|
|
635
|
-
tabIndex?: number;
|
|
636
|
-
tabindex?: number | string;
|
|
637
|
-
title?: string;
|
|
638
|
-
inputMode?: string;
|
|
639
|
-
inputmode?: string;
|
|
640
|
-
is?: string;
|
|
641
|
-
radioGroup?: string;
|
|
642
|
-
radiogroup?: string;
|
|
643
|
-
part?: string;
|
|
644
|
-
role?: string;
|
|
645
|
-
about?: string;
|
|
646
|
-
datatype?: string;
|
|
647
|
-
inlist?: any;
|
|
648
|
-
prefix?: string;
|
|
649
|
-
property?: string;
|
|
650
|
-
resource?: string;
|
|
651
|
-
typeof?: string;
|
|
652
|
-
vocab?: string;
|
|
653
|
-
autoCapitalize?: string;
|
|
654
|
-
autocapitalize?: string;
|
|
655
|
-
autoCorrect?: string;
|
|
656
|
-
autocorrect?: string;
|
|
657
|
-
autoSave?: string;
|
|
658
|
-
autosave?: string;
|
|
659
|
-
color?: string;
|
|
660
|
-
itemProp?: string;
|
|
661
|
-
itemprop?: string;
|
|
662
|
-
itemScope?: boolean;
|
|
663
|
-
itemscope?: boolean;
|
|
664
|
-
itemType?: string;
|
|
665
|
-
itemtype?: string;
|
|
666
|
-
itemID?: string;
|
|
667
|
-
itemid?: string;
|
|
668
|
-
itemRef?: string;
|
|
669
|
-
itemref?: string;
|
|
670
|
-
results?: number;
|
|
671
|
-
security?: string;
|
|
672
|
-
unselectable?: boolean;
|
|
673
|
-
}
|
|
674
|
-
interface SVGAttributes<T = SVGElement> extends DOMAttributes<T> {
|
|
675
|
-
class?: string | {
|
|
676
|
-
[className: string]: boolean;
|
|
677
|
-
};
|
|
678
|
-
color?: string;
|
|
679
|
-
height?: number | string;
|
|
680
|
-
id?: string;
|
|
681
|
-
lang?: string;
|
|
682
|
-
max?: number | string;
|
|
683
|
-
media?: string;
|
|
684
|
-
method?: string;
|
|
685
|
-
min?: number | string;
|
|
686
|
-
name?: string;
|
|
687
|
-
style?: {
|
|
688
|
-
[key: string]: string | undefined;
|
|
689
|
-
};
|
|
690
|
-
target?: string;
|
|
691
|
-
type?: string;
|
|
692
|
-
width?: number | string;
|
|
693
|
-
role?: string;
|
|
694
|
-
tabIndex?: number;
|
|
695
|
-
accentHeight?: number | string;
|
|
696
|
-
accumulate?: 'none' | 'sum';
|
|
697
|
-
additive?: 'replace' | 'sum';
|
|
698
|
-
alignmentBaseline?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit';
|
|
699
|
-
allowReorder?: 'no' | 'yes';
|
|
700
|
-
alphabetic?: number | string;
|
|
701
|
-
amplitude?: number | string;
|
|
702
|
-
arabicForm?: 'initial' | 'medial' | 'terminal' | 'isolated';
|
|
703
|
-
ascent?: number | string;
|
|
704
|
-
attributeName?: string;
|
|
705
|
-
attributeType?: string;
|
|
706
|
-
autoReverse?: number | string;
|
|
707
|
-
azimuth?: number | string;
|
|
708
|
-
baseFrequency?: number | string;
|
|
709
|
-
baselineShift?: number | string;
|
|
710
|
-
baseProfile?: number | string;
|
|
711
|
-
bbox?: number | string;
|
|
712
|
-
begin?: number | string;
|
|
713
|
-
bias?: number | string;
|
|
714
|
-
by?: number | string;
|
|
715
|
-
calcMode?: number | string;
|
|
716
|
-
capHeight?: number | string;
|
|
717
|
-
clip?: number | string;
|
|
718
|
-
clipPath?: string;
|
|
719
|
-
clipPathUnits?: number | string;
|
|
720
|
-
clipRule?: number | string;
|
|
721
|
-
colorInterpolation?: number | string;
|
|
722
|
-
colorInterpolationFilters?: 'auto' | 'sRGB' | 'linearRGB' | 'inherit';
|
|
723
|
-
colorProfile?: number | string;
|
|
724
|
-
colorRendering?: number | string;
|
|
725
|
-
contentScriptType?: number | string;
|
|
726
|
-
contentStyleType?: number | string;
|
|
727
|
-
cursor?: number | string;
|
|
728
|
-
cx?: number | string;
|
|
729
|
-
cy?: number | string;
|
|
730
|
-
d?: string;
|
|
731
|
-
decelerate?: number | string;
|
|
732
|
-
descent?: number | string;
|
|
733
|
-
diffuseConstant?: number | string;
|
|
734
|
-
direction?: number | string;
|
|
735
|
-
display?: number | string;
|
|
736
|
-
divisor?: number | string;
|
|
737
|
-
dominantBaseline?: number | string;
|
|
738
|
-
dur?: number | string;
|
|
739
|
-
dx?: number | string;
|
|
740
|
-
dy?: number | string;
|
|
741
|
-
edgeMode?: number | string;
|
|
742
|
-
elevation?: number | string;
|
|
743
|
-
enableBackground?: number | string;
|
|
744
|
-
end?: number | string;
|
|
745
|
-
exponent?: number | string;
|
|
746
|
-
externalResourcesRequired?: number | string;
|
|
747
|
-
fill?: string;
|
|
748
|
-
fillOpacity?: number | string;
|
|
749
|
-
fillRule?: 'nonzero' | 'evenodd' | 'inherit';
|
|
750
|
-
filter?: string;
|
|
751
|
-
filterRes?: number | string;
|
|
752
|
-
filterUnits?: number | string;
|
|
753
|
-
floodColor?: number | string;
|
|
754
|
-
floodOpacity?: number | string;
|
|
755
|
-
focusable?: number | string;
|
|
756
|
-
fontFamily?: string;
|
|
757
|
-
fontSize?: number | string;
|
|
758
|
-
fontSizeAdjust?: number | string;
|
|
759
|
-
fontStretch?: number | string;
|
|
760
|
-
fontStyle?: number | string;
|
|
761
|
-
fontVariant?: number | string;
|
|
762
|
-
fontWeight?: number | string;
|
|
763
|
-
format?: number | string;
|
|
764
|
-
from?: number | string;
|
|
765
|
-
fx?: number | string;
|
|
766
|
-
fy?: number | string;
|
|
767
|
-
g1?: number | string;
|
|
768
|
-
g2?: number | string;
|
|
769
|
-
glyphName?: number | string;
|
|
770
|
-
glyphOrientationHorizontal?: number | string;
|
|
771
|
-
glyphOrientationVertical?: number | string;
|
|
772
|
-
glyphRef?: number | string;
|
|
773
|
-
gradientTransform?: string;
|
|
774
|
-
gradientUnits?: string;
|
|
775
|
-
hanging?: number | string;
|
|
776
|
-
horizAdvX?: number | string;
|
|
777
|
-
horizOriginX?: number | string;
|
|
778
|
-
ideographic?: number | string;
|
|
779
|
-
imageRendering?: number | string;
|
|
780
|
-
in2?: number | string;
|
|
781
|
-
in?: string;
|
|
782
|
-
intercept?: number | string;
|
|
783
|
-
k1?: number | string;
|
|
784
|
-
k2?: number | string;
|
|
785
|
-
k3?: number | string;
|
|
786
|
-
k4?: number | string;
|
|
787
|
-
k?: number | string;
|
|
788
|
-
kernelMatrix?: number | string;
|
|
789
|
-
kernelUnitLength?: number | string;
|
|
790
|
-
kerning?: number | string;
|
|
791
|
-
keyPoints?: number | string;
|
|
792
|
-
keySplines?: number | string;
|
|
793
|
-
keyTimes?: number | string;
|
|
794
|
-
lengthAdjust?: number | string;
|
|
795
|
-
letterSpacing?: number | string;
|
|
796
|
-
lightingColor?: number | string;
|
|
797
|
-
limitingConeAngle?: number | string;
|
|
798
|
-
local?: number | string;
|
|
799
|
-
markerEnd?: string;
|
|
800
|
-
markerHeight?: number | string;
|
|
801
|
-
markerMid?: string;
|
|
802
|
-
markerStart?: string;
|
|
803
|
-
markerUnits?: number | string;
|
|
804
|
-
markerWidth?: number | string;
|
|
805
|
-
mask?: string;
|
|
806
|
-
maskContentUnits?: number | string;
|
|
807
|
-
maskUnits?: number | string;
|
|
808
|
-
mathematical?: number | string;
|
|
809
|
-
mode?: number | string;
|
|
810
|
-
numOctaves?: number | string;
|
|
811
|
-
offset?: number | string;
|
|
812
|
-
opacity?: number | string;
|
|
813
|
-
operator?: number | string;
|
|
814
|
-
order?: number | string;
|
|
815
|
-
orient?: number | string;
|
|
816
|
-
orientation?: number | string;
|
|
817
|
-
origin?: number | string;
|
|
818
|
-
overflow?: number | string;
|
|
819
|
-
overlinePosition?: number | string;
|
|
820
|
-
overlineThickness?: number | string;
|
|
821
|
-
paintOrder?: number | string;
|
|
822
|
-
panose1?: number | string;
|
|
823
|
-
pathLength?: number | string;
|
|
824
|
-
patternContentUnits?: string;
|
|
825
|
-
patternTransform?: number | string;
|
|
826
|
-
patternUnits?: string;
|
|
827
|
-
pointerEvents?: number | string;
|
|
828
|
-
points?: string;
|
|
829
|
-
pointsAtX?: number | string;
|
|
830
|
-
pointsAtY?: number | string;
|
|
831
|
-
pointsAtZ?: number | string;
|
|
832
|
-
preserveAlpha?: number | string;
|
|
833
|
-
preserveAspectRatio?: string;
|
|
834
|
-
primitiveUnits?: number | string;
|
|
835
|
-
r?: number | string;
|
|
836
|
-
radius?: number | string;
|
|
837
|
-
refX?: number | string;
|
|
838
|
-
refY?: number | string;
|
|
839
|
-
renderingIntent?: number | string;
|
|
840
|
-
repeatCount?: number | string;
|
|
841
|
-
repeatDur?: number | string;
|
|
842
|
-
requiredExtensions?: number | string;
|
|
843
|
-
requiredFeatures?: number | string;
|
|
844
|
-
restart?: number | string;
|
|
845
|
-
result?: string;
|
|
846
|
-
rotate?: number | string;
|
|
847
|
-
rx?: number | string;
|
|
848
|
-
ry?: number | string;
|
|
849
|
-
scale?: number | string;
|
|
850
|
-
seed?: number | string;
|
|
851
|
-
shapeRendering?: number | string;
|
|
852
|
-
slope?: number | string;
|
|
853
|
-
spacing?: number | string;
|
|
854
|
-
specularConstant?: number | string;
|
|
855
|
-
specularExponent?: number | string;
|
|
856
|
-
speed?: number | string;
|
|
857
|
-
spreadMethod?: string;
|
|
858
|
-
startOffset?: number | string;
|
|
859
|
-
stdDeviation?: number | string;
|
|
860
|
-
stemh?: number | string;
|
|
861
|
-
stemv?: number | string;
|
|
862
|
-
stitchTiles?: number | string;
|
|
863
|
-
stopColor?: string;
|
|
864
|
-
stopOpacity?: number | string;
|
|
865
|
-
strikethroughPosition?: number | string;
|
|
866
|
-
strikethroughThickness?: number | string;
|
|
867
|
-
string?: number | string;
|
|
868
|
-
stroke?: string;
|
|
869
|
-
strokeDasharray?: string | number;
|
|
870
|
-
strokeDashoffset?: string | number;
|
|
871
|
-
strokeLinecap?: 'butt' | 'round' | 'square' | 'inherit';
|
|
872
|
-
strokeLinejoin?: 'miter' | 'round' | 'bevel' | 'inherit';
|
|
873
|
-
strokeMiterlimit?: string;
|
|
874
|
-
strokeOpacity?: number | string;
|
|
875
|
-
strokeWidth?: number | string;
|
|
876
|
-
surfaceScale?: number | string;
|
|
877
|
-
systemLanguage?: number | string;
|
|
878
|
-
tableValues?: number | string;
|
|
879
|
-
targetX?: number | string;
|
|
880
|
-
targetY?: number | string;
|
|
881
|
-
textAnchor?: string;
|
|
882
|
-
textDecoration?: number | string;
|
|
883
|
-
textLength?: number | string;
|
|
884
|
-
textRendering?: number | string;
|
|
885
|
-
to?: number | string;
|
|
886
|
-
transform?: string;
|
|
887
|
-
u1?: number | string;
|
|
888
|
-
u2?: number | string;
|
|
889
|
-
underlinePosition?: number | string;
|
|
890
|
-
underlineThickness?: number | string;
|
|
891
|
-
unicode?: number | string;
|
|
892
|
-
unicodeBidi?: number | string;
|
|
893
|
-
unicodeRange?: number | string;
|
|
894
|
-
unitsPerEm?: number | string;
|
|
895
|
-
vAlphabetic?: number | string;
|
|
896
|
-
values?: string;
|
|
897
|
-
vectorEffect?: number | string;
|
|
898
|
-
version?: string;
|
|
899
|
-
vertAdvY?: number | string;
|
|
900
|
-
vertOriginX?: number | string;
|
|
901
|
-
vertOriginY?: number | string;
|
|
902
|
-
vHanging?: number | string;
|
|
903
|
-
vIdeographic?: number | string;
|
|
904
|
-
viewBox?: string;
|
|
905
|
-
viewTarget?: number | string;
|
|
906
|
-
visibility?: number | string;
|
|
907
|
-
vMathematical?: number | string;
|
|
908
|
-
widths?: number | string;
|
|
909
|
-
wordSpacing?: number | string;
|
|
910
|
-
writingMode?: number | string;
|
|
911
|
-
x1?: number | string;
|
|
912
|
-
x2?: number | string;
|
|
913
|
-
x?: number | string;
|
|
914
|
-
xChannelSelector?: string;
|
|
915
|
-
xHeight?: number | string;
|
|
916
|
-
xlinkActuate?: string;
|
|
917
|
-
xlinkArcrole?: string;
|
|
918
|
-
xlinkHref?: string;
|
|
919
|
-
xlinkRole?: string;
|
|
920
|
-
xlinkShow?: string;
|
|
921
|
-
xlinkTitle?: string;
|
|
922
|
-
xlinkType?: string;
|
|
923
|
-
xmlBase?: string;
|
|
924
|
-
xmlLang?: string;
|
|
925
|
-
xmlns?: string;
|
|
926
|
-
xmlnsXlink?: string;
|
|
927
|
-
xmlSpace?: string;
|
|
928
|
-
y1?: number | string;
|
|
929
|
-
y2?: number | string;
|
|
930
|
-
y?: number | string;
|
|
931
|
-
yChannelSelector?: string;
|
|
932
|
-
z?: number | string;
|
|
933
|
-
zoomAndPan?: string;
|
|
934
|
-
}
|
|
935
|
-
interface DOMAttributes<T = Element> {
|
|
936
|
-
ref?: (elm?: T) => void;
|
|
937
|
-
slot?: string;
|
|
938
|
-
onCopy?: (event: ClipboardEvent) => void;
|
|
939
|
-
onCopyCapture?: (event: ClipboardEvent) => void;
|
|
940
|
-
onCut?: (event: ClipboardEvent) => void;
|
|
941
|
-
onCutCapture?: (event: ClipboardEvent) => void;
|
|
942
|
-
onPaste?: (event: ClipboardEvent) => void;
|
|
943
|
-
onPasteCapture?: (event: ClipboardEvent) => void;
|
|
944
|
-
onCompositionEnd?: (event: CompositionEvent) => void;
|
|
945
|
-
onCompositionEndCapture?: (event: CompositionEvent) => void;
|
|
946
|
-
onCompositionStart?: (event: CompositionEvent) => void;
|
|
947
|
-
onCompositionStartCapture?: (event: CompositionEvent) => void;
|
|
948
|
-
onCompositionUpdate?: (event: CompositionEvent) => void;
|
|
949
|
-
onCompositionUpdateCapture?: (event: CompositionEvent) => void;
|
|
950
|
-
onFocus?: (event: FocusEvent) => void;
|
|
951
|
-
onFocusCapture?: (event: FocusEvent) => void;
|
|
952
|
-
onBlur?: (event: FocusEvent) => void;
|
|
953
|
-
onBlurCapture?: (event: FocusEvent) => void;
|
|
954
|
-
onChange?: (event: Event) => void;
|
|
955
|
-
onChangeCapture?: (event: Event) => void;
|
|
956
|
-
onInput?: (event: Event) => void;
|
|
957
|
-
onInputCapture?: (event: Event) => void;
|
|
958
|
-
onReset?: (event: Event) => void;
|
|
959
|
-
onResetCapture?: (event: Event) => void;
|
|
960
|
-
onSubmit?: (event: Event) => void;
|
|
961
|
-
onSubmitCapture?: (event: Event) => void;
|
|
962
|
-
onInvalid?: (event: Event) => void;
|
|
963
|
-
onInvalidCapture?: (event: Event) => void;
|
|
964
|
-
onLoad?: (event: Event) => void;
|
|
965
|
-
onLoadCapture?: (event: Event) => void;
|
|
966
|
-
onError?: (event: Event) => void;
|
|
967
|
-
onErrorCapture?: (event: Event) => void;
|
|
968
|
-
onKeyDown?: (event: KeyboardEvent) => void;
|
|
969
|
-
onKeyDownCapture?: (event: KeyboardEvent) => void;
|
|
970
|
-
onKeyPress?: (event: KeyboardEvent) => void;
|
|
971
|
-
onKeyPressCapture?: (event: KeyboardEvent) => void;
|
|
972
|
-
onKeyUp?: (event: KeyboardEvent) => void;
|
|
973
|
-
onKeyUpCapture?: (event: KeyboardEvent) => void;
|
|
974
|
-
onAuxClick?: (event: MouseEvent) => void;
|
|
975
|
-
onClick?: (event: MouseEvent) => void;
|
|
976
|
-
onClickCapture?: (event: MouseEvent) => void;
|
|
977
|
-
onContextMenu?: (event: MouseEvent) => void;
|
|
978
|
-
onContextMenuCapture?: (event: MouseEvent) => void;
|
|
979
|
-
onDblClick?: (event: MouseEvent) => void;
|
|
980
|
-
onDblClickCapture?: (event: MouseEvent) => void;
|
|
981
|
-
onDrag?: (event: DragEvent) => void;
|
|
982
|
-
onDragCapture?: (event: DragEvent) => void;
|
|
983
|
-
onDragEnd?: (event: DragEvent) => void;
|
|
984
|
-
onDragEndCapture?: (event: DragEvent) => void;
|
|
985
|
-
onDragEnter?: (event: DragEvent) => void;
|
|
986
|
-
onDragEnterCapture?: (event: DragEvent) => void;
|
|
987
|
-
onDragExit?: (event: DragEvent) => void;
|
|
988
|
-
onDragExitCapture?: (event: DragEvent) => void;
|
|
989
|
-
onDragLeave?: (event: DragEvent) => void;
|
|
990
|
-
onDragLeaveCapture?: (event: DragEvent) => void;
|
|
991
|
-
onDragOver?: (event: DragEvent) => void;
|
|
992
|
-
onDragOverCapture?: (event: DragEvent) => void;
|
|
993
|
-
onDragStart?: (event: DragEvent) => void;
|
|
994
|
-
onDragStartCapture?: (event: DragEvent) => void;
|
|
995
|
-
onDrop?: (event: DragEvent) => void;
|
|
996
|
-
onDropCapture?: (event: DragEvent) => void;
|
|
997
|
-
onMouseDown?: (event: MouseEvent) => void;
|
|
998
|
-
onMouseDownCapture?: (event: MouseEvent) => void;
|
|
999
|
-
onMouseEnter?: (event: MouseEvent) => void;
|
|
1000
|
-
onMouseLeave?: (event: MouseEvent) => void;
|
|
1001
|
-
onMouseMove?: (event: MouseEvent) => void;
|
|
1002
|
-
onMouseMoveCapture?: (event: MouseEvent) => void;
|
|
1003
|
-
onMouseOut?: (event: MouseEvent) => void;
|
|
1004
|
-
onMouseOutCapture?: (event: MouseEvent) => void;
|
|
1005
|
-
onMouseOver?: (event: MouseEvent) => void;
|
|
1006
|
-
onMouseOverCapture?: (event: MouseEvent) => void;
|
|
1007
|
-
onMouseUp?: (event: MouseEvent) => void;
|
|
1008
|
-
onMouseUpCapture?: (event: MouseEvent) => void;
|
|
1009
|
-
onTouchCancel?: (event: TouchEvent) => void;
|
|
1010
|
-
onTouchCancelCapture?: (event: TouchEvent) => void;
|
|
1011
|
-
onTouchEnd?: (event: TouchEvent) => void;
|
|
1012
|
-
onTouchEndCapture?: (event: TouchEvent) => void;
|
|
1013
|
-
onTouchMove?: (event: TouchEvent) => void;
|
|
1014
|
-
onTouchMoveCapture?: (event: TouchEvent) => void;
|
|
1015
|
-
onTouchStart?: (event: TouchEvent) => void;
|
|
1016
|
-
onTouchStartCapture?: (event: TouchEvent) => void;
|
|
1017
|
-
onPointerDown?: (event: PointerEvent) => void;
|
|
1018
|
-
onPointerDownCapture?: (event: PointerEvent) => void;
|
|
1019
|
-
onPointerMove?: (event: PointerEvent) => void;
|
|
1020
|
-
onPointerMoveCapture?: (event: PointerEvent) => void;
|
|
1021
|
-
onPointerUp?: (event: PointerEvent) => void;
|
|
1022
|
-
onPointerUpCapture?: (event: PointerEvent) => void;
|
|
1023
|
-
onPointerCancel?: (event: PointerEvent) => void;
|
|
1024
|
-
onPointerCancelCapture?: (event: PointerEvent) => void;
|
|
1025
|
-
onPointerEnter?: (event: PointerEvent) => void;
|
|
1026
|
-
onPointerEnterCapture?: (event: PointerEvent) => void;
|
|
1027
|
-
onPointerLeave?: (event: PointerEvent) => void;
|
|
1028
|
-
onPointerLeaveCapture?: (event: PointerEvent) => void;
|
|
1029
|
-
onPointerOver?: (event: PointerEvent) => void;
|
|
1030
|
-
onPointerOverCapture?: (event: PointerEvent) => void;
|
|
1031
|
-
onPointerOut?: (event: PointerEvent) => void;
|
|
1032
|
-
onPointerOutCapture?: (event: PointerEvent) => void;
|
|
1033
|
-
onGotPointerCapture?: (event: PointerEvent) => void;
|
|
1034
|
-
onGotPointerCaptureCapture?: (event: PointerEvent) => void;
|
|
1035
|
-
onLostPointerCapture?: (event: PointerEvent) => void;
|
|
1036
|
-
onLostPointerCaptureCapture?: (event: PointerEvent) => void;
|
|
1037
|
-
onScroll?: (event: UIEvent) => void;
|
|
1038
|
-
onScrollCapture?: (event: UIEvent) => void;
|
|
1039
|
-
onWheel?: (event: WheelEvent) => void;
|
|
1040
|
-
onWheelCapture?: (event: WheelEvent) => void;
|
|
1041
|
-
onAnimationStart?: (event: AnimationEvent) => void;
|
|
1042
|
-
onAnimationStartCapture?: (event: AnimationEvent) => void;
|
|
1043
|
-
onAnimationEnd?: (event: AnimationEvent) => void;
|
|
1044
|
-
onAnimationEndCapture?: (event: AnimationEvent) => void;
|
|
1045
|
-
onAnimationIteration?: (event: AnimationEvent) => void;
|
|
1046
|
-
onAnimationIterationCapture?: (event: AnimationEvent) => void;
|
|
1047
|
-
onTransitionEnd?: (event: TransitionEvent) => void;
|
|
1048
|
-
onTransitionEndCapture?: (event: TransitionEvent) => void;
|
|
1049
|
-
}
|
|
1050
|
-
}
|