├── .config ├── .commitlintrc.json ├── .jscpd.json ├── .lintstagedrc-prettier.js ├── .lintstagedrc.js └── .markdown-lint.yml ├── .editorconfig ├── .env.template ├── .eslintignore ├── .eslintrc.mjs ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.yaml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── cancel-workflow │ │ └── action.yml │ ├── extract-branch │ │ └── action.yml │ ├── npm-cache │ │ └── action.yml │ └── playwright-cache │ │ └── action.yml ├── dependabot.yml ├── labeler.yml └── workflows │ ├── 00-init.yml │ ├── 00-scan-secrets.yml │ ├── 01-build-outputs.yml │ ├── 01-build-packages.yml │ ├── 01-build-patternhub.yml │ ├── 01-build-showcases.yml │ ├── 01-get-playwright-version.yml │ ├── 01-get-publish-version.yml │ ├── 01-init-playwright.yml │ ├── 01-lint.yml │ ├── 01-test.yml │ ├── 02-e2e-foundations.yml │ ├── 02-e2e-regenerate.yml │ ├── 02-e2e-screen-reader.yml │ ├── 02-e2e-showcases.yml │ ├── 02-e2e.yml │ ├── 03-deploy-gh-pages.yml │ ├── 03-publish-packages.yml │ ├── 99-add-url-comment.yml │ ├── 99-auto-merge.yml │ ├── 99-codeql-analysis.yml │ ├── 99-dependency-review.yml │ ├── 99-labeler.yml │ ├── cleanup.yml │ ├── default.yml │ ├── pull-request-opened.yml │ ├── pull-request.yml │ └── release.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .markdownlintignore ├── .np-config.json ├── .npmignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── .stylelintignore ├── .stylelintrc.json ├── .vscode ├── extensions.adoc ├── extensions.json └── settings.json ├── .xo-config.cjs ├── .yamllint.yml ├── CODE-OF-CONDUCT.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __snapshots__ ├── accordion-item │ ├── component │ │ ├── chromium │ │ │ ├── DBAccordionItem-should-have-same-aria-snapshot.yaml │ │ │ └── DBAccordionItem-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBAccordionItem-should-have-same-aria-snapshot.yaml │ │ │ └── DBAccordionItem-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBAccordionItem-should-have-same-aria-snapshot.yaml │ │ │ └── DBAccordionItem-should-match-screenshot.png │ ├── patternhub │ │ ├── accordion-item-docs-should-match-screenshot.png │ │ ├── accordion-item-overview-should-match-screenshot.png │ │ └── accordion-item-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBAccordionItem-should-match-screenshot-1 │ │ │ └── DBAccordionItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBAccordionItem-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBAccordionItem-should-match-screenshot-1 │ │ │ └── DBAccordionItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBAccordionItem-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBAccordionItem-should-match-screenshot-1 │ │ │ └── DBAccordionItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBAccordionItem-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBAccordionItem-should-match-screenshot-1 │ │ │ └── DBAccordionItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBAccordionItem-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBAccordionItem-should-match-screenshot-1 │ │ │ └── DBAccordionItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBAccordionItem-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBAccordionItem-should-match-screenshot-1 │ │ └── DBAccordionItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBAccordionItem-should-have-same-aria-snapshot.yaml ├── accordion │ ├── component │ │ ├── chromium │ │ │ ├── DBAccordion-open-items-should-match-screenshot.png │ │ │ ├── DBAccordion-should-have-same-aria-snapshot.yaml │ │ │ └── DBAccordion-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBAccordion-open-items-should-match-screenshot.png │ │ │ ├── DBAccordion-should-have-same-aria-snapshot.yaml │ │ │ └── DBAccordion-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBAccordion-open-items-should-match-screenshot.png │ │ │ ├── DBAccordion-should-have-same-aria-snapshot.yaml │ │ │ └── DBAccordion-should-match-screenshot.png │ ├── patternhub │ │ ├── accordion-docs-should-match-screenshot.png │ │ ├── accordion-overview-should-match-screenshot.png │ │ └── accordion-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBAccordion-should-match-screenshot-1 │ │ │ └── DBAccordion-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBAccordion-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBAccordion-should-match-screenshot-1 │ │ │ └── DBAccordion-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBAccordion-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBAccordion-should-match-screenshot-1 │ │ │ └── DBAccordion-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBAccordion-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBAccordion-should-match-screenshot-1 │ │ │ └── DBAccordion-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBAccordion-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBAccordion-should-match-screenshot-1 │ │ │ └── DBAccordion-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBAccordion-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBAccordion-should-match-screenshot-1 │ │ └── DBAccordion-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBAccordion-should-have-same-aria-snapshot.yaml ├── badge │ ├── component │ │ ├── chromium │ │ │ ├── DBBadge-should-have-same-aria-snapshot.yaml │ │ │ └── DBBadge-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBBadge-should-have-same-aria-snapshot.yaml │ │ │ └── DBBadge-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBBadge-should-have-same-aria-snapshot.yaml │ │ │ └── DBBadge-should-match-screenshot.png │ ├── patternhub │ │ ├── badge-docs-should-match-screenshot.png │ │ ├── badge-overview-should-match-screenshot.png │ │ └── badge-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBBadge-should-match-screenshot-1 │ │ │ └── DBBadge-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBBadge-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBBadge-should-match-screenshot-1 │ │ │ └── DBBadge-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBBadge-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBBadge-should-match-screenshot-1 │ │ │ └── DBBadge-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBBadge-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBBadge-should-match-screenshot-1 │ │ │ └── DBBadge-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBBadge-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBBadge-should-match-screenshot-1 │ │ │ └── DBBadge-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBBadge-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBBadge-should-match-screenshot-1 │ │ └── DBBadge-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBBadge-should-have-same-aria-snapshot.yaml ├── brand │ ├── component │ │ ├── chromium │ │ │ ├── DBBrand-should-have-same-aria-snapshot.yaml │ │ │ └── DBBrand-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBBrand-should-have-same-aria-snapshot.yaml │ │ │ └── DBBrand-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBBrand-should-have-same-aria-snapshot.yaml │ │ │ └── DBBrand-should-match-screenshot.png │ ├── patternhub │ │ ├── brand-docs-should-match-screenshot.png │ │ ├── brand-overview-should-match-screenshot.png │ │ └── brand-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBBrand-should-match-screenshot-1 │ │ │ └── DBBrand-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBBrand-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBBrand-should-match-screenshot-1 │ │ │ └── DBBrand-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBBrand-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBBrand-should-match-screenshot-1 │ │ │ └── DBBrand-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBBrand-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBBrand-should-match-screenshot-1 │ │ │ └── DBBrand-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBBrand-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBBrand-should-match-screenshot-1 │ │ │ └── DBBrand-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBBrand-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBBrand-should-match-screenshot-1 │ │ └── DBBrand-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBBrand-should-have-same-aria-snapshot.yaml ├── button │ ├── component │ │ ├── chromium │ │ │ ├── DBButton-should-have-same-aria-snapshot.yaml │ │ │ ├── DBButton-should-match-screenshot-for-variant-brand.png │ │ │ ├── DBButton-should-match-screenshot-for-variant-filled.png │ │ │ ├── DBButton-should-match-screenshot-for-variant-ghost.png │ │ │ ├── DBButton-should-match-screenshot-for-variant-outlined.png │ │ │ ├── DBButton-should-only-have-icon-for-variant-brand.png │ │ │ ├── DBButton-should-only-have-icon-for-variant-filled.png │ │ │ ├── DBButton-should-only-have-icon-for-variant-ghost.png │ │ │ └── DBButton-should-only-have-icon-for-variant-outlined.png │ │ ├── firefox │ │ │ ├── DBButton-should-have-same-aria-snapshot.yaml │ │ │ ├── DBButton-should-match-screenshot-for-variant-brand.png │ │ │ ├── DBButton-should-match-screenshot-for-variant-filled.png │ │ │ ├── DBButton-should-match-screenshot-for-variant-ghost.png │ │ │ ├── DBButton-should-match-screenshot-for-variant-outlined.png │ │ │ ├── DBButton-should-only-have-icon-for-variant-brand.png │ │ │ ├── DBButton-should-only-have-icon-for-variant-filled.png │ │ │ ├── DBButton-should-only-have-icon-for-variant-ghost.png │ │ │ └── DBButton-should-only-have-icon-for-variant-outlined.png │ │ └── mobile-chrome │ │ │ ├── DBButton-should-have-same-aria-snapshot.yaml │ │ │ ├── DBButton-should-match-screenshot-for-variant-brand.png │ │ │ ├── DBButton-should-match-screenshot-for-variant-filled.png │ │ │ ├── DBButton-should-match-screenshot-for-variant-ghost.png │ │ │ ├── DBButton-should-match-screenshot-for-variant-outlined.png │ │ │ ├── DBButton-should-only-have-icon-for-variant-brand.png │ │ │ ├── DBButton-should-only-have-icon-for-variant-filled.png │ │ │ ├── DBButton-should-only-have-icon-for-variant-ghost.png │ │ │ └── DBButton-should-only-have-icon-for-variant-outlined.png │ ├── patternhub │ │ ├── button-docs-should-match-screenshot.png │ │ ├── button-overview-should-match-screenshot.png │ │ └── button-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBButton-should-match-screenshot-1 │ │ │ └── DBButton-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBButton-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBButton-should-match-screenshot-1 │ │ │ └── DBButton-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBButton-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBButton-should-match-screenshot-1 │ │ │ └── DBButton-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBButton-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBButton-should-match-screenshot-1 │ │ │ └── DBButton-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBButton-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBButton-should-match-screenshot-1 │ │ │ └── DBButton-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBButton-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBButton-should-match-screenshot-1 │ │ └── DBButton-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBButton-should-have-same-aria-snapshot.yaml ├── card │ ├── component │ │ ├── chromium │ │ │ ├── DBCard-should-have-same-aria-snapshot.yaml │ │ │ ├── DBCard-should-match-screenshot-for-behavior-default.png │ │ │ ├── DBCard-should-match-screenshot-for-behavior-interactive.png │ │ │ └── DBCard-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBCard-should-have-same-aria-snapshot.yaml │ │ │ ├── DBCard-should-match-screenshot-for-behavior-default.png │ │ │ ├── DBCard-should-match-screenshot-for-behavior-interactive.png │ │ │ └── DBCard-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBCard-should-have-same-aria-snapshot.yaml │ │ │ ├── DBCard-should-match-screenshot-for-behavior-default.png │ │ │ ├── DBCard-should-match-screenshot-for-behavior-interactive.png │ │ │ └── DBCard-should-match-screenshot.png │ ├── patternhub │ │ ├── card-docs-should-match-screenshot.png │ │ ├── card-overview-should-match-screenshot.png │ │ └── card-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBCard-should-match-screenshot-1 │ │ │ └── DBCard-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBCard-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBCard-should-match-screenshot-1 │ │ │ └── DBCard-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBCard-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBCard-should-match-screenshot-1 │ │ │ └── DBCard-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBCard-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBCard-should-match-screenshot-1 │ │ │ └── DBCard-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBCard-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBCard-should-match-screenshot-1 │ │ │ └── DBCard-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBCard-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBCard-should-match-screenshot-1 │ │ └── DBCard-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBCard-should-have-same-aria-snapshot.yaml ├── checkbox │ ├── component │ │ ├── chromium │ │ │ ├── DBCheckbox-should-have-same-aria-snapshot.yaml │ │ │ └── DBCheckbox-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBCheckbox-should-have-same-aria-snapshot.yaml │ │ │ └── DBCheckbox-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBCheckbox-should-have-same-aria-snapshot.yaml │ │ │ └── DBCheckbox-should-match-screenshot.png │ ├── patternhub │ │ ├── checkbox-docs-should-match-screenshot.png │ │ ├── checkbox-overview-should-match-screenshot.png │ │ └── checkbox-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBCheckbox-should-match-screenshot-1 │ │ │ └── DBCheckbox-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBCheckbox-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBCheckbox-should-match-screenshot-1 │ │ │ └── DBCheckbox-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBCheckbox-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBCheckbox-should-match-screenshot-1 │ │ │ └── DBCheckbox-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBCheckbox-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBCheckbox-should-match-screenshot-1 │ │ │ └── DBCheckbox-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBCheckbox-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBCheckbox-should-match-screenshot-1 │ │ │ └── DBCheckbox-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBCheckbox-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBCheckbox-should-match-screenshot-1 │ │ └── DBCheckbox-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBCheckbox-should-have-same-aria-snapshot.yaml ├── custom-select │ ├── component │ │ ├── chromium │ │ │ ├── DBCustomSelect-should-have-same-aria-snapshot.yaml │ │ │ └── DBCustomSelect-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBCustomSelect-should-have-same-aria-snapshot.yaml │ │ │ └── DBCustomSelect-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBCustomSelect-should-have-same-aria-snapshot.yaml │ │ │ └── DBCustomSelect-should-match-screenshot.png │ ├── patternhub │ │ ├── custom-select-docs-should-match-screenshot.png │ │ ├── custom-select-overview-should-match-screenshot.png │ │ └── custom-select-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBCustomSelect-should-match-screenshot-1 │ │ │ └── DBCustomSelect-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBCustomSelect-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBCustomSelect-should-match-screenshot-1 │ │ │ └── DBCustomSelect-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBCustomSelect-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBCustomSelect-should-match-screenshot-1 │ │ │ └── DBCustomSelect-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBCustomSelect-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBCustomSelect-should-match-screenshot-1 │ │ │ └── DBCustomSelect-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBCustomSelect-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBCustomSelect-should-match-screenshot-1 │ │ │ └── DBCustomSelect-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBCustomSelect-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBCustomSelect-should-match-screenshot-1 │ │ └── DBCustomSelect-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBCustomSelect-should-have-same-aria-snapshot.yaml ├── divider │ ├── component │ │ ├── chromium │ │ │ ├── DBDivider-should-have-same-aria-snapshot.yaml │ │ │ └── DBDivider-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBDivider-should-have-same-aria-snapshot.yaml │ │ │ └── DBDivider-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBDivider-should-have-same-aria-snapshot.yaml │ │ │ └── DBDivider-should-match-screenshot.png │ ├── patternhub │ │ ├── divider-docs-should-match-screenshot.png │ │ ├── divider-overview-should-match-screenshot.png │ │ └── divider-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBDivider-should-match-screenshot-1 │ │ │ └── DBDivider-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBDivider-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBDivider-should-match-screenshot-1 │ │ │ └── DBDivider-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBDivider-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBDivider-should-match-screenshot-1 │ │ │ └── DBDivider-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBDivider-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBDivider-should-match-screenshot-1 │ │ │ └── DBDivider-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBDivider-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBDivider-should-match-screenshot-1 │ │ │ └── DBDivider-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBDivider-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBDivider-should-match-screenshot-1 │ │ └── DBDivider-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBDivider-should-have-same-aria-snapshot.yaml ├── drawer │ ├── component │ │ ├── chromium │ │ │ └── DBDrawer-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ │ └── DBDrawer-should-have-same-aria-snapshot.yaml │ │ └── mobile-chrome │ │ │ └── DBDrawer-should-have-same-aria-snapshot.yaml │ ├── patternhub │ │ ├── drawer-docs-should-match-screenshot.png │ │ ├── drawer-overview-should-match-screenshot.png │ │ └── drawer-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBDrawer-should-match-screenshot-1 │ │ │ └── DBDrawer-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBDrawer-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBDrawer-should-match-screenshot-1 │ │ │ └── DBDrawer-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBDrawer-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBDrawer-should-match-screenshot-1 │ │ │ └── DBDrawer-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBDrawer-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBDrawer-should-match-screenshot-1 │ │ │ └── DBDrawer-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBDrawer-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBDrawer-should-match-screenshot-1 │ │ │ └── DBDrawer-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBDrawer-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBDrawer-should-match-screenshot-1 │ │ └── DBDrawer-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBDrawer-should-have-same-aria-snapshot.yaml ├── foundations │ ├── chromium │ │ ├── Colors-should-match-screenshot-1 │ │ │ └── Colors-should-match-screenshot.png │ │ ├── Fonts-should-match-screenshot-1 │ │ │ └── Fonts-should-match-screenshot.png │ │ └── Icons-should-match-screenshot-1 │ │ │ └── Icons-should-match-screenshot.png │ ├── firefox │ │ ├── Colors-should-match-screenshot-1 │ │ │ └── Colors-should-match-screenshot.png │ │ ├── Fonts-should-match-screenshot-1 │ │ │ └── Fonts-should-match-screenshot.png │ │ └── Icons-should-match-screenshot-1 │ │ │ └── Icons-should-match-screenshot.png │ └── webkit │ │ ├── Colors-should-match-screenshot-1 │ │ └── Colors-should-match-screenshot.png │ │ ├── Fonts-should-match-screenshot-1 │ │ └── Fonts-should-match-screenshot.png │ │ └── Icons-should-match-screenshot-1 │ │ └── Icons-should-match-screenshot.png ├── header │ ├── patternhub │ │ ├── header-docs-should-match-screenshot.png │ │ ├── header-overview-should-match-screenshot.png │ │ └── header-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBHeader-should-match-screenshot-1 │ │ │ └── DBHeader-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBHeader-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBHeader-should-match-screenshot-1 │ │ │ └── DBHeader-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBHeader-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBHeader-should-match-screenshot-1 │ │ │ └── DBHeader-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBHeader-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBHeader-should-match-screenshot-1 │ │ │ └── DBHeader-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBHeader-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBHeader-should-match-screenshot-1 │ │ │ └── DBHeader-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBHeader-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBHeader-should-match-screenshot-1 │ │ └── DBHeader-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBHeader-should-have-same-aria-snapshot.yaml ├── icon │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBIcon-should-match-screenshot-1 │ │ │ └── DBIcon-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBIcon-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBIcon-should-match-screenshot-1 │ │ │ └── DBIcon-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBIcon-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBIcon-should-match-screenshot-1 │ │ │ └── DBIcon-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBIcon-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBIcon-should-match-screenshot-1 │ │ │ └── DBIcon-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBIcon-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBIcon-should-match-screenshot-1 │ │ │ └── DBIcon-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBIcon-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBIcon-should-match-screenshot-1 │ │ └── DBIcon-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBIcon-should-have-same-aria-snapshot.yaml ├── infotext │ ├── component │ │ ├── chromium │ │ │ ├── DBInfotext-should-have-same-aria-snapshot.yaml │ │ │ ├── DBInfotext-should-match-screenshot-for-semantic-critical.png │ │ │ ├── DBInfotext-should-match-screenshot-for-semantic-informational.png │ │ │ ├── DBInfotext-should-match-screenshot-for-semantic-successful.png │ │ │ ├── DBInfotext-should-match-screenshot-for-semantic-warning.png │ │ │ └── DBInfotext-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBInfotext-should-have-same-aria-snapshot.yaml │ │ │ ├── DBInfotext-should-match-screenshot-for-semantic-critical.png │ │ │ ├── DBInfotext-should-match-screenshot-for-semantic-informational.png │ │ │ ├── DBInfotext-should-match-screenshot-for-semantic-successful.png │ │ │ ├── DBInfotext-should-match-screenshot-for-semantic-warning.png │ │ │ └── DBInfotext-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBInfotext-should-have-same-aria-snapshot.yaml │ │ │ ├── DBInfotext-should-match-screenshot-for-semantic-critical.png │ │ │ ├── DBInfotext-should-match-screenshot-for-semantic-informational.png │ │ │ ├── DBInfotext-should-match-screenshot-for-semantic-successful.png │ │ │ ├── DBInfotext-should-match-screenshot-for-semantic-warning.png │ │ │ └── DBInfotext-should-match-screenshot.png │ ├── patternhub │ │ ├── infotext-docs-should-match-screenshot.png │ │ ├── infotext-overview-should-match-screenshot.png │ │ └── infotext-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBInfotext-should-match-screenshot-1 │ │ │ └── DBInfotext-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBInfotext-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBInfotext-should-match-screenshot-1 │ │ │ └── DBInfotext-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBInfotext-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBInfotext-should-match-screenshot-1 │ │ │ └── DBInfotext-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBInfotext-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBInfotext-should-match-screenshot-1 │ │ │ └── DBInfotext-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBInfotext-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBInfotext-should-match-screenshot-1 │ │ │ └── DBInfotext-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBInfotext-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBInfotext-should-match-screenshot-1 │ │ └── DBInfotext-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBInfotext-should-have-same-aria-snapshot.yaml ├── input │ ├── component │ │ ├── chromium │ │ │ ├── DBInput-should-have-same-aria-snapshot.yaml │ │ │ └── DBInput-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBInput-should-have-same-aria-snapshot.yaml │ │ │ └── DBInput-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBInput-should-have-same-aria-snapshot.yaml │ │ │ └── DBInput-should-match-screenshot.png │ ├── patternhub │ │ ├── input-docs-should-match-screenshot.png │ │ ├── input-overview-should-match-screenshot.png │ │ └── input-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBInput-should-match-screenshot-1 │ │ │ └── DBInput-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBInput-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBInput-should-match-screenshot-1 │ │ │ └── DBInput-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBInput-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBInput-should-match-screenshot-1 │ │ │ └── DBInput-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBInput-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBInput-should-match-screenshot-1 │ │ │ └── DBInput-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBInput-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBInput-should-match-screenshot-1 │ │ │ └── DBInput-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBInput-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBInput-should-match-screenshot-1 │ │ └── DBInput-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBInput-should-have-same-aria-snapshot.yaml ├── link │ ├── patternhub │ │ ├── link-docs-should-match-screenshot.png │ │ ├── link-overview-should-match-screenshot.png │ │ └── link-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBLink-should-match-screenshot-1 │ │ │ └── DBLink-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBLink-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBLink-should-match-screenshot-1 │ │ │ └── DBLink-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBLink-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBLink-should-match-screenshot-1 │ │ │ └── DBLink-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBLink-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBLink-should-match-screenshot-1 │ │ │ └── DBLink-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBLink-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBLink-should-match-screenshot-1 │ │ │ └── DBLink-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBLink-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBLink-should-match-screenshot-1 │ │ └── DBLink-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBLink-should-have-same-aria-snapshot.yaml ├── navigation-item │ ├── component │ │ ├── chromium │ │ │ ├── DBNavigationItem-should-have-same-aria-snapshot.yaml │ │ │ └── DBNavigationItem-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBNavigationItem-should-have-same-aria-snapshot.yaml │ │ │ └── DBNavigationItem-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBNavigationItem-should-have-same-aria-snapshot.yaml │ │ │ └── DBNavigationItem-should-match-screenshot.png │ ├── patternhub │ │ ├── navigation-item-docs-should-match-screenshot.png │ │ ├── navigation-item-overview-should-match-screenshot.png │ │ └── navigation-item-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBNavigationItem-should-match-screenshot-1 │ │ │ └── DBNavigationItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBNavigationItem-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBNavigationItem-should-match-screenshot-1 │ │ │ └── DBNavigationItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBNavigationItem-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBNavigationItem-should-match-screenshot-1 │ │ │ └── DBNavigationItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBNavigationItem-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBNavigationItem-should-match-screenshot-1 │ │ │ └── DBNavigationItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBNavigationItem-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBNavigationItem-should-match-screenshot-1 │ │ │ └── DBNavigationItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBNavigationItem-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBNavigationItem-should-match-screenshot-1 │ │ └── DBNavigationItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBNavigationItem-should-have-same-aria-snapshot.yaml ├── navigation │ ├── component │ │ ├── chromium │ │ │ ├── DBNavigation-should-have-same-aria-snapshot.yaml │ │ │ ├── DBNavigation-should-match-screenshot-for-device-desktop.png │ │ │ ├── DBNavigation-should-match-screenshot-for-device-mobile.png │ │ │ └── DBNavigation-should-match-screenshot-for-device-tablet.png │ │ ├── firefox │ │ │ ├── DBNavigation-should-have-same-aria-snapshot.yaml │ │ │ ├── DBNavigation-should-match-screenshot-for-device-desktop.png │ │ │ ├── DBNavigation-should-match-screenshot-for-device-mobile.png │ │ │ └── DBNavigation-should-match-screenshot-for-device-tablet.png │ │ └── mobile-chrome │ │ │ ├── DBNavigation-should-have-same-aria-snapshot.yaml │ │ │ ├── DBNavigation-should-match-screenshot-for-device-desktop.png │ │ │ ├── DBNavigation-should-match-screenshot-for-device-mobile.png │ │ │ └── DBNavigation-should-match-screenshot-for-device-tablet.png │ ├── patternhub │ │ ├── navigation-docs-should-match-screenshot.png │ │ ├── navigation-overview-should-match-screenshot.png │ │ └── navigation-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBNavigation-should-match-screenshot-1 │ │ │ └── DBNavigation-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBNavigation-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBNavigation-should-match-screenshot-1 │ │ │ └── DBNavigation-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBNavigation-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBNavigation-should-match-screenshot-1 │ │ │ └── DBNavigation-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBNavigation-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBNavigation-should-match-screenshot-1 │ │ │ └── DBNavigation-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBNavigation-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBNavigation-should-match-screenshot-1 │ │ │ └── DBNavigation-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBNavigation-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBNavigation-should-match-screenshot-1 │ │ └── DBNavigation-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBNavigation-should-have-same-aria-snapshot.yaml ├── notification │ ├── component │ │ ├── chromium │ │ │ ├── DBNotification-should-have-same-aria-snapshot.yaml │ │ │ ├── DBNotification-should-match-screenshot-for-semantic-critical.png │ │ │ ├── DBNotification-should-match-screenshot-for-semantic-informational.png │ │ │ ├── DBNotification-should-match-screenshot-for-semantic-successful.png │ │ │ ├── DBNotification-should-match-screenshot-for-semantic-warning.png │ │ │ └── DBNotification-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBNotification-should-have-same-aria-snapshot.yaml │ │ │ ├── DBNotification-should-match-screenshot-for-semantic-critical.png │ │ │ ├── DBNotification-should-match-screenshot-for-semantic-informational.png │ │ │ ├── DBNotification-should-match-screenshot-for-semantic-successful.png │ │ │ ├── DBNotification-should-match-screenshot-for-semantic-warning.png │ │ │ └── DBNotification-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBNotification-should-have-same-aria-snapshot.yaml │ │ │ ├── DBNotification-should-match-screenshot-for-semantic-critical.png │ │ │ ├── DBNotification-should-match-screenshot-for-semantic-informational.png │ │ │ ├── DBNotification-should-match-screenshot-for-semantic-successful.png │ │ │ ├── DBNotification-should-match-screenshot-for-semantic-warning.png │ │ │ └── DBNotification-should-match-screenshot.png │ ├── patternhub │ │ ├── notification-docs-should-match-screenshot.png │ │ ├── notification-overview-should-match-screenshot.png │ │ └── notification-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBNotification-should-match-screenshot-1 │ │ │ └── DBNotification-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBNotification-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBNotification-should-match-screenshot-1 │ │ │ └── DBNotification-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBNotification-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBNotification-should-match-screenshot-1 │ │ │ └── DBNotification-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBNotification-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBNotification-should-match-screenshot-1 │ │ │ └── DBNotification-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBNotification-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBNotification-should-match-screenshot-1 │ │ │ └── DBNotification-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBNotification-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBNotification-should-match-screenshot-1 │ │ └── DBNotification-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBNotification-should-have-same-aria-snapshot.yaml ├── popover │ ├── component │ │ ├── chromium │ │ │ ├── DBPopover-after-open-should-match-screenshot.png │ │ │ ├── DBPopover-should-have-same-aria-snapshot.yaml │ │ │ └── DBPopover-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBPopover-after-open-should-match-screenshot.png │ │ │ ├── DBPopover-should-have-same-aria-snapshot.yaml │ │ │ └── DBPopover-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBPopover-after-open-should-match-screenshot.png │ │ │ ├── DBPopover-should-have-same-aria-snapshot.yaml │ │ │ └── DBPopover-should-match-screenshot.png │ ├── patternhub │ │ ├── popover-docs-should-match-screenshot.png │ │ ├── popover-overview-should-match-screenshot.png │ │ └── popover-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBPopover-should-match-screenshot-1 │ │ │ └── DBPopover-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBPopover-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBPopover-should-match-screenshot-1 │ │ │ └── DBPopover-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBPopover-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBPopover-should-match-screenshot-1 │ │ │ └── DBPopover-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBPopover-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBPopover-should-match-screenshot-1 │ │ │ └── DBPopover-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBPopover-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBPopover-should-match-screenshot-1 │ │ │ └── DBPopover-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBPopover-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBPopover-should-match-screenshot-1 │ │ └── DBPopover-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBPopover-should-have-same-aria-snapshot.yaml ├── radio │ ├── component │ │ ├── chromium │ │ │ ├── DBRadio-should-have-same-aria-snapshot.yaml │ │ │ └── DBRadio-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBRadio-should-have-same-aria-snapshot.yaml │ │ │ └── DBRadio-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBRadio-should-have-same-aria-snapshot.yaml │ │ │ └── DBRadio-should-match-screenshot.png │ ├── patternhub │ │ ├── radio-docs-should-match-screenshot.png │ │ ├── radio-overview-should-match-screenshot.png │ │ └── radio-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBRadio-should-match-screenshot-1 │ │ │ └── DBRadio-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBRadio-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBRadio-should-match-screenshot-1 │ │ │ └── DBRadio-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBRadio-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBRadio-should-match-screenshot-1 │ │ │ └── DBRadio-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBRadio-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBRadio-should-match-screenshot-1 │ │ │ └── DBRadio-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBRadio-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBRadio-should-match-screenshot-1 │ │ │ └── DBRadio-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBRadio-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBRadio-should-match-screenshot-1 │ │ └── DBRadio-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBRadio-should-have-same-aria-snapshot.yaml ├── section │ ├── patternhub │ │ ├── section-docs-should-match-screenshot.png │ │ ├── section-overview-should-match-screenshot.png │ │ └── section-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBSection-should-match-screenshot-1 │ │ │ └── DBSection-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBSection-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBSection-should-match-screenshot-1 │ │ │ └── DBSection-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBSection-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBSection-should-match-screenshot-1 │ │ │ └── DBSection-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBSection-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBSection-should-match-screenshot-1 │ │ │ └── DBSection-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBSection-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBSection-should-match-screenshot-1 │ │ │ └── DBSection-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBSection-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBSection-should-match-screenshot-1 │ │ └── DBSection-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBSection-should-have-same-aria-snapshot.yaml ├── select │ ├── component │ │ ├── chromium │ │ │ ├── DBSelect-should-have-same-aria-snapshot.yaml │ │ │ └── DBSelect-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBSelect-should-have-same-aria-snapshot.yaml │ │ │ └── DBSelect-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBSelect-should-have-same-aria-snapshot.yaml │ │ │ └── DBSelect-should-match-screenshot.png │ ├── patternhub │ │ ├── select-docs-should-match-screenshot.png │ │ ├── select-overview-should-match-screenshot.png │ │ └── select-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBSelect-should-match-screenshot-1 │ │ │ └── DBSelect-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBSelect-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBSelect-should-match-screenshot-1 │ │ │ └── DBSelect-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBSelect-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBSelect-should-match-screenshot-1 │ │ │ └── DBSelect-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBSelect-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBSelect-should-match-screenshot-1 │ │ │ └── DBSelect-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBSelect-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBSelect-should-match-screenshot-1 │ │ │ └── DBSelect-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBSelect-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBSelect-should-match-screenshot-1 │ │ └── DBSelect-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBSelect-should-have-same-aria-snapshot.yaml ├── stack │ ├── component │ │ ├── chromium │ │ │ └── DBStack-should-match-screenshot.png │ │ ├── firefox │ │ │ └── DBStack-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ └── DBStack-should-match-screenshot.png │ ├── patternhub │ │ ├── stack-docs-should-match-screenshot.png │ │ ├── stack-overview-should-match-screenshot.png │ │ └── stack-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ └── DBStack-should-match-screenshot-1 │ │ │ └── DBStack-should-match-screenshot.png │ │ ├── chromium │ │ └── DBStack-should-match-screenshot-1 │ │ │ └── DBStack-should-match-screenshot.png │ │ ├── firefox │ │ └── DBStack-should-match-screenshot-1 │ │ │ └── DBStack-should-match-screenshot.png │ │ ├── mobile-chrome │ │ └── DBStack-should-match-screenshot-1 │ │ │ └── DBStack-should-match-screenshot.png │ │ ├── mobile-safari │ │ └── DBStack-should-match-screenshot-1 │ │ │ └── DBStack-should-match-screenshot.png │ │ └── webkit │ │ └── DBStack-should-match-screenshot-1 │ │ └── DBStack-should-match-screenshot.png ├── switch │ ├── component │ │ ├── chromium │ │ │ └── DBSwitch-should-match-screenshot.png │ │ ├── firefox │ │ │ └── DBSwitch-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ └── DBSwitch-should-match-screenshot.png │ ├── patternhub │ │ ├── switch-docs-should-match-screenshot.png │ │ ├── switch-overview-should-match-screenshot.png │ │ └── switch-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ └── DBSwitch-should-match-screenshot-1 │ │ │ └── DBSwitch-should-match-screenshot.png │ │ ├── chromium │ │ └── DBSwitch-should-match-screenshot-1 │ │ │ └── DBSwitch-should-match-screenshot.png │ │ ├── firefox │ │ └── DBSwitch-should-match-screenshot-1 │ │ │ └── DBSwitch-should-match-screenshot.png │ │ ├── mobile-chrome │ │ └── DBSwitch-should-match-screenshot-1 │ │ │ └── DBSwitch-should-match-screenshot.png │ │ ├── mobile-safari │ │ └── DBSwitch-should-match-screenshot-1 │ │ │ └── DBSwitch-should-match-screenshot.png │ │ └── webkit │ │ └── DBSwitch-should-match-screenshot-1 │ │ └── DBSwitch-should-match-screenshot.png ├── tab-item │ ├── patternhub │ │ ├── tab-item-docs-should-match-screenshot.png │ │ ├── tab-item-overview-should-match-screenshot.png │ │ └── tab-item-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBTabItem-should-match-screenshot-1 │ │ │ └── DBTabItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTabItem-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBTabItem-should-match-screenshot-1 │ │ │ └── DBTabItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTabItem-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBTabItem-should-match-screenshot-1 │ │ │ └── DBTabItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTabItem-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBTabItem-should-match-screenshot-1 │ │ │ └── DBTabItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTabItem-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBTabItem-should-match-screenshot-1 │ │ │ └── DBTabItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTabItem-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBTabItem-should-match-screenshot-1 │ │ └── DBTabItem-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBTabItem-should-have-same-aria-snapshot.yaml ├── tabs │ ├── component │ │ ├── chromium │ │ │ ├── DBTabs-should-have-same-aria-snapshot.yaml │ │ │ └── DBTabs-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBTabs-should-have-same-aria-snapshot.yaml │ │ │ └── DBTabs-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBTabs-should-have-same-aria-snapshot.yaml │ │ │ └── DBTabs-should-match-screenshot.png │ ├── patternhub │ │ ├── tabs-docs-should-match-screenshot.png │ │ ├── tabs-overview-should-match-screenshot.png │ │ └── tabs-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBTabs-should-match-screenshot-1 │ │ │ └── DBTabs-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTabs-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBTabs-should-match-screenshot-1 │ │ │ └── DBTabs-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTabs-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBTabs-should-match-screenshot-1 │ │ │ └── DBTabs-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTabs-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBTabs-should-match-screenshot-1 │ │ │ └── DBTabs-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTabs-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBTabs-should-match-screenshot-1 │ │ │ └── DBTabs-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTabs-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBTabs-should-match-screenshot-1 │ │ └── DBTabs-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBTabs-should-have-same-aria-snapshot.yaml ├── tag │ ├── component │ │ ├── chromium │ │ │ ├── DBTag-should-be-a-button.png │ │ │ ├── DBTag-should-be-a-checkbox-checked.png │ │ │ ├── DBTag-should-be-a-checkbox.png │ │ │ ├── DBTag-should-be-a-link.png │ │ │ ├── DBTag-should-be-a-radio-checked.png │ │ │ ├── DBTag-should-be-a-radio.png │ │ │ ├── DBTag-should-have-same-aria-snapshot.yaml │ │ │ ├── DBTag-should-match-screenshot-for-semantic-critical.png │ │ │ ├── DBTag-should-match-screenshot-for-semantic-informational.png │ │ │ ├── DBTag-should-match-screenshot-for-semantic-successful.png │ │ │ ├── DBTag-should-match-screenshot-for-semantic-warning.png │ │ │ └── DBTag-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBTag-should-be-a-button.png │ │ │ ├── DBTag-should-be-a-checkbox-checked.png │ │ │ ├── DBTag-should-be-a-checkbox.png │ │ │ ├── DBTag-should-be-a-link.png │ │ │ ├── DBTag-should-be-a-radio-checked.png │ │ │ ├── DBTag-should-be-a-radio.png │ │ │ ├── DBTag-should-have-same-aria-snapshot.yaml │ │ │ ├── DBTag-should-match-screenshot-for-semantic-critical.png │ │ │ ├── DBTag-should-match-screenshot-for-semantic-informational.png │ │ │ ├── DBTag-should-match-screenshot-for-semantic-successful.png │ │ │ ├── DBTag-should-match-screenshot-for-semantic-warning.png │ │ │ └── DBTag-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBTag-should-be-a-button.png │ │ │ ├── DBTag-should-be-a-checkbox-checked.png │ │ │ ├── DBTag-should-be-a-checkbox.png │ │ │ ├── DBTag-should-be-a-link.png │ │ │ ├── DBTag-should-be-a-radio-checked.png │ │ │ ├── DBTag-should-be-a-radio.png │ │ │ ├── DBTag-should-have-same-aria-snapshot.yaml │ │ │ ├── DBTag-should-match-screenshot-for-semantic-critical.png │ │ │ ├── DBTag-should-match-screenshot-for-semantic-informational.png │ │ │ ├── DBTag-should-match-screenshot-for-semantic-successful.png │ │ │ ├── DBTag-should-match-screenshot-for-semantic-warning.png │ │ │ └── DBTag-should-match-screenshot.png │ ├── patternhub │ │ ├── tag-docs-should-match-screenshot.png │ │ ├── tag-overview-should-match-screenshot.png │ │ └── tag-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBTag-should-match-screenshot-1 │ │ │ └── DBTag-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTag-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBTag-should-match-screenshot-1 │ │ │ └── DBTag-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTag-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBTag-should-match-screenshot-1 │ │ │ └── DBTag-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTag-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBTag-should-match-screenshot-1 │ │ │ └── DBTag-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTag-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBTag-should-match-screenshot-1 │ │ │ └── DBTag-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTag-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBTag-should-match-screenshot-1 │ │ └── DBTag-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBTag-should-have-same-aria-snapshot.yaml ├── textarea │ ├── component │ │ ├── chromium │ │ │ ├── DBTextarea-should-have-same-aria-snapshot.yaml │ │ │ └── DBTextarea-should-match-screenshot.png │ │ ├── firefox │ │ │ ├── DBTextarea-should-have-same-aria-snapshot.yaml │ │ │ └── DBTextarea-should-match-screenshot.png │ │ └── mobile-chrome │ │ │ ├── DBTextarea-should-have-same-aria-snapshot.yaml │ │ │ └── DBTextarea-should-match-screenshot.png │ ├── patternhub │ │ ├── textarea-docs-should-match-screenshot.png │ │ ├── textarea-overview-should-match-screenshot.png │ │ └── textarea-properties-should-match-screenshot.png │ └── showcase │ │ ├── chromium-highContrast │ │ ├── DBTextarea-should-match-screenshot-1 │ │ │ └── DBTextarea-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTextarea-should-have-same-aria-snapshot.yaml │ │ ├── chromium │ │ ├── DBTextarea-should-match-screenshot-1 │ │ │ └── DBTextarea-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTextarea-should-have-same-aria-snapshot.yaml │ │ ├── firefox │ │ ├── DBTextarea-should-match-screenshot-1 │ │ │ └── DBTextarea-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTextarea-should-have-same-aria-snapshot.yaml │ │ ├── mobile-chrome │ │ ├── DBTextarea-should-match-screenshot-1 │ │ │ └── DBTextarea-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTextarea-should-have-same-aria-snapshot.yaml │ │ ├── mobile-safari │ │ ├── DBTextarea-should-match-screenshot-1 │ │ │ └── DBTextarea-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ │ └── DBTextarea-should-have-same-aria-snapshot.yaml │ │ └── webkit │ │ ├── DBTextarea-should-match-screenshot-1 │ │ └── DBTextarea-should-match-screenshot.png │ │ └── should-have-same-aria-snapshot │ │ └── DBTextarea-should-have-same-aria-snapshot.yaml └── tooltip │ ├── component │ ├── chromium │ │ ├── DBTooltip-after-open-should-match-screenshot.png │ │ └── DBTooltip-should-match-screenshot.png │ ├── firefox │ │ ├── DBTooltip-after-open-should-match-screenshot.png │ │ └── DBTooltip-should-match-screenshot.png │ └── mobile-chrome │ │ ├── DBTooltip-after-open-should-match-screenshot.png │ │ └── DBTooltip-should-match-screenshot.png │ ├── patternhub │ ├── tooltip-docs-should-match-screenshot.png │ ├── tooltip-overview-should-match-screenshot.png │ └── tooltip-properties-should-match-screenshot.png │ └── showcase │ ├── chromium-highContrast │ ├── DBTooltip-should-match-screenshot-1 │ │ └── DBTooltip-should-match-screenshot.png │ └── should-have-same-aria-snapshot │ │ └── DBTooltip-should-have-same-aria-snapshot.yaml │ ├── chromium │ ├── DBTooltip-should-match-screenshot-1 │ │ └── DBTooltip-should-match-screenshot.png │ └── should-have-same-aria-snapshot │ │ └── DBTooltip-should-have-same-aria-snapshot.yaml │ ├── firefox │ ├── DBTooltip-should-match-screenshot-1 │ │ └── DBTooltip-should-match-screenshot.png │ └── should-have-same-aria-snapshot │ │ └── DBTooltip-should-have-same-aria-snapshot.yaml │ ├── mobile-chrome │ ├── DBTooltip-should-match-screenshot-1 │ │ └── DBTooltip-should-match-screenshot.png │ └── should-have-same-aria-snapshot │ │ └── DBTooltip-should-have-same-aria-snapshot.yaml │ ├── mobile-safari │ ├── DBTooltip-should-match-screenshot-1 │ │ └── DBTooltip-should-match-screenshot.png │ └── should-have-same-aria-snapshot │ │ └── DBTooltip-should-have-same-aria-snapshot.yaml │ └── webkit │ ├── DBTooltip-should-match-screenshot-1 │ └── DBTooltip-should-match-screenshot.png │ └── should-have-same-aria-snapshot │ └── DBTooltip-should-have-same-aria-snapshot.yaml ├── build-outputs └── package.json ├── docs ├── adr-04-icons.md ├── adr │ ├── adr-01-framework.md │ ├── adr-02-monorepo.md │ ├── adr-03-dependency-automation.md │ └── adr-xx-Template.md ├── conventions.md ├── definition-of-done-pr.md ├── development.md ├── how-to-develop-a-component.md ├── images │ ├── header_image_0.guetzli.2x.jpg │ ├── header_image_0.guetzli.3x.jpg │ └── header_image_0.guetzli.jpg ├── migration-template.md ├── migration │ ├── alpha-beta.md │ ├── v0.2.x-to-v0.3.x.md │ ├── v0.3.x-to-v0.4.x.md │ ├── v0.4.x-to-v0.5.x.md │ ├── v0.5.x-to-v0.6.x.md │ ├── v0.6.x-to-v0.7.x.md │ ├── v0.7.x-to-v1.0.0.md │ └── v1.x.x-to-v2.0.0.md ├── package.json ├── release-management.md ├── research-other-design-systems.md ├── research │ ├── README.md │ ├── focus-state.md │ ├── footer.md │ ├── multi-select.md │ ├── stack.md │ ├── switch-and-toggle.md │ ├── table.md │ ├── tabs.md │ └── tooltip.md └── scripts │ └── component-research │ ├── design-systems.js │ └── generate-component-research.js ├── e2e ├── .env ├── Dockerfile ├── README.md ├── docker-compose.components.yml ├── docker-compose.foundations.yml ├── docker-compose.regenerate.yml ├── docker-compose.showcases.yml ├── docker-compose.start.yml ├── docker-compose.yml └── package.json ├── output ├── README.md ├── angular │ ├── README.md │ ├── angular.json │ ├── ng-package.json │ ├── package.json │ └── tsconfig.json ├── react │ ├── README.md │ ├── package.json │ └── tsconfig.json ├── stencil │ ├── README.md │ ├── custom-elements-manifest.config.js │ ├── package.json │ ├── scripts │ │ ├── analyzePhase.js │ │ ├── packageLinkPhase.js │ │ └── resolveTypes.js │ ├── stencil.config.ts │ └── tsconfig.json └── vue │ ├── README.md │ ├── package.json │ ├── tsconfig.json │ └── vite.config.ts ├── package-lock.json ├── package.json ├── packages ├── README.md ├── components │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── README.md │ ├── _templates │ │ ├── generator │ │ │ ├── help │ │ │ │ └── index.ejs.t │ │ │ ├── new │ │ │ │ └── hello.ejs.t │ │ │ └── with-prompt │ │ │ │ ├── hello.ejs.t │ │ │ │ └── prompt.ejs.t │ │ ├── init │ │ │ └── repo │ │ │ │ └── new-repo.ejs.t │ │ ├── mitosis │ │ │ └── new │ │ │ │ ├── component │ │ │ │ ├── components.ejs.t │ │ │ │ ├── db-ui-components-wc.ejs.t │ │ │ │ ├── db-ui-components.ejs.t │ │ │ │ ├── export.ejs.t │ │ │ │ ├── html.ejs.t │ │ │ │ ├── index-html.ejs.t │ │ │ │ ├── index.ejs.t │ │ │ │ ├── model.ejs.t │ │ │ │ ├── scss.ejs.t │ │ │ │ ├── spec.ejs.t │ │ │ │ └── tsx.ejs.t │ │ │ │ ├── db-ui-components-use.ejs.t │ │ │ │ ├── prompt.cjs │ │ │ │ ├── readmes │ │ │ │ ├── readme-angular.ejs.t │ │ │ │ ├── readme-html.ejs.t │ │ │ │ ├── readme-react.ejs.t │ │ │ │ └── readme-vue.ejs.t │ │ │ │ └── showcases │ │ │ │ ├── angular-showcase-component-html.ejs.t │ │ │ │ ├── angular-showcase-component.ejs.t │ │ │ │ ├── angular-showcase-router-import.ejs.t │ │ │ │ ├── angular-showcase-router.ejs.t │ │ │ │ ├── e2e-a11y-test.ejs.t │ │ │ │ ├── e2e-snapshot-test.ejs.t │ │ │ │ ├── patternhub-comp-parser-data.ejs.t │ │ │ │ ├── patternhub-comp-parser-import.ejs.t │ │ │ │ ├── patternhub-comp-parser-switch.ejs.t │ │ │ │ ├── patternhub-components.ejs.t │ │ │ │ ├── patternhub-routes-imports.ejs.t │ │ │ │ ├── patternhub-routes.ejs.t │ │ │ │ ├── react-showcase-component.ejs.t │ │ │ │ ├── react-showcase-router-import.ejs.t │ │ │ │ ├── react-showcase-router.ejs.t │ │ │ │ ├── shared-component-variants.ejs.t │ │ │ │ ├── vue-showcase-component.ejs.t │ │ │ │ ├── vue-showcase-router-import.ejs.t │ │ │ │ └── vue-showcase-router.ejs.t │ │ └── update-docs │ │ │ └── new │ │ │ ├── prompt.cjs │ │ │ ├── readme-angular.ejs.t │ │ │ ├── readme-html.ejs.t │ │ │ ├── readme-react.ejs.t │ │ │ └── readme-vue.ejs.t │ ├── configs │ │ ├── angular │ │ │ ├── index.cjs │ │ │ └── mitosis.config.cjs │ │ ├── mitosis.config.cjs │ │ ├── react │ │ │ ├── index.cjs │ │ │ └── mitosis.config.cjs │ │ ├── stencil │ │ │ ├── index.cjs │ │ │ └── mitosis.config.cjs │ │ └── vue │ │ │ ├── index.cjs │ │ │ └── mitosis.config.cjs │ ├── docs │ │ ├── Backdrop.md │ │ ├── Validation.md │ │ ├── getting-started.md │ │ └── router-usage.md │ ├── index.html │ ├── package.json │ ├── plugins │ │ └── debug │ │ │ └── index.js │ ├── postcss.config.cjs │ ├── scripts │ │ ├── exec │ │ │ ├── angular.ts │ │ │ ├── react.ts │ │ │ ├── stencil.ts │ │ │ └── vue.ts │ │ ├── post-build │ │ │ ├── angular.ts │ │ │ ├── components.ts │ │ │ ├── copy-files.ts │ │ │ ├── frameworks.ts │ │ │ ├── index.ts │ │ │ ├── react.ts │ │ │ ├── stencil.ts │ │ │ └── vue.ts │ │ └── utils │ │ │ └── index.ts │ ├── src │ │ ├── README.md │ │ ├── components │ │ │ ├── accordion-item │ │ │ │ ├── accordion-item.lite.tsx │ │ │ │ ├── accordion-item.scss │ │ │ │ ├── accordion-item.spec.tsx │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── model.ts │ │ │ ├── accordion │ │ │ │ ├── accordion.lite.tsx │ │ │ │ ├── accordion.scss │ │ │ │ ├── accordion.spec.tsx │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── model.ts │ │ │ ├── badge │ │ │ │ ├── badge.lite.tsx │ │ │ │ ├── badge.scss │ │ │ │ ├── badge.spec.tsx │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── model.ts │ │ │ ├── brand │ │ │ │ ├── brand.lite.tsx │ │ │ │ ├── brand.scss │ │ │ │ ├── brand.spec.tsx │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── model.ts │ │ │ ├── button │ │ │ │ ├── button.lite.tsx │ │ │ │ ├── button.scss │ │ │ │ ├── button.spec.tsx │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── model.ts │ │ │ ├── card │ │ │ │ ├── card.lite.tsx │ │ │ │ ├── card.scss │ │ │ │ ├── card.spec.tsx │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── model.ts │ │ │ ├── checkbox │ │ │ │ ├── checkbox.lite.tsx │ │ │ │ ├── checkbox.scss │ │ │ │ ├── checkbox.spec.tsx │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── model.ts │ │ │ ├── custom-select-dropdown │ │ │ │ ├── custom-select-dropdown.lite.tsx │ │ │ │ ├── custom-select-dropdown.scss │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── model.ts │ │ │ ├── custom-select-form-field │ │ │ │ ├── custom-select-form-field.lite.tsx │ │ │ │ ├── custom-select-form-field.scss │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── model.ts │ │ │ ├── custom-select-list-item │ │ │ │ ├── custom-select-list-item.lite.tsx │ │ │ │ ├── custom-select-list-item.scss │ │ │ │ ├── index.ts │ │ │ │ └── model.ts │ │ │ ├── custom-select-list │ │ │ │ ├── custom-select-list.lite.tsx │ │ │ │ ├── custom-select-list.scss │ │ │ │ ├── index.ts │ │ │ │ └── model.ts │ │ │ ├── custom-select │ │ │ │ ├── custom-select.lite.tsx │ │ │ │ ├── custom-select.scss │ │ │ │ ├── custom-select.spec.tsx │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── model.ts │ │ │ ├── divider │ │ │ │ ├── divider.lite.tsx │ │ │ │ ├── divider.scss │ │ │ │ ├── divider.spec.tsx │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── model.ts │ │ │ ├── drawer │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── drawer.lite.tsx │ │ │ │ ├── drawer.scss │ │ │ │ ├── drawer.spec.tsx │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── model.ts │ │ │ ├── header │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── header.lite.tsx │ │ │ │ ├── header.scss │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── model.ts │ │ │ ├── icon │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── icon.lite.tsx │ │ │ │ ├── icon.scss │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── model.ts │ │ │ ├── infotext │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── infotext.lite.tsx │ │ │ │ ├── infotext.scss │ │ │ │ ├── infotext.spec.tsx │ │ │ │ └── model.ts │ │ │ ├── input │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── input.lite.tsx │ │ │ │ ├── input.scss │ │ │ │ ├── input.spec.tsx │ │ │ │ └── model.ts │ │ │ ├── link │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── link.lite.tsx │ │ │ │ ├── link.scss │ │ │ │ └── model.ts │ │ │ ├── navigation-item │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── navigation-item.lite.tsx │ │ │ │ ├── navigation-item.scss │ │ │ │ └── navigation-item.spec.tsx │ │ │ ├── navigation │ │ │ │ ├── docs │ │ │ │ │ ├── Accessibility.md │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── navigation.lite.tsx │ │ │ │ ├── navigation.scss │ │ │ │ └── navigation.spec.tsx │ │ │ ├── notification │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── notification-grid-default.scss │ │ │ │ ├── notification-grid-non-overlay.scss │ │ │ │ ├── notification-grid-overlay.scss │ │ │ │ ├── notification.lite.tsx │ │ │ │ ├── notification.scss │ │ │ │ └── notification.spec.tsx │ │ │ ├── page │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── page.lite.tsx │ │ │ │ └── page.scss │ │ │ ├── popover │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── popover.lite.tsx │ │ │ │ ├── popover.scss │ │ │ │ └── popover.spec.tsx │ │ │ ├── radio │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── radio.lite.tsx │ │ │ │ ├── radio.scss │ │ │ │ └── radio.spec.tsx │ │ │ ├── section │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── section.lite.tsx │ │ │ │ └── section.scss │ │ │ ├── select │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── select.lite.tsx │ │ │ │ ├── select.scss │ │ │ │ └── select.spec.tsx │ │ │ ├── stack │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── stack-web-component.scss │ │ │ │ ├── stack.lite.tsx │ │ │ │ ├── stack.scss │ │ │ │ └── stack.spec.tsx │ │ │ ├── switch │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── switch.lite.tsx │ │ │ │ ├── switch.scss │ │ │ │ └── switch.spec.tsx │ │ │ ├── tab-item │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── tab-item.lite.tsx │ │ │ │ └── tab-item.scss │ │ │ ├── tab-list │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── tab-list.lite.tsx │ │ │ │ └── tab-list.scss │ │ │ ├── tab-panel │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── tab-panel.lite.tsx │ │ │ │ └── tab-panel.scss │ │ │ ├── tabs │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── tabs.lite.tsx │ │ │ │ ├── tabs.scss │ │ │ │ └── tabs.spec.tsx │ │ │ ├── tag │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── tag.lite.tsx │ │ │ │ ├── tag.scss │ │ │ │ └── tag.spec.tsx │ │ │ ├── textarea │ │ │ │ ├── docs │ │ │ │ │ ├── Angular.md │ │ │ │ │ ├── HTML.md │ │ │ │ │ ├── Migration.md │ │ │ │ │ ├── React.md │ │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── textarea.lite.tsx │ │ │ │ ├── textarea.scss │ │ │ │ └── textarea.spec.tsx │ │ │ └── tooltip │ │ │ │ ├── docs │ │ │ │ ├── Angular.md │ │ │ │ ├── HTML.md │ │ │ │ ├── Migration.md │ │ │ │ ├── React.md │ │ │ │ └── Vue.md │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── model.ts │ │ │ │ ├── tooltip.lite.tsx │ │ │ │ ├── tooltip.scss │ │ │ │ └── tooltip.spec.tsx │ │ ├── index.ts │ │ ├── shared │ │ │ ├── constants.ts │ │ │ └── model.ts │ │ ├── styles │ │ │ ├── absolute.scss │ │ │ ├── component-animations.scss │ │ │ ├── dialog-init.scss │ │ │ ├── index.scss │ │ │ ├── internal │ │ │ │ ├── _button-components.scss │ │ │ │ ├── _component.scss │ │ │ │ ├── _custom-elements.scss │ │ │ │ ├── _db-puls.scss │ │ │ │ ├── _form-components.scss │ │ │ │ ├── _icon-passing.scss │ │ │ │ ├── _link-components.scss │ │ │ │ ├── _popover-component.scss │ │ │ │ ├── _scrollbar.scss │ │ │ │ ├── _select-components.scss │ │ │ │ ├── _stack-components.scss │ │ │ │ └── _tag-components.scss │ │ │ ├── relative.scss │ │ │ ├── rollup.scss │ │ │ ├── visually-hidden.scss │ │ │ ├── wc-workarounds.scss │ │ │ └── webpack.scss │ │ └── utils │ │ │ ├── document-click-listener.ts │ │ │ ├── form-components.ts │ │ │ ├── index.ts │ │ │ ├── navigation.ts │ │ │ └── react.ts │ ├── test │ │ ├── README.md │ │ ├── import-styles │ │ │ └── simple-button │ │ │ │ ├── index.html │ │ │ │ ├── main.js │ │ │ │ └── test.css │ │ └── playwright │ │ │ ├── boilerplate │ │ │ ├── index.html │ │ │ └── index.ts │ │ │ └── config.ts │ ├── tsconfig.json │ └── vite.config.ts ├── foundations │ ├── LICENSE │ ├── README.md │ ├── assets │ │ ├── fonts │ │ │ ├── OFL.txt │ │ │ ├── OpenSans-Bold-EU.woff2 │ │ │ ├── OpenSans-Bold.ttf │ │ │ ├── OpenSans-ExtraBold-EU.woff2 │ │ │ ├── OpenSans-ExtraBold.ttf │ │ │ ├── OpenSans-Light-EU.woff2 │ │ │ ├── OpenSans-Light.ttf │ │ │ ├── OpenSans-Medium-EU.woff2 │ │ │ ├── OpenSans-Medium.ttf │ │ │ ├── OpenSans-Regular-EU.woff2 │ │ │ ├── OpenSans-Regular.ttf │ │ │ ├── OpenSans-SemiBold-EU.woff2 │ │ │ ├── OpenSans-SemiBold.ttf │ │ │ ├── README.md │ │ │ ├── generate-eu-fonts.ts │ │ │ └── unicode-eu.txt │ │ └── icons │ │ │ ├── DB_LICENSE │ │ │ ├── LICENCES.json │ │ │ ├── arrow_down.svg │ │ │ ├── arrow_left.svg │ │ │ ├── arrow_right.svg │ │ │ ├── arrow_up.svg │ │ │ ├── arrow_up_right.svg │ │ │ ├── brand.svg │ │ │ ├── calendar.svg │ │ │ ├── check-circle.svg │ │ │ ├── check.svg │ │ │ ├── check_circle.svg │ │ │ ├── chevron_down.svg │ │ │ ├── chevron_left.svg │ │ │ ├── chevron_right.svg │ │ │ ├── chevron_up.svg │ │ │ ├── circle.svg │ │ │ ├── circular_arrows.svg │ │ │ ├── clock.svg │ │ │ ├── cross.svg │ │ │ ├── cross_circle.svg │ │ │ ├── exclamation_mark_circle.svg │ │ │ ├── exclamation_mark_triangle.svg │ │ │ ├── fonts │ │ │ ├── all │ │ │ │ └── db-ux.woff2 │ │ │ ├── default │ │ │ │ └── db-ux.woff2 │ │ │ ├── default_12 │ │ │ │ └── db-ux.woff2 │ │ │ ├── default_14 │ │ │ │ └── db-ux.woff2 │ │ │ ├── default_16 │ │ │ │ └── db-ux.woff2 │ │ │ ├── default_20 │ │ │ │ └── db-ux.woff2 │ │ │ ├── default_24 │ │ │ │ └── db-ux.woff2 │ │ │ ├── default_28 │ │ │ │ └── db-ux.woff2 │ │ │ ├── default_32 │ │ │ │ └── db-ux.woff2 │ │ │ ├── default_48 │ │ │ │ └── db-ux.woff2 │ │ │ ├── default_64 │ │ │ │ └── db-ux.woff2 │ │ │ ├── filled │ │ │ │ └── db-ux.woff2 │ │ │ ├── filled_12 │ │ │ │ └── db-ux.woff2 │ │ │ ├── filled_14 │ │ │ │ └── db-ux.woff2 │ │ │ ├── filled_16 │ │ │ │ └── db-ux.woff2 │ │ │ ├── filled_20 │ │ │ │ └── db-ux.woff2 │ │ │ ├── filled_24 │ │ │ │ └── db-ux.woff2 │ │ │ ├── filled_28 │ │ │ │ └── db-ux.woff2 │ │ │ ├── filled_32 │ │ │ │ └── db-ux.woff2 │ │ │ ├── filled_48 │ │ │ │ └── db-ux.woff2 │ │ │ └── filled_64 │ │ │ │ └── db-ux.woff2 │ │ │ ├── information_circle.svg │ │ │ ├── magnifying_glass.svg │ │ │ ├── menu.svg │ │ │ ├── minus.svg │ │ │ ├── plus.svg │ │ │ ├── resize_handle_corner.svg │ │ │ └── x_placeholder.svg │ ├── dev │ │ ├── colors.html │ │ ├── fonts.html │ │ ├── icons.html │ │ └── index.css │ ├── docs │ │ ├── BrowserSupport.md │ │ ├── Colors.md │ │ ├── CustomIcons.md │ │ ├── Densities.md │ │ ├── FontsSizes.md │ │ ├── IDESupport.md │ │ ├── Icons.md │ │ ├── Performance.md │ │ └── Variables.md │ ├── ide │ │ └── db.ide.css │ ├── index.html │ ├── nodemon.json │ ├── package.json │ ├── postcss.config.cjs │ ├── scripts │ │ └── local │ │ │ ├── generate-icon-font.ts │ │ │ ├── generate-icon-overview.ts │ │ │ └── generate-icon-types.ts │ ├── scss │ │ ├── _absolute.assets-paths.scss │ │ ├── _default.assets-paths.scss │ │ ├── _rollup.assets-paths.scss │ │ ├── _screen-sizes.scss │ │ ├── _variables.scss │ │ ├── _webpack.assets-paths.scss │ │ ├── absolute.scss │ │ ├── animation │ │ │ ├── _animations.scss │ │ │ ├── _index.scss │ │ │ └── _transitions.scss │ │ ├── colors │ │ │ ├── _default-color-icons.scss │ │ │ ├── _default-color-mappings.scss │ │ │ ├── _index.scss │ │ │ ├── _placeholder.scss │ │ │ ├── _variables.additional-palette.scss │ │ │ ├── _variables.additional-speaking-colors.scss │ │ │ ├── _variables.additional.scss │ │ │ ├── _variables.palette.scss │ │ │ ├── _variables.scss │ │ │ ├── _variables.speaking-colors.scss │ │ │ ├── classes │ │ │ │ ├── _get-class.scss │ │ │ │ ├── all.scss │ │ │ │ ├── blue.scss │ │ │ │ ├── brand.scss │ │ │ │ ├── burgundy.scss │ │ │ │ ├── critical.scss │ │ │ │ ├── cyan.scss │ │ │ │ ├── green.scss │ │ │ │ ├── informational.scss │ │ │ │ ├── light-green.scss │ │ │ │ ├── neutral.scss │ │ │ │ ├── orange.scss │ │ │ │ ├── pink.scss │ │ │ │ ├── red.scss │ │ │ │ ├── successful.scss │ │ │ │ ├── turquoise.scss │ │ │ │ ├── violet.scss │ │ │ │ ├── warning.scss │ │ │ │ └── yellow.scss │ │ │ └── speaking-colors │ │ │ │ ├── additional │ │ │ │ ├── _blue.speaking-colors.scss │ │ │ │ ├── _burgundy.speaking-colors.scss │ │ │ │ ├── _cyan.speaking-colors.scss │ │ │ │ ├── _green.speaking-colors.scss │ │ │ │ ├── _light-green.speaking-colors.scss │ │ │ │ ├── _orange.speaking-colors.scss │ │ │ │ ├── _pink.speaking-colors.scss │ │ │ │ ├── _red.speaking-colors.scss │ │ │ │ ├── _turquoise.speaking-colors.scss │ │ │ │ ├── _violet.speaking-colors.scss │ │ │ │ └── _yellow.speaking-colors.scss │ │ │ │ ├── semantic │ │ │ │ ├── _brand.speaking-colors.scss │ │ │ │ ├── _critical.speaking-colors.scss │ │ │ │ ├── _informational.speaking-colors.scss │ │ │ │ ├── _neutral.speaking-colors.scss │ │ │ │ ├── _successful.speaking-colors.scss │ │ │ │ └── _warning.speaking-colors.scss │ │ │ │ └── vibrant.js │ │ ├── defaults │ │ │ ├── _default-properties.scss │ │ │ ├── _default-variables.scss │ │ │ ├── default-code.scss │ │ │ ├── default-elevation.scss │ │ │ ├── default-fonts.scss │ │ │ ├── default-icons.scss │ │ │ ├── default-required.scss │ │ │ ├── default-root.scss │ │ │ └── default-theme.scss │ │ ├── density │ │ │ ├── _densities.scss │ │ │ ├── _index.scss │ │ │ ├── _scaling-placeholder.scss │ │ │ ├── _typography-placeholder.scss │ │ │ ├── _variables.scss │ │ │ └── classes │ │ │ │ ├── _get-class.scss │ │ │ │ ├── all.scss │ │ │ │ ├── expressive.scss │ │ │ │ ├── functional.scss │ │ │ │ └── regular.scss │ │ ├── fonts │ │ │ ├── _font-sizes.scss │ │ │ ├── _index.scss │ │ │ ├── absolute.scss │ │ │ ├── classes │ │ │ │ ├── all.scss │ │ │ │ ├── body │ │ │ │ │ ├── 2xl.scss │ │ │ │ │ ├── 2xs.scss │ │ │ │ │ ├── 3xl.scss │ │ │ │ │ ├── 3xs.scss │ │ │ │ │ ├── all.scss │ │ │ │ │ ├── lg.scss │ │ │ │ │ ├── md.scss │ │ │ │ │ ├── sm.scss │ │ │ │ │ ├── xl.scss │ │ │ │ │ └── xs.scss │ │ │ │ └── headline │ │ │ │ │ ├── 2xl.scss │ │ │ │ │ ├── 2xs.scss │ │ │ │ │ ├── 3xl.scss │ │ │ │ │ ├── 3xs.scss │ │ │ │ │ ├── all.scss │ │ │ │ │ ├── lg.scss │ │ │ │ │ ├── md.scss │ │ │ │ │ ├── sm.scss │ │ │ │ │ ├── xl.scss │ │ │ │ │ └── xs.scss │ │ │ ├── relative.scss │ │ │ ├── rollup.scss │ │ │ └── webpack.scss │ │ ├── helpers │ │ │ ├── _a11y.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _divider.scss │ │ │ ├── _focus.scss │ │ │ ├── _functions.scss │ │ │ ├── _index.scss │ │ │ ├── _layer.scss │ │ │ ├── _shadow-dom.scss │ │ │ └── classes │ │ │ │ ├── all.scss │ │ │ │ ├── divider.scss │ │ │ │ └── focus.scss │ │ ├── icons │ │ │ ├── _icon-helpers.scss │ │ │ ├── _index.scss │ │ │ ├── absolute.scss │ │ │ ├── relative.scss │ │ │ ├── rollup.scss │ │ │ └── webpack.scss │ │ ├── index.scss │ │ ├── relative.scss │ │ ├── rollup.scss │ │ └── webpack.scss │ ├── src │ │ ├── all-icons.ts │ │ ├── base-icon-types.ts │ │ ├── icon-types.ts │ │ └── index.ts │ ├── tailwind │ │ ├── tailwind-tokens.json │ │ ├── tailwind.config.cjs │ │ ├── tailwind.config.mjs │ │ └── theme │ │ │ ├── _variables.scss │ │ │ ├── colors.css │ │ │ ├── dimensions.scss │ │ │ ├── index.css │ │ │ └── revert-theme.css │ ├── test │ │ ├── colors.spec.js │ │ ├── fonts.spec.js │ │ ├── icons.spec.js │ │ └── playwright.config.js │ ├── tsconfig.json │ └── vite.config.ts ├── migration │ ├── README.md │ ├── esbuild.js │ ├── package.json │ ├── src │ │ ├── cli.ts │ │ ├── data.ts │ │ ├── migration │ │ │ ├── additional-information.ts │ │ │ ├── color-q32024.ts │ │ │ ├── icon-q32024.ts │ │ │ ├── index.ts │ │ │ ├── v0.0.5-v0.0.6.ts │ │ │ ├── v0.0.6-v0.0.7.ts │ │ │ ├── v0.0.7-v1.0.0.ts │ │ │ └── v1.0.0-v2.0.0.ts │ │ ├── program.ts │ │ └── types.ts │ ├── test │ │ ├── color-q32024 │ │ │ ├── color-q32024.spec.ts │ │ │ ├── has-changes.txt │ │ │ └── no-change.txt │ │ ├── icon-q32024 │ │ │ ├── has-changes.txt │ │ │ ├── icon-q32024.spec.ts │ │ │ └── no-change.txt │ │ ├── v0.0.5-v0.0.6 │ │ │ ├── has-changes.txt │ │ │ ├── no-change.txt │ │ │ └── v005_v006.spec.ts │ │ ├── v0.0.6-v0.0.7 │ │ │ ├── has-changes.txt │ │ │ ├── no-change.txt │ │ │ └── v006_v007.spec.ts │ │ └── v0.0.7-v1.0.0 │ │ │ ├── has-changes.txt │ │ │ ├── no-change.txt │ │ │ └── v007_v100.spec.ts │ ├── tsconfig.json │ └── vitest.config.ts └── stylelint │ ├── README.md │ ├── package.json │ ├── src │ ├── index.ts │ ├── rules │ │ ├── use-border-color.ts │ │ ├── use-border-radius.ts │ │ ├── use-border-width.ts │ │ └── use-spacings.ts │ └── shared │ │ ├── create-rule.ts │ │ └── index.ts │ ├── test │ ├── defaults.ts │ ├── fixtures │ │ ├── ignore.css │ │ ├── test.scss │ │ └── test.vue │ └── rules │ │ ├── use-border-color.spec.ts │ │ ├── use-border-radius.spec.ts │ │ ├── use-border-width.spec.ts │ │ └── use-spacings.spec.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── scripts ├── check-commit-mail.js ├── dev.ts ├── github │ ├── build-gh-page.ts │ ├── cleanup-gh-pages.js │ ├── get-playwright-version.ts │ ├── get-release.ts │ ├── package-version.ts │ └── publish-npm.js ├── md-resolve-svg.ts ├── package.json ├── prettier-stage.js ├── rebuild-e2e.js ├── tests │ ├── fixtures │ │ └── out │ │ │ └── test.txt │ └── github │ │ ├── build-gh-page.spec.ts │ │ ├── get-playwright-version.spec.ts │ │ ├── get-release.spec.ts │ │ └── package-version.spec.ts ├── tsconfig.json └── vitest.config.ts └── showcases ├── README.md ├── angular-showcase ├── .gitignore ├── README.md ├── angular.json ├── package.json ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── components │ │ │ ├── accordion-item │ │ │ │ ├── accordion-item.component.html │ │ │ │ └── accordion-item.component.ts │ │ │ ├── accordion │ │ │ │ ├── accordion.component.html │ │ │ │ └── accordion.component.ts │ │ │ ├── badge │ │ │ │ ├── badge.component.html │ │ │ │ └── badge.component.ts │ │ │ ├── brand │ │ │ │ ├── brand.component.html │ │ │ │ └── brand.component.ts │ │ │ ├── button │ │ │ │ ├── button.component.html │ │ │ │ └── button.component.ts │ │ │ ├── card │ │ │ │ ├── card.component.html │ │ │ │ └── card.component.ts │ │ │ ├── checkbox │ │ │ │ ├── checkbox.component.html │ │ │ │ └── checkbox.component.ts │ │ │ ├── custom-select │ │ │ │ ├── custom-select.component.html │ │ │ │ └── custom-select.component.ts │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ ├── divider │ │ │ │ ├── divider.component.html │ │ │ │ └── divider.component.ts │ │ │ ├── drawer │ │ │ │ ├── drawer.component.html │ │ │ │ └── drawer.component.ts │ │ │ ├── form │ │ │ │ ├── checkboxes │ │ │ │ │ ├── checkboxes.component.html │ │ │ │ │ └── checkboxes.component.ts │ │ │ │ ├── custom-selects │ │ │ │ │ ├── custom-selects.component.html │ │ │ │ │ └── custom-selects.component.ts │ │ │ │ ├── form.component.html │ │ │ │ ├── form.component.ts │ │ │ │ ├── inputs │ │ │ │ │ ├── inputs.component.html │ │ │ │ │ └── inputs.component.ts │ │ │ │ ├── radios │ │ │ │ │ ├── radios.component.html │ │ │ │ │ └── radios.component.ts │ │ │ │ ├── selects │ │ │ │ │ ├── selects.component.html │ │ │ │ │ └── selects.component.ts │ │ │ │ ├── textareas │ │ │ │ │ ├── textareas.component.html │ │ │ │ │ └── textareas.component.ts │ │ │ │ └── wrapper │ │ │ │ │ ├── wrapper.component.html │ │ │ │ │ └── wrapper.component.ts │ │ │ ├── header │ │ │ │ ├── header.component.html │ │ │ │ └── header.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ └── icon.component.ts │ │ │ ├── infotext │ │ │ │ ├── infotext.component.html │ │ │ │ └── infotext.component.ts │ │ │ ├── input │ │ │ │ ├── input.component.html │ │ │ │ └── input.component.ts │ │ │ ├── link │ │ │ │ ├── link.component.html │ │ │ │ └── link.component.ts │ │ │ ├── navigation-item │ │ │ │ ├── navigation-item.component.html │ │ │ │ └── navigation-item.component.ts │ │ │ ├── navigation │ │ │ │ ├── navigation.component.html │ │ │ │ └── navigation.component.ts │ │ │ ├── notification │ │ │ │ ├── notification.component.html │ │ │ │ └── notification.component.ts │ │ │ ├── popover │ │ │ │ ├── popover.component.html │ │ │ │ └── popover.component.ts │ │ │ ├── radio │ │ │ │ ├── radio.component.html │ │ │ │ └── radio.component.ts │ │ │ ├── section │ │ │ │ ├── section.component.html │ │ │ │ └── section.component.ts │ │ │ ├── select │ │ │ │ ├── select.component.html │ │ │ │ └── select.component.ts │ │ │ ├── stack │ │ │ │ ├── stack.component.html │ │ │ │ └── stack.component.ts │ │ │ ├── switch │ │ │ │ ├── switch.component.html │ │ │ │ └── switch.component.ts │ │ │ ├── tab-item │ │ │ │ ├── tab-item.component.html │ │ │ │ └── tab-item.component.ts │ │ │ ├── tabs │ │ │ │ ├── tabs.component.html │ │ │ │ └── tabs.component.ts │ │ │ ├── tag │ │ │ │ ├── tag.component.html │ │ │ │ └── tag.component.ts │ │ │ ├── textarea │ │ │ │ ├── textarea.component.html │ │ │ │ └── textarea.component.ts │ │ │ └── tooltip │ │ │ │ ├── tooltip.component.html │ │ │ │ └── tooltip.component.ts │ │ ├── nav-item │ │ │ ├── nav-item.component.html │ │ │ └── nav-item.component.ts │ │ └── utils │ │ │ └── navigation-item.ts │ ├── assets │ │ └── images │ │ │ ├── db_logo.svg │ │ │ └── placeholder.jpg │ ├── environments │ │ └── environment.ts │ ├── index.html │ ├── main.ts │ ├── sa11y.d.ts │ └── styles.css ├── tsconfig.app.json └── tsconfig.json ├── angular-ssr-showcase ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── package.json ├── server.ts ├── src │ ├── app │ │ ├── app.config.server.ts │ │ ├── app.config.ts │ │ └── app.routes.ts │ ├── assets │ │ ├── .gitkeep │ │ └── images │ │ │ ├── db_logo.svg │ │ │ └── placeholder.jpg │ ├── favicon.ico │ ├── index.html │ ├── main.server.ts │ ├── main.ts │ └── styles.css ├── tsconfig.app.json └── tsconfig.json ├── e2e ├── accordion-item │ ├── accordion-item-a11y.spec.ts │ └── accordion-item-snapshot.spec.ts ├── accordion │ ├── accordion-a11y.spec.ts │ └── accordion-snapshot.spec.ts ├── badge │ ├── badge-a11y.spec.ts │ └── badge-snapshot.spec.ts ├── brand │ ├── brand-a11y.spec.ts │ └── brand-snapshot.spec.ts ├── button │ ├── button-a11y.spec.ts │ └── button-snapshot.spec.ts ├── card │ ├── card-a11y.spec.ts │ └── card-snapshot.spec.ts ├── checkbox │ ├── checkbox-a11y.spec.ts │ └── checkbox-snapshot.spec.ts ├── custom-select │ ├── custom-select-a11y.spec.ts │ └── custom-select-snapshot.spec.ts ├── default.ts ├── divider │ ├── divider-a11y.spec.ts │ └── divider-snapshot.spec.ts ├── drawer │ ├── drawer-a11y.spec.ts │ └── drawer-snapshot.spec.ts ├── fixtures │ ├── hover.ts │ ├── variants.ts │ └── viewport.ts ├── header │ ├── header-a11y.spec.ts │ └── header-snapshot.spec.ts ├── home │ └── showcase-home.spec.ts ├── icon │ ├── icon-a11y.spec.ts │ └── icon-snapshot.spec.ts ├── infotext │ ├── infotext-a11y.spec.ts │ └── infotext-snapshot.spec.ts ├── input │ ├── input-a11y.spec.ts │ └── input-snapshot.spec.ts ├── link │ ├── link-a11y.spec.ts │ └── link-snapshot.spec.ts ├── navigation-item │ ├── navigation-item-a11y.spec.ts │ └── navigation-item-snapshot.spec.ts ├── navigation │ ├── navigation-a11y.spec.ts │ └── navigation-snapshot.spec.ts ├── notification │ ├── notification-a11y.spec.ts │ └── notification-snapshot.spec.ts ├── popover │ ├── popover-a11y.spec.ts │ └── popover-snapshot.spec.ts ├── radio │ ├── radio-a11y.spec.ts │ └── radio-snapshot.spec.ts ├── section │ ├── section-a11y.spec.ts │ └── section-snapshot.spec.ts ├── select │ ├── select-a11y.spec.ts │ └── select-snapshot.spec.ts ├── stack │ ├── stack-a11y.spec.ts │ └── stack-snapshot.spec.ts ├── switch │ ├── switch-a11y.spec.ts │ └── switch-snapshot.spec.ts ├── tab-item │ ├── tab-item-a11y.spec.ts │ └── tab-item-snapshot.spec.ts ├── tabs │ ├── tabs-a11y.spec.ts │ └── tabs-snapshot.spec.ts ├── tag │ ├── tag-a11y.spec.ts │ └── tag-snapshot.spec.ts ├── textarea │ ├── textarea-a11y.spec.ts │ └── textarea-snapshot.spec.ts └── tooltip │ ├── tooltip-a11y.spec.ts │ └── tooltip-snapshot.spec.ts ├── next-showcase ├── .gitignore ├── README.md ├── next.config.js ├── package.json ├── pages │ ├── [[...slug]].tsx │ └── _app.tsx ├── public │ ├── assets │ │ └── images │ │ │ ├── db_logo.svg │ │ │ └── placeholder.jpg │ └── favicon.ico ├── styles │ └── global.scss └── tsconfig.json ├── nuxt-showcase ├── .gitignore ├── README.md ├── app.vue ├── assets │ └── images │ │ ├── db_logo.svg │ │ └── placeholder.jpg ├── layouts │ └── default.vue ├── nuxt.config.ts ├── package.json ├── pages │ └── [...uri].vue ├── public │ └── favicon.ico ├── server │ └── tsconfig.json └── tsconfig.json ├── patternhub ├── .gitignore ├── README.md ├── code-theme.js ├── components │ ├── accessibility-review-info │ │ └── accessibility-review-info.tsx │ ├── card-navigation │ │ └── card-navigation.tsx │ ├── component-parser │ │ ├── data.ts │ │ └── index.tsx │ ├── copy-clipboard-button │ │ └── index.tsx │ ├── data.ts │ ├── default-page.tsx │ ├── foundations │ │ └── colors │ │ │ ├── colors-grid │ │ │ └── index.tsx │ │ │ ├── colors-overview-tabs │ │ │ └── index.tsx │ │ │ └── data.ts │ ├── iframe.tsx │ ├── link-header │ │ └── index.tsx │ ├── navigation │ │ ├── index.tsx │ │ └── nav-item.tsx │ ├── old-routing-fallback │ │ └── index.tsx │ ├── validation-example │ │ └── index.tsx │ └── version-switcher │ │ ├── data.ts │ │ ├── index.tsx │ │ └── version-switcher.tsx ├── data │ ├── components.json │ └── routes.tsx ├── next.config.js ├── package.json ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── base64 │ │ └── index.tsx │ ├── components │ │ ├── [[...slug]].tsx │ │ ├── misc │ │ │ ├── backdrop.mdx │ │ │ ├── router-usage.mdx │ │ │ └── validation.mdx │ │ └── readme.mdx │ ├── foundations │ │ ├── browser-support │ │ │ └── index.mdx │ │ ├── colors │ │ │ ├── color-modes.tsx │ │ │ ├── color-schemes.tsx │ │ │ ├── color-usage-guide.tsx │ │ │ ├── index.tsx │ │ │ └── readme.mdx │ │ ├── densities │ │ │ ├── examples.tsx │ │ │ ├── index.tsx │ │ │ └── readme.mdx │ │ ├── font-sizes │ │ │ ├── index.tsx │ │ │ ├── overview.tsx │ │ │ └── readme.mdx │ │ ├── icons │ │ │ ├── custom-icons.mdx │ │ │ ├── index.tsx │ │ │ ├── overview.tsx │ │ │ └── readme.mdx │ │ ├── ide │ │ │ └── index.mdx │ │ ├── index.tsx │ │ ├── performance │ │ │ └── index.mdx │ │ ├── readme.mdx │ │ ├── test-table │ │ │ └── index.tsx │ │ └── variables │ │ │ ├── examples.tsx │ │ │ ├── index.tsx │ │ │ └── readme.mdx │ ├── iframe │ │ └── index.tsx │ └── index.mdx ├── public │ ├── assets │ │ └── images │ │ │ ├── checkerboard.png │ │ │ └── placeholder.jpg │ ├── favicon.ico │ ├── robots.txt │ └── site.webmanifest ├── scripts │ ├── esbuild-generate.mjs │ ├── generate-docs-mdx.js │ ├── generate-example-jsx.js │ ├── generate-test-table.js │ ├── get-code-files.js │ ├── get-how-to-file.js │ ├── get-migration-file.js │ ├── get-properties-file.js │ ├── remark-transform-links.js │ └── utils.js ├── styles │ ├── decision-tree.scss │ ├── globals.scss │ └── highlight.scss ├── tests │ └── default.spec.ts └── tsconfig.json ├── playwright.config.ts ├── playwright.patternhub-config.ts ├── playwright.screen-reader.macos.ts ├── playwright.screen-reader.ts ├── playwright.screen-reader.windows.ts ├── playwright.showcase-snapshots.ts ├── playwright.showcase.ts ├── react-showcase ├── .gitignore ├── index.html ├── package.json ├── public │ ├── assets │ │ └── images │ │ │ ├── db_logo.svg │ │ │ └── placeholder.jpg │ ├── favicon.ico │ ├── robots.txt │ └── site.webmanifest ├── src │ ├── app.tsx │ ├── components │ │ ├── accordion-item │ │ │ └── index.tsx │ │ ├── accordion │ │ │ └── index.tsx │ │ ├── badge │ │ │ └── index.tsx │ │ ├── base-component-data.ts │ │ ├── brand │ │ │ ├── index.tsx │ │ │ └── process.d.ts │ │ ├── button │ │ │ └── index.tsx │ │ ├── card │ │ │ └── index.tsx │ │ ├── checkbox │ │ │ └── index.tsx │ │ ├── custom-select │ │ │ └── index.tsx │ │ ├── data.ts │ │ ├── default-component.tsx │ │ ├── divider │ │ │ └── index.tsx │ │ ├── drawer │ │ │ └── index.tsx │ │ ├── form │ │ │ ├── checkbox.tsx │ │ │ ├── custom-select.tsx │ │ │ ├── form-wrapper.tsx │ │ │ ├── index.tsx │ │ │ ├── input.tsx │ │ │ ├── radio.tsx │ │ │ ├── select.tsx │ │ │ └── textarea.tsx │ │ ├── header │ │ │ └── index.tsx │ │ ├── home │ │ │ └── index.tsx │ │ ├── icon │ │ │ └── index.tsx │ │ ├── infotext │ │ │ └── index.tsx │ │ ├── input │ │ │ └── index.tsx │ │ ├── link │ │ │ └── index.tsx │ │ ├── navigation-item │ │ │ └── index.tsx │ │ ├── navigation │ │ │ └── index.tsx │ │ ├── notification │ │ │ └── index.tsx │ │ ├── page │ │ │ └── index.tsx │ │ ├── popover │ │ │ └── index.tsx │ │ ├── radio │ │ │ └── index.tsx │ │ ├── section │ │ │ └── index.tsx │ │ ├── select │ │ │ └── index.tsx │ │ ├── stack │ │ │ └── index.tsx │ │ ├── switch │ │ │ └── index.tsx │ │ ├── tab-item │ │ │ └── index.tsx │ │ ├── tabs │ │ │ └── index.tsx │ │ ├── tag │ │ │ └── index.tsx │ │ ├── textarea │ │ │ └── index.tsx │ │ └── tooltip │ │ │ └── index.tsx │ ├── hooks │ │ ├── use-query.tsx │ │ └── use-universal-search-parameters.ts │ ├── main.tsx │ ├── meta-navigation │ │ └── index.tsx │ ├── navigation │ │ ├── index.tsx │ │ └── nav-item.tsx │ └── utils │ │ ├── base-path.ts │ │ └── navigation-item.tsx ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── screen-reader ├── README.md ├── __snapshots__ │ ├── .editorconfig │ ├── macos │ │ └── webkit │ │ │ ├── DBAccordion-default-1.txt │ │ │ ├── DBBadge-default-1.txt │ │ │ ├── DBBrand-default-1.txt │ │ │ ├── DBButton-next-1.txt │ │ │ ├── DBCard-default-1.txt │ │ │ ├── DBCheckbox-default-1.txt │ │ │ ├── DBDrawer-autofocus-1.txt │ │ │ ├── DBHeader-default-1.txt │ │ │ ├── DBIcon-default-1.txt │ │ │ ├── DBInfotext-default-1.txt │ │ │ ├── DBInput-next-1.txt │ │ │ ├── DBInput-required-1.txt │ │ │ ├── DBLink-default-1.txt │ │ │ ├── DBNavigation-default-1.txt │ │ │ ├── DBNotification-default-1.txt │ │ │ ├── DBPopover-opened-1.txt │ │ │ ├── DBRadio-next-1.txt │ │ │ ├── DBSection-default-1.txt │ │ │ ├── DBSelect-default-1.txt │ │ │ ├── DBSwitch-default-1.txt │ │ │ ├── DBSwitch-icon-1.txt │ │ │ ├── DBTabs-default-1.txt │ │ │ ├── DBTag-behavior-1.txt │ │ │ ├── DBTag-default-1.txt │ │ │ ├── DBTextarea-next-1.txt │ │ │ ├── DBTextarea-required-1.txt │ │ │ └── DBTooltip-default-1.txt │ └── windows │ │ └── chromium │ │ ├── DBAccordion-default-1.txt │ │ ├── DBBadge-default-1.txt │ │ ├── DBBrand-default-1.txt │ │ ├── DBButton-next-1.txt │ │ ├── DBButton-tab-1.txt │ │ ├── DBCard-default-1.txt │ │ ├── DBCheckbox-default-1.txt │ │ ├── DBDrawer-autofocus-1.txt │ │ ├── DBHeader-default-1.txt │ │ ├── DBIcon-default-1.txt │ │ ├── DBInfotext-default-1.txt │ │ ├── DBInput-required-1.txt │ │ ├── DBInput-tab-1.txt │ │ ├── DBLink-default-1.txt │ │ ├── DBNavigation-default-1.txt │ │ ├── DBNotification-default-1.txt │ │ ├── DBPopover-opened-1.txt │ │ ├── DBRadio-arrows-1.txt │ │ ├── DBRadio-next-1.txt │ │ ├── DBSection-default-1.txt │ │ ├── DBSelect-default-1.txt │ │ ├── DBSwitch-default-1.txt │ │ ├── DBSwitch-icon-1.txt │ │ ├── DBTabs-default-1.txt │ │ ├── DBTag-behavior-1.txt │ │ ├── DBTag-default-1.txt │ │ ├── DBTextarea-required-1.txt │ │ └── DBTooltip-default-1.txt ├── data.ts ├── default.ts ├── tests │ ├── accordion.spec.ts │ ├── badge.spec.ts │ ├── brand.spec.ts │ ├── button.spec.ts │ ├── card.spec.ts │ ├── checkbox.spec.ts │ ├── drawer.spec.ts │ ├── header.spec.ts │ ├── icon.spec.ts │ ├── infotext.spec.ts │ ├── input.spec.ts │ ├── link.spec.ts │ ├── navigation.spec.ts │ ├── notification.spec.ts │ ├── popover.spec.ts │ ├── radio.spec.ts │ ├── section.spec.ts │ ├── select.spec.ts │ ├── switch.spec.ts │ ├── tabs.spec.ts │ ├── tag.spec.ts │ ├── textarea.spec.ts │ └── tooltip.spec.ts ├── translations.ts └── tsconfig.json ├── shared ├── _accessibility-review.json ├── accordion-item.json ├── accordion.json ├── badge.json ├── brand.json ├── button.json ├── card.json ├── checkbox.json ├── custom-select.json ├── default-component-data.ts ├── divider.json ├── drawer.json ├── header.json ├── icon.json ├── infotext.json ├── input.json ├── link.json ├── navigation-item.json ├── navigation.json ├── notification.json ├── page.json ├── popover.json ├── radio.json ├── react-default-component-data.ts ├── section.json ├── select.json ├── stack.json ├── switch.json ├── tab-item.json ├── tabs.json ├── tag.json ├── textarea.json └── tooltip.json ├── showcase-styles.css ├── stencil-showcase ├── README.md ├── angular.json ├── package.json ├── src │ ├── assets │ │ └── images │ │ │ ├── db_logo.svg │ │ │ └── placeholder.jpg │ ├── environments │ │ └── environment.stencil.ts │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json └── tsconfig.json └── vue-showcase ├── .gitignore ├── .vscode └── extensions.json ├── README.md ├── index.html ├── package.json ├── public ├── assets │ └── images │ │ ├── db_logo.svg │ │ └── placeholder.jpg ├── favicon.ico ├── robots.txt └── site.webmanifest ├── src ├── App.vue ├── NavItemComponent.vue ├── components │ ├── DefaultComponent.vue │ ├── accordion-item │ │ └── AccordionItem.vue │ ├── accordion │ │ └── Accordion.vue │ ├── badge │ │ └── Badge.vue │ ├── brand │ │ └── Brand.vue │ ├── button │ │ └── Button.vue │ ├── card │ │ └── Card.vue │ ├── checkbox │ │ └── Checkbox.vue │ ├── custom-select │ │ └── CustomSelect.vue │ ├── divider │ │ └── Divider.vue │ ├── drawer │ │ └── Drawer.vue │ ├── form │ │ ├── Checkboxes.vue │ │ ├── Custom-Selects.vue │ │ ├── Form.vue │ │ ├── FormWrapper.vue │ │ ├── Inputs.vue │ │ ├── Radios.vue │ │ ├── Selects.vue │ │ └── Textareas.vue │ ├── header │ │ └── Header.vue │ ├── home │ │ └── Home.vue │ ├── icon │ │ └── Icon.vue │ ├── infotext │ │ └── Infotext.vue │ ├── input │ │ └── Input.vue │ ├── link │ │ └── Link.vue │ ├── navigation-item │ │ └── NavigationItem.vue │ ├── navigation │ │ └── Navigation.vue │ ├── notification │ │ └── Notification.vue │ ├── popover │ │ └── Popover.vue │ ├── radio │ │ └── Radio.vue │ ├── section │ │ └── Section.vue │ ├── select │ │ └── Select.vue │ ├── stack │ │ └── Stack.vue │ ├── switch │ │ └── Switch.vue │ ├── tab-item │ │ └── TabItem.vue │ ├── tabs │ │ └── Tabs.vue │ ├── tag │ │ └── Tag.vue │ ├── textarea │ │ └── Textarea.vue │ └── tooltip │ │ └── Tooltip.vue ├── composables │ └── use-layout.ts ├── main.ts └── utils │ └── navigation-items.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.config/.commitlintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@commitlint/config-conventional"] 3 | } 4 | -------------------------------------------------------------------------------- /.config/.lintstagedrc-prettier.js: -------------------------------------------------------------------------------- 1 | export default { 2 | '**/*': 'prettier --write --ignore-unknown' 3 | }; 4 | -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | commitlint --edit "$1" --config .config/.commitlintrc.json 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | validate-branch-name 2 | node scripts/check-commit-mail.js 3 | lint-staged --config .config/.lintstagedrc.js 4 | lint-staged --config .config/.lintstagedrc-prettier.js 5 | git update-index --again 6 | npm run lint:jscpd 7 | -------------------------------------------------------------------------------- /.markdownlintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | CHANGELOG.md 3 | build/** 4 | **/dist/** 5 | **/output/** 6 | build-outputs/** 7 | build-showcases/** 8 | showcases/**/public/** 9 | CODE-OF-CONDUCT.md 10 | -------------------------------------------------------------------------------- /.np-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "yarn": false, 3 | "publish": false 4 | } 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /* 2 | /*/ 3 | !/build/ 4 | public/** 5 | CONTRIBUTION.md 6 | build/**/CONTRIBUTION.md 7 | build/android/**/favicon.ico 8 | build/android/**/robots.txt 9 | build/android/**/site.webmanifest 10 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | assets/fonts/**/sources/ 2 | public/ 3 | package-lock.json 4 | build/ 5 | node_modules 6 | output 7 | build-outputs 8 | build-showcases 9 | packages/foundations/scripts/generate-icon-fonts/styles/** 10 | **/__snapshots__ 11 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "typescript.tsdk": "node_modules/typescript/lib", 3 | "editor.defaultFormatter": "esbenp.prettier-vscode", 4 | "editor.formatOnSave": true, 5 | "files.associations": { 6 | ".env.template": "dotenv" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /__snapshots__/accordion-item/component/chromium/DBAccordionItem-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - listitem: 2 | - group: Test chevron_down" / " -------------------------------------------------------------------------------- /__snapshots__/accordion-item/component/chromium/DBAccordionItem-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/accordion-item/component/chromium/DBAccordionItem-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/accordion-item/component/firefox/DBAccordionItem-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - listitem: 2 | - group: Test chevron_down" / " -------------------------------------------------------------------------------- /__snapshots__/accordion-item/component/firefox/DBAccordionItem-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/accordion-item/component/firefox/DBAccordionItem-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/accordion-item/component/mobile-chrome/DBAccordionItem-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - listitem: 2 | - group: Test chevron_down" / " -------------------------------------------------------------------------------- /__snapshots__/accordion-item/component/mobile-chrome/DBAccordionItem-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/accordion-item/component/mobile-chrome/DBAccordionItem-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/accordion-item/patternhub/accordion-item-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/accordion-item/patternhub/accordion-item-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/accordion-item/patternhub/accordion-item-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/accordion-item/patternhub/accordion-item-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/accordion-item/patternhub/accordion-item-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/accordion-item/patternhub/accordion-item-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/accordion/component/chromium/DBAccordion-open-items-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/accordion/component/chromium/DBAccordion-open-items-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/accordion/component/chromium/DBAccordion-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - list: 2 | - listitem: 3 | - group: Test chevron_down" / " 4 | - listitem: 5 | - group: Test 2 chevron_down" / " 6 | - listitem: 7 | - group: Test 3 chevron_down" / " -------------------------------------------------------------------------------- /__snapshots__/accordion/component/chromium/DBAccordion-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/accordion/component/chromium/DBAccordion-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/accordion/component/firefox/DBAccordion-open-items-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/accordion/component/firefox/DBAccordion-open-items-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/accordion/component/firefox/DBAccordion-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - list: 2 | - listitem: 3 | - group: Test chevron_down" / " 4 | - listitem: 5 | - group: Test 2 chevron_down" / " 6 | - listitem: 7 | - group: Test 3 chevron_down" / " -------------------------------------------------------------------------------- /__snapshots__/accordion/component/firefox/DBAccordion-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/accordion/component/firefox/DBAccordion-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/accordion/component/mobile-chrome/DBAccordion-open-items-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/accordion/component/mobile-chrome/DBAccordion-open-items-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/accordion/component/mobile-chrome/DBAccordion-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - list: 2 | - listitem: 3 | - group: Test chevron_down" / " 4 | - listitem: 5 | - group: Test 2 chevron_down" / " 6 | - listitem: 7 | - group: Test 3 chevron_down" / " -------------------------------------------------------------------------------- /__snapshots__/accordion/component/mobile-chrome/DBAccordion-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/accordion/component/mobile-chrome/DBAccordion-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/accordion/patternhub/accordion-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/accordion/patternhub/accordion-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/accordion/patternhub/accordion-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/accordion/patternhub/accordion-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/accordion/patternhub/accordion-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/accordion/patternhub/accordion-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/badge/component/chromium/DBBadge-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Test -------------------------------------------------------------------------------- /__snapshots__/badge/component/chromium/DBBadge-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/badge/component/chromium/DBBadge-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/badge/component/firefox/DBBadge-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Test -------------------------------------------------------------------------------- /__snapshots__/badge/component/firefox/DBBadge-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/badge/component/firefox/DBBadge-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/badge/component/mobile-chrome/DBBadge-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Test -------------------------------------------------------------------------------- /__snapshots__/badge/component/mobile-chrome/DBBadge-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/badge/component/mobile-chrome/DBBadge-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/badge/patternhub/badge-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/badge/patternhub/badge-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/badge/patternhub/badge-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/badge/patternhub/badge-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/badge/patternhub/badge-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/badge/patternhub/badge-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/badge/showcase/firefox/DBBadge-should-match-screenshot-1/DBBadge-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/badge/showcase/firefox/DBBadge-should-match-screenshot-1/DBBadge-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/brand/component/chromium/DBBrand-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: brand" / " Test -------------------------------------------------------------------------------- /__snapshots__/brand/component/chromium/DBBrand-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/brand/component/chromium/DBBrand-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/brand/component/firefox/DBBrand-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Test -------------------------------------------------------------------------------- /__snapshots__/brand/component/firefox/DBBrand-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/brand/component/firefox/DBBrand-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/brand/component/mobile-chrome/DBBrand-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: brand" / " Test -------------------------------------------------------------------------------- /__snapshots__/brand/component/mobile-chrome/DBBrand-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/brand/component/mobile-chrome/DBBrand-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/brand/patternhub/brand-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/brand/patternhub/brand-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/brand/patternhub/brand-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/brand/patternhub/brand-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/brand/patternhub/brand-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/brand/patternhub/brand-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/button/component/chromium/DBButton-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - button "x_placeholder\" / \" User" -------------------------------------------------------------------------------- /__snapshots__/button/component/chromium/DBButton-should-match-screenshot-for-variant-brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/chromium/DBButton-should-match-screenshot-for-variant-brand.png -------------------------------------------------------------------------------- /__snapshots__/button/component/chromium/DBButton-should-match-screenshot-for-variant-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/chromium/DBButton-should-match-screenshot-for-variant-filled.png -------------------------------------------------------------------------------- /__snapshots__/button/component/chromium/DBButton-should-match-screenshot-for-variant-ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/chromium/DBButton-should-match-screenshot-for-variant-ghost.png -------------------------------------------------------------------------------- /__snapshots__/button/component/chromium/DBButton-should-match-screenshot-for-variant-outlined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/chromium/DBButton-should-match-screenshot-for-variant-outlined.png -------------------------------------------------------------------------------- /__snapshots__/button/component/chromium/DBButton-should-only-have-icon-for-variant-brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/chromium/DBButton-should-only-have-icon-for-variant-brand.png -------------------------------------------------------------------------------- /__snapshots__/button/component/chromium/DBButton-should-only-have-icon-for-variant-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/chromium/DBButton-should-only-have-icon-for-variant-filled.png -------------------------------------------------------------------------------- /__snapshots__/button/component/chromium/DBButton-should-only-have-icon-for-variant-ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/chromium/DBButton-should-only-have-icon-for-variant-ghost.png -------------------------------------------------------------------------------- /__snapshots__/button/component/chromium/DBButton-should-only-have-icon-for-variant-outlined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/chromium/DBButton-should-only-have-icon-for-variant-outlined.png -------------------------------------------------------------------------------- /__snapshots__/button/component/firefox/DBButton-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - button "User" -------------------------------------------------------------------------------- /__snapshots__/button/component/firefox/DBButton-should-match-screenshot-for-variant-brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/firefox/DBButton-should-match-screenshot-for-variant-brand.png -------------------------------------------------------------------------------- /__snapshots__/button/component/firefox/DBButton-should-match-screenshot-for-variant-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/firefox/DBButton-should-match-screenshot-for-variant-filled.png -------------------------------------------------------------------------------- /__snapshots__/button/component/firefox/DBButton-should-match-screenshot-for-variant-ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/firefox/DBButton-should-match-screenshot-for-variant-ghost.png -------------------------------------------------------------------------------- /__snapshots__/button/component/firefox/DBButton-should-match-screenshot-for-variant-outlined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/firefox/DBButton-should-match-screenshot-for-variant-outlined.png -------------------------------------------------------------------------------- /__snapshots__/button/component/firefox/DBButton-should-only-have-icon-for-variant-brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/firefox/DBButton-should-only-have-icon-for-variant-brand.png -------------------------------------------------------------------------------- /__snapshots__/button/component/firefox/DBButton-should-only-have-icon-for-variant-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/firefox/DBButton-should-only-have-icon-for-variant-filled.png -------------------------------------------------------------------------------- /__snapshots__/button/component/firefox/DBButton-should-only-have-icon-for-variant-ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/firefox/DBButton-should-only-have-icon-for-variant-ghost.png -------------------------------------------------------------------------------- /__snapshots__/button/component/firefox/DBButton-should-only-have-icon-for-variant-outlined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/firefox/DBButton-should-only-have-icon-for-variant-outlined.png -------------------------------------------------------------------------------- /__snapshots__/button/component/mobile-chrome/DBButton-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - button "x_placeholder\" / \" User" -------------------------------------------------------------------------------- /__snapshots__/button/component/mobile-chrome/DBButton-should-match-screenshot-for-variant-brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/mobile-chrome/DBButton-should-match-screenshot-for-variant-brand.png -------------------------------------------------------------------------------- /__snapshots__/button/component/mobile-chrome/DBButton-should-match-screenshot-for-variant-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/mobile-chrome/DBButton-should-match-screenshot-for-variant-filled.png -------------------------------------------------------------------------------- /__snapshots__/button/component/mobile-chrome/DBButton-should-match-screenshot-for-variant-ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/mobile-chrome/DBButton-should-match-screenshot-for-variant-ghost.png -------------------------------------------------------------------------------- /__snapshots__/button/component/mobile-chrome/DBButton-should-match-screenshot-for-variant-outlined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/mobile-chrome/DBButton-should-match-screenshot-for-variant-outlined.png -------------------------------------------------------------------------------- /__snapshots__/button/component/mobile-chrome/DBButton-should-only-have-icon-for-variant-brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/mobile-chrome/DBButton-should-only-have-icon-for-variant-brand.png -------------------------------------------------------------------------------- /__snapshots__/button/component/mobile-chrome/DBButton-should-only-have-icon-for-variant-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/mobile-chrome/DBButton-should-only-have-icon-for-variant-filled.png -------------------------------------------------------------------------------- /__snapshots__/button/component/mobile-chrome/DBButton-should-only-have-icon-for-variant-ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/mobile-chrome/DBButton-should-only-have-icon-for-variant-ghost.png -------------------------------------------------------------------------------- /__snapshots__/button/component/mobile-chrome/DBButton-should-only-have-icon-for-variant-outlined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/component/mobile-chrome/DBButton-should-only-have-icon-for-variant-outlined.png -------------------------------------------------------------------------------- /__snapshots__/button/patternhub/button-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/patternhub/button-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/button/patternhub/button-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/patternhub/button-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/button/patternhub/button-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/button/patternhub/button-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/card/component/chromium/DBCard-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Test -------------------------------------------------------------------------------- /__snapshots__/card/component/chromium/DBCard-should-match-screenshot-for-behavior-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/card/component/chromium/DBCard-should-match-screenshot-for-behavior-default.png -------------------------------------------------------------------------------- /__snapshots__/card/component/chromium/DBCard-should-match-screenshot-for-behavior-interactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/card/component/chromium/DBCard-should-match-screenshot-for-behavior-interactive.png -------------------------------------------------------------------------------- /__snapshots__/card/component/chromium/DBCard-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/card/component/chromium/DBCard-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/card/component/firefox/DBCard-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Test -------------------------------------------------------------------------------- /__snapshots__/card/component/firefox/DBCard-should-match-screenshot-for-behavior-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/card/component/firefox/DBCard-should-match-screenshot-for-behavior-default.png -------------------------------------------------------------------------------- /__snapshots__/card/component/firefox/DBCard-should-match-screenshot-for-behavior-interactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/card/component/firefox/DBCard-should-match-screenshot-for-behavior-interactive.png -------------------------------------------------------------------------------- /__snapshots__/card/component/firefox/DBCard-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/card/component/firefox/DBCard-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/card/component/mobile-chrome/DBCard-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Test -------------------------------------------------------------------------------- /__snapshots__/card/component/mobile-chrome/DBCard-should-match-screenshot-for-behavior-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/card/component/mobile-chrome/DBCard-should-match-screenshot-for-behavior-default.png -------------------------------------------------------------------------------- /__snapshots__/card/component/mobile-chrome/DBCard-should-match-screenshot-for-behavior-interactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/card/component/mobile-chrome/DBCard-should-match-screenshot-for-behavior-interactive.png -------------------------------------------------------------------------------- /__snapshots__/card/component/mobile-chrome/DBCard-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/card/component/mobile-chrome/DBCard-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/card/patternhub/card-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/card/patternhub/card-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/card/patternhub/card-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/card/patternhub/card-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/card/patternhub/card-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/card/patternhub/card-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/card/showcase/chromium/DBCard-should-match-screenshot-1/DBCard-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/card/showcase/chromium/DBCard-should-match-screenshot-1/DBCard-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/card/showcase/firefox/DBCard-should-match-screenshot-1/DBCard-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/card/showcase/firefox/DBCard-should-match-screenshot-1/DBCard-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/card/showcase/webkit/DBCard-should-match-screenshot-1/DBCard-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/card/showcase/webkit/DBCard-should-match-screenshot-1/DBCard-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/checkbox/component/chromium/DBCheckbox-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - checkbox "Test" 2 | - text: Test 3 | - status -------------------------------------------------------------------------------- /__snapshots__/checkbox/component/chromium/DBCheckbox-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/checkbox/component/chromium/DBCheckbox-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/checkbox/component/firefox/DBCheckbox-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - checkbox "Test" 2 | - text: Test 3 | - status -------------------------------------------------------------------------------- /__snapshots__/checkbox/component/firefox/DBCheckbox-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/checkbox/component/firefox/DBCheckbox-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/checkbox/component/mobile-chrome/DBCheckbox-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - checkbox "Test" 2 | - text: Test 3 | - status -------------------------------------------------------------------------------- /__snapshots__/checkbox/component/mobile-chrome/DBCheckbox-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/checkbox/component/mobile-chrome/DBCheckbox-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/checkbox/patternhub/checkbox-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/checkbox/patternhub/checkbox-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/checkbox/patternhub/checkbox-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/checkbox/patternhub/checkbox-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/checkbox/patternhub/checkbox-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/checkbox/patternhub/checkbox-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/custom-select/component/chromium/DBCustomSelect-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Test 2 | - group 3 | - status 4 | - text: chevron_down" / " -------------------------------------------------------------------------------- /__snapshots__/custom-select/component/chromium/DBCustomSelect-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/custom-select/component/chromium/DBCustomSelect-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/custom-select/component/firefox/DBCustomSelect-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Test 2 | - group 3 | - status 4 | - text: chevron_down" / " -------------------------------------------------------------------------------- /__snapshots__/custom-select/component/firefox/DBCustomSelect-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/custom-select/component/firefox/DBCustomSelect-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/custom-select/component/mobile-chrome/DBCustomSelect-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Test 2 | - group 3 | - status 4 | - text: chevron_down" / " -------------------------------------------------------------------------------- /__snapshots__/custom-select/component/mobile-chrome/DBCustomSelect-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/custom-select/component/mobile-chrome/DBCustomSelect-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/custom-select/patternhub/custom-select-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/custom-select/patternhub/custom-select-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/custom-select/patternhub/custom-select-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/custom-select/patternhub/custom-select-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/custom-select/patternhub/custom-select-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/custom-select/patternhub/custom-select-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/divider/component/chromium/DBDivider-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: "Dividers: Divider weak Divider strong" -------------------------------------------------------------------------------- /__snapshots__/divider/component/chromium/DBDivider-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/divider/component/chromium/DBDivider-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/divider/component/firefox/DBDivider-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: "Dividers: Divider weak Divider strong" -------------------------------------------------------------------------------- /__snapshots__/divider/component/firefox/DBDivider-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/divider/component/firefox/DBDivider-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/divider/component/mobile-chrome/DBDivider-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: "Dividers: Divider weak Divider strong" -------------------------------------------------------------------------------- /__snapshots__/divider/component/mobile-chrome/DBDivider-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/divider/component/mobile-chrome/DBDivider-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/divider/patternhub/divider-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/divider/patternhub/divider-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/divider/patternhub/divider-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/divider/patternhub/divider-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/divider/patternhub/divider-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/divider/patternhub/divider-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/drawer/component/chromium/DBDrawer-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - dialog: 2 | - article: 3 | - button "cross\" / \" Close" 4 | - text: Test -------------------------------------------------------------------------------- /__snapshots__/drawer/component/firefox/DBDrawer-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - dialog: 2 | - article: 3 | - button "Close" 4 | - text: Test -------------------------------------------------------------------------------- /__snapshots__/drawer/component/mobile-chrome/DBDrawer-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - dialog: 2 | - article: 3 | - button "cross\" / \" Close" 4 | - text: Test -------------------------------------------------------------------------------- /__snapshots__/drawer/patternhub/drawer-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/drawer/patternhub/drawer-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/drawer/patternhub/drawer-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/drawer/patternhub/drawer-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/drawer/patternhub/drawer-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/drawer/patternhub/drawer-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/foundations/chromium/Colors-should-match-screenshot-1/Colors-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/foundations/chromium/Colors-should-match-screenshot-1/Colors-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/foundations/chromium/Fonts-should-match-screenshot-1/Fonts-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/foundations/chromium/Fonts-should-match-screenshot-1/Fonts-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/foundations/chromium/Icons-should-match-screenshot-1/Icons-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/foundations/chromium/Icons-should-match-screenshot-1/Icons-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/foundations/firefox/Colors-should-match-screenshot-1/Colors-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/foundations/firefox/Colors-should-match-screenshot-1/Colors-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/foundations/firefox/Fonts-should-match-screenshot-1/Fonts-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/foundations/firefox/Fonts-should-match-screenshot-1/Fonts-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/foundations/firefox/Icons-should-match-screenshot-1/Icons-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/foundations/firefox/Icons-should-match-screenshot-1/Icons-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/foundations/webkit/Colors-should-match-screenshot-1/Colors-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/foundations/webkit/Colors-should-match-screenshot-1/Colors-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/foundations/webkit/Fonts-should-match-screenshot-1/Fonts-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/foundations/webkit/Fonts-should-match-screenshot-1/Fonts-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/foundations/webkit/Icons-should-match-screenshot-1/Icons-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/foundations/webkit/Icons-should-match-screenshot-1/Icons-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/header/patternhub/header-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/header/patternhub/header-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/header/patternhub/header-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/header/patternhub/header-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/header/patternhub/header-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/header/patternhub/header-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/icon/showcase/chromium-highContrast/should-have-same-aria-snapshot/DBIcon-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - main: 2 | - heading "DBIcon" [level=1] 3 | - link "Density arrow_up_right\" / \"" 4 | - text: Functional (Default) Regular Expressive -------------------------------------------------------------------------------- /__snapshots__/icon/showcase/chromium/DBIcon-should-match-screenshot-1/DBIcon-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/icon/showcase/chromium/DBIcon-should-match-screenshot-1/DBIcon-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/icon/showcase/chromium/should-have-same-aria-snapshot/DBIcon-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - main: 2 | - heading "DBIcon" [level=1] 3 | - link "Density arrow_up_right\" / \"" 4 | - text: Functional (Default) Regular Expressive -------------------------------------------------------------------------------- /__snapshots__/icon/showcase/firefox/DBIcon-should-match-screenshot-1/DBIcon-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/icon/showcase/firefox/DBIcon-should-match-screenshot-1/DBIcon-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/icon/showcase/firefox/should-have-same-aria-snapshot/DBIcon-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - main: 2 | - heading "DBIcon" [level=1] 3 | - link "Density arrow_up_right\" / \"" 4 | - text: Functional (Default) Regular Expressive -------------------------------------------------------------------------------- /__snapshots__/icon/showcase/mobile-chrome/should-have-same-aria-snapshot/DBIcon-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - main: 2 | - heading "DBIcon" [level=1] 3 | - link "Density arrow_up_right\" / \"" 4 | - text: Functional (Default) Regular Expressive -------------------------------------------------------------------------------- /__snapshots__/icon/showcase/mobile-safari/should-have-same-aria-snapshot/DBIcon-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - main: 2 | - heading "DBIcon" [level=1] 3 | - link "Density arrow_up_right\" / \"" 4 | - text: Functional (Default) Regular Expressive -------------------------------------------------------------------------------- /__snapshots__/icon/showcase/webkit/DBIcon-should-match-screenshot-1/DBIcon-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/icon/showcase/webkit/DBIcon-should-match-screenshot-1/DBIcon-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/icon/showcase/webkit/should-have-same-aria-snapshot/DBIcon-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - main: 2 | - heading "DBIcon" [level=1] 3 | - link "Density arrow_up_right\" / \"" 4 | - text: Functional (Default) Regular Expressive -------------------------------------------------------------------------------- /__snapshots__/infotext/component/chromium/DBInfotext-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: information_circle" / " Test -------------------------------------------------------------------------------- /__snapshots__/infotext/component/chromium/DBInfotext-should-match-screenshot-for-semantic-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/infotext/component/chromium/DBInfotext-should-match-screenshot-for-semantic-critical.png -------------------------------------------------------------------------------- /__snapshots__/infotext/component/chromium/DBInfotext-should-match-screenshot-for-semantic-successful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/infotext/component/chromium/DBInfotext-should-match-screenshot-for-semantic-successful.png -------------------------------------------------------------------------------- /__snapshots__/infotext/component/chromium/DBInfotext-should-match-screenshot-for-semantic-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/infotext/component/chromium/DBInfotext-should-match-screenshot-for-semantic-warning.png -------------------------------------------------------------------------------- /__snapshots__/infotext/component/chromium/DBInfotext-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/infotext/component/chromium/DBInfotext-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/infotext/component/firefox/DBInfotext-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: information_circle" / " Test -------------------------------------------------------------------------------- /__snapshots__/infotext/component/firefox/DBInfotext-should-match-screenshot-for-semantic-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/infotext/component/firefox/DBInfotext-should-match-screenshot-for-semantic-critical.png -------------------------------------------------------------------------------- /__snapshots__/infotext/component/firefox/DBInfotext-should-match-screenshot-for-semantic-successful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/infotext/component/firefox/DBInfotext-should-match-screenshot-for-semantic-successful.png -------------------------------------------------------------------------------- /__snapshots__/infotext/component/firefox/DBInfotext-should-match-screenshot-for-semantic-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/infotext/component/firefox/DBInfotext-should-match-screenshot-for-semantic-warning.png -------------------------------------------------------------------------------- /__snapshots__/infotext/component/firefox/DBInfotext-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/infotext/component/firefox/DBInfotext-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/infotext/component/mobile-chrome/DBInfotext-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: information_circle" / " Test -------------------------------------------------------------------------------- /__snapshots__/infotext/component/mobile-chrome/DBInfotext-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/infotext/component/mobile-chrome/DBInfotext-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/infotext/patternhub/infotext-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/infotext/patternhub/infotext-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/infotext/patternhub/infotext-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/infotext/patternhub/infotext-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/infotext/patternhub/infotext-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/infotext/patternhub/infotext-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/input/component/chromium/DBInput-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Label 2 | - textbox "Label": Test 3 | - status -------------------------------------------------------------------------------- /__snapshots__/input/component/chromium/DBInput-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/input/component/chromium/DBInput-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/input/component/firefox/DBInput-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Label 2 | - textbox "Label": Test 3 | - status -------------------------------------------------------------------------------- /__snapshots__/input/component/firefox/DBInput-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/input/component/firefox/DBInput-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/input/component/mobile-chrome/DBInput-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Label 2 | - textbox "Label": Test 3 | - status -------------------------------------------------------------------------------- /__snapshots__/input/component/mobile-chrome/DBInput-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/input/component/mobile-chrome/DBInput-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/input/patternhub/input-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/input/patternhub/input-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/input/patternhub/input-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/input/patternhub/input-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/input/patternhub/input-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/input/patternhub/input-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/link/patternhub/link-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/link/patternhub/link-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/link/patternhub/link-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/link/patternhub/link-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/link/patternhub/link-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/link/patternhub/link-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/link/showcase/chromium/DBLink-should-match-screenshot-1/DBLink-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/link/showcase/chromium/DBLink-should-match-screenshot-1/DBLink-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/link/showcase/firefox/DBLink-should-match-screenshot-1/DBLink-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/link/showcase/firefox/DBLink-should-match-screenshot-1/DBLink-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/link/showcase/webkit/DBLink-should-match-screenshot-1/DBLink-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/link/showcase/webkit/DBLink-should-match-screenshot-1/DBLink-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/navigation-item/component/chromium/DBNavigationItem-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - list: 2 | - listitem: 3 | - link "Test1" 4 | - listitem: 5 | - link "Test2" 6 | - listitem: 7 | - link "Test3" -------------------------------------------------------------------------------- /__snapshots__/navigation-item/component/chromium/DBNavigationItem-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/navigation-item/component/chromium/DBNavigationItem-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/navigation-item/component/firefox/DBNavigationItem-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - list: 2 | - listitem: 3 | - link "Test1" 4 | - listitem: 5 | - link "Test2" 6 | - listitem: 7 | - link "Test3" -------------------------------------------------------------------------------- /__snapshots__/navigation-item/component/firefox/DBNavigationItem-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/navigation-item/component/firefox/DBNavigationItem-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/navigation-item/component/mobile-chrome/DBNavigationItem-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - list: 2 | - listitem: 3 | - link "Test1" 4 | - listitem: 5 | - link "Test2" 6 | - listitem: 7 | - link "Test3" -------------------------------------------------------------------------------- /__snapshots__/navigation-item/component/mobile-chrome/DBNavigationItem-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/navigation-item/component/mobile-chrome/DBNavigationItem-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/navigation-item/patternhub/navigation-item-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/navigation-item/patternhub/navigation-item-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/navigation-item/patternhub/navigation-item-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/navigation-item/patternhub/navigation-item-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/navigation-item/patternhub/navigation-item-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/navigation-item/patternhub/navigation-item-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/navigation/component/chromium/DBNavigation-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - navigation: 2 | - list: 3 | - listitem: 4 | - button "Test1 chevron_right\" / \"" 5 | - listitem: 6 | - link "Test2" 7 | - listitem: 8 | - link "Test3" -------------------------------------------------------------------------------- /__snapshots__/navigation/component/chromium/DBNavigation-should-match-screenshot-for-device-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/navigation/component/chromium/DBNavigation-should-match-screenshot-for-device-desktop.png -------------------------------------------------------------------------------- /__snapshots__/navigation/component/chromium/DBNavigation-should-match-screenshot-for-device-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/navigation/component/chromium/DBNavigation-should-match-screenshot-for-device-mobile.png -------------------------------------------------------------------------------- /__snapshots__/navigation/component/chromium/DBNavigation-should-match-screenshot-for-device-tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/navigation/component/chromium/DBNavigation-should-match-screenshot-for-device-tablet.png -------------------------------------------------------------------------------- /__snapshots__/navigation/component/firefox/DBNavigation-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - navigation: 2 | - list: 3 | - listitem: 4 | - button "Test1 chevron_right\" / \"" 5 | - listitem: 6 | - link "Test2" 7 | - listitem: 8 | - link "Test3" -------------------------------------------------------------------------------- /__snapshots__/navigation/component/firefox/DBNavigation-should-match-screenshot-for-device-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/navigation/component/firefox/DBNavigation-should-match-screenshot-for-device-desktop.png -------------------------------------------------------------------------------- /__snapshots__/navigation/component/firefox/DBNavigation-should-match-screenshot-for-device-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/navigation/component/firefox/DBNavigation-should-match-screenshot-for-device-mobile.png -------------------------------------------------------------------------------- /__snapshots__/navigation/component/firefox/DBNavigation-should-match-screenshot-for-device-tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/navigation/component/firefox/DBNavigation-should-match-screenshot-for-device-tablet.png -------------------------------------------------------------------------------- /__snapshots__/navigation/component/mobile-chrome/DBNavigation-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - navigation: 2 | - list: 3 | - listitem: 4 | - button "Test1 chevron_right\" / \"" 5 | - listitem: 6 | - link "Test2" 7 | - listitem: 8 | - link "Test3" -------------------------------------------------------------------------------- /__snapshots__/navigation/patternhub/navigation-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/navigation/patternhub/navigation-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/navigation/patternhub/navigation-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/navigation/patternhub/navigation-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/navigation/patternhub/navigation-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/navigation/patternhub/navigation-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/notification/component/chromium/DBNotification-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - article: 2 | - paragraph: Test -------------------------------------------------------------------------------- /__snapshots__/notification/component/chromium/DBNotification-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/notification/component/chromium/DBNotification-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/notification/component/firefox/DBNotification-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - article: 2 | - paragraph: Test -------------------------------------------------------------------------------- /__snapshots__/notification/component/firefox/DBNotification-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/notification/component/firefox/DBNotification-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/notification/component/mobile-chrome/DBNotification-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - article: 2 | - paragraph: Test -------------------------------------------------------------------------------- /__snapshots__/notification/component/mobile-chrome/DBNotification-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/notification/component/mobile-chrome/DBNotification-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/notification/patternhub/notification-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/notification/patternhub/notification-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/notification/patternhub/notification-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/notification/patternhub/notification-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/notification/patternhub/notification-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/notification/patternhub/notification-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/popover/component/chromium/DBPopover-after-open-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/popover/component/chromium/DBPopover-after-open-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/popover/component/chromium/DBPopover-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - button "Button" -------------------------------------------------------------------------------- /__snapshots__/popover/component/chromium/DBPopover-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/popover/component/chromium/DBPopover-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/popover/component/firefox/DBPopover-after-open-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/popover/component/firefox/DBPopover-after-open-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/popover/component/firefox/DBPopover-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - button "Button" -------------------------------------------------------------------------------- /__snapshots__/popover/component/firefox/DBPopover-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/popover/component/firefox/DBPopover-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/popover/component/mobile-chrome/DBPopover-after-open-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/popover/component/mobile-chrome/DBPopover-after-open-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/popover/component/mobile-chrome/DBPopover-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - button "Button" -------------------------------------------------------------------------------- /__snapshots__/popover/component/mobile-chrome/DBPopover-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/popover/component/mobile-chrome/DBPopover-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/popover/patternhub/popover-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/popover/patternhub/popover-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/popover/patternhub/popover-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/popover/patternhub/popover-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/popover/patternhub/popover-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/popover/patternhub/popover-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/radio/component/chromium/DBRadio-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - radio "Test" 2 | - text: Test -------------------------------------------------------------------------------- /__snapshots__/radio/component/chromium/DBRadio-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/radio/component/chromium/DBRadio-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/radio/component/firefox/DBRadio-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - radio "Test" 2 | - text: Test -------------------------------------------------------------------------------- /__snapshots__/radio/component/firefox/DBRadio-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/radio/component/firefox/DBRadio-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/radio/component/mobile-chrome/DBRadio-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - radio "Test" 2 | - text: Test -------------------------------------------------------------------------------- /__snapshots__/radio/component/mobile-chrome/DBRadio-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/radio/component/mobile-chrome/DBRadio-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/radio/patternhub/radio-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/radio/patternhub/radio-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/radio/patternhub/radio-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/radio/patternhub/radio-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/radio/patternhub/radio-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/radio/patternhub/radio-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/section/patternhub/section-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/section/patternhub/section-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/section/patternhub/section-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/section/patternhub/section-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/section/patternhub/section-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/section/patternhub/section-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/select/component/chromium/DBSelect-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Label 2 | - combobox "Label": 3 | - option "Test1" 4 | - option "Test2" 5 | - text: Label information_circle" / " Description 6 | - status 7 | - text: chevron_down" / " -------------------------------------------------------------------------------- /__snapshots__/select/component/chromium/DBSelect-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/select/component/chromium/DBSelect-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/select/component/firefox/DBSelect-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Label 2 | - combobox "Label": 3 | - option "Test1" 4 | - option "Test2" 5 | - text: Label information_circle" / " Description 6 | - status 7 | - text: chevron_down" / " -------------------------------------------------------------------------------- /__snapshots__/select/component/firefox/DBSelect-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/select/component/firefox/DBSelect-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/select/component/mobile-chrome/DBSelect-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Label 2 | - combobox "Label": 3 | - option "Test1" 4 | - option "Test2" 5 | - text: Label information_circle" / " Description 6 | - status 7 | - text: chevron_down" / " -------------------------------------------------------------------------------- /__snapshots__/select/component/mobile-chrome/DBSelect-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/select/component/mobile-chrome/DBSelect-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/select/patternhub/select-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/select/patternhub/select-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/select/patternhub/select-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/select/patternhub/select-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/select/patternhub/select-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/select/patternhub/select-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/stack/component/chromium/DBStack-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/stack/component/chromium/DBStack-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/stack/component/firefox/DBStack-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/stack/component/firefox/DBStack-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/stack/component/mobile-chrome/DBStack-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/stack/component/mobile-chrome/DBStack-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/stack/patternhub/stack-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/stack/patternhub/stack-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/stack/patternhub/stack-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/stack/patternhub/stack-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/stack/patternhub/stack-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/stack/patternhub/stack-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/switch/component/chromium/DBSwitch-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/switch/component/chromium/DBSwitch-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/switch/component/firefox/DBSwitch-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/switch/component/firefox/DBSwitch-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/switch/component/mobile-chrome/DBSwitch-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/switch/component/mobile-chrome/DBSwitch-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/switch/patternhub/switch-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/switch/patternhub/switch-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/switch/patternhub/switch-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/switch/patternhub/switch-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/switch/patternhub/switch-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/switch/patternhub/switch-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tab-item/patternhub/tab-item-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tab-item/patternhub/tab-item-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tab-item/patternhub/tab-item-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tab-item/patternhub/tab-item-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tab-item/patternhub/tab-item-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tab-item/patternhub/tab-item-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tabs/component/chromium/DBTabs-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - tablist: 2 | - tab "Test 1" [selected] 3 | - text: Test 1 4 | - tab "Test 2" 5 | - text: Test 2 6 | - tab "Test 3" 7 | - text: Test 3 8 | - tabpanel "Test 1": TestPanel 1 -------------------------------------------------------------------------------- /__snapshots__/tabs/component/chromium/DBTabs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tabs/component/chromium/DBTabs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tabs/component/firefox/DBTabs-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - tablist: 2 | - tab "Test 1" [selected] 3 | - text: Test 1 4 | - tab "Test 2" 5 | - text: Test 2 6 | - tab "Test 3" 7 | - text: Test 3 8 | - tabpanel "Test 1": TestPanel 1 -------------------------------------------------------------------------------- /__snapshots__/tabs/component/firefox/DBTabs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tabs/component/firefox/DBTabs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tabs/component/mobile-chrome/DBTabs-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - tablist: 2 | - tab "Test 1" [selected] 3 | - text: Test 1 4 | - tab "Test 2" 5 | - text: Test 2 6 | - tab "Test 3" 7 | - text: Test 3 8 | - tabpanel "Test 1": TestPanel 1 -------------------------------------------------------------------------------- /__snapshots__/tabs/component/mobile-chrome/DBTabs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tabs/component/mobile-chrome/DBTabs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tabs/patternhub/tabs-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tabs/patternhub/tabs-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tabs/patternhub/tabs-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tabs/patternhub/tabs-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tabs/patternhub/tabs-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tabs/patternhub/tabs-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tabs/showcase/chromium/DBTabs-should-match-screenshot-1/DBTabs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tabs/showcase/chromium/DBTabs-should-match-screenshot-1/DBTabs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tabs/showcase/firefox/DBTabs-should-match-screenshot-1/DBTabs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tabs/showcase/firefox/DBTabs-should-match-screenshot-1/DBTabs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tabs/showcase/webkit/DBTabs-should-match-screenshot-1/DBTabs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tabs/showcase/webkit/DBTabs-should-match-screenshot-1/DBTabs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/chromium/DBTag-should-be-a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/chromium/DBTag-should-be-a-button.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/chromium/DBTag-should-be-a-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/chromium/DBTag-should-be-a-checkbox-checked.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/chromium/DBTag-should-be-a-checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/chromium/DBTag-should-be-a-checkbox.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/chromium/DBTag-should-be-a-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/chromium/DBTag-should-be-a-link.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/chromium/DBTag-should-be-a-radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/chromium/DBTag-should-be-a-radio-checked.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/chromium/DBTag-should-be-a-radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/chromium/DBTag-should-be-a-radio.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/chromium/DBTag-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Test -------------------------------------------------------------------------------- /__snapshots__/tag/component/chromium/DBTag-should-match-screenshot-for-semantic-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/chromium/DBTag-should-match-screenshot-for-semantic-critical.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/chromium/DBTag-should-match-screenshot-for-semantic-informational.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/chromium/DBTag-should-match-screenshot-for-semantic-informational.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/chromium/DBTag-should-match-screenshot-for-semantic-successful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/chromium/DBTag-should-match-screenshot-for-semantic-successful.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/chromium/DBTag-should-match-screenshot-for-semantic-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/chromium/DBTag-should-match-screenshot-for-semantic-warning.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/chromium/DBTag-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/chromium/DBTag-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/firefox/DBTag-should-be-a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/firefox/DBTag-should-be-a-button.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/firefox/DBTag-should-be-a-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/firefox/DBTag-should-be-a-checkbox-checked.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/firefox/DBTag-should-be-a-checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/firefox/DBTag-should-be-a-checkbox.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/firefox/DBTag-should-be-a-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/firefox/DBTag-should-be-a-link.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/firefox/DBTag-should-be-a-radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/firefox/DBTag-should-be-a-radio-checked.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/firefox/DBTag-should-be-a-radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/firefox/DBTag-should-be-a-radio.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/firefox/DBTag-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Test -------------------------------------------------------------------------------- /__snapshots__/tag/component/firefox/DBTag-should-match-screenshot-for-semantic-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/firefox/DBTag-should-match-screenshot-for-semantic-critical.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/firefox/DBTag-should-match-screenshot-for-semantic-informational.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/firefox/DBTag-should-match-screenshot-for-semantic-informational.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/firefox/DBTag-should-match-screenshot-for-semantic-successful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/firefox/DBTag-should-match-screenshot-for-semantic-successful.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/firefox/DBTag-should-match-screenshot-for-semantic-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/firefox/DBTag-should-match-screenshot-for-semantic-warning.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/firefox/DBTag-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/firefox/DBTag-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/mobile-chrome/DBTag-should-be-a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/mobile-chrome/DBTag-should-be-a-button.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/mobile-chrome/DBTag-should-be-a-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/mobile-chrome/DBTag-should-be-a-checkbox-checked.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/mobile-chrome/DBTag-should-be-a-checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/mobile-chrome/DBTag-should-be-a-checkbox.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/mobile-chrome/DBTag-should-be-a-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/mobile-chrome/DBTag-should-be-a-link.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/mobile-chrome/DBTag-should-be-a-radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/mobile-chrome/DBTag-should-be-a-radio-checked.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/mobile-chrome/DBTag-should-be-a-radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/mobile-chrome/DBTag-should-be-a-radio.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/mobile-chrome/DBTag-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Test -------------------------------------------------------------------------------- /__snapshots__/tag/component/mobile-chrome/DBTag-should-match-screenshot-for-semantic-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/mobile-chrome/DBTag-should-match-screenshot-for-semantic-critical.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/mobile-chrome/DBTag-should-match-screenshot-for-semantic-informational.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/mobile-chrome/DBTag-should-match-screenshot-for-semantic-informational.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/mobile-chrome/DBTag-should-match-screenshot-for-semantic-successful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/mobile-chrome/DBTag-should-match-screenshot-for-semantic-successful.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/mobile-chrome/DBTag-should-match-screenshot-for-semantic-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/mobile-chrome/DBTag-should-match-screenshot-for-semantic-warning.png -------------------------------------------------------------------------------- /__snapshots__/tag/component/mobile-chrome/DBTag-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/component/mobile-chrome/DBTag-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tag/patternhub/tag-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/patternhub/tag-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tag/patternhub/tag-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/patternhub/tag-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tag/patternhub/tag-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/patternhub/tag-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tag/showcase/chromium/DBTag-should-match-screenshot-1/DBTag-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/showcase/chromium/DBTag-should-match-screenshot-1/DBTag-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tag/showcase/firefox/DBTag-should-match-screenshot-1/DBTag-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/showcase/firefox/DBTag-should-match-screenshot-1/DBTag-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tag/showcase/webkit/DBTag-should-match-screenshot-1/DBTag-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tag/showcase/webkit/DBTag-should-match-screenshot-1/DBTag-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/textarea/component/chromium/DBTextarea-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Label 2 | - textbox "Label": Test 3 | - status -------------------------------------------------------------------------------- /__snapshots__/textarea/component/chromium/DBTextarea-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/textarea/component/chromium/DBTextarea-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/textarea/component/firefox/DBTextarea-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Label 2 | - textbox "Label": Test 3 | - status -------------------------------------------------------------------------------- /__snapshots__/textarea/component/firefox/DBTextarea-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/textarea/component/firefox/DBTextarea-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/textarea/component/mobile-chrome/DBTextarea-should-have-same-aria-snapshot.yaml: -------------------------------------------------------------------------------- 1 | - text: Label 2 | - textbox "Label": Test 3 | - status -------------------------------------------------------------------------------- /__snapshots__/textarea/component/mobile-chrome/DBTextarea-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/textarea/component/mobile-chrome/DBTextarea-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/textarea/patternhub/textarea-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/textarea/patternhub/textarea-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/textarea/patternhub/textarea-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/textarea/patternhub/textarea-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/textarea/patternhub/textarea-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/textarea/patternhub/textarea-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tooltip/component/chromium/DBTooltip-after-open-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tooltip/component/chromium/DBTooltip-after-open-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tooltip/component/chromium/DBTooltip-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tooltip/component/chromium/DBTooltip-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tooltip/component/firefox/DBTooltip-after-open-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tooltip/component/firefox/DBTooltip-after-open-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tooltip/component/firefox/DBTooltip-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tooltip/component/firefox/DBTooltip-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tooltip/component/mobile-chrome/DBTooltip-after-open-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tooltip/component/mobile-chrome/DBTooltip-after-open-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tooltip/component/mobile-chrome/DBTooltip-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tooltip/component/mobile-chrome/DBTooltip-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tooltip/patternhub/tooltip-docs-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tooltip/patternhub/tooltip-docs-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tooltip/patternhub/tooltip-overview-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tooltip/patternhub/tooltip-overview-should-match-screenshot.png -------------------------------------------------------------------------------- /__snapshots__/tooltip/patternhub/tooltip-properties-should-match-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/__snapshots__/tooltip/patternhub/tooltip-properties-should-match-screenshot.png -------------------------------------------------------------------------------- /docs/images/header_image_0.guetzli.2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/docs/images/header_image_0.guetzli.2x.jpg -------------------------------------------------------------------------------- /docs/images/header_image_0.guetzli.3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/docs/images/header_image_0.guetzli.3x.jpg -------------------------------------------------------------------------------- /docs/images/header_image_0.guetzli.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-ux-design-system/core-web/adf09d10db817a2d4919c3459c1c1726613065c5/docs/images/header_image_0.guetzli.jpg -------------------------------------------------------------------------------- /docs/migration/v0.4.x-to-v0.5.x.md: -------------------------------------------------------------------------------- 1 | ## Migration Beta (0.4.x) ➡ Beta (0.5.x) 2 | 3 | No breaking changes 4 | -------------------------------------------------------------------------------- /e2e/.env: -------------------------------------------------------------------------------- 1 | # Rather than use the directory name, let's control the name of the project. 2 | COMPOSE_PROJECT_NAME=db-ux-core-web-e2e 3 | -------------------------------------------------------------------------------- /e2e/docker-compose.components.yml: -------------------------------------------------------------------------------- 1 | services: 2 | playwright: 3 | command: "npm run regenerate:components" 4 | extends: 5 | file: docker-compose.yml 6 | service: playwright 7 | -------------------------------------------------------------------------------- /e2e/docker-compose.foundations.yml: -------------------------------------------------------------------------------- 1 | services: 2 | playwright: 3 | command: "npm run regenerate:foundations" 4 | extends: 5 | file: docker-compose.yml 6 | service: playwright 7 | -------------------------------------------------------------------------------- /e2e/docker-compose.regenerate.yml: -------------------------------------------------------------------------------- 1 | services: 2 | playwright: 3 | command: "npm run regenerate" 4 | extends: 5 | file: docker-compose.yml 6 | service: playwright 7 | -------------------------------------------------------------------------------- /e2e/docker-compose.showcases.yml: -------------------------------------------------------------------------------- 1 | services: 2 | playwright: 3 | command: "npm run regenerate:showcases" 4 | extends: 5 | file: docker-compose.yml 6 | service: playwright 7 | -------------------------------------------------------------------------------- /e2e/docker-compose.start.yml: -------------------------------------------------------------------------------- 1 | services: 2 | playwright: 3 | command: "npm run start" 4 | extends: 5 | file: docker-compose.yml 6 | service: playwright 7 | ports: 8 | - 8080:8080 9 | -------------------------------------------------------------------------------- /output/stencil/stencil.config.ts: -------------------------------------------------------------------------------- 1 | import { Config } from '@stencil/core'; 2 | 3 | export const config: Config = { 4 | namespace: 'DB-UX', 5 | srcDir: 'src', 6 | outputTargets: [ 7 | { 8 | type: 'dist' 9 | } 10 | ] 11 | }; 12 | -------------------------------------------------------------------------------- /packages/README.md: -------------------------------------------------------------------------------- 1 | # `/packages/` Folder 2 | 3 | This folder is the root the deployed packages by this repository. 4 | 5 | There are multiple packages generated out of the `components` folders content, one for each supported framework and the general extension. 6 | -------------------------------------------------------------------------------- /packages/components/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | output/** 3 | -------------------------------------------------------------------------------- /packages/components/_templates/generator/help/index.ejs.t: -------------------------------------------------------------------------------- 1 | --- 2 | message: | 3 | hygen {bold generator new} --name [NAME] --action [ACTION] 4 | hygen {bold generator with-prompt} --name [NAME] --action [ACTION] 5 | --- -------------------------------------------------------------------------------- /packages/components/_templates/init/repo/new-repo.ejs.t: -------------------------------------------------------------------------------- 1 | --- 2 | setup: <%= name %> 3 | force: true # this is because mostly, people init into existing folders is safe 4 | --- 5 | -------------------------------------------------------------------------------- /packages/components/_templates/mitosis/new/component/db-ui-components-wc.ejs.t: -------------------------------------------------------------------------------- 1 | --- 2 | inject: true 3 | to: src/styles/internal/_custom-elements.scss 4 | after: //hygen-insert 5 | --- 6 | db-<%= name %>, 7 | -------------------------------------------------------------------------------- /packages/components/_templates/mitosis/new/component/db-ui-components.ejs.t: -------------------------------------------------------------------------------- 1 | --- 2 | inject: true 3 | to: src/styles/index.scss 4 | append: true 5 | --- 6 | @forward "../components/<%= name %>/<%= name %>"; 7 | -------------------------------------------------------------------------------- /packages/components/_templates/mitosis/new/component/export.ejs.t: -------------------------------------------------------------------------------- 1 | --- 2 | inject: true 3 | to: src/index.ts 4 | append: true 5 | --- 6 | export * from "./components/<%= name %>"; 7 | -------------------------------------------------------------------------------- /packages/components/_templates/mitosis/new/component/index-html.ejs.t: -------------------------------------------------------------------------------- 1 | --- 2 | inject: true 3 | to: index.html 4 | after: