├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── ionic-issue-bot.yml └── workflows │ ├── README.md │ ├── actions │ ├── check-git-context │ │ └── action.yml │ ├── download-archive │ │ └── action.yml │ ├── get-core-dependencies │ │ └── action.yml │ └── upload-archive │ │ └── action.yml │ ├── build.yml │ ├── create-production-pr.yml │ ├── lint-and-format.yml │ ├── main.yml │ ├── publish-npm.yml │ ├── release-dev.yml │ ├── release-nightly.yml │ ├── release-orchestrator.yml │ ├── release-production.yml │ ├── test-analysis.yml │ ├── test-bundlers.yml │ ├── test-component-starter.yml │ ├── test-copytask.yml │ ├── test-docs-build.yml │ ├── test-e2e.yml │ ├── test-types.yml │ ├── test-unit.yml │ └── test-wdio.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .vscode └── launch.json ├── BREAKING_CHANGES.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── RELEASE.md ├── STYLE_GUIDE.md ├── bin └── stencil ├── cspell-code.json ├── cspell-markdown.json ├── cspell-wordlist.txt ├── docs ├── README.md ├── cli.md ├── compiler.md ├── declarations.md ├── dev-server.md ├── hydrate.md ├── mock-doc.md ├── runtime.md ├── screenshot-deprecated.md ├── scripts.md └── testing-deprecated.md ├── jest.config.js ├── package.json ├── readme.md ├── screenshot ├── compare │ ├── assets │ │ ├── favicon.ico │ │ └── logo.png │ ├── build │ │ ├── app.css │ │ ├── app.esm.js │ │ ├── app.js │ │ ├── index.esm.js │ │ ├── p-081b0641.js │ │ ├── p-227a1e18.entry.js │ │ ├── p-2c298727.entry.js │ │ ├── p-5479268c.entry.js │ │ ├── p-573ec8a4.entry.js │ │ ├── p-6ba08604.entry.js │ │ ├── p-6bc63295.entry.js │ │ ├── p-7a3759fd.entry.js │ │ ├── p-7b4e3ba7.js │ │ ├── p-988eb362.css │ │ ├── p-9b6a9315.js │ │ ├── p-b4cc611c.entry.js │ │ ├── p-d1bf53f5.entry.js │ │ ├── p-e2efe0df.js │ │ ├── p-e8ca6d97.entry.js │ │ ├── p-ec2f13e0.entry.js │ │ ├── p-f0b99977.entry.js │ │ ├── p-f4745c2f.entry.js │ │ └── p-fbbae598.js │ ├── host.config.json │ ├── index.html │ └── manifest.json ├── connector.js └── local-connector.js ├── scripts ├── build.ts ├── esbuild │ ├── cli.ts │ ├── compiler.ts │ ├── dev-server.ts │ ├── helpers │ │ ├── empty.js │ │ ├── import-meta-url.js │ │ ├── jest │ │ │ ├── jest-environment.js │ │ │ ├── jest-preprocessor.js │ │ │ ├── jest-preset.js │ │ │ ├── jest-runner.js │ │ │ └── jest-setuptestframework.js │ │ ├── lazy-require.js │ │ └── path-is-absolute.js │ ├── internal-app-data.ts │ ├── internal-app-globals.ts │ ├── internal-platform-client.ts │ ├── internal-platform-hydrate.ts │ ├── internal-platform-testing.ts │ ├── internal.ts │ ├── mock-doc.ts │ ├── screenshot.ts │ ├── sys-node.ts │ ├── testing.ts │ └── utils │ │ ├── alias-plugin.ts │ │ ├── content-types.ts │ │ ├── index.ts │ │ ├── parse5.ts │ │ ├── terser.ts │ │ └── typescript-source.ts ├── index.ts ├── release-tasks.ts ├── release.ts ├── test │ ├── copy-readme.js │ ├── validate-build.ts │ └── validate-testing.js ├── tsconfig.json ├── types │ └── rollup-plugin-node-resolve.d.ts ├── updateSelectorEngine.ts └── utils │ ├── banner.ts │ ├── bundle-dts.ts │ ├── constants.ts │ ├── conventional-changelog-config.js │ ├── options.ts │ ├── postcss-bundle │ ├── postcss-rollup.js │ ├── release-utils.ts │ ├── test │ ├── options.spec.ts │ └── release-utils.spec.ts │ ├── vermoji.ts │ └── write-pkg-json.ts ├── src ├── app-data │ └── index.ts ├── app-globals │ └── index.ts ├── cli │ ├── check-version.ts │ ├── config-flags.ts │ ├── find-config.ts │ ├── index.ts │ ├── ionic-config.ts │ ├── load-compiler.ts │ ├── logs.ts │ ├── parse-flags.ts │ ├── public.ts │ ├── run.ts │ ├── task-build.ts │ ├── task-docs.ts │ ├── task-generate.ts │ ├── task-help.ts │ ├── task-info.ts │ ├── task-prerender.ts │ ├── task-serve.ts │ ├── task-telemetry.ts │ ├── task-test.ts │ ├── task-watch.ts │ ├── telemetry │ │ ├── helpers.ts │ │ ├── shouldTrack.ts │ │ ├── telemetry.ts │ │ └── test │ │ │ ├── helpers.spec.ts │ │ │ └── telemetry.spec.ts │ └── test │ │ ├── ionic-config.spec.ts │ │ ├── parse-flags.spec.ts │ │ ├── run.spec.ts │ │ └── task-generate.spec.ts ├── client │ ├── client-build.ts │ ├── client-host-ref.ts │ ├── client-load-module.ts │ ├── client-log.ts │ ├── client-patch-browser.ts │ ├── client-style.ts │ ├── client-task-queue.ts │ ├── client-window.ts │ ├── index.ts │ └── polyfills │ │ ├── core-js.js │ │ ├── dom.js │ │ ├── es5-html-element.js │ │ ├── index.js │ │ └── system.js ├── compiler │ ├── app-core │ │ ├── app-data.ts │ │ ├── app-es5-disabled.ts │ │ ├── app-polyfills.ts │ │ └── bundle-app-core.ts │ ├── build │ │ ├── build-ctx.ts │ │ ├── build-finish.ts │ │ ├── build-hmr.ts │ │ ├── build-results.ts │ │ ├── build-stats.ts │ │ ├── build.ts │ │ ├── compiler-ctx.ts │ │ ├── full-build.ts │ │ ├── test │ │ │ ├── build-stats.spec.ts │ │ │ └── write-export-maps.spec.ts │ │ ├── validate-files.ts │ │ ├── watch-build.ts │ │ ├── write-build.ts │ │ └── write-export-maps.ts │ ├── bundle │ │ ├── app-data-plugin.ts │ │ ├── bundle-interface.ts │ │ ├── bundle-output.ts │ │ ├── constants.ts │ │ ├── core-resolve-plugin.ts │ │ ├── dev-module.ts │ │ ├── dev-node-module-resolve.ts │ │ ├── entry-alias-ids.ts │ │ ├── ext-format-plugin.ts │ │ ├── ext-transforms-plugin.ts │ │ ├── file-load-plugin.ts │ │ ├── loader-plugin.ts │ │ ├── plugin-helper.ts │ │ ├── server-plugin.ts │ │ ├── test │ │ │ ├── app-data-plugin.spec.ts │ │ │ ├── core-resolve-plugin.spec.ts │ │ │ └── ext-transforms-plugin.spec.ts │ │ ├── typescript-plugin.ts │ │ ├── user-index-plugin.ts │ │ └── worker-plugin.ts │ ├── cache.ts │ ├── compiler.ts │ ├── config │ │ ├── config-utils.ts │ │ ├── constants.ts │ │ ├── load-config.ts │ │ ├── outputs │ │ │ ├── index.ts │ │ │ ├── validate-collection.ts │ │ │ ├── validate-custom-element.ts │ │ │ ├── validate-custom-output.ts │ │ │ ├── validate-dist.ts │ │ │ ├── validate-docs.ts │ │ │ ├── validate-hydrate-script.ts │ │ │ ├── validate-lazy.ts │ │ │ ├── validate-stats.ts │ │ │ └── validate-www.ts │ │ ├── test │ │ │ ├── fixtures │ │ │ │ ├── stencil.config.ts │ │ │ │ └── stencil.config2.ts │ │ │ ├── load-config.spec.ts │ │ │ ├── tsconfig.json │ │ │ ├── validate-config-sourcemap.spec.ts │ │ │ ├── validate-config.spec.ts │ │ │ ├── validate-copy.spec.ts │ │ │ ├── validate-custom.spec.ts │ │ │ ├── validate-dev-server.spec.ts │ │ │ ├── validate-docs.spec.ts │ │ │ ├── validate-hydrated.spec.ts │ │ │ ├── validate-namespace.spec.ts │ │ │ ├── validate-output-dist-collection.spec.ts │ │ │ ├── validate-output-dist-custom-element.spec.ts │ │ │ ├── validate-output-dist.spec.ts │ │ │ ├── validate-output-www.spec.ts │ │ │ ├── validate-paths.spec.ts │ │ │ ├── validate-rollup-config.spec.ts │ │ │ ├── validate-service-worker.spec.ts │ │ │ ├── validate-stats.spec.ts │ │ │ ├── validate-testing.spec.ts │ │ │ └── validate-workers.spec.ts │ │ ├── transpile-options.ts │ │ ├── validate-config.ts │ │ ├── validate-copy.ts │ │ ├── validate-dev-server.ts │ │ ├── validate-docs.ts │ │ ├── validate-hydrated.ts │ │ ├── validate-namespace.ts │ │ ├── validate-paths.ts │ │ ├── validate-plugins.ts │ │ ├── validate-prerender.ts │ │ ├── validate-rollup-config.ts │ │ ├── validate-service-worker.ts │ │ ├── validate-testing.ts │ │ └── validate-workers.ts │ ├── docs │ │ ├── constants.ts │ │ ├── custom │ │ │ └── index.ts │ │ ├── generate-doc-data.ts │ │ ├── json │ │ │ └── index.ts │ │ ├── readme │ │ │ ├── docs-util.ts │ │ │ ├── index.ts │ │ │ ├── markdown-css-props.ts │ │ │ ├── markdown-dependencies.ts │ │ │ ├── markdown-events.ts │ │ │ ├── markdown-methods.ts │ │ │ ├── markdown-overview.ts │ │ │ ├── markdown-parts.ts │ │ │ ├── markdown-props.ts │ │ │ ├── markdown-slots.ts │ │ │ ├── markdown-usage.ts │ │ │ └── output-docs.ts │ │ ├── style-docs.ts │ │ ├── test │ │ │ ├── docs-util.spec.ts │ │ │ ├── generate-doc-data.spec.ts │ │ │ ├── markdown-dependencies.spec.ts │ │ │ ├── markdown-overview.spec.ts │ │ │ ├── markdown-props.spec.ts │ │ │ ├── style-docs.spec.ts │ │ │ └── tsconfig.json │ │ └── vscode │ │ │ └── index.ts │ ├── entries │ │ ├── component-bundles.ts │ │ ├── component-graph.ts │ │ ├── default-bundles.ts │ │ └── resolve-component-dependencies.ts │ ├── events.ts │ ├── fs-watch │ │ └── fs-watch-rebuild.ts │ ├── html │ │ ├── add-script-attr.ts │ │ ├── canonical-link.ts │ │ ├── html-utils.ts │ │ ├── inject-module-preloads.ts │ │ ├── inject-sw-script.ts │ │ ├── inline-esm-import.ts │ │ ├── inline-style-sheets.ts │ │ ├── relocate-meta-charset.ts │ │ ├── remove-unused-styles.ts │ │ ├── test │ │ │ ├── remove-unused-styles.spec.ts │ │ │ ├── tsconfig.json │ │ │ └── update-esm-import-paths.spec.ts │ │ ├── update-global-styles-link.ts │ │ ├── used-components.ts │ │ └── validate-manifest-json.ts │ ├── index.ts │ ├── optimize │ │ ├── autoprefixer.ts │ │ ├── minify-css.ts │ │ ├── minify-js.ts │ │ ├── optimize-css.ts │ │ ├── optimize-js.ts │ │ └── optimize-module.ts │ ├── output-targets │ │ ├── copy │ │ │ ├── assets-copy-tasks.ts │ │ │ ├── hashed-copy.ts │ │ │ ├── local-copy-tasks.ts │ │ │ └── output-copy.ts │ │ ├── dist-collection │ │ │ └── index.ts │ │ ├── dist-custom-elements │ │ │ ├── custom-elements-build-conditionals.ts │ │ │ ├── custom-elements-types.ts │ │ │ ├── index.ts │ │ │ └── test │ │ │ │ └── dist-custom-elements.spec.ts │ │ ├── dist-hydrate-script │ │ │ ├── bundle-hydrate-factory.ts │ │ │ ├── generate-hydrate-app.ts │ │ │ ├── hydrate-build-conditionals.ts │ │ │ ├── hydrate-factory-closure.ts │ │ │ ├── index.ts │ │ │ ├── relocate-hydrate-context.ts │ │ │ ├── update-to-hydrate-components.ts │ │ │ └── write-hydrate-outputs.ts │ │ ├── dist-lazy │ │ │ ├── generate-cjs.ts │ │ │ ├── generate-esm-browser.ts │ │ │ ├── generate-esm.ts │ │ │ ├── generate-lazy-module.ts │ │ │ ├── generate-system.ts │ │ │ ├── lazy-build-conditionals.ts │ │ │ ├── lazy-bundleid-plugin.ts │ │ │ ├── lazy-component-plugin.ts │ │ │ ├── lazy-output.ts │ │ │ ├── test │ │ │ │ └── generate-lazy-module.spec.ts │ │ │ └── write-lazy-entry-module.ts │ │ ├── empty-dir.ts │ │ ├── index.ts │ │ ├── output-custom.ts │ │ ├── output-docs.ts │ │ ├── output-lazy-loader.ts │ │ ├── output-service-workers.ts │ │ ├── output-types.ts │ │ ├── output-www.ts │ │ ├── readme.md │ │ └── test │ │ │ ├── build-conditionals.spec.ts │ │ │ ├── custom-elements-types.spec.ts │ │ │ ├── output-lazy-loader.spec.ts │ │ │ ├── output-targets-collection.spec.ts │ │ │ ├── output-targets-dist-custom-elements.spec.ts │ │ │ ├── output-targets-dist.spec.ts │ │ │ ├── output-targets-www-dist.spec.ts │ │ │ ├── output-targets-www.spec.ts │ │ │ └── tsconfig.json │ ├── plugin │ │ ├── plugin.ts │ │ └── test │ │ │ ├── plugin.spec.ts │ │ │ └── tsconfig.json │ ├── prerender │ │ ├── crawl-urls.ts │ │ ├── prerender-config.ts │ │ ├── prerender-hydrate-options.ts │ │ ├── prerender-main.ts │ │ ├── prerender-optimize.ts │ │ ├── prerender-queue.ts │ │ ├── prerender-template-html.ts │ │ ├── prerender-worker-ctx.ts │ │ ├── prerender-worker.ts │ │ ├── prerendered-write-path.ts │ │ ├── robots-txt.ts │ │ ├── sitemap-xml.ts │ │ └── test │ │ │ ├── crawl-urls.spec.ts │ │ │ ├── prerender-optimize.spec.ts │ │ │ ├── prerendered-write-path.spec.ts │ │ │ └── tsconfig.json │ ├── public.ts │ ├── service-worker │ │ ├── generate-sw.ts │ │ ├── service-worker-util.ts │ │ └── test │ │ │ ├── service-worker-util.spec.ts │ │ │ ├── service-worker.spec.ts │ │ │ └── tsconfig.json │ ├── style │ │ ├── css-imports.ts │ │ ├── css-parser │ │ │ ├── css-parse-declarations.ts │ │ │ ├── get-css-selectors.ts │ │ │ ├── parse-css.ts │ │ │ ├── readme.md │ │ │ ├── serialize-css.ts │ │ │ ├── test │ │ │ │ ├── get-selectors.spec.ts │ │ │ │ ├── minify-css.spec.ts │ │ │ │ └── parse-serialize.spec.ts │ │ │ └── used-selectors.ts │ │ ├── css-to-esm.ts │ │ ├── global-styles.ts │ │ ├── normalize-styles.ts │ │ ├── optimize-css.ts │ │ ├── scope-css.ts │ │ ├── style-utils.ts │ │ └── test │ │ │ ├── build-conditionals.spec.ts │ │ │ ├── css-imports.spec.ts │ │ │ ├── css-to-esm.spec.ts │ │ │ ├── optimize-css.spec.ts │ │ │ ├── style-rebuild.spec.ts │ │ │ ├── style.spec.ts │ │ │ └── tsconfig.json │ ├── sys │ │ ├── config.ts │ │ ├── environment.ts │ │ ├── fetch │ │ │ ├── fetch-module-async.ts │ │ │ ├── fetch-module-sync.ts │ │ │ ├── fetch-utils.ts │ │ │ ├── tests │ │ │ │ └── fetch-module.spec.ts │ │ │ └── write-fetch-success.ts │ │ ├── in-memory-fs.ts │ │ ├── node-require.ts │ │ ├── resolve │ │ │ ├── resolve-module-async.ts │ │ │ ├── resolve-module-sync.ts │ │ │ ├── resolve-utils.ts │ │ │ └── tests │ │ │ │ └── resolve-module.spec.ts │ │ ├── stencil-sys.ts │ │ ├── tests │ │ │ ├── in-memory-fs.spec.ts │ │ │ └── stencil-sys.spec.ts │ │ ├── typescript │ │ │ ├── tests │ │ │ │ ├── typescript-config.spec.ts │ │ │ │ ├── typescript-resolve-module.spec.ts │ │ │ │ └── typescript-sys.spec.ts │ │ │ ├── typescript-config.ts │ │ │ ├── typescript-resolve-module.ts │ │ │ └── typescript-sys.ts │ │ └── worker │ │ │ └── sys-worker.ts │ ├── transformers │ │ ├── add-component-meta-proxy.ts │ │ ├── add-component-meta-static.ts │ │ ├── add-imports.ts │ │ ├── add-static-style.ts │ │ ├── add-tag-transform.ts │ │ ├── automatic-key-insertion │ │ │ ├── automatic-key-insertion.spec.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── collections │ │ │ ├── add-external-import.ts │ │ │ ├── parse-collection-components.ts │ │ │ ├── parse-collection-manifest.ts │ │ │ └── parse-collection-module.ts │ │ ├── component-build-conditionals.ts │ │ ├── component-hydrate │ │ │ ├── hydrate-component.ts │ │ │ ├── hydrate-runtime-cmp-meta.ts │ │ │ └── tranform-to-hydrate-component.ts │ │ ├── component-lazy │ │ │ ├── attach-internals.ts │ │ │ ├── constants.ts │ │ │ ├── lazy-component.ts │ │ │ ├── lazy-constructor.ts │ │ │ ├── lazy-element-getter.ts │ │ │ └── transform-lazy-component.ts │ │ ├── component-native │ │ │ ├── add-define-custom-element-function.ts │ │ │ ├── attach-internals.ts │ │ │ ├── native-component.ts │ │ │ ├── native-connected-callback.ts │ │ │ ├── native-constructor.ts │ │ │ ├── native-element-getter.ts │ │ │ ├── native-meta.ts │ │ │ ├── native-static-style.ts │ │ │ ├── proxy-custom-element-function.ts │ │ │ └── tranform-to-native-component.ts │ │ ├── core-runtime-apis.ts │ │ ├── create-event.ts │ │ ├── decorators-to-static │ │ │ ├── attach-internals.ts │ │ │ ├── component-decorator.ts │ │ │ ├── convert-decorators.ts │ │ │ ├── decorator-utils.ts │ │ │ ├── decorators-constants.ts │ │ │ ├── element-decorator.ts │ │ │ ├── event-decorator.ts │ │ │ ├── import-alias-map.ts │ │ │ ├── listen-decorator.ts │ │ │ ├── method-decorator.ts │ │ │ ├── prop-decorator.ts │ │ │ ├── serialize-decorators.ts │ │ │ ├── state-decorator.ts │ │ │ ├── style-to-static.ts │ │ │ └── watch-decorator.ts │ │ ├── define-custom-element.ts │ │ ├── detect-modern-prop-decls.ts │ │ ├── host-data-transform.ts │ │ ├── map-imports-to-path-aliases.ts │ │ ├── reactive-handler-meta-transform.ts │ │ ├── remove-collection-imports.ts │ │ ├── remove-static-meta-properties.ts │ │ ├── reserved-public-members.ts │ │ ├── rewrite-aliased-paths.ts │ │ ├── static-to-meta │ │ │ ├── attach-internals.ts │ │ │ ├── call-expression.ts │ │ │ ├── class-extension.ts │ │ │ ├── class-methods.ts │ │ │ ├── component.ts │ │ │ ├── element-ref.ts │ │ │ ├── encapsulation.ts │ │ │ ├── events.ts │ │ │ ├── form-associated.ts │ │ │ ├── import.ts │ │ │ ├── listeners.ts │ │ │ ├── methods.ts │ │ │ ├── parse-static.ts │ │ │ ├── props.ts │ │ │ ├── serializers.ts │ │ │ ├── states.ts │ │ │ ├── string-literal.ts │ │ │ ├── styles.ts │ │ │ ├── vdom.ts │ │ │ ├── visitor.ts │ │ │ └── watchers.ts │ │ ├── stencil-import-path.ts │ │ ├── style-imports.ts │ │ ├── test │ │ │ ├── add-component-meta-proxy.spec.ts │ │ │ ├── add-static-style.spec.ts │ │ │ ├── add-tag-transform.spec.ts │ │ │ ├── convert-decorators.spec.ts │ │ │ ├── core-runtime-apis.spec.ts │ │ │ ├── decorator-utils.spec.ts │ │ │ ├── detect-modern-prop-decls.spec.ts │ │ │ ├── fixtures │ │ │ │ ├── dessert.ts │ │ │ │ └── meal-entry.ts │ │ │ ├── lazy-component.spec.ts │ │ │ ├── map-imports-to-path-aliases.spec.ts │ │ │ ├── native-component.spec.ts │ │ │ ├── parse-attach-internals.spec.ts │ │ │ ├── parse-comments.spec.ts │ │ │ ├── parse-component-tags.spec.ts │ │ │ ├── parse-component.spec.ts │ │ │ ├── parse-deserializers.spec.ts │ │ │ ├── parse-element.spec.ts │ │ │ ├── parse-encapsulation.spec.ts │ │ │ ├── parse-events.spec.ts │ │ │ ├── parse-form-associated.spec.ts │ │ │ ├── parse-import-path.spec.ts │ │ │ ├── parse-listeners.spec.ts │ │ │ ├── parse-methods.spec.ts │ │ │ ├── parse-mixin.spec.ts │ │ │ ├── parse-props.spec.ts │ │ │ ├── parse-serializers.spec.ts │ │ │ ├── parse-states.spec.ts │ │ │ ├── parse-styles.spec.ts │ │ │ ├── parse-vdom.spec.ts │ │ │ ├── parse-virtual-props.spec.ts │ │ │ ├── parse-watch.spec.ts │ │ │ ├── proxy-custom-element-function.spec.ts │ │ │ ├── rewrite-aliased-paths.spec.ts │ │ │ ├── transform-utils.spec.ts │ │ │ ├── transpile.ts │ │ │ ├── tsconfig.json │ │ │ ├── type-library.spec.ts │ │ │ └── utils.ts │ │ ├── transform-utils.ts │ │ ├── type-library.ts │ │ ├── update-component-class.ts │ │ └── update-stencil-core-import.ts │ ├── transpile.ts │ ├── transpile │ │ ├── create-build-program.ts │ │ ├── create-watch-program.ts │ │ ├── run-program.ts │ │ ├── test │ │ │ ├── create-watch-program.spec.ts │ │ │ └── run-program.spec.ts │ │ ├── transpile-module.ts │ │ ├── transpiled-module.ts │ │ ├── ts-config.ts │ │ └── validate-components.ts │ ├── types │ │ ├── constants.ts │ │ ├── generate-app-types.ts │ │ ├── generate-component-types.ts │ │ ├── generate-event-detail-types.ts │ │ ├── generate-event-listener-types.ts │ │ ├── generate-event-types.ts │ │ ├── generate-method-types.ts │ │ ├── generate-prop-types.ts │ │ ├── generate-types.ts │ │ ├── package-json-log-utils.ts │ │ ├── stencil-types.ts │ │ ├── tests │ │ │ ├── ComponentCompilerEvent.stub.ts │ │ │ ├── ComponentCompilerMeta.stub.ts │ │ │ ├── ComponentCompilerMethod.stub.ts │ │ │ ├── ComponentCompilerProperty.stub.ts │ │ │ ├── ComponentCompilerTypeReference.stub.ts │ │ │ ├── ComponentCompilerVirtualProperty.stub.ts │ │ │ ├── TypesImportData.stub.ts │ │ │ ├── generate-app-types.spec.ts │ │ │ ├── generate-component-types.spec.ts │ │ │ ├── generate-event-detail-types.spec.ts │ │ │ ├── generate-event-listener-types.spec.ts │ │ │ ├── generate-event-types.spec.ts │ │ │ ├── generate-method-types.spec.ts │ │ │ ├── generate-prop-types.spec.ts │ │ │ ├── stencil-types.spec.ts │ │ │ ├── tsconfig.json │ │ │ ├── validate-package-json.spec.ts │ │ │ └── validate-primary-package-output-target.spec.ts │ │ ├── types-utils.ts │ │ ├── update-import-refs.ts │ │ ├── validate-build-package-json.ts │ │ └── validate-primary-package-output-target.ts │ └── worker │ │ ├── main-thread.ts │ │ └── worker-thread.ts ├── declarations │ ├── child_process.ts │ ├── index.ts │ ├── readme.md │ ├── stencil-ext-modules.d.ts │ ├── stencil-private.ts │ ├── stencil-public-compiler.ts │ ├── stencil-public-docs.ts │ └── stencil-public-runtime.ts ├── dev-server │ ├── client │ │ ├── app-error.css │ │ ├── app-error.ts │ │ ├── events.ts │ │ ├── hmr-components.ts │ │ ├── hmr-external-styles.ts │ │ ├── hmr-images.ts │ │ ├── hmr-inline-styles.ts │ │ ├── hmr-util.ts │ │ ├── hmr-window.ts │ │ ├── index.ts │ │ ├── logger.ts │ │ ├── progress.ts │ │ ├── status.ts │ │ └── test │ │ │ ├── hmr-util.spec.ts │ │ │ └── status.spec.ts │ ├── content-types-db.json │ ├── dev-server-client │ │ ├── app-update.ts │ │ ├── client-web-socket.ts │ │ ├── index.ts │ │ ├── init-dev-client.ts │ │ └── test │ │ │ └── tsconfig.json │ ├── dev-server-constants.ts │ ├── dev-server-utils.ts │ ├── index.ts │ ├── open-in-browser.ts │ ├── open-in-editor-api.ts │ ├── open-in-editor.ts │ ├── request-handler.ts │ ├── serve-dev-client.ts │ ├── serve-dev-node-module.ts │ ├── serve-directory-index.ts │ ├── serve-file.ts │ ├── server-context.ts │ ├── server-http.ts │ ├── server-process.ts │ ├── server-web-socket.ts │ ├── server-worker-main.ts │ ├── server-worker-thread.js │ ├── ssr-request.ts │ ├── static │ │ └── favicon.ico │ ├── templates │ │ ├── directory-index.html │ │ └── initial-load.html │ └── test │ │ ├── Diagnostic.stub.ts │ │ ├── dev-server-utils.spec.ts │ │ ├── req-handler.spec.ts │ │ ├── tsconfig.json │ │ └── util.spec.ts ├── hydrate │ ├── platform │ │ ├── h-async.ts │ │ ├── hydrate-app.ts │ │ ├── index.ts │ │ ├── proxy-host-element.ts │ │ └── test │ │ │ ├── __mocks__ │ │ │ └── @app-globals │ │ │ │ └── index.ts │ │ │ └── serialize-shadow-root-opts.spec.ts │ └── runner │ │ ├── create-window.ts │ │ ├── hydrate-factory.ts │ │ ├── index.ts │ │ ├── inspect-element.ts │ │ ├── patch-dom-implementation.ts │ │ ├── render-utils.ts │ │ ├── render.ts │ │ ├── runtime-log.ts │ │ └── window-initialize.ts ├── index.ts ├── internal │ ├── default.ts │ ├── index.ts │ ├── readme.md │ └── stencil-core │ │ ├── index.cjs │ │ ├── index.d.ts │ │ └── index.js ├── mock-doc │ ├── attribute.ts │ ├── comment-node.ts │ ├── console.ts │ ├── constants.ts │ ├── css-style-declaration.ts │ ├── css-style-sheet.ts │ ├── custom-element-registry.ts │ ├── dataset.ts │ ├── document-fragment.ts │ ├── document-type-node.ts │ ├── document.ts │ ├── element.ts │ ├── event.ts │ ├── global.ts │ ├── headers.ts │ ├── history.ts │ ├── index.ts │ ├── intersection-observer.ts │ ├── location.ts │ ├── navigator.ts │ ├── node.ts │ ├── parse-html.ts │ ├── parse-util.ts │ ├── parser.ts │ ├── performance.ts │ ├── request-response.ts │ ├── resize-observer.ts │ ├── selector.ts │ ├── serialize-node.ts │ ├── shadow-root.ts │ ├── storage.ts │ ├── test │ │ ├── attribute.spec.ts │ │ ├── clone.spec.ts │ │ ├── css-style-declaration.spec.ts │ │ ├── css-style-sheet.spec.ts │ │ ├── custom-elements.spec.ts │ │ ├── dataset.spec.ts │ │ ├── doc-style.spec.ts │ │ ├── document-fragment.spec.ts │ │ ├── element.spec.ts │ │ ├── event.spec.ts │ │ ├── global.spec.ts │ │ ├── headers.spec.ts │ │ ├── html-parse.spec.ts │ │ ├── location.spec.ts │ │ ├── match-media.spec.ts │ │ ├── request-response.spec.ts │ │ ├── selector.spec.ts │ │ ├── serialize-node.spec.ts │ │ ├── shadow-dom-event-bubbling.spec.ts │ │ ├── storage.spec.ts │ │ └── token-list.spec.ts │ ├── third-party │ │ └── jquery.ts │ ├── token-list.ts │ └── window.ts ├── runtime │ ├── asset-path.ts │ ├── bootstrap-custom-element.ts │ ├── bootstrap-lazy.ts │ ├── client-hydrate.ts │ ├── connected-callback.ts │ ├── disconnected-callback.ts │ ├── dom-extras.ts │ ├── element.ts │ ├── event-emitter.ts │ ├── fragment.ts │ ├── hmr-component.ts │ ├── host-listener.ts │ ├── index.ts │ ├── initialize-component.ts │ ├── mixin.ts │ ├── mode.ts │ ├── nonce.ts │ ├── parse-property-value.ts │ ├── platform-options.ts │ ├── profile.ts │ ├── proxy-component.ts │ ├── readme.md │ ├── render.ts │ ├── runtime-constants.ts │ ├── set-value.ts │ ├── slot-polyfill-utils.ts │ ├── styles.ts │ ├── tag-transform.ts │ ├── test │ │ ├── assets.spec.tsx │ │ ├── attr-deserialize.spec.tsx │ │ ├── attr.spec.tsx │ │ ├── before-each.spec.tsx │ │ ├── bootstrap-lazy.spec.tsx │ │ ├── client-hydrate-to-vdom.spec.tsx │ │ ├── component-class.spec.tsx │ │ ├── component-error-handling.spec.tsx │ │ ├── dom-extras.spec.tsx │ │ ├── element.spec.tsx │ │ ├── event.spec.tsx │ │ ├── extends-basic.spec.tsx │ │ ├── fetch.spec.tsx │ │ ├── fixtures │ │ │ ├── cmp-a.css │ │ │ ├── cmp-a.tsx │ │ │ ├── cmp-asset.tsx │ │ │ └── utils.ts │ │ ├── globals.spec.tsx │ │ ├── host.spec.tsx │ │ ├── hydrate-no-encapsulation.spec.tsx │ │ ├── hydrate-prop.spec.tsx │ │ ├── hydrate-scoped.spec.tsx │ │ ├── hydrate-shadow-child.spec.tsx │ │ ├── hydrate-shadow-in-shadow.spec.tsx │ │ ├── hydrate-shadow-parent.spec.tsx │ │ ├── hydrate-shadow.spec.tsx │ │ ├── hydrate-slot-fallback.spec.tsx │ │ ├── hydrate-slotted-content-order.spec.tsx │ │ ├── hydrate-style-element.spec.tsx │ │ ├── initialize-component.spec.tsx │ │ ├── jsx.spec.tsx │ │ ├── lifecycle-async.spec.tsx │ │ ├── lifecycle-sync.spec.tsx │ │ ├── listen.spec.tsx │ │ ├── method.spec.tsx │ │ ├── parse-property-value.spec.ts │ │ ├── prop-serialize.spec.tsx │ │ ├── prop-warnings.spec.tsx │ │ ├── prop.spec.tsx │ │ ├── queue.spec.tsx │ │ ├── regression-json-string-non-parsing.spec.tsx │ │ ├── render-text.spec.tsx │ │ ├── render-vdom.spec.tsx │ │ ├── scoped.spec.tsx │ │ ├── shadow.spec.tsx │ │ ├── state.spec.tsx │ │ ├── style.spec.tsx │ │ ├── svg-element.spec.tsx │ │ ├── tsconfig.json │ │ ├── update-component.spec.tsx │ │ ├── vdom-relocation.spec.tsx │ │ └── watch.spec.tsx │ ├── update-component.ts │ └── vdom │ │ ├── h.ts │ │ ├── set-accessor.ts │ │ ├── test │ │ ├── __snapshots__ │ │ │ └── vdom-annotations.spec.tsx.snap │ │ ├── attributes.spec.ts │ │ ├── event-listeners.spec.ts │ │ ├── h.spec.ts │ │ ├── is-same-vnode.spec.ts │ │ ├── patch-svg.spec.ts │ │ ├── patch.spec.ts │ │ ├── scoped-slot.spec.tsx │ │ ├── set-accessor.spec.ts │ │ ├── tsconfig.json │ │ ├── update-element.spec.ts │ │ ├── util.spec.ts │ │ ├── vdom-annotations.spec.tsx │ │ └── vdom-render.spec.tsx │ │ ├── update-element.ts │ │ ├── util.ts │ │ ├── vdom-annotations.ts │ │ └── vdom-render.ts ├── screenshot │ ├── connector-base.ts │ ├── connector-local.ts │ ├── index.ts │ ├── pixel-match.ts │ ├── screenshot-compare.ts │ └── screenshot-fs.ts ├── sys │ └── node │ │ ├── bundles │ │ ├── autoprefixer.js │ │ ├── glob.js │ │ ├── graceful-fs.js │ │ ├── node-fetch.js │ │ └── prompts.js │ │ ├── index.ts │ │ ├── logger │ │ ├── index.ts │ │ ├── terminal-logger.ts │ │ └── test │ │ │ └── terminal-logger.spec.ts │ │ ├── node-copy-tasks.ts │ │ ├── node-fs-promisify.ts │ │ ├── node-lazy-require.ts │ │ ├── node-resolve-module.ts │ │ ├── node-setup-process.ts │ │ ├── node-stencil-version-checker.ts │ │ ├── node-sys.ts │ │ ├── node-worker-controller.ts │ │ ├── node-worker-main.ts │ │ ├── node-worker-thread.ts │ │ ├── public.ts │ │ ├── test │ │ ├── node-lazy-require.spec.ts │ │ ├── test-worker-main.ts │ │ ├── tsconfig.json │ │ └── worker-manager.spec.ts │ │ └── worker.ts ├── testing │ ├── index.ts │ ├── jest │ │ ├── README.md │ │ ├── install-dependencies.mts │ │ ├── jest-27-and-under │ │ │ ├── jest-config.ts │ │ │ ├── jest-environment.ts │ │ │ ├── jest-facade.ts │ │ │ ├── jest-preprocessor.ts │ │ │ ├── jest-preset.ts │ │ │ ├── jest-runner.ts │ │ │ ├── jest-screenshot.ts │ │ │ ├── jest-serializer.ts │ │ │ ├── jest-setup-test-framework.ts │ │ │ ├── matchers │ │ │ │ ├── attributes.ts │ │ │ │ ├── class-list.ts │ │ │ │ ├── events.ts │ │ │ │ ├── html.ts │ │ │ │ ├── index.ts │ │ │ │ ├── screenshot.ts │ │ │ │ └── text.ts │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── __snapshots__ │ │ │ │ └── jest-serializer.spec.ts.snap │ │ │ │ ├── jest-config.spec.ts │ │ │ │ ├── jest-preprocessor.spec.ts │ │ │ │ ├── jest-runner.spec.ts │ │ │ │ ├── jest-serializer.spec.ts │ │ │ │ ├── jest-setup-test-framework.spec.ts │ │ │ │ └── tsconfig.json │ │ ├── jest-28 │ │ │ ├── jest-config.ts │ │ │ ├── jest-environment.ts │ │ │ ├── jest-facade.ts │ │ │ ├── jest-preprocessor.ts │ │ │ ├── jest-preset.ts │ │ │ ├── jest-runner.ts │ │ │ ├── jest-screenshot.ts │ │ │ ├── jest-serializer.ts │ │ │ ├── jest-setup-test-framework.ts │ │ │ ├── matchers │ │ │ │ ├── attributes.ts │ │ │ │ ├── class-list.ts │ │ │ │ ├── events.ts │ │ │ │ ├── html.ts │ │ │ │ ├── index.ts │ │ │ │ ├── screenshot.ts │ │ │ │ └── text.ts │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── __snapshots__ │ │ │ │ └── jest-serializer.spec.ts.snap │ │ │ │ ├── jest-config.spec.ts │ │ │ │ ├── jest-preprocessor.spec.ts │ │ │ │ ├── jest-runner.spec.ts │ │ │ │ ├── jest-serializer.spec.ts │ │ │ │ ├── jest-setup-test-framework.spec.ts │ │ │ │ └── tsconfig.json │ │ ├── jest-29 │ │ │ ├── jest-config.ts │ │ │ ├── jest-environment.ts │ │ │ ├── jest-facade.ts │ │ │ ├── jest-preprocessor.ts │ │ │ ├── jest-preset.ts │ │ │ ├── jest-runner.ts │ │ │ ├── jest-screenshot.ts │ │ │ ├── jest-serializer.ts │ │ │ ├── jest-setup-test-framework.ts │ │ │ ├── matchers │ │ │ │ ├── attributes.ts │ │ │ │ ├── class-list.ts │ │ │ │ ├── events.ts │ │ │ │ ├── html.ts │ │ │ │ ├── index.ts │ │ │ │ ├── screenshot.ts │ │ │ │ └── text.ts │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── __snapshots__ │ │ │ │ └── jest-serializer.spec.ts.snap │ │ │ │ ├── jest-config.spec.ts │ │ │ │ ├── jest-preprocessor.spec.ts │ │ │ │ ├── jest-runner.spec.ts │ │ │ │ ├── jest-serializer.spec.ts │ │ │ │ ├── jest-setup-test-framework.spec.ts │ │ │ │ └── tsconfig.json │ │ ├── jest-apis.ts │ │ ├── jest-facade.ts │ │ ├── jest-stencil-connector.ts │ │ └── test │ │ │ └── jest-stencil-connector.spec.ts │ ├── mock-fetch.ts │ ├── mocks.ts │ ├── platform │ │ ├── index.ts │ │ ├── load-module.ts │ │ ├── testing-build.ts │ │ ├── testing-constants.ts │ │ ├── testing-host-ref.ts │ │ ├── testing-log.ts │ │ ├── testing-platform.ts │ │ ├── testing-task-queue.ts │ │ └── testing-window.ts │ ├── puppeteer │ │ ├── index.ts │ │ ├── puppeteer-browser.ts │ │ ├── puppeteer-declarations.ts │ │ ├── puppeteer-element.ts │ │ ├── puppeteer-emulate.ts │ │ ├── puppeteer-events.ts │ │ ├── puppeteer-page.ts │ │ ├── puppeteer-screenshot.ts │ │ └── test │ │ │ └── puppeteer-screenshot.spec.ts │ ├── reset-build-conditionals.ts │ ├── spec-page.ts │ ├── test-transpile.ts │ ├── test │ │ ├── __fixtures__ │ │ │ └── cmp.tsx │ │ ├── functional.spec.tsx │ │ ├── testing-utils.spec.ts │ │ └── tsconfig.json │ ├── testing-logger.ts │ ├── testing-sys.ts │ ├── testing-utils.ts │ ├── testing.ts │ └── tsconfig.internal.json ├── utils │ ├── byte-size.ts │ ├── constants.ts │ ├── es2022-rewire-class-members.ts │ ├── format-component-runtime-meta.ts │ ├── helpers.ts │ ├── index.ts │ ├── is-glob.ts │ ├── is-root-path.ts │ ├── local-value.ts │ ├── logger │ │ ├── logger-rollup.ts │ │ ├── logger-typescript.ts │ │ └── logger-utils.ts │ ├── message-utils.ts │ ├── output-target.ts │ ├── path.ts │ ├── query-nonce-meta-tag-content.ts │ ├── regular-expression.ts │ ├── remote-value.ts │ ├── result.ts │ ├── serialize.ts │ ├── shadow-css.ts │ ├── shadow-root.ts │ ├── sourcemaps.ts │ ├── style.ts │ ├── test │ │ ├── helpers.spec.ts │ │ ├── is-root-path.spec.ts │ │ ├── message-utils.spec.ts │ │ ├── output-target.spec.ts │ │ ├── path.spec.ts │ │ ├── query-nonce-meta-tag-content.spec.ts │ │ ├── regular-expression.spec.ts │ │ ├── result.spec.ts │ │ ├── scope-css.spec.ts │ │ ├── serialize.spec.ts │ │ ├── sourcemaps.spec.ts │ │ ├── tsconfig.json │ │ ├── url-paths.spec.ts │ │ ├── util.spec.ts │ │ └── validation.spec.ts │ ├── types.ts │ ├── url-paths.ts │ ├── util.ts │ └── validation.ts └── version.ts ├── stencil-logo.png ├── test-form-associated.js ├── test ├── .npmrc ├── .scripts │ ├── analysis.js │ └── file-size-profile.js ├── browser-compile │ ├── package.json │ ├── src │ │ ├── compiler.worker.ts │ │ ├── components.d.ts │ │ ├── components │ │ │ └── app-root │ │ │ │ ├── app-root.css │ │ │ │ └── app-root.tsx │ │ ├── index.html │ │ ├── preview.html │ │ └── utils │ │ │ ├── css-template-plugin.ts │ │ │ ├── load-deps.ts │ │ │ └── templates.ts │ ├── stencil.config.ts │ └── tsconfig.json ├── bundler │ ├── component-library │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── components.d.ts │ │ │ ├── components │ │ │ │ └── my-component │ │ │ │ │ ├── my-component.css │ │ │ │ │ ├── my-component.tsx │ │ │ │ │ └── readme.md │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ └── utils │ │ │ │ └── utils.ts │ │ ├── stencil.config.ts │ │ └── tsconfig.json │ ├── karma-stencil-utils.ts │ ├── karma.config.ts │ ├── package-lock.json │ ├── package.json │ ├── readme.md │ ├── tsconfig.json │ └── vite-bundle-test │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.html │ │ ├── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── vite-bundle.spec.ts ├── copy-task │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── components.d.ts │ │ └── utils │ │ │ ├── __fixtures__ │ │ │ └── foobar.json │ │ │ ├── __mocks__ │ │ │ └── foo.js │ │ │ ├── desktop.ini │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ ├── stencil.config.ts │ ├── tsconfig.json │ └── validate.mts ├── docs-json │ ├── docs.d.ts │ ├── docs.json │ ├── package-lock.json │ ├── package.json │ ├── readme.md │ ├── scripts │ │ └── postprocess.js │ ├── src │ │ ├── components.d.ts │ │ ├── components │ │ │ ├── interfaces.ts │ │ │ ├── my-component │ │ │ │ ├── imported-interface.ts │ │ │ │ ├── my-component.ios.css │ │ │ │ ├── my-component.md.css │ │ │ │ └── my-component.tsx │ │ │ └── test-not-used.ts │ │ ├── index.html │ │ └── index.ts │ ├── stencil.config.ts │ └── tsconfig.json ├── docs-readme │ ├── custom-readme-output-overwrite-if-missing-missing │ │ └── components │ │ │ └── styleurls-component │ │ │ └── readme-supplemental.md │ ├── custom-readme-output-overwrite-if-missing-not-missing │ │ └── components │ │ │ └── styleurls-component │ │ │ └── readme.md │ ├── custom-readme-output-overwrite-never │ │ └── components │ │ │ └── styleurls-component │ │ │ └── readme.md │ ├── custom-readme-output-overwrite │ │ └── components │ │ │ └── styleurls-component │ │ │ ├── readme-supplemental.md │ │ │ └── readme.md │ ├── custom-readme-output │ │ └── components │ │ │ └── styleurls-component │ │ │ └── readme.md │ ├── package-lock.json │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── components.d.ts │ │ ├── components │ │ │ └── styleurls-component │ │ │ │ ├── one.scss │ │ │ │ ├── readme.md │ │ │ │ ├── styleurls-component.tsx │ │ │ │ └── two.scss │ │ ├── index.html │ │ └── index.ts │ ├── stencil.config.ts │ └── tsconfig.json ├── end-to-end │ ├── .gitignore │ ├── exportMap │ │ ├── index.js │ │ └── index.mts │ ├── package-lock.json │ ├── package.json │ ├── screenshot │ │ └── .gitignore │ ├── src │ │ ├── app-root │ │ │ ├── app-root.e2e.ts │ │ │ ├── app-root.tsx │ │ │ ├── interfaces.d.ts │ │ │ ├── no-component.e2e.ts │ │ │ └── readme.md │ │ ├── build-data │ │ │ ├── build-data.e2e.ts │ │ │ ├── build-data.spec.ts │ │ │ ├── build-data.tsx │ │ │ └── readme.md │ │ ├── car-detail │ │ │ ├── assets-a │ │ │ │ └── file-1.txt │ │ │ ├── car-detail.tsx │ │ │ └── readme.md │ │ ├── car-list │ │ │ ├── assets-a │ │ │ │ └── file-2.txt │ │ │ ├── car-data.ts │ │ │ ├── car-list.css │ │ │ ├── car-list.e2e.ts │ │ │ ├── car-list.tsx │ │ │ └── readme.md │ │ ├── components.d.ts │ │ ├── declarative-shadow-dom │ │ │ ├── __snapshots__ │ │ │ │ └── test.e2e.ts.snap │ │ │ ├── another-car-detail.css │ │ │ ├── another-car-detail.tsx │ │ │ ├── another-car-list.css │ │ │ ├── another-car-list.tsx │ │ │ ├── cmp-dsd-focus.tsx │ │ │ ├── cmp-dsd.css │ │ │ ├── cmp-dsd.tsx │ │ │ ├── cmp-with-slot.tsx │ │ │ ├── dsd-listen-cmp.css │ │ │ ├── dsd-listen-cmp.tsx │ │ │ ├── nested-child-cmp.css │ │ │ ├── nested-child-cmp.tsx │ │ │ ├── nested-scope-cmp.css │ │ │ ├── nested-scope-cmp.tsx │ │ │ ├── parent-cmp.css │ │ │ ├── parent-cmp.tsx │ │ │ ├── readme.md │ │ │ ├── scoped-car-detail.tsx │ │ │ ├── scoped-car-list.tsx │ │ │ ├── server-vs-client.tsx │ │ │ └── test.e2e.ts │ │ ├── deep-selector │ │ │ ├── cmpA.tsx │ │ │ ├── cmpB.tsx │ │ │ ├── cmpC.tsx │ │ │ ├── deep-selector.e2e.ts │ │ │ └── readme.md │ │ ├── dom-api │ │ │ ├── assets-b │ │ │ │ └── file-3.txt │ │ │ ├── dom-api.e2e.ts │ │ │ ├── dom-api.tsx │ │ │ └── readme.md │ │ ├── dom-interaction │ │ │ ├── dom-interaction.e2e.ts │ │ │ ├── dom-interaction.tsx │ │ │ └── readme.md │ │ ├── dom-visible │ │ │ ├── dom-visible.e2e.ts │ │ │ ├── dom-visible.tsx │ │ │ └── readme.md │ │ ├── element-cmp │ │ │ ├── element-cmp.e2e.ts │ │ │ ├── element-cmp.tsx │ │ │ └── readme.md │ │ ├── env-data │ │ │ ├── env-data.e2e.ts │ │ │ ├── env-data.spec.ts │ │ │ ├── env-data.tsx │ │ │ └── readme.md │ │ ├── event-cmp │ │ │ ├── event-cmp.e2e.ts │ │ │ ├── event-cmp.tsx │ │ │ └── readme.md │ │ ├── global.css │ │ ├── global.ts │ │ ├── hydrate-props │ │ │ ├── hydrate-props.e2e.ts │ │ │ ├── my-cmp.tsx │ │ │ ├── my-jsx-cmp.tsx │ │ │ └── readme.md │ │ ├── import-assets │ │ │ ├── assets │ │ │ │ ├── ionic.svg │ │ │ │ ├── my-text.txt │ │ │ │ └── whatever.html │ │ │ ├── import-assets.e2e.ts │ │ │ ├── import-assets.tsx │ │ │ └── readme.md │ │ ├── index.html │ │ ├── listen-cmp │ │ │ ├── listen-cmp.e2e.ts │ │ │ ├── listen-cmp.tsx │ │ │ └── readme.md │ │ ├── method-cmp │ │ │ ├── method-cmp.e2e.ts │ │ │ ├── method-cmp.tsx │ │ │ └── readme.md │ │ ├── miscellaneous │ │ │ ├── renderToString.e2e.ts │ │ │ └── test.e2e.ts │ │ ├── non-existent-element │ │ │ ├── empty-cmp-shadow.tsx │ │ │ ├── empty-cmp.tsx │ │ │ ├── non-existent-element.e2e.ts │ │ │ └── readme.md │ │ ├── path-alias-cmp │ │ │ ├── path-alias-cmp.tsx │ │ │ ├── path-alias-lib.ts │ │ │ └── readme.md │ │ ├── prerender-cmp │ │ │ ├── prerender-cmp.css │ │ │ ├── prerender-cmp.tsx │ │ │ └── readme.md │ │ ├── prop-cmp │ │ │ ├── prop-cmp.e2e.ts │ │ │ ├── prop-cmp.ios.css │ │ │ ├── prop-cmp.md.css │ │ │ ├── prop-cmp.tsx │ │ │ └── readme.md │ │ ├── resolve-var-events │ │ │ ├── readme.md │ │ │ ├── resolve-var-events.e2e.ts │ │ │ └── resolve-var-events.tsx │ │ ├── scoped-hydration │ │ │ ├── non-shadow-forwarded-slot.tsx │ │ │ ├── non-shadow-multi-slots.tsx │ │ │ ├── non-shadow-slotted-siblings.tsx │ │ │ ├── non-shadow-wrapper.tsx │ │ │ ├── non-shadow.tsx │ │ │ ├── readme.md │ │ │ ├── scoped-hydration.e2e.ts │ │ │ ├── shadow-wrapper.tsx │ │ │ └── shadow.tsx │ │ ├── slot-cmp-container │ │ │ ├── readme.md │ │ │ ├── slot-cmp-container.e2e.ts │ │ │ └── slot-cmp-container.tsx │ │ ├── slot-cmp │ │ │ ├── readme.md │ │ │ └── slot-cmp.tsx │ │ ├── slot-parent-cmp │ │ │ ├── readme.md │ │ │ └── slot-parent-cmp.tsx │ │ ├── ssr-runtime-decorators │ │ │ ├── readme.md │ │ │ ├── ssr-runtime-decorators.e2e.ts │ │ │ └── ssr-runtime-decorators.tsx │ │ └── state-cmp │ │ │ ├── readme.md │ │ │ ├── state-cmp.e2e.ts │ │ │ └── state-cmp.tsx │ ├── stencil.build.config.ts │ ├── stencil.config.ts │ ├── test-end-to-end-dist.js │ ├── test-end-to-end-hydrate.js │ ├── tsconfig.build.json │ └── tsconfig.json ├── hello-vdom │ ├── .npmrc │ ├── package.json │ ├── src │ │ ├── components.d.ts │ │ ├── components │ │ │ ├── hello-vdom.tsx │ │ │ ├── index.ts │ │ │ └── styles.css │ │ ├── index.html │ │ └── index.ts │ ├── stencil.config.ts │ └── tsconfig.json ├── hello-world │ ├── package-lock.json │ ├── package.json │ ├── prerender.config.js │ ├── prerender.js │ ├── src │ │ ├── components.d.ts │ │ ├── components │ │ │ └── hello-world.tsx │ │ ├── hello-world-text.ts │ │ ├── index-module.html │ │ └── index.html │ ├── stencil.config.ts │ ├── tsconfig.json │ └── tsconfig.parent.json ├── ionic-app │ ├── .gitignore │ ├── .npmrc │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── assets │ │ │ └── icon │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── icon192.png │ │ │ │ └── icon512.png │ │ ├── components.d.ts │ │ ├── components │ │ │ ├── app-home │ │ │ │ ├── app-home.e2e.ts │ │ │ │ ├── app-home.spec.ts │ │ │ │ └── app-home.tsx │ │ │ ├── app-profile │ │ │ │ ├── app-profile.e2e.ts │ │ │ │ ├── app-profile.spec.ts │ │ │ │ └── app-profile.tsx │ │ │ └── app-root │ │ │ │ ├── app-root.css │ │ │ │ ├── app-root.e2e.ts │ │ │ │ ├── app-root.spec.ts │ │ │ │ └── app-root.tsx │ │ ├── global │ │ │ ├── app.css │ │ │ └── app.ts │ │ ├── helpers │ │ │ └── utils.ts │ │ ├── index.html │ │ └── manifest.json │ ├── stencil.config.ts │ └── tsconfig.json ├── jest-spec-runner │ ├── package.json │ ├── src │ │ ├── components.d.ts │ │ └── components │ │ │ ├── mixed │ │ │ ├── mixed.spec.ts │ │ │ └── mixed.tsx │ │ │ ├── simple │ │ │ ├── simple.spec.ts │ │ │ └── simple.tsx │ │ │ └── utils │ │ │ ├── as-js-cjs.js │ │ │ ├── as-js-esm.js │ │ │ ├── as-mjs.mjs │ │ │ ├── as-ts.ts │ │ │ ├── deep-js-cjs.js │ │ │ ├── deep-js-esm.js │ │ │ ├── deep-mjs.mjs │ │ │ └── deep-ts.ts │ ├── stencil.config.ts │ └── tsconfig.json ├── package.json ├── performance │ ├── .npmrc │ ├── package.json │ ├── prerender.config.js │ ├── prerender.js │ ├── src │ │ ├── components.d.ts │ │ ├── components │ │ │ ├── my-app.tsx │ │ │ ├── my-item.tsx │ │ │ └── my-list.tsx │ │ └── index.html │ ├── stencil.config.ts │ └── tsconfig.json ├── prerender-shadow │ ├── .npmrc │ ├── package.json │ ├── prerender.js │ ├── src │ │ ├── components.d.ts │ │ ├── components │ │ │ ├── cmp-a.tsx │ │ │ ├── cmp-b.tsx │ │ │ ├── cmp-c.tsx │ │ │ ├── cmp-d.css │ │ │ └── cmp-d.tsx │ │ └── index.html │ ├── stencil.config.ts │ └── tsconfig.json ├── readme.md ├── style-modes │ ├── .npmrc │ ├── package.json │ ├── src │ │ ├── components.d.ts │ │ ├── components │ │ │ ├── app-root │ │ │ │ ├── app-root.css │ │ │ │ └── app-root.tsx │ │ │ ├── scoped-mode │ │ │ │ ├── scoped-mode.buford.scss │ │ │ │ ├── scoped-mode.css │ │ │ │ ├── scoped-mode.griff.css │ │ │ │ ├── scoped-mode.scss │ │ │ │ └── scoped-mode.tsx │ │ │ └── shadow-mode │ │ │ │ ├── shadow-mode.buford.scss │ │ │ │ ├── shadow-mode.css │ │ │ │ ├── shadow-mode.griff.css │ │ │ │ ├── shadow-mode.scss │ │ │ │ └── shadow-mode.tsx │ │ ├── custom-elements.html │ │ ├── global.ts │ │ ├── index.html │ │ └── scss │ │ │ └── _partial.scss │ ├── stencil.config.ts │ └── tsconfig.json ├── todo-app │ ├── .firebaserc │ ├── .gitignore │ ├── .npmrc │ ├── firebase.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── components.d.ts │ │ ├── components │ │ │ ├── app-root │ │ │ │ └── app-root.tsx │ │ │ ├── todo-input │ │ │ │ └── todo-input.tsx │ │ │ └── todo-item │ │ │ │ └── todo-item.tsx │ │ ├── global │ │ │ └── app.css │ │ └── index.html │ ├── stencil.config.ts │ └── tsconfig.json ├── type-tests │ ├── README.md │ ├── test.spec.tsx │ └── tsconfig.json └── wdio │ ├── README.md │ ├── async-rerender │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── attribute-basic │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── attribute-boolean │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── attribute-complex │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── attribute-deserializer │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── attribute-host │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── attribute-html │ ├── cmp-root.tsx │ └── cmp.test.tsx │ ├── build-data │ ├── build-data.tsx │ └── cmp.test.tsx │ ├── complex-properties │ ├── __snapshots__ │ │ └── cmp.test.tsx.snap │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── computed-properties-prop-decorator │ ├── cmp-reflect.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── computed-properties-state-decorator │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── computed-properties-watch-decorator │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── conditional-basic │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── conditional-rerender │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── css-variables │ ├── cmp-no-encapsulation.css │ ├── cmp-no-encapsulation.tsx │ ├── cmp-shadow-dom.css │ ├── cmp-shadow.tsx │ ├── cmp.test.tsx │ └── variables.css │ ├── custom-elements-delegates-focus │ ├── cmp.test.tsx │ ├── custom-elements-delegates-focus.tsx │ ├── custom-elements-no-delegates-focus.tsx │ └── shared-delegates-focus.css │ ├── custom-elements-hierarchy-lifecycle │ ├── cmp-child.tsx │ ├── cmp-parent.tsx │ ├── cmp-util.ts │ └── cmp.test.tsx │ ├── custom-elements-output-tag-class-different │ ├── cmp.test.tsx │ ├── custom-element-child.tsx │ └── custom-element-root.tsx │ ├── custom-elements-output │ ├── cmp.test.tsx │ ├── custom-element-child.tsx │ ├── custom-element-nested-child.tsx │ └── custom-element-root.tsx │ ├── custom-event │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── declarative-shadow-dom │ ├── cmp-svg.test.tsx │ ├── cmp-svg.tsx │ ├── cmp.test.tsx │ ├── cmp.tsx │ ├── page-list-item.css │ ├── page-list-item.tsx │ ├── page-list.css │ ├── page-list.test.ts │ └── page-list.tsx │ ├── delegates-focus │ ├── cmp.test.tsx │ ├── delegates-focus.css │ ├── delegates-focus.tsx │ └── no-delegates-focus.tsx │ ├── dom-reattach-clone │ ├── cmp-deep-slot.tsx │ ├── cmp-host.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── dom-reattach │ ├── cmp-root.tsx │ └── cmp.test.tsx │ ├── dynamic-css-variables │ ├── cmp.css │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── dynamic-imports │ ├── cmp.test.tsx │ ├── dynamic-import.tsx │ ├── module1.tsx │ ├── module2.tsx │ └── module3.tsx │ ├── es5-addclass-svg │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── esm-import │ ├── cmp-hydrated.test.tsx │ ├── cmp.test.tsx │ ├── esm-import.css │ └── esm-import.tsx │ ├── event-basic │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── event-custom-type │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── event-listener-capture │ ├── cmp.test.tsx │ ├── cmp.tsx │ ├── event-re-register.css │ ├── event-re-register.test.tsx │ └── event-re-register.tsx │ ├── external-imports │ ├── cmp-a.tsx │ ├── cmp-b.tsx │ ├── cmp-c.tsx │ ├── cmp.test.tsx │ ├── external-data.ts │ └── external-store.ts │ ├── form-associated │ ├── cmp.test.tsx │ ├── cmp.tsx │ ├── prop-check.test.tsx │ └── prop-check.tsx │ ├── global-script.stencil.config.ts │ ├── global-script │ ├── README.md │ ├── components.d.ts │ ├── dist-cmp.tsx │ ├── global-script.test.tsx │ ├── global.ts │ ├── index.html │ └── test-cmp.tsx │ ├── global-styles │ ├── global-styles.test.tsx │ └── global-styles.tsx │ ├── global.ts │ ├── host-attr-override │ ├── host-attr-override.test.tsx │ └── host-attr-override.tsx │ ├── image-import │ ├── cmp.test.tsx │ ├── cmp.tsx │ └── stencil-logo.svg │ ├── import-aliasing │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── index.ts │ ├── init-css-shim │ ├── cmp-root.css │ ├── cmp-root.tsx │ └── cmp.test.tsx │ ├── input-basic │ ├── cmp-root.test.tsx │ └── cmp-root.tsx │ ├── invisible-prehydration.stencil.config.ts │ ├── invisible-prehydration │ ├── cmp.tsx │ ├── components.d.ts │ ├── index.html │ └── invisible-prehydration.test.tsx │ ├── json-basic │ ├── cmp.test.tsx │ ├── cmp.tsx │ └── data.json │ ├── key-reorder │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── lifecycle-async │ ├── cmp-a.test.tsx │ ├── cmp-a.tsx │ ├── cmp-b.tsx │ ├── cmp-c.tsx │ └── util.ts │ ├── lifecycle-basic │ ├── cmp-a.test.tsx │ ├── cmp-a.tsx │ ├── cmp-b.tsx │ └── cmp-c.tsx │ ├── lifecycle-nested │ ├── cmp-a.test.tsx │ ├── cmp-a.tsx │ ├── cmp-b.tsx │ ├── cmp-c.tsx │ └── output.ts │ ├── lifecycle-unload │ ├── cmp-a.tsx │ ├── cmp-b.tsx │ ├── cmp-root.test.tsx │ └── cmp-root.tsx │ ├── lifecycle-update │ ├── cmp-a.test.tsx │ ├── cmp-a.tsx │ ├── cmp-b.tsx │ └── cmp-c.tsx │ ├── listen-jsx │ ├── cmp-root.test.tsx │ ├── cmp-root.tsx │ └── cmp.tsx │ ├── listen-reattach │ ├── cmp-a.test.tsx │ └── cmp-a.tsx │ ├── listen-window │ ├── cmp-a.test.tsx │ └── cmp-a.tsx │ ├── no-external-runtime.stencil.config.ts │ ├── no-external-runtime │ ├── components.d.ts │ └── custom-elements-form-associated │ │ ├── cmp.test.tsx │ │ └── cmp.tsx │ ├── node-resolution │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ ├── module.ts │ └── module │ │ └── index.ts │ ├── package-lock.json │ ├── package.json │ ├── prerender-test │ └── cmp.test.tsx │ ├── prerender.stencil.config.ts │ ├── property-serializer │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── radio-group-blur │ ├── cmp.test.tsx │ ├── cmp.tsx │ ├── radio-group.css │ ├── radio.css │ ├── test-radio-group.tsx │ ├── test-radio.tsx │ └── utils.ts │ ├── ref-attr-order │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── reflect-nan-attribute-hyphen │ ├── cmp.test.tsx │ └── reflect-nan-attribute-hyphen.tsx │ ├── reflect-nan-attribute-with-child │ ├── child-reflect-nan-attribute.tsx │ ├── cmp.test.tsx │ └── parent-reflect-nan-attribute.tsx │ ├── reflect-nan-attribute │ ├── reflect-nan-attribute.test.tsx │ └── reflect-nan-attribute.tsx │ ├── reflect-single-render │ ├── child-with-reflection.tsx │ ├── cmp.test.tsx │ └── parent-with-reflect-child.tsx │ ├── reflect-to-attr │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── remove-child-patch │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── render │ └── render.test.tsx │ ├── reparent-style │ ├── cmp.test.tsx │ ├── reparent-style-no-vars.css │ ├── reparent-style-no-vars.tsx │ ├── reparent-style-with-vars.css │ └── reparent-style-with-vars.tsx │ ├── scoped-add-remove-classes │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── scoped-basic │ ├── cmp-root-md.css │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── scoped-conditional │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── scoped-id-in-nested-classname │ ├── cmp-level-1.scss │ ├── cmp-level-1.tsx │ ├── cmp-level-2.scss │ ├── cmp-level-2.tsx │ ├── cmp-level-3.scss │ ├── cmp-level-3.tsx │ └── cmp.test.tsx │ ├── scoped-slot-append-and-prepend │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── scoped-slot-assigned-methods │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── scoped-slot-child-insert-adjacent │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── scoped-slot-children │ ├── cmp-root.tsx │ └── cmp.test.tsx │ ├── scoped-slot-in-slot │ ├── child.tsx │ ├── cmp.test.tsx │ ├── host.tsx │ └── parent.tsx │ ├── scoped-slot-insertbefore │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── scoped-slot-insertion-order-after-interaction │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── scoped-slot-slotchange │ ├── cmp-wrap.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── scoped-slot-slotted-parentnode │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── scoped-slot-text-with-sibling │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── scoped-slot-text │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── serialize-deserialize-e2e │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── setup.ts │ ├── shadow-dom-array │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── shadow-dom-basic │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── shadow-dom-mode │ ├── cmp.test.tsx │ ├── cmp.tsx │ ├── mode-blue.css │ └── mode-red.css │ ├── shadow-dom-slot-nested │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── shared-jsx │ ├── bad-shared-jsx.tsx │ ├── cmp.test.tsx │ └── factory-jsx.tsx │ ├── slot-array-basic │ ├── cmp.css │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── slot-array-complex │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── slot-array-top │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── slot-basic-order │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── slot-basic │ ├── cmp-root.test.tsx │ ├── cmp-root.tsx │ └── cmp.tsx │ ├── slot-children │ ├── cmp-root.tsx │ └── cmp.test.tsx │ ├── slot-conditional-rendering │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── slot-dynamic-name-change │ ├── cmp-scoped.tsx │ ├── cmp-shadow.tsx │ └── cmp.test.tsx │ ├── slot-dynamic-wrapper │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── slot-fallback-with-forwarded-slot │ ├── child-component.tsx │ ├── cmp.test.tsx │ └── parent-component.tsx │ ├── slot-fallback-with-textnode │ ├── cmp-avatar.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── slot-fallback │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── slot-hide-content │ ├── cmp-open.tsx │ ├── cmp-scoped.tsx │ └── cmp.test.tsx │ ├── slot-html │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── slot-light-dom │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── slot-map-order │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── slot-nested-default-order │ ├── cmp-child.tsx │ ├── cmp-parent.tsx │ └── cmp.test.tsx │ ├── slot-nested-dynamic │ ├── cmp-child.tsx │ ├── cmp-parent.tsx │ ├── cmp-wrapper.tsx │ └── cmp.test.tsx │ ├── slot-nested-order │ ├── cmp-child.tsx │ ├── cmp-parent.tsx │ └── cmp.test.tsx │ ├── slot-ng-if │ ├── assets │ │ ├── angular.min.js │ │ └── angular.min.js.map │ ├── cmp.test.tsx │ ├── cmp.tsx │ └── index.html │ ├── slot-no-default │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── slot-parent-tag-change │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── slot-reorder │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── slot-replace-wrapper │ ├── cmp-root.tsx │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── slot-scoped-list │ ├── dynamic-scoped-list-cmp.tsx │ ├── list-cmp.tsx │ ├── root-cmp.test.tsx │ └── root-cmp.tsx │ ├── slot-shadow-list │ ├── dynamic-shadow-list-cmp.tsx │ ├── list-cmp.tsx │ ├── root-cmp.test.tsx │ └── root-cmp.tsx │ ├── slotted-css │ ├── cmp.css │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── src │ └── components.d.ts │ ├── ssr-hydration │ ├── cmp.test.tsx │ ├── cmp.tsx │ ├── custom-element.html │ ├── order-cmp.tsx │ ├── order-wrap-cmp.tsx │ ├── part-cmp.tsx │ ├── part-wrap-cmp.tsx │ ├── scoped-child-cmp.tsx │ ├── scoped-parent-cmp.tsx │ ├── shadow-child-cmp.tsx │ ├── shadow-parent-cmp.tsx │ ├── slow-prop.tsx │ └── wrap-cmp.tsx │ ├── static-members │ ├── README.md │ ├── static-decorated-members.tsx │ ├── static-members-separate-export.tsx │ ├── static-members-separate-initializer.tsx │ ├── static-members.test.tsx │ └── static-members.tsx │ ├── static-styles │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── stencil-sibling │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── stencil.config-es2022.ts │ ├── stencil.config.ts │ ├── style-plugin │ ├── bar.scss │ ├── cmp.test.tsx │ ├── css-cmp.tsx │ ├── css-entry.css │ ├── css-importee.css │ ├── foo.scss │ ├── global-css-entry.css │ ├── global-sass-entry.scss │ ├── multiple-styles.tsx │ ├── sass-bootstrap.scss │ ├── sass-cmp.tsx │ ├── sass-entry.scss │ └── sass-importee.scss │ ├── svg-attr │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── svg-class │ ├── cmp.test.tsx │ └── cmp.tsx │ ├── tag-names │ ├── cmp-tag-3d.tsx │ ├── cmp-tag-88.tsx │ └── cmp.test.tsx │ ├── tag-transform │ ├── child-tag-transform.tsx │ ├── custom-element.html │ ├── parent-tag-transform.css │ ├── parent-tag-transform.tsx │ ├── tag-transform.test.tsx │ └── tag-transformer.ts │ ├── tag-transformer.ts │ ├── test-end-to-end-import.mjs │ ├── test-prerender │ ├── no-script-build.js │ ├── package.json │ ├── prerender.config.js │ ├── prerender.js │ └── src │ │ ├── components.d.ts │ │ ├── components │ │ ├── app-root │ │ │ ├── app-root.css │ │ │ └── app-root.tsx │ │ ├── cmp-a │ │ │ ├── cmp-a.css │ │ │ └── cmp-a.tsx │ │ ├── cmp-b │ │ │ ├── cmp-b.css │ │ │ └── cmp-b.tsx │ │ ├── cmp-c │ │ │ ├── cmp-c.css │ │ │ └── cmp-c.tsx │ │ ├── cmp-client-scoped │ │ │ ├── cmp-client-scoped.css │ │ │ └── cmp-client-scoped.tsx │ │ ├── cmp-client-shadow │ │ │ ├── cmp-client-shadow.css │ │ │ └── cmp-client-shadow.tsx │ │ ├── cmp-d │ │ │ ├── cmp-d.css │ │ │ └── cmp-d.tsx │ │ ├── cmp-scoped-a │ │ │ ├── cmp-scoped-a.css │ │ │ └── cmp-scoped-a.tsx │ │ ├── cmp-scoped-b │ │ │ ├── cmp-scoped-b.css │ │ │ └── cmp-scoped-b.tsx │ │ ├── cmp-text-blue │ │ │ ├── cmp-text-blue.css │ │ │ └── cmp-text-blue.tsx │ │ ├── cmp-text-green │ │ │ ├── cmp-text-green.css │ │ │ └── cmp-text-green.tsx │ │ └── hydrate-svg │ │ │ └── hydrate-svg.tsx │ │ ├── global │ │ ├── app.css │ │ └── util.ts │ │ └── index.html │ ├── test-sibling │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── components.d.ts │ │ ├── global.ts │ │ ├── sibling-extended-base │ │ │ └── sibling-extended-base.tsx │ │ ├── sibling-extended │ │ │ └── sibling-extended.tsx │ │ └── sibling-root │ │ │ └── sibling-root.tsx │ ├── stencil.config.ts │ └── tsconfig.json │ ├── text-content-patch │ ├── cmp-scoped-slot.tsx │ ├── cmp-scoped.tsx │ └── cmp.test.tsx │ ├── ts-target │ ├── components.d.ts │ ├── extends-abstract │ │ ├── cmp.test.ts │ │ ├── cmp.tsx │ │ ├── es2022.custom-element.html │ │ ├── es2022.dist.html │ │ ├── mixin-class.ts │ │ └── mxin-class-parent.ts │ ├── extends-cmp │ │ ├── cmp.test.ts │ │ ├── cmp.tsx │ │ ├── es2022.custom-element.html │ │ ├── es2022.dist.html │ │ ├── extended-cmp-cmp.tsx │ │ └── extended-cmp.tsx │ ├── extends-controller-updates │ │ ├── clock-controller-base.ts │ │ ├── cmp.test.ts │ │ ├── cmp.tsx │ │ ├── es2022.custom-element.html │ │ └── es2022.dist.html │ ├── extends-direct-state │ │ ├── clock-base.ts │ │ ├── cmp.test.ts │ │ ├── cmp.tsx │ │ ├── es2022.custom-element.html │ │ └── es2022.dist.html │ ├── extends-external │ │ ├── cmp.test.ts │ │ ├── cmp.tsx │ │ ├── es2022.custom-element.html │ │ └── es2022.dist.html │ ├── extends-lifecycle-basic │ │ ├── cmp.test.ts │ │ ├── cmp.tsx │ │ ├── es2022.custom-element.html │ │ ├── es2022.dist.html │ │ └── lifecycle-base.ts │ ├── extends-lifecycle-multilevel │ │ ├── cmp.test.ts │ │ ├── cmp.tsx │ │ ├── es2022.custom-element.html │ │ ├── es2022.dist.html │ │ ├── grandparent-base.ts │ │ └── parent-base.ts │ ├── extends-local │ │ ├── cmp.test.ts │ │ ├── cmp.tsx │ │ ├── es2022.custom-element.html │ │ └── es2022.dist.html │ ├── extends-methods │ │ ├── cmp.test.ts │ │ ├── cmp.tsx │ │ ├── es2022.custom-element.html │ │ ├── es2022.dist.html │ │ └── method-base.ts │ ├── extends-mixin │ │ ├── cmp.test.ts │ │ ├── cmp.tsx │ │ ├── es2022.custom-element.html │ │ ├── es2022.dist.html │ │ ├── mixin-a.tsx │ │ └── mixin-b.tsx │ ├── extends-props-state │ │ ├── cmp.test.ts │ │ ├── cmp.tsx │ │ ├── es2022.custom-element.html │ │ ├── es2022.dist.html │ │ └── props-state-base.ts │ ├── extends-render │ │ ├── cmp.test.ts │ │ ├── cmp.tsx │ │ ├── es2022.custom-element.html │ │ ├── es2022.dist.html │ │ └── render-base.tsx │ ├── extends-test-suite.test.ts │ ├── extends-via-host │ │ ├── cmp.test.ts │ │ ├── cmp.tsx │ │ ├── es2022.custom-element.html │ │ ├── es2022.dist.html │ │ ├── mouse-controller.ts │ │ └── reactive-controller-host.ts │ └── ts-target-props │ │ ├── cmp.test.tsx │ │ ├── cmp.tsx │ │ ├── es2022.custom-element.html │ │ └── es2022.dist.html │ ├── tsconfig-es2022.json │ ├── tsconfig-global-script.json │ ├── tsconfig-invisible-prehydration.json │ ├── tsconfig-no-external-runtime.json │ ├── tsconfig-prerender.json │ ├── tsconfig-stencil.json │ ├── tsconfig.json │ ├── util.ts │ ├── watch-native-attributes │ ├── cmp-no-members.test.tsx │ ├── cmp-no-members.tsx │ ├── cmp.test.tsx │ ├── cmp.tsx │ └── custom-tag-name.test.tsx │ └── wdio.conf.ts ├── tsconfig.json └── types ├── ionic-prettier-config.d.ts └── merge-source-map.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/ionic-issue-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/ionic-issue-bot.yml -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/lint-and-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/workflows/lint-and-format.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish-npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/workflows/publish-npm.yml -------------------------------------------------------------------------------- /.github/workflows/release-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/workflows/release-dev.yml -------------------------------------------------------------------------------- /.github/workflows/release-nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/workflows/release-nightly.yml -------------------------------------------------------------------------------- /.github/workflows/test-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/workflows/test-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/test-bundlers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/workflows/test-bundlers.yml -------------------------------------------------------------------------------- /.github/workflows/test-copytask.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/workflows/test-copytask.yml -------------------------------------------------------------------------------- /.github/workflows/test-docs-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/workflows/test-docs-build.yml -------------------------------------------------------------------------------- /.github/workflows/test-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/workflows/test-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/test-types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/workflows/test-types.yml -------------------------------------------------------------------------------- /.github/workflows/test-unit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/workflows/test-unit.yml -------------------------------------------------------------------------------- /.github/workflows/test-wdio.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.github/workflows/test-wdio.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.13.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /BREAKING_CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/BREAKING_CHANGES.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/LICENSE.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/RELEASE.md -------------------------------------------------------------------------------- /STYLE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/STYLE_GUIDE.md -------------------------------------------------------------------------------- /bin/stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/bin/stencil -------------------------------------------------------------------------------- /cspell-code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/cspell-code.json -------------------------------------------------------------------------------- /cspell-markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/cspell-markdown.json -------------------------------------------------------------------------------- /cspell-wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/cspell-wordlist.txt -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/docs/cli.md -------------------------------------------------------------------------------- /docs/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/docs/compiler.md -------------------------------------------------------------------------------- /docs/declarations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/docs/declarations.md -------------------------------------------------------------------------------- /docs/dev-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/docs/dev-server.md -------------------------------------------------------------------------------- /docs/hydrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/docs/hydrate.md -------------------------------------------------------------------------------- /docs/mock-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/docs/mock-doc.md -------------------------------------------------------------------------------- /docs/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/docs/runtime.md -------------------------------------------------------------------------------- /docs/screenshot-deprecated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/docs/screenshot-deprecated.md -------------------------------------------------------------------------------- /docs/scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/docs/scripts.md -------------------------------------------------------------------------------- /docs/testing-deprecated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/docs/testing-deprecated.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot/compare/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/screenshot/compare/assets/favicon.ico -------------------------------------------------------------------------------- /screenshot/compare/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/screenshot/compare/assets/logo.png -------------------------------------------------------------------------------- /screenshot/compare/build/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/screenshot/compare/build/app.css -------------------------------------------------------------------------------- /screenshot/compare/build/app.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/screenshot/compare/build/app.esm.js -------------------------------------------------------------------------------- /screenshot/compare/build/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/screenshot/compare/build/app.js -------------------------------------------------------------------------------- /screenshot/compare/build/index.esm.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshot/compare/build/p-081b0641.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/screenshot/compare/build/p-081b0641.js -------------------------------------------------------------------------------- /screenshot/compare/build/p-7b4e3ba7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/screenshot/compare/build/p-7b4e3ba7.js -------------------------------------------------------------------------------- /screenshot/compare/build/p-988eb362.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/screenshot/compare/build/p-988eb362.css -------------------------------------------------------------------------------- /screenshot/compare/build/p-9b6a9315.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/screenshot/compare/build/p-9b6a9315.js -------------------------------------------------------------------------------- /screenshot/compare/build/p-e2efe0df.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/screenshot/compare/build/p-e2efe0df.js -------------------------------------------------------------------------------- /screenshot/compare/build/p-fbbae598.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/screenshot/compare/build/p-fbbae598.js -------------------------------------------------------------------------------- /screenshot/compare/host.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/screenshot/compare/host.config.json -------------------------------------------------------------------------------- /screenshot/compare/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/screenshot/compare/index.html -------------------------------------------------------------------------------- /screenshot/compare/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/screenshot/compare/manifest.json -------------------------------------------------------------------------------- /screenshot/connector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/screenshot/connector.js -------------------------------------------------------------------------------- /screenshot/local-connector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/screenshot/local-connector.js -------------------------------------------------------------------------------- /scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/build.ts -------------------------------------------------------------------------------- /scripts/esbuild/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/esbuild/cli.ts -------------------------------------------------------------------------------- /scripts/esbuild/compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/esbuild/compiler.ts -------------------------------------------------------------------------------- /scripts/esbuild/dev-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/esbuild/dev-server.ts -------------------------------------------------------------------------------- /scripts/esbuild/helpers/empty.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /scripts/esbuild/helpers/lazy-require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/esbuild/helpers/lazy-require.js -------------------------------------------------------------------------------- /scripts/esbuild/internal-app-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/esbuild/internal-app-data.ts -------------------------------------------------------------------------------- /scripts/esbuild/internal-app-globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/esbuild/internal-app-globals.ts -------------------------------------------------------------------------------- /scripts/esbuild/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/esbuild/internal.ts -------------------------------------------------------------------------------- /scripts/esbuild/mock-doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/esbuild/mock-doc.ts -------------------------------------------------------------------------------- /scripts/esbuild/screenshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/esbuild/screenshot.ts -------------------------------------------------------------------------------- /scripts/esbuild/sys-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/esbuild/sys-node.ts -------------------------------------------------------------------------------- /scripts/esbuild/testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/esbuild/testing.ts -------------------------------------------------------------------------------- /scripts/esbuild/utils/alias-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/esbuild/utils/alias-plugin.ts -------------------------------------------------------------------------------- /scripts/esbuild/utils/content-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/esbuild/utils/content-types.ts -------------------------------------------------------------------------------- /scripts/esbuild/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/esbuild/utils/index.ts -------------------------------------------------------------------------------- /scripts/esbuild/utils/parse5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/esbuild/utils/parse5.ts -------------------------------------------------------------------------------- /scripts/esbuild/utils/terser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/esbuild/utils/terser.ts -------------------------------------------------------------------------------- /scripts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/index.ts -------------------------------------------------------------------------------- /scripts/release-tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/release-tasks.ts -------------------------------------------------------------------------------- /scripts/release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/release.ts -------------------------------------------------------------------------------- /scripts/test/copy-readme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/test/copy-readme.js -------------------------------------------------------------------------------- /scripts/test/validate-build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/test/validate-build.ts -------------------------------------------------------------------------------- /scripts/test/validate-testing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/test/validate-testing.js -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /scripts/types/rollup-plugin-node-resolve.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@rollup/plugin-node-resolve'; 2 | -------------------------------------------------------------------------------- /scripts/updateSelectorEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/updateSelectorEngine.ts -------------------------------------------------------------------------------- /scripts/utils/banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/utils/banner.ts -------------------------------------------------------------------------------- /scripts/utils/bundle-dts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/utils/bundle-dts.ts -------------------------------------------------------------------------------- /scripts/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/utils/constants.ts -------------------------------------------------------------------------------- /scripts/utils/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/utils/options.ts -------------------------------------------------------------------------------- /scripts/utils/postcss-bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/utils/postcss-bundle -------------------------------------------------------------------------------- /scripts/utils/postcss-rollup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/utils/postcss-rollup.js -------------------------------------------------------------------------------- /scripts/utils/release-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/utils/release-utils.ts -------------------------------------------------------------------------------- /scripts/utils/test/options.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/utils/test/options.spec.ts -------------------------------------------------------------------------------- /scripts/utils/vermoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/utils/vermoji.ts -------------------------------------------------------------------------------- /scripts/utils/write-pkg-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/scripts/utils/write-pkg-json.ts -------------------------------------------------------------------------------- /src/app-data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/app-data/index.ts -------------------------------------------------------------------------------- /src/app-globals/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/app-globals/index.ts -------------------------------------------------------------------------------- /src/cli/check-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/check-version.ts -------------------------------------------------------------------------------- /src/cli/config-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/config-flags.ts -------------------------------------------------------------------------------- /src/cli/find-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/find-config.ts -------------------------------------------------------------------------------- /src/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/index.ts -------------------------------------------------------------------------------- /src/cli/ionic-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/ionic-config.ts -------------------------------------------------------------------------------- /src/cli/load-compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/load-compiler.ts -------------------------------------------------------------------------------- /src/cli/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/logs.ts -------------------------------------------------------------------------------- /src/cli/parse-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/parse-flags.ts -------------------------------------------------------------------------------- /src/cli/public.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/public.ts -------------------------------------------------------------------------------- /src/cli/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/run.ts -------------------------------------------------------------------------------- /src/cli/task-build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/task-build.ts -------------------------------------------------------------------------------- /src/cli/task-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/task-docs.ts -------------------------------------------------------------------------------- /src/cli/task-generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/task-generate.ts -------------------------------------------------------------------------------- /src/cli/task-help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/task-help.ts -------------------------------------------------------------------------------- /src/cli/task-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/task-info.ts -------------------------------------------------------------------------------- /src/cli/task-prerender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/task-prerender.ts -------------------------------------------------------------------------------- /src/cli/task-serve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/task-serve.ts -------------------------------------------------------------------------------- /src/cli/task-telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/task-telemetry.ts -------------------------------------------------------------------------------- /src/cli/task-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/task-test.ts -------------------------------------------------------------------------------- /src/cli/task-watch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/task-watch.ts -------------------------------------------------------------------------------- /src/cli/telemetry/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/telemetry/helpers.ts -------------------------------------------------------------------------------- /src/cli/telemetry/shouldTrack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/telemetry/shouldTrack.ts -------------------------------------------------------------------------------- /src/cli/telemetry/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/telemetry/telemetry.ts -------------------------------------------------------------------------------- /src/cli/telemetry/test/helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/telemetry/test/helpers.spec.ts -------------------------------------------------------------------------------- /src/cli/test/ionic-config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/test/ionic-config.spec.ts -------------------------------------------------------------------------------- /src/cli/test/parse-flags.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/test/parse-flags.spec.ts -------------------------------------------------------------------------------- /src/cli/test/run.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/test/run.spec.ts -------------------------------------------------------------------------------- /src/cli/test/task-generate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/cli/test/task-generate.spec.ts -------------------------------------------------------------------------------- /src/client/client-build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/client/client-build.ts -------------------------------------------------------------------------------- /src/client/client-host-ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/client/client-host-ref.ts -------------------------------------------------------------------------------- /src/client/client-load-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/client/client-load-module.ts -------------------------------------------------------------------------------- /src/client/client-log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/client/client-log.ts -------------------------------------------------------------------------------- /src/client/client-patch-browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/client/client-patch-browser.ts -------------------------------------------------------------------------------- /src/client/client-style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/client/client-style.ts -------------------------------------------------------------------------------- /src/client/client-task-queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/client/client-task-queue.ts -------------------------------------------------------------------------------- /src/client/client-window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/client/client-window.ts -------------------------------------------------------------------------------- /src/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/client/index.ts -------------------------------------------------------------------------------- /src/client/polyfills/core-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/client/polyfills/core-js.js -------------------------------------------------------------------------------- /src/client/polyfills/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/client/polyfills/dom.js -------------------------------------------------------------------------------- /src/client/polyfills/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/client/polyfills/index.js -------------------------------------------------------------------------------- /src/client/polyfills/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/client/polyfills/system.js -------------------------------------------------------------------------------- /src/compiler/app-core/app-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/app-core/app-data.ts -------------------------------------------------------------------------------- /src/compiler/app-core/app-polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/app-core/app-polyfills.ts -------------------------------------------------------------------------------- /src/compiler/build/build-ctx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/build/build-ctx.ts -------------------------------------------------------------------------------- /src/compiler/build/build-finish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/build/build-finish.ts -------------------------------------------------------------------------------- /src/compiler/build/build-hmr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/build/build-hmr.ts -------------------------------------------------------------------------------- /src/compiler/build/build-results.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/build/build-results.ts -------------------------------------------------------------------------------- /src/compiler/build/build-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/build/build-stats.ts -------------------------------------------------------------------------------- /src/compiler/build/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/build/build.ts -------------------------------------------------------------------------------- /src/compiler/build/compiler-ctx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/build/compiler-ctx.ts -------------------------------------------------------------------------------- /src/compiler/build/full-build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/build/full-build.ts -------------------------------------------------------------------------------- /src/compiler/build/validate-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/build/validate-files.ts -------------------------------------------------------------------------------- /src/compiler/build/watch-build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/build/watch-build.ts -------------------------------------------------------------------------------- /src/compiler/build/write-build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/build/write-build.ts -------------------------------------------------------------------------------- /src/compiler/build/write-export-maps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/build/write-export-maps.ts -------------------------------------------------------------------------------- /src/compiler/bundle/app-data-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/bundle/app-data-plugin.ts -------------------------------------------------------------------------------- /src/compiler/bundle/bundle-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/bundle/bundle-interface.ts -------------------------------------------------------------------------------- /src/compiler/bundle/bundle-output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/bundle/bundle-output.ts -------------------------------------------------------------------------------- /src/compiler/bundle/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/bundle/constants.ts -------------------------------------------------------------------------------- /src/compiler/bundle/dev-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/bundle/dev-module.ts -------------------------------------------------------------------------------- /src/compiler/bundle/entry-alias-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/bundle/entry-alias-ids.ts -------------------------------------------------------------------------------- /src/compiler/bundle/file-load-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/bundle/file-load-plugin.ts -------------------------------------------------------------------------------- /src/compiler/bundle/loader-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/bundle/loader-plugin.ts -------------------------------------------------------------------------------- /src/compiler/bundle/plugin-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/bundle/plugin-helper.ts -------------------------------------------------------------------------------- /src/compiler/bundle/server-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/bundle/server-plugin.ts -------------------------------------------------------------------------------- /src/compiler/bundle/worker-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/bundle/worker-plugin.ts -------------------------------------------------------------------------------- /src/compiler/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/cache.ts -------------------------------------------------------------------------------- /src/compiler/compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/compiler.ts -------------------------------------------------------------------------------- /src/compiler/config/config-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/config/config-utils.ts -------------------------------------------------------------------------------- /src/compiler/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/config/constants.ts -------------------------------------------------------------------------------- /src/compiler/config/load-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/config/load-config.ts -------------------------------------------------------------------------------- /src/compiler/config/outputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/config/outputs/index.ts -------------------------------------------------------------------------------- /src/compiler/config/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/config/test/tsconfig.json -------------------------------------------------------------------------------- /src/compiler/config/validate-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/config/validate-config.ts -------------------------------------------------------------------------------- /src/compiler/config/validate-copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/config/validate-copy.ts -------------------------------------------------------------------------------- /src/compiler/config/validate-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/config/validate-docs.ts -------------------------------------------------------------------------------- /src/compiler/config/validate-paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/config/validate-paths.ts -------------------------------------------------------------------------------- /src/compiler/config/validate-plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/config/validate-plugins.ts -------------------------------------------------------------------------------- /src/compiler/config/validate-testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/config/validate-testing.ts -------------------------------------------------------------------------------- /src/compiler/config/validate-workers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/config/validate-workers.ts -------------------------------------------------------------------------------- /src/compiler/docs/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/docs/constants.ts -------------------------------------------------------------------------------- /src/compiler/docs/custom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/docs/custom/index.ts -------------------------------------------------------------------------------- /src/compiler/docs/generate-doc-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/docs/generate-doc-data.ts -------------------------------------------------------------------------------- /src/compiler/docs/json/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/docs/json/index.ts -------------------------------------------------------------------------------- /src/compiler/docs/readme/docs-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/docs/readme/docs-util.ts -------------------------------------------------------------------------------- /src/compiler/docs/readme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/docs/readme/index.ts -------------------------------------------------------------------------------- /src/compiler/docs/readme/output-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/docs/readme/output-docs.ts -------------------------------------------------------------------------------- /src/compiler/docs/style-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/docs/style-docs.ts -------------------------------------------------------------------------------- /src/compiler/docs/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/docs/test/tsconfig.json -------------------------------------------------------------------------------- /src/compiler/docs/vscode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/docs/vscode/index.ts -------------------------------------------------------------------------------- /src/compiler/entries/component-graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/entries/component-graph.ts -------------------------------------------------------------------------------- /src/compiler/entries/default-bundles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/entries/default-bundles.ts -------------------------------------------------------------------------------- /src/compiler/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/events.ts -------------------------------------------------------------------------------- /src/compiler/html/add-script-attr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/html/add-script-attr.ts -------------------------------------------------------------------------------- /src/compiler/html/canonical-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/html/canonical-link.ts -------------------------------------------------------------------------------- /src/compiler/html/html-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/html/html-utils.ts -------------------------------------------------------------------------------- /src/compiler/html/inject-sw-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/html/inject-sw-script.ts -------------------------------------------------------------------------------- /src/compiler/html/inline-esm-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/html/inline-esm-import.ts -------------------------------------------------------------------------------- /src/compiler/html/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/html/test/tsconfig.json -------------------------------------------------------------------------------- /src/compiler/html/used-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/html/used-components.ts -------------------------------------------------------------------------------- /src/compiler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/index.ts -------------------------------------------------------------------------------- /src/compiler/optimize/autoprefixer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/optimize/autoprefixer.ts -------------------------------------------------------------------------------- /src/compiler/optimize/minify-css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/optimize/minify-css.ts -------------------------------------------------------------------------------- /src/compiler/optimize/minify-js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/optimize/minify-js.ts -------------------------------------------------------------------------------- /src/compiler/optimize/optimize-css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/optimize/optimize-css.ts -------------------------------------------------------------------------------- /src/compiler/optimize/optimize-js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/optimize/optimize-js.ts -------------------------------------------------------------------------------- /src/compiler/output-targets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/output-targets/index.ts -------------------------------------------------------------------------------- /src/compiler/output-targets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/output-targets/readme.md -------------------------------------------------------------------------------- /src/compiler/plugin/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/plugin/plugin.ts -------------------------------------------------------------------------------- /src/compiler/plugin/test/plugin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/plugin/test/plugin.spec.ts -------------------------------------------------------------------------------- /src/compiler/plugin/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/plugin/test/tsconfig.json -------------------------------------------------------------------------------- /src/compiler/prerender/crawl-urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/prerender/crawl-urls.ts -------------------------------------------------------------------------------- /src/compiler/prerender/robots-txt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/prerender/robots-txt.ts -------------------------------------------------------------------------------- /src/compiler/prerender/sitemap-xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/prerender/sitemap-xml.ts -------------------------------------------------------------------------------- /src/compiler/prerender/test/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../testing/tsconfig.internal.json" 3 | } 4 | -------------------------------------------------------------------------------- /src/compiler/public.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/public.ts -------------------------------------------------------------------------------- /src/compiler/style/css-imports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/style/css-imports.ts -------------------------------------------------------------------------------- /src/compiler/style/css-parser/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/style/css-parser/readme.md -------------------------------------------------------------------------------- /src/compiler/style/css-to-esm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/style/css-to-esm.ts -------------------------------------------------------------------------------- /src/compiler/style/global-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/style/global-styles.ts -------------------------------------------------------------------------------- /src/compiler/style/normalize-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/style/normalize-styles.ts -------------------------------------------------------------------------------- /src/compiler/style/optimize-css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/style/optimize-css.ts -------------------------------------------------------------------------------- /src/compiler/style/scope-css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/style/scope-css.ts -------------------------------------------------------------------------------- /src/compiler/style/style-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/style/style-utils.ts -------------------------------------------------------------------------------- /src/compiler/style/test/style.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/style/test/style.spec.ts -------------------------------------------------------------------------------- /src/compiler/style/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/style/test/tsconfig.json -------------------------------------------------------------------------------- /src/compiler/sys/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/sys/config.ts -------------------------------------------------------------------------------- /src/compiler/sys/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/sys/environment.ts -------------------------------------------------------------------------------- /src/compiler/sys/fetch/fetch-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/sys/fetch/fetch-utils.ts -------------------------------------------------------------------------------- /src/compiler/sys/in-memory-fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/sys/in-memory-fs.ts -------------------------------------------------------------------------------- /src/compiler/sys/node-require.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/sys/node-require.ts -------------------------------------------------------------------------------- /src/compiler/sys/stencil-sys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/sys/stencil-sys.ts -------------------------------------------------------------------------------- /src/compiler/sys/worker/sys-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/sys/worker/sys-worker.ts -------------------------------------------------------------------------------- /src/compiler/transformers/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/transformers/test/utils.ts -------------------------------------------------------------------------------- /src/compiler/transpile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/transpile.ts -------------------------------------------------------------------------------- /src/compiler/transpile/run-program.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/transpile/run-program.ts -------------------------------------------------------------------------------- /src/compiler/transpile/ts-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/transpile/ts-config.ts -------------------------------------------------------------------------------- /src/compiler/types/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/types/constants.ts -------------------------------------------------------------------------------- /src/compiler/types/generate-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/types/generate-types.ts -------------------------------------------------------------------------------- /src/compiler/types/stencil-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/types/stencil-types.ts -------------------------------------------------------------------------------- /src/compiler/types/tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/types/tests/tsconfig.json -------------------------------------------------------------------------------- /src/compiler/types/types-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/types/types-utils.ts -------------------------------------------------------------------------------- /src/compiler/worker/main-thread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/worker/main-thread.ts -------------------------------------------------------------------------------- /src/compiler/worker/worker-thread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/compiler/worker/worker-thread.ts -------------------------------------------------------------------------------- /src/declarations/child_process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/declarations/child_process.ts -------------------------------------------------------------------------------- /src/declarations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/declarations/index.ts -------------------------------------------------------------------------------- /src/declarations/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/declarations/readme.md -------------------------------------------------------------------------------- /src/declarations/stencil-private.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/declarations/stencil-private.ts -------------------------------------------------------------------------------- /src/declarations/stencil-public-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/declarations/stencil-public-docs.ts -------------------------------------------------------------------------------- /src/dev-server/client/app-error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/client/app-error.css -------------------------------------------------------------------------------- /src/dev-server/client/app-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/client/app-error.ts -------------------------------------------------------------------------------- /src/dev-server/client/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/client/events.ts -------------------------------------------------------------------------------- /src/dev-server/client/hmr-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/client/hmr-components.ts -------------------------------------------------------------------------------- /src/dev-server/client/hmr-images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/client/hmr-images.ts -------------------------------------------------------------------------------- /src/dev-server/client/hmr-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/client/hmr-util.ts -------------------------------------------------------------------------------- /src/dev-server/client/hmr-window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/client/hmr-window.ts -------------------------------------------------------------------------------- /src/dev-server/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/client/index.ts -------------------------------------------------------------------------------- /src/dev-server/client/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/client/logger.ts -------------------------------------------------------------------------------- /src/dev-server/client/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/client/progress.ts -------------------------------------------------------------------------------- /src/dev-server/client/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/client/status.ts -------------------------------------------------------------------------------- /src/dev-server/content-types-db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/content-types-db.json -------------------------------------------------------------------------------- /src/dev-server/dev-server-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/dev-server-constants.ts -------------------------------------------------------------------------------- /src/dev-server/dev-server-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/dev-server-utils.ts -------------------------------------------------------------------------------- /src/dev-server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/index.ts -------------------------------------------------------------------------------- /src/dev-server/open-in-browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/open-in-browser.ts -------------------------------------------------------------------------------- /src/dev-server/open-in-editor-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/open-in-editor-api.ts -------------------------------------------------------------------------------- /src/dev-server/open-in-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/open-in-editor.ts -------------------------------------------------------------------------------- /src/dev-server/request-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/request-handler.ts -------------------------------------------------------------------------------- /src/dev-server/serve-dev-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/serve-dev-client.ts -------------------------------------------------------------------------------- /src/dev-server/serve-dev-node-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/serve-dev-node-module.ts -------------------------------------------------------------------------------- /src/dev-server/serve-directory-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/serve-directory-index.ts -------------------------------------------------------------------------------- /src/dev-server/serve-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/serve-file.ts -------------------------------------------------------------------------------- /src/dev-server/server-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/server-context.ts -------------------------------------------------------------------------------- /src/dev-server/server-http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/server-http.ts -------------------------------------------------------------------------------- /src/dev-server/server-process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/server-process.ts -------------------------------------------------------------------------------- /src/dev-server/server-web-socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/server-web-socket.ts -------------------------------------------------------------------------------- /src/dev-server/server-worker-main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/server-worker-main.ts -------------------------------------------------------------------------------- /src/dev-server/server-worker-thread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/server-worker-thread.js -------------------------------------------------------------------------------- /src/dev-server/ssr-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/ssr-request.ts -------------------------------------------------------------------------------- /src/dev-server/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/static/favicon.ico -------------------------------------------------------------------------------- /src/dev-server/test/Diagnostic.stub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/test/Diagnostic.stub.ts -------------------------------------------------------------------------------- /src/dev-server/test/req-handler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/test/req-handler.spec.ts -------------------------------------------------------------------------------- /src/dev-server/test/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../testing/tsconfig.internal.json" 3 | } 4 | -------------------------------------------------------------------------------- /src/dev-server/test/util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/dev-server/test/util.spec.ts -------------------------------------------------------------------------------- /src/hydrate/platform/h-async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/hydrate/platform/h-async.ts -------------------------------------------------------------------------------- /src/hydrate/platform/hydrate-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/hydrate/platform/hydrate-app.ts -------------------------------------------------------------------------------- /src/hydrate/platform/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/hydrate/platform/index.ts -------------------------------------------------------------------------------- /src/hydrate/runner/create-window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/hydrate/runner/create-window.ts -------------------------------------------------------------------------------- /src/hydrate/runner/hydrate-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/hydrate/runner/hydrate-factory.ts -------------------------------------------------------------------------------- /src/hydrate/runner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/hydrate/runner/index.ts -------------------------------------------------------------------------------- /src/hydrate/runner/inspect-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/hydrate/runner/inspect-element.ts -------------------------------------------------------------------------------- /src/hydrate/runner/render-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/hydrate/runner/render-utils.ts -------------------------------------------------------------------------------- /src/hydrate/runner/render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/hydrate/runner/render.ts -------------------------------------------------------------------------------- /src/hydrate/runner/runtime-log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/hydrate/runner/runtime-log.ts -------------------------------------------------------------------------------- /src/hydrate/runner/window-initialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/hydrate/runner/window-initialize.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './internal/stencil-core'; 2 | -------------------------------------------------------------------------------- /src/internal/default.ts: -------------------------------------------------------------------------------- 1 | export * from '@stencil/core/internal/client'; 2 | -------------------------------------------------------------------------------- /src/internal/index.ts: -------------------------------------------------------------------------------- 1 | export * from '../declarations'; 2 | -------------------------------------------------------------------------------- /src/internal/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/internal/readme.md -------------------------------------------------------------------------------- /src/internal/stencil-core/index.cjs: -------------------------------------------------------------------------------- 1 | exports.h = function () {}; 2 | -------------------------------------------------------------------------------- /src/internal/stencil-core/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/internal/stencil-core/index.d.ts -------------------------------------------------------------------------------- /src/internal/stencil-core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/internal/stencil-core/index.js -------------------------------------------------------------------------------- /src/mock-doc/attribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/attribute.ts -------------------------------------------------------------------------------- /src/mock-doc/comment-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/comment-node.ts -------------------------------------------------------------------------------- /src/mock-doc/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/console.ts -------------------------------------------------------------------------------- /src/mock-doc/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/constants.ts -------------------------------------------------------------------------------- /src/mock-doc/css-style-declaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/css-style-declaration.ts -------------------------------------------------------------------------------- /src/mock-doc/css-style-sheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/css-style-sheet.ts -------------------------------------------------------------------------------- /src/mock-doc/custom-element-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/custom-element-registry.ts -------------------------------------------------------------------------------- /src/mock-doc/dataset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/dataset.ts -------------------------------------------------------------------------------- /src/mock-doc/document-fragment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/document-fragment.ts -------------------------------------------------------------------------------- /src/mock-doc/document-type-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/document-type-node.ts -------------------------------------------------------------------------------- /src/mock-doc/document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/document.ts -------------------------------------------------------------------------------- /src/mock-doc/element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/element.ts -------------------------------------------------------------------------------- /src/mock-doc/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/event.ts -------------------------------------------------------------------------------- /src/mock-doc/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/global.ts -------------------------------------------------------------------------------- /src/mock-doc/headers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/headers.ts -------------------------------------------------------------------------------- /src/mock-doc/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/history.ts -------------------------------------------------------------------------------- /src/mock-doc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/index.ts -------------------------------------------------------------------------------- /src/mock-doc/intersection-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/intersection-observer.ts -------------------------------------------------------------------------------- /src/mock-doc/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/location.ts -------------------------------------------------------------------------------- /src/mock-doc/navigator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/navigator.ts -------------------------------------------------------------------------------- /src/mock-doc/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/node.ts -------------------------------------------------------------------------------- /src/mock-doc/parse-html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/parse-html.ts -------------------------------------------------------------------------------- /src/mock-doc/parse-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/parse-util.ts -------------------------------------------------------------------------------- /src/mock-doc/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/parser.ts -------------------------------------------------------------------------------- /src/mock-doc/performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/performance.ts -------------------------------------------------------------------------------- /src/mock-doc/request-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/request-response.ts -------------------------------------------------------------------------------- /src/mock-doc/resize-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/resize-observer.ts -------------------------------------------------------------------------------- /src/mock-doc/selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/selector.ts -------------------------------------------------------------------------------- /src/mock-doc/serialize-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/serialize-node.ts -------------------------------------------------------------------------------- /src/mock-doc/shadow-root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/shadow-root.ts -------------------------------------------------------------------------------- /src/mock-doc/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/storage.ts -------------------------------------------------------------------------------- /src/mock-doc/test/attribute.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/test/attribute.spec.ts -------------------------------------------------------------------------------- /src/mock-doc/test/clone.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/test/clone.spec.ts -------------------------------------------------------------------------------- /src/mock-doc/test/dataset.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/test/dataset.spec.ts -------------------------------------------------------------------------------- /src/mock-doc/test/doc-style.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/test/doc-style.spec.ts -------------------------------------------------------------------------------- /src/mock-doc/test/element.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/test/element.spec.ts -------------------------------------------------------------------------------- /src/mock-doc/test/event.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/test/event.spec.ts -------------------------------------------------------------------------------- /src/mock-doc/test/global.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/test/global.spec.ts -------------------------------------------------------------------------------- /src/mock-doc/test/headers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/test/headers.spec.ts -------------------------------------------------------------------------------- /src/mock-doc/test/html-parse.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/test/html-parse.spec.ts -------------------------------------------------------------------------------- /src/mock-doc/test/location.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/test/location.spec.ts -------------------------------------------------------------------------------- /src/mock-doc/test/match-media.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/test/match-media.spec.ts -------------------------------------------------------------------------------- /src/mock-doc/test/selector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/test/selector.spec.ts -------------------------------------------------------------------------------- /src/mock-doc/test/storage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/test/storage.spec.ts -------------------------------------------------------------------------------- /src/mock-doc/test/token-list.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/test/token-list.spec.ts -------------------------------------------------------------------------------- /src/mock-doc/third-party/jquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/third-party/jquery.ts -------------------------------------------------------------------------------- /src/mock-doc/token-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/token-list.ts -------------------------------------------------------------------------------- /src/mock-doc/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/mock-doc/window.ts -------------------------------------------------------------------------------- /src/runtime/asset-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/asset-path.ts -------------------------------------------------------------------------------- /src/runtime/bootstrap-custom-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/bootstrap-custom-element.ts -------------------------------------------------------------------------------- /src/runtime/bootstrap-lazy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/bootstrap-lazy.ts -------------------------------------------------------------------------------- /src/runtime/client-hydrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/client-hydrate.ts -------------------------------------------------------------------------------- /src/runtime/connected-callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/connected-callback.ts -------------------------------------------------------------------------------- /src/runtime/disconnected-callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/disconnected-callback.ts -------------------------------------------------------------------------------- /src/runtime/dom-extras.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/dom-extras.ts -------------------------------------------------------------------------------- /src/runtime/element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/element.ts -------------------------------------------------------------------------------- /src/runtime/event-emitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/event-emitter.ts -------------------------------------------------------------------------------- /src/runtime/fragment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/fragment.ts -------------------------------------------------------------------------------- /src/runtime/hmr-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/hmr-component.ts -------------------------------------------------------------------------------- /src/runtime/host-listener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/host-listener.ts -------------------------------------------------------------------------------- /src/runtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/index.ts -------------------------------------------------------------------------------- /src/runtime/initialize-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/initialize-component.ts -------------------------------------------------------------------------------- /src/runtime/mixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/mixin.ts -------------------------------------------------------------------------------- /src/runtime/mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/mode.ts -------------------------------------------------------------------------------- /src/runtime/nonce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/nonce.ts -------------------------------------------------------------------------------- /src/runtime/parse-property-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/parse-property-value.ts -------------------------------------------------------------------------------- /src/runtime/platform-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/platform-options.ts -------------------------------------------------------------------------------- /src/runtime/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/profile.ts -------------------------------------------------------------------------------- /src/runtime/proxy-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/proxy-component.ts -------------------------------------------------------------------------------- /src/runtime/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/readme.md -------------------------------------------------------------------------------- /src/runtime/render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/render.ts -------------------------------------------------------------------------------- /src/runtime/runtime-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/runtime-constants.ts -------------------------------------------------------------------------------- /src/runtime/set-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/set-value.ts -------------------------------------------------------------------------------- /src/runtime/slot-polyfill-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/slot-polyfill-utils.ts -------------------------------------------------------------------------------- /src/runtime/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/styles.ts -------------------------------------------------------------------------------- /src/runtime/tag-transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/tag-transform.ts -------------------------------------------------------------------------------- /src/runtime/test/assets.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/assets.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/attr.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/attr.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/before-each.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/before-each.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/dom-extras.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/dom-extras.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/element.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/element.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/event.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/event.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/extends-basic.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/extends-basic.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/fetch.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/fetch.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/fixtures/cmp-a.css: -------------------------------------------------------------------------------- 1 | 2 | :host { 3 | color: red; 4 | } 5 | -------------------------------------------------------------------------------- /src/runtime/test/fixtures/cmp-a.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/fixtures/cmp-a.tsx -------------------------------------------------------------------------------- /src/runtime/test/fixtures/cmp-asset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/fixtures/cmp-asset.tsx -------------------------------------------------------------------------------- /src/runtime/test/fixtures/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/fixtures/utils.ts -------------------------------------------------------------------------------- /src/runtime/test/globals.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/globals.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/host.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/host.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/hydrate-prop.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/hydrate-prop.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/jsx.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/jsx.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/listen.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/listen.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/method.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/method.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/prop-warnings.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/prop-warnings.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/prop.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/prop.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/queue.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/queue.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/render-text.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/render-text.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/render-vdom.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/render-vdom.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/scoped.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/scoped.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/shadow.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/shadow.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/state.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/state.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/style.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/style.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/svg-element.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/svg-element.spec.tsx -------------------------------------------------------------------------------- /src/runtime/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/tsconfig.json -------------------------------------------------------------------------------- /src/runtime/test/watch.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/test/watch.spec.tsx -------------------------------------------------------------------------------- /src/runtime/update-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/update-component.ts -------------------------------------------------------------------------------- /src/runtime/vdom/h.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/vdom/h.ts -------------------------------------------------------------------------------- /src/runtime/vdom/set-accessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/vdom/set-accessor.ts -------------------------------------------------------------------------------- /src/runtime/vdom/test/h.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/vdom/test/h.spec.ts -------------------------------------------------------------------------------- /src/runtime/vdom/test/patch-svg.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/vdom/test/patch-svg.spec.ts -------------------------------------------------------------------------------- /src/runtime/vdom/test/patch.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/vdom/test/patch.spec.ts -------------------------------------------------------------------------------- /src/runtime/vdom/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/vdom/test/tsconfig.json -------------------------------------------------------------------------------- /src/runtime/vdom/test/util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/vdom/test/util.spec.ts -------------------------------------------------------------------------------- /src/runtime/vdom/update-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/vdom/update-element.ts -------------------------------------------------------------------------------- /src/runtime/vdom/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/vdom/util.ts -------------------------------------------------------------------------------- /src/runtime/vdom/vdom-annotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/vdom/vdom-annotations.ts -------------------------------------------------------------------------------- /src/runtime/vdom/vdom-render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/runtime/vdom/vdom-render.ts -------------------------------------------------------------------------------- /src/screenshot/connector-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/screenshot/connector-base.ts -------------------------------------------------------------------------------- /src/screenshot/connector-local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/screenshot/connector-local.ts -------------------------------------------------------------------------------- /src/screenshot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/screenshot/index.ts -------------------------------------------------------------------------------- /src/screenshot/pixel-match.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/screenshot/pixel-match.ts -------------------------------------------------------------------------------- /src/screenshot/screenshot-compare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/screenshot/screenshot-compare.ts -------------------------------------------------------------------------------- /src/screenshot/screenshot-fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/screenshot/screenshot-fs.ts -------------------------------------------------------------------------------- /src/sys/node/bundles/autoprefixer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/bundles/autoprefixer.js -------------------------------------------------------------------------------- /src/sys/node/bundles/glob.js: -------------------------------------------------------------------------------- 1 | module.exports = require('glob'); 2 | -------------------------------------------------------------------------------- /src/sys/node/bundles/graceful-fs.js: -------------------------------------------------------------------------------- 1 | module.exports = require('graceful-fs'); 2 | -------------------------------------------------------------------------------- /src/sys/node/bundles/node-fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/bundles/node-fetch.js -------------------------------------------------------------------------------- /src/sys/node/bundles/prompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/bundles/prompts.js -------------------------------------------------------------------------------- /src/sys/node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/index.ts -------------------------------------------------------------------------------- /src/sys/node/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/logger/index.ts -------------------------------------------------------------------------------- /src/sys/node/logger/terminal-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/logger/terminal-logger.ts -------------------------------------------------------------------------------- /src/sys/node/node-copy-tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/node-copy-tasks.ts -------------------------------------------------------------------------------- /src/sys/node/node-fs-promisify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/node-fs-promisify.ts -------------------------------------------------------------------------------- /src/sys/node/node-lazy-require.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/node-lazy-require.ts -------------------------------------------------------------------------------- /src/sys/node/node-resolve-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/node-resolve-module.ts -------------------------------------------------------------------------------- /src/sys/node/node-setup-process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/node-setup-process.ts -------------------------------------------------------------------------------- /src/sys/node/node-sys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/node-sys.ts -------------------------------------------------------------------------------- /src/sys/node/node-worker-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/node-worker-controller.ts -------------------------------------------------------------------------------- /src/sys/node/node-worker-main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/node-worker-main.ts -------------------------------------------------------------------------------- /src/sys/node/node-worker-thread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/node-worker-thread.ts -------------------------------------------------------------------------------- /src/sys/node/public.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/public.ts -------------------------------------------------------------------------------- /src/sys/node/test/test-worker-main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/test/test-worker-main.ts -------------------------------------------------------------------------------- /src/sys/node/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/test/tsconfig.json -------------------------------------------------------------------------------- /src/sys/node/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/sys/node/worker.ts -------------------------------------------------------------------------------- /src/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/index.ts -------------------------------------------------------------------------------- /src/testing/jest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/jest/README.md -------------------------------------------------------------------------------- /src/testing/jest/jest-28/jest-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/jest/jest-28/jest-config.ts -------------------------------------------------------------------------------- /src/testing/jest/jest-28/jest-facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/jest/jest-28/jest-facade.ts -------------------------------------------------------------------------------- /src/testing/jest/jest-28/jest-preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/jest/jest-28/jest-preset.ts -------------------------------------------------------------------------------- /src/testing/jest/jest-28/jest-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/jest/jest-28/jest-runner.ts -------------------------------------------------------------------------------- /src/testing/jest/jest-28/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/jest/jest-28/package.json -------------------------------------------------------------------------------- /src/testing/jest/jest-29/jest-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/jest/jest-29/jest-config.ts -------------------------------------------------------------------------------- /src/testing/jest/jest-29/jest-facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/jest/jest-29/jest-facade.ts -------------------------------------------------------------------------------- /src/testing/jest/jest-29/jest-preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/jest/jest-29/jest-preset.ts -------------------------------------------------------------------------------- /src/testing/jest/jest-29/jest-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/jest/jest-29/jest-runner.ts -------------------------------------------------------------------------------- /src/testing/jest/jest-29/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/jest/jest-29/package.json -------------------------------------------------------------------------------- /src/testing/jest/jest-apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/jest/jest-apis.ts -------------------------------------------------------------------------------- /src/testing/jest/jest-facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/jest/jest-facade.ts -------------------------------------------------------------------------------- /src/testing/mock-fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/mock-fetch.ts -------------------------------------------------------------------------------- /src/testing/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/mocks.ts -------------------------------------------------------------------------------- /src/testing/platform/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/platform/index.ts -------------------------------------------------------------------------------- /src/testing/platform/load-module.ts: -------------------------------------------------------------------------------- 1 | export interface QueuedLoadModule { 2 | bundleId: any; 3 | resolve: Function; 4 | } 5 | -------------------------------------------------------------------------------- /src/testing/platform/testing-build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/platform/testing-build.ts -------------------------------------------------------------------------------- /src/testing/platform/testing-log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/platform/testing-log.ts -------------------------------------------------------------------------------- /src/testing/platform/testing-window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/platform/testing-window.ts -------------------------------------------------------------------------------- /src/testing/puppeteer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/puppeteer/index.ts -------------------------------------------------------------------------------- /src/testing/puppeteer/puppeteer-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/puppeteer/puppeteer-page.ts -------------------------------------------------------------------------------- /src/testing/reset-build-conditionals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/reset-build-conditionals.ts -------------------------------------------------------------------------------- /src/testing/spec-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/spec-page.ts -------------------------------------------------------------------------------- /src/testing/test-transpile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/test-transpile.ts -------------------------------------------------------------------------------- /src/testing/test/__fixtures__/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/test/__fixtures__/cmp.tsx -------------------------------------------------------------------------------- /src/testing/test/functional.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/test/functional.spec.tsx -------------------------------------------------------------------------------- /src/testing/test/testing-utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/test/testing-utils.spec.ts -------------------------------------------------------------------------------- /src/testing/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/test/tsconfig.json -------------------------------------------------------------------------------- /src/testing/testing-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/testing-logger.ts -------------------------------------------------------------------------------- /src/testing/testing-sys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/testing-sys.ts -------------------------------------------------------------------------------- /src/testing/testing-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/testing-utils.ts -------------------------------------------------------------------------------- /src/testing/testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/testing.ts -------------------------------------------------------------------------------- /src/testing/tsconfig.internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/testing/tsconfig.internal.json -------------------------------------------------------------------------------- /src/utils/byte-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/byte-size.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/helpers.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/is-glob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/is-glob.ts -------------------------------------------------------------------------------- /src/utils/is-root-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/is-root-path.ts -------------------------------------------------------------------------------- /src/utils/local-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/local-value.ts -------------------------------------------------------------------------------- /src/utils/logger/logger-rollup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/logger/logger-rollup.ts -------------------------------------------------------------------------------- /src/utils/logger/logger-typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/logger/logger-typescript.ts -------------------------------------------------------------------------------- /src/utils/logger/logger-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/logger/logger-utils.ts -------------------------------------------------------------------------------- /src/utils/message-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/message-utils.ts -------------------------------------------------------------------------------- /src/utils/output-target.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/output-target.ts -------------------------------------------------------------------------------- /src/utils/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/path.ts -------------------------------------------------------------------------------- /src/utils/regular-expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/regular-expression.ts -------------------------------------------------------------------------------- /src/utils/remote-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/remote-value.ts -------------------------------------------------------------------------------- /src/utils/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/result.ts -------------------------------------------------------------------------------- /src/utils/serialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/serialize.ts -------------------------------------------------------------------------------- /src/utils/shadow-css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/shadow-css.ts -------------------------------------------------------------------------------- /src/utils/shadow-root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/shadow-root.ts -------------------------------------------------------------------------------- /src/utils/sourcemaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/sourcemaps.ts -------------------------------------------------------------------------------- /src/utils/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/style.ts -------------------------------------------------------------------------------- /src/utils/test/helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/test/helpers.spec.ts -------------------------------------------------------------------------------- /src/utils/test/is-root-path.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/test/is-root-path.spec.ts -------------------------------------------------------------------------------- /src/utils/test/message-utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/test/message-utils.spec.ts -------------------------------------------------------------------------------- /src/utils/test/output-target.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/test/output-target.spec.ts -------------------------------------------------------------------------------- /src/utils/test/path.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/test/path.spec.ts -------------------------------------------------------------------------------- /src/utils/test/result.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/test/result.spec.ts -------------------------------------------------------------------------------- /src/utils/test/scope-css.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/test/scope-css.spec.ts -------------------------------------------------------------------------------- /src/utils/test/serialize.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/test/serialize.spec.ts -------------------------------------------------------------------------------- /src/utils/test/sourcemaps.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/test/sourcemaps.spec.ts -------------------------------------------------------------------------------- /src/utils/test/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../testing/tsconfig.internal.json" 3 | } 4 | -------------------------------------------------------------------------------- /src/utils/test/url-paths.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/test/url-paths.spec.ts -------------------------------------------------------------------------------- /src/utils/test/util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/test/util.spec.ts -------------------------------------------------------------------------------- /src/utils/test/validation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/test/validation.spec.ts -------------------------------------------------------------------------------- /src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/types.ts -------------------------------------------------------------------------------- /src/utils/url-paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/url-paths.ts -------------------------------------------------------------------------------- /src/utils/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/util.ts -------------------------------------------------------------------------------- /src/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/utils/validation.ts -------------------------------------------------------------------------------- /src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/src/version.ts -------------------------------------------------------------------------------- /stencil-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/stencil-logo.png -------------------------------------------------------------------------------- /test-form-associated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test-form-associated.js -------------------------------------------------------------------------------- /test/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /test/.scripts/analysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/.scripts/analysis.js -------------------------------------------------------------------------------- /test/.scripts/file-size-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/.scripts/file-size-profile.js -------------------------------------------------------------------------------- /test/browser-compile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/browser-compile/package.json -------------------------------------------------------------------------------- /test/browser-compile/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/browser-compile/src/index.html -------------------------------------------------------------------------------- /test/browser-compile/src/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/browser-compile/src/preview.html -------------------------------------------------------------------------------- /test/browser-compile/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/browser-compile/stencil.config.ts -------------------------------------------------------------------------------- /test/browser-compile/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/browser-compile/tsconfig.json -------------------------------------------------------------------------------- /test/bundler/component-library/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | loader/ 3 | www/ 4 | 5 | node_modules/ 6 | -------------------------------------------------------------------------------- /test/bundler/component-library/src/components/my-component/my-component.css: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /test/bundler/karma-stencil-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/bundler/karma-stencil-utils.ts -------------------------------------------------------------------------------- /test/bundler/karma.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/bundler/karma.config.ts -------------------------------------------------------------------------------- /test/bundler/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/bundler/package-lock.json -------------------------------------------------------------------------------- /test/bundler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/bundler/package.json -------------------------------------------------------------------------------- /test/bundler/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/bundler/readme.md -------------------------------------------------------------------------------- /test/bundler/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/bundler/tsconfig.json -------------------------------------------------------------------------------- /test/bundler/vite-bundle-test/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /test/bundler/vite-bundle-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/bundler/vite-bundle-test/README.md -------------------------------------------------------------------------------- /test/bundler/vite-bundle-test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/bundler/vite-bundle-test/index.js -------------------------------------------------------------------------------- /test/copy-task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/copy-task/README.md -------------------------------------------------------------------------------- /test/copy-task/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/copy-task/package-lock.json -------------------------------------------------------------------------------- /test/copy-task/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/copy-task/package.json -------------------------------------------------------------------------------- /test/copy-task/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/copy-task/src/components.d.ts -------------------------------------------------------------------------------- /test/copy-task/src/utils/__fixtures__/foobar.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/copy-task/src/utils/desktop.ini: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /test/copy-task/src/utils/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/copy-task/src/utils/utils.spec.ts -------------------------------------------------------------------------------- /test/copy-task/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/copy-task/src/utils/utils.ts -------------------------------------------------------------------------------- /test/copy-task/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/copy-task/stencil.config.ts -------------------------------------------------------------------------------- /test/copy-task/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/copy-task/tsconfig.json -------------------------------------------------------------------------------- /test/copy-task/validate.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/copy-task/validate.mts -------------------------------------------------------------------------------- /test/docs-json/docs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-json/docs.d.ts -------------------------------------------------------------------------------- /test/docs-json/docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-json/docs.json -------------------------------------------------------------------------------- /test/docs-json/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-json/package-lock.json -------------------------------------------------------------------------------- /test/docs-json/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-json/package.json -------------------------------------------------------------------------------- /test/docs-json/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-json/readme.md -------------------------------------------------------------------------------- /test/docs-json/scripts/postprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-json/scripts/postprocess.js -------------------------------------------------------------------------------- /test/docs-json/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-json/src/components.d.ts -------------------------------------------------------------------------------- /test/docs-json/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-json/src/index.html -------------------------------------------------------------------------------- /test/docs-json/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components'; 2 | -------------------------------------------------------------------------------- /test/docs-json/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-json/stencil.config.ts -------------------------------------------------------------------------------- /test/docs-json/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-json/tsconfig.json -------------------------------------------------------------------------------- /test/docs-readme/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-readme/package-lock.json -------------------------------------------------------------------------------- /test/docs-readme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-readme/package.json -------------------------------------------------------------------------------- /test/docs-readme/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-readme/readme.md -------------------------------------------------------------------------------- /test/docs-readme/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-readme/src/components.d.ts -------------------------------------------------------------------------------- /test/docs-readme/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-readme/src/index.html -------------------------------------------------------------------------------- /test/docs-readme/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components'; 2 | -------------------------------------------------------------------------------- /test/docs-readme/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-readme/stencil.config.ts -------------------------------------------------------------------------------- /test/docs-readme/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/docs-readme/tsconfig.json -------------------------------------------------------------------------------- /test/end-to-end/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/.gitignore -------------------------------------------------------------------------------- /test/end-to-end/exportMap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/exportMap/index.js -------------------------------------------------------------------------------- /test/end-to-end/exportMap/index.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/exportMap/index.mts -------------------------------------------------------------------------------- /test/end-to-end/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/package-lock.json -------------------------------------------------------------------------------- /test/end-to-end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/package.json -------------------------------------------------------------------------------- /test/end-to-end/screenshot/.gitignore: -------------------------------------------------------------------------------- 1 | images 2 | builds 3 | compare.html -------------------------------------------------------------------------------- /test/end-to-end/src/app-root/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/src/app-root/readme.md -------------------------------------------------------------------------------- /test/end-to-end/src/car-detail/assets-a/file-1.txt: -------------------------------------------------------------------------------- 1 | file-1.txt -------------------------------------------------------------------------------- /test/end-to-end/src/car-list/assets-a/file-2.txt: -------------------------------------------------------------------------------- 1 | file-2.txt -------------------------------------------------------------------------------- /test/end-to-end/src/car-list/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/src/car-list/readme.md -------------------------------------------------------------------------------- /test/end-to-end/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/src/components.d.ts -------------------------------------------------------------------------------- /test/end-to-end/src/declarative-shadow-dom/another-car-detail.css: -------------------------------------------------------------------------------- 1 | section { 2 | color: green; 3 | } -------------------------------------------------------------------------------- /test/end-to-end/src/declarative-shadow-dom/dsd-listen-cmp.css: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | } -------------------------------------------------------------------------------- /test/end-to-end/src/declarative-shadow-dom/nested-child-cmp.css: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /test/end-to-end/src/declarative-shadow-dom/nested-scope-cmp.css: -------------------------------------------------------------------------------- 1 | :host { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /test/end-to-end/src/declarative-shadow-dom/parent-cmp.css: -------------------------------------------------------------------------------- 1 | :host { 2 | display: inline-block; 3 | } 4 | -------------------------------------------------------------------------------- /test/end-to-end/src/dom-api/assets-b/file-3.txt: -------------------------------------------------------------------------------- 1 | file-3.txt -------------------------------------------------------------------------------- /test/end-to-end/src/dom-api/dom-api.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/src/dom-api/dom-api.tsx -------------------------------------------------------------------------------- /test/end-to-end/src/dom-api/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/src/dom-api/readme.md -------------------------------------------------------------------------------- /test/end-to-end/src/env-data/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/src/env-data/readme.md -------------------------------------------------------------------------------- /test/end-to-end/src/event-cmp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/src/event-cmp/readme.md -------------------------------------------------------------------------------- /test/end-to-end/src/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/src/global.css -------------------------------------------------------------------------------- /test/end-to-end/src/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/src/global.ts -------------------------------------------------------------------------------- /test/end-to-end/src/import-assets/assets/my-text.txt: -------------------------------------------------------------------------------- 1 | My .txt File -------------------------------------------------------------------------------- /test/end-to-end/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/src/index.html -------------------------------------------------------------------------------- /test/end-to-end/src/path-alias-cmp/path-alias-lib.ts: -------------------------------------------------------------------------------- 1 | export const sayHi = () => 'Hi'; 2 | -------------------------------------------------------------------------------- /test/end-to-end/src/prop-cmp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/src/prop-cmp/readme.md -------------------------------------------------------------------------------- /test/end-to-end/src/slot-cmp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/src/slot-cmp/readme.md -------------------------------------------------------------------------------- /test/end-to-end/src/state-cmp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/src/state-cmp/readme.md -------------------------------------------------------------------------------- /test/end-to-end/stencil.build.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/stencil.build.config.ts -------------------------------------------------------------------------------- /test/end-to-end/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/stencil.config.ts -------------------------------------------------------------------------------- /test/end-to-end/test-end-to-end-dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/test-end-to-end-dist.js -------------------------------------------------------------------------------- /test/end-to-end/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/tsconfig.build.json -------------------------------------------------------------------------------- /test/end-to-end/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/end-to-end/tsconfig.json -------------------------------------------------------------------------------- /test/hello-vdom/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /test/hello-vdom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/hello-vdom/package.json -------------------------------------------------------------------------------- /test/hello-vdom/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/hello-vdom/src/components.d.ts -------------------------------------------------------------------------------- /test/hello-vdom/src/components/index.ts: -------------------------------------------------------------------------------- 1 | export { HelloWorld } from './hello-vdom'; 2 | -------------------------------------------------------------------------------- /test/hello-vdom/src/components/styles.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /test/hello-vdom/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/hello-vdom/src/index.html -------------------------------------------------------------------------------- /test/hello-vdom/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/hello-vdom/src/index.ts -------------------------------------------------------------------------------- /test/hello-vdom/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/hello-vdom/stencil.config.ts -------------------------------------------------------------------------------- /test/hello-vdom/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/hello-vdom/tsconfig.json -------------------------------------------------------------------------------- /test/hello-world/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/hello-world/package-lock.json -------------------------------------------------------------------------------- /test/hello-world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/hello-world/package.json -------------------------------------------------------------------------------- /test/hello-world/prerender.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/hello-world/prerender.config.js -------------------------------------------------------------------------------- /test/hello-world/prerender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/hello-world/prerender.js -------------------------------------------------------------------------------- /test/hello-world/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/hello-world/src/components.d.ts -------------------------------------------------------------------------------- /test/hello-world/src/index-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/hello-world/src/index-module.html -------------------------------------------------------------------------------- /test/hello-world/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/hello-world/src/index.html -------------------------------------------------------------------------------- /test/hello-world/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/hello-world/stencil.config.ts -------------------------------------------------------------------------------- /test/hello-world/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.parent.json" 3 | } 4 | -------------------------------------------------------------------------------- /test/hello-world/tsconfig.parent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/hello-world/tsconfig.parent.json -------------------------------------------------------------------------------- /test/ionic-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/ionic-app/.gitignore -------------------------------------------------------------------------------- /test/ionic-app/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=true 2 | -------------------------------------------------------------------------------- /test/ionic-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/ionic-app/package-lock.json -------------------------------------------------------------------------------- /test/ionic-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/ionic-app/package.json -------------------------------------------------------------------------------- /test/ionic-app/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/ionic-app/src/components.d.ts -------------------------------------------------------------------------------- /test/ionic-app/src/components/app-root/app-root.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ionic-app/src/global/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/ionic-app/src/global/app.css -------------------------------------------------------------------------------- /test/ionic-app/src/global/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/ionic-app/src/global/app.ts -------------------------------------------------------------------------------- /test/ionic-app/src/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/ionic-app/src/helpers/utils.ts -------------------------------------------------------------------------------- /test/ionic-app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/ionic-app/src/index.html -------------------------------------------------------------------------------- /test/ionic-app/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/ionic-app/src/manifest.json -------------------------------------------------------------------------------- /test/ionic-app/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/ionic-app/stencil.config.ts -------------------------------------------------------------------------------- /test/ionic-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/ionic-app/tsconfig.json -------------------------------------------------------------------------------- /test/jest-spec-runner/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/jest-spec-runner/package.json -------------------------------------------------------------------------------- /test/jest-spec-runner/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/jest-spec-runner/stencil.config.ts -------------------------------------------------------------------------------- /test/jest-spec-runner/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/jest-spec-runner/tsconfig.json -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/package.json -------------------------------------------------------------------------------- /test/performance/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /test/performance/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/performance/package.json -------------------------------------------------------------------------------- /test/performance/prerender.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/performance/prerender.config.js -------------------------------------------------------------------------------- /test/performance/prerender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/performance/prerender.js -------------------------------------------------------------------------------- /test/performance/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/performance/src/components.d.ts -------------------------------------------------------------------------------- /test/performance/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/performance/src/index.html -------------------------------------------------------------------------------- /test/performance/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/performance/stencil.config.ts -------------------------------------------------------------------------------- /test/performance/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/performance/tsconfig.json -------------------------------------------------------------------------------- /test/prerender-shadow/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /test/prerender-shadow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/prerender-shadow/package.json -------------------------------------------------------------------------------- /test/prerender-shadow/prerender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/prerender-shadow/prerender.js -------------------------------------------------------------------------------- /test/prerender-shadow/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/prerender-shadow/src/index.html -------------------------------------------------------------------------------- /test/prerender-shadow/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/prerender-shadow/stencil.config.ts -------------------------------------------------------------------------------- /test/prerender-shadow/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/prerender-shadow/tsconfig.json -------------------------------------------------------------------------------- /test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/readme.md -------------------------------------------------------------------------------- /test/style-modes/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /test/style-modes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/style-modes/package.json -------------------------------------------------------------------------------- /test/style-modes/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/style-modes/src/components.d.ts -------------------------------------------------------------------------------- /test/style-modes/src/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/style-modes/src/global.ts -------------------------------------------------------------------------------- /test/style-modes/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/style-modes/src/index.html -------------------------------------------------------------------------------- /test/style-modes/src/scss/_partial.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | background: yellow; 3 | } 4 | -------------------------------------------------------------------------------- /test/style-modes/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/style-modes/stencil.config.ts -------------------------------------------------------------------------------- /test/style-modes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/style-modes/tsconfig.json -------------------------------------------------------------------------------- /test/todo-app/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/todo-app/.firebaserc -------------------------------------------------------------------------------- /test/todo-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/todo-app/.gitignore -------------------------------------------------------------------------------- /test/todo-app/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=true 2 | -------------------------------------------------------------------------------- /test/todo-app/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/todo-app/firebase.json -------------------------------------------------------------------------------- /test/todo-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/todo-app/package-lock.json -------------------------------------------------------------------------------- /test/todo-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/todo-app/package.json -------------------------------------------------------------------------------- /test/todo-app/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/todo-app/src/components.d.ts -------------------------------------------------------------------------------- /test/todo-app/src/global/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/todo-app/src/global/app.css -------------------------------------------------------------------------------- /test/todo-app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/todo-app/src/index.html -------------------------------------------------------------------------------- /test/todo-app/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/todo-app/stencil.config.ts -------------------------------------------------------------------------------- /test/todo-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/todo-app/tsconfig.json -------------------------------------------------------------------------------- /test/type-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/type-tests/README.md -------------------------------------------------------------------------------- /test/type-tests/test.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/type-tests/test.spec.tsx -------------------------------------------------------------------------------- /test/type-tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/type-tests/tsconfig.json -------------------------------------------------------------------------------- /test/wdio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/README.md -------------------------------------------------------------------------------- /test/wdio/async-rerender/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/async-rerender/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/async-rerender/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/async-rerender/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/attribute-basic/cmp-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/attribute-basic/cmp-root.tsx -------------------------------------------------------------------------------- /test/wdio/attribute-basic/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/attribute-basic/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/attribute-basic/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/attribute-basic/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/attribute-boolean/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/attribute-boolean/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/attribute-complex/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/attribute-complex/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/attribute-host/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/attribute-host/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/attribute-host/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/attribute-host/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/attribute-html/cmp-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/attribute-html/cmp-root.tsx -------------------------------------------------------------------------------- /test/wdio/attribute-html/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/attribute-html/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/build-data/build-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/build-data/build-data.tsx -------------------------------------------------------------------------------- /test/wdio/build-data/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/build-data/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/complex-properties/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/complex-properties/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/conditional-basic/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/conditional-basic/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/conditional-rerender/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/conditional-rerender/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/css-variables/cmp-shadow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/css-variables/cmp-shadow.tsx -------------------------------------------------------------------------------- /test/wdio/css-variables/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/css-variables/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/css-variables/variables.css: -------------------------------------------------------------------------------- 1 | 2 | :root { 3 | --link-background: yellow; 4 | } 5 | -------------------------------------------------------------------------------- /test/wdio/custom-event/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/custom-event/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/custom-event/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/custom-event/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/declarative-shadow-dom/page-list-item.css: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /test/wdio/declarative-shadow-dom/page-list.css: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /test/wdio/delegates-focus/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/delegates-focus/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/dom-reattach-clone/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/dom-reattach-clone/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/dom-reattach/cmp-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/dom-reattach/cmp-root.tsx -------------------------------------------------------------------------------- /test/wdio/dom-reattach/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/dom-reattach/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/dynamic-css-variables/cmp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/dynamic-css-variables/cmp.css -------------------------------------------------------------------------------- /test/wdio/dynamic-css-variables/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/dynamic-css-variables/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/dynamic-imports/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/dynamic-imports/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/dynamic-imports/module1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/dynamic-imports/module1.tsx -------------------------------------------------------------------------------- /test/wdio/dynamic-imports/module2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/dynamic-imports/module2.tsx -------------------------------------------------------------------------------- /test/wdio/dynamic-imports/module3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/dynamic-imports/module3.tsx -------------------------------------------------------------------------------- /test/wdio/es5-addclass-svg/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/es5-addclass-svg/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/es5-addclass-svg/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/es5-addclass-svg/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/esm-import/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/esm-import/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/esm-import/esm-import.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/esm-import/esm-import.css -------------------------------------------------------------------------------- /test/wdio/esm-import/esm-import.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/esm-import/esm-import.tsx -------------------------------------------------------------------------------- /test/wdio/event-basic/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/event-basic/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/event-basic/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/event-basic/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/event-custom-type/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/event-custom-type/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/external-imports/cmp-a.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/external-imports/cmp-a.tsx -------------------------------------------------------------------------------- /test/wdio/external-imports/cmp-b.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/external-imports/cmp-b.tsx -------------------------------------------------------------------------------- /test/wdio/external-imports/cmp-c.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/external-imports/cmp-c.tsx -------------------------------------------------------------------------------- /test/wdio/external-imports/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/external-imports/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/form-associated/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/form-associated/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/form-associated/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/form-associated/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/global-script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/global-script/README.md -------------------------------------------------------------------------------- /test/wdio/global-script/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/global-script/components.d.ts -------------------------------------------------------------------------------- /test/wdio/global-script/dist-cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/global-script/dist-cmp.tsx -------------------------------------------------------------------------------- /test/wdio/global-script/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/global-script/global.ts -------------------------------------------------------------------------------- /test/wdio/global-script/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/global-script/index.html -------------------------------------------------------------------------------- /test/wdio/global-script/test-cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/global-script/test-cmp.tsx -------------------------------------------------------------------------------- /test/wdio/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/global.ts -------------------------------------------------------------------------------- /test/wdio/image-import/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/image-import/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/image-import/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/image-import/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/image-import/stencil-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/image-import/stencil-logo.svg -------------------------------------------------------------------------------- /test/wdio/import-aliasing/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/import-aliasing/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/import-aliasing/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/import-aliasing/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/index.ts -------------------------------------------------------------------------------- /test/wdio/init-css-shim/cmp-root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/init-css-shim/cmp-root.css -------------------------------------------------------------------------------- /test/wdio/init-css-shim/cmp-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/init-css-shim/cmp-root.tsx -------------------------------------------------------------------------------- /test/wdio/init-css-shim/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/init-css-shim/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/input-basic/cmp-root.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/input-basic/cmp-root.test.tsx -------------------------------------------------------------------------------- /test/wdio/input-basic/cmp-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/input-basic/cmp-root.tsx -------------------------------------------------------------------------------- /test/wdio/json-basic/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/json-basic/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/json-basic/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/json-basic/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/json-basic/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } -------------------------------------------------------------------------------- /test/wdio/key-reorder/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/key-reorder/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/key-reorder/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/key-reorder/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/lifecycle-async/cmp-a.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-async/cmp-a.tsx -------------------------------------------------------------------------------- /test/wdio/lifecycle-async/cmp-b.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-async/cmp-b.tsx -------------------------------------------------------------------------------- /test/wdio/lifecycle-async/cmp-c.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-async/cmp-c.tsx -------------------------------------------------------------------------------- /test/wdio/lifecycle-async/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-async/util.ts -------------------------------------------------------------------------------- /test/wdio/lifecycle-basic/cmp-a.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-basic/cmp-a.tsx -------------------------------------------------------------------------------- /test/wdio/lifecycle-basic/cmp-b.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-basic/cmp-b.tsx -------------------------------------------------------------------------------- /test/wdio/lifecycle-basic/cmp-c.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-basic/cmp-c.tsx -------------------------------------------------------------------------------- /test/wdio/lifecycle-nested/cmp-a.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-nested/cmp-a.tsx -------------------------------------------------------------------------------- /test/wdio/lifecycle-nested/cmp-b.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-nested/cmp-b.tsx -------------------------------------------------------------------------------- /test/wdio/lifecycle-nested/cmp-c.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-nested/cmp-c.tsx -------------------------------------------------------------------------------- /test/wdio/lifecycle-nested/output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-nested/output.ts -------------------------------------------------------------------------------- /test/wdio/lifecycle-unload/cmp-a.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-unload/cmp-a.tsx -------------------------------------------------------------------------------- /test/wdio/lifecycle-unload/cmp-b.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-unload/cmp-b.tsx -------------------------------------------------------------------------------- /test/wdio/lifecycle-unload/cmp-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-unload/cmp-root.tsx -------------------------------------------------------------------------------- /test/wdio/lifecycle-update/cmp-a.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-update/cmp-a.tsx -------------------------------------------------------------------------------- /test/wdio/lifecycle-update/cmp-b.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-update/cmp-b.tsx -------------------------------------------------------------------------------- /test/wdio/lifecycle-update/cmp-c.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/lifecycle-update/cmp-c.tsx -------------------------------------------------------------------------------- /test/wdio/listen-jsx/cmp-root.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/listen-jsx/cmp-root.test.tsx -------------------------------------------------------------------------------- /test/wdio/listen-jsx/cmp-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/listen-jsx/cmp-root.tsx -------------------------------------------------------------------------------- /test/wdio/listen-jsx/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/listen-jsx/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/listen-reattach/cmp-a.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/listen-reattach/cmp-a.tsx -------------------------------------------------------------------------------- /test/wdio/listen-window/cmp-a.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/listen-window/cmp-a.test.tsx -------------------------------------------------------------------------------- /test/wdio/listen-window/cmp-a.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/listen-window/cmp-a.tsx -------------------------------------------------------------------------------- /test/wdio/node-resolution/cmp-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/node-resolution/cmp-root.tsx -------------------------------------------------------------------------------- /test/wdio/node-resolution/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/node-resolution/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/node-resolution/module.ts: -------------------------------------------------------------------------------- 1 | export const location = 'module.js'; 2 | -------------------------------------------------------------------------------- /test/wdio/node-resolution/module/index.ts: -------------------------------------------------------------------------------- 1 | export const location = 'module/index.js'; 2 | -------------------------------------------------------------------------------- /test/wdio/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/package-lock.json -------------------------------------------------------------------------------- /test/wdio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/package.json -------------------------------------------------------------------------------- /test/wdio/prerender-test/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/prerender-test/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/prerender.stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/prerender.stencil.config.ts -------------------------------------------------------------------------------- /test/wdio/property-serializer/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/property-serializer/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/radio-group-blur/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/radio-group-blur/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/radio-group-blur/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/radio-group-blur/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/radio-group-blur/radio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/radio-group-blur/radio.css -------------------------------------------------------------------------------- /test/wdio/radio-group-blur/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/radio-group-blur/utils.ts -------------------------------------------------------------------------------- /test/wdio/ref-attr-order/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/ref-attr-order/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/ref-attr-order/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/ref-attr-order/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/reflect-to-attr/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/reflect-to-attr/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/remove-child-patch/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/remove-child-patch/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/render/render.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/render/render.test.tsx -------------------------------------------------------------------------------- /test/wdio/scoped-basic/cmp-root-md.css: -------------------------------------------------------------------------------- 1 | :host { 2 | color: white; 3 | } 4 | -------------------------------------------------------------------------------- /test/wdio/scoped-basic/cmp-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/scoped-basic/cmp-root.tsx -------------------------------------------------------------------------------- /test/wdio/scoped-basic/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/scoped-basic/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/scoped-basic/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/scoped-basic/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/scoped-conditional/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/scoped-conditional/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/scoped-id-in-nested-classname/cmp-level-3.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | padding: 8px; 3 | } 4 | -------------------------------------------------------------------------------- /test/wdio/scoped-slot-text/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/scoped-slot-text/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/setup.ts -------------------------------------------------------------------------------- /test/wdio/shadow-dom-array/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/shadow-dom-array/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/shadow-dom-basic/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/shadow-dom-basic/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/shadow-dom-mode/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/shadow-dom-mode/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/shared-jsx/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/shared-jsx/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/shared-jsx/factory-jsx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/shared-jsx/factory-jsx.tsx -------------------------------------------------------------------------------- /test/wdio/slot-array-basic/cmp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-array-basic/cmp.css -------------------------------------------------------------------------------- /test/wdio/slot-array-basic/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-array-basic/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/slot-array-complex/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-array-complex/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/slot-array-top/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-array-top/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/slot-basic-order/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-basic-order/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/slot-basic/cmp-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-basic/cmp-root.tsx -------------------------------------------------------------------------------- /test/wdio/slot-basic/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-basic/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/slot-children/cmp-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-children/cmp-root.tsx -------------------------------------------------------------------------------- /test/wdio/slot-children/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-children/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/slot-fallback/cmp-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-fallback/cmp-root.tsx -------------------------------------------------------------------------------- /test/wdio/slot-fallback/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-fallback/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/slot-fallback/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-fallback/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/slot-html/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-html/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/slot-html/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-html/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/slot-light-dom/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-light-dom/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/slot-map-order/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-map-order/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/slot-ng-if/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-ng-if/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/slot-ng-if/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-ng-if/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/slot-ng-if/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-ng-if/index.html -------------------------------------------------------------------------------- /test/wdio/slot-no-default/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-no-default/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/slot-reorder/cmp-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-reorder/cmp-root.tsx -------------------------------------------------------------------------------- /test/wdio/slot-reorder/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-reorder/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/slot-reorder/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slot-reorder/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/slotted-css/cmp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slotted-css/cmp.css -------------------------------------------------------------------------------- /test/wdio/slotted-css/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slotted-css/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/slotted-css/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/slotted-css/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/src/components.d.ts -------------------------------------------------------------------------------- /test/wdio/ssr-hydration/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/ssr-hydration/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/ssr-hydration/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/ssr-hydration/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/ssr-hydration/part-cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/ssr-hydration/part-cmp.tsx -------------------------------------------------------------------------------- /test/wdio/ssr-hydration/wrap-cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/ssr-hydration/wrap-cmp.tsx -------------------------------------------------------------------------------- /test/wdio/static-members/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/static-members/README.md -------------------------------------------------------------------------------- /test/wdio/static-styles/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/static-styles/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/static-styles/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/static-styles/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/stencil-sibling/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/stencil-sibling/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/stencil.config-es2022.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/stencil.config-es2022.ts -------------------------------------------------------------------------------- /test/wdio/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/stencil.config.ts -------------------------------------------------------------------------------- /test/wdio/style-plugin/bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/style-plugin/bar.scss -------------------------------------------------------------------------------- /test/wdio/style-plugin/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/style-plugin/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/style-plugin/css-cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/style-plugin/css-cmp.tsx -------------------------------------------------------------------------------- /test/wdio/style-plugin/css-entry.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/style-plugin/css-entry.css -------------------------------------------------------------------------------- /test/wdio/style-plugin/foo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/style-plugin/foo.scss -------------------------------------------------------------------------------- /test/wdio/style-plugin/sass-cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/style-plugin/sass-cmp.tsx -------------------------------------------------------------------------------- /test/wdio/svg-attr/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/svg-attr/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/svg-attr/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/svg-attr/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/svg-class/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/svg-class/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/svg-class/cmp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/svg-class/cmp.tsx -------------------------------------------------------------------------------- /test/wdio/tag-names/cmp-tag-3d.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/tag-names/cmp-tag-3d.tsx -------------------------------------------------------------------------------- /test/wdio/tag-names/cmp-tag-88.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/tag-names/cmp-tag-88.tsx -------------------------------------------------------------------------------- /test/wdio/tag-names/cmp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/tag-names/cmp.test.tsx -------------------------------------------------------------------------------- /test/wdio/tag-transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/tag-transformer.ts -------------------------------------------------------------------------------- /test/wdio/test-end-to-end-import.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/test-end-to-end-import.mjs -------------------------------------------------------------------------------- /test/wdio/test-prerender/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /test/wdio/test-sibling/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/test-sibling/package.json -------------------------------------------------------------------------------- /test/wdio/test-sibling/src/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/test-sibling/src/global.ts -------------------------------------------------------------------------------- /test/wdio/test-sibling/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/test-sibling/tsconfig.json -------------------------------------------------------------------------------- /test/wdio/ts-target/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/ts-target/components.d.ts -------------------------------------------------------------------------------- /test/wdio/tsconfig-es2022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/tsconfig-es2022.json -------------------------------------------------------------------------------- /test/wdio/tsconfig-prerender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/tsconfig-prerender.json -------------------------------------------------------------------------------- /test/wdio/tsconfig-stencil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/tsconfig-stencil.json -------------------------------------------------------------------------------- /test/wdio/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/tsconfig.json -------------------------------------------------------------------------------- /test/wdio/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/util.ts -------------------------------------------------------------------------------- /test/wdio/wdio.conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/test/wdio/wdio.conf.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/ionic-prettier-config.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@ionic/prettier-config'; 2 | -------------------------------------------------------------------------------- /types/merge-source-map.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/core/HEAD/types/merge-source-map.d.ts --------------------------------------------------------------------------------