gitextract_6hobl9xp/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── copilot-instructions.md │ ├── dependabot.yml │ ├── labeler.yml │ ├── release.yml │ └── workflows/ │ ├── autoClose.yml │ ├── build.yml │ ├── label.yml │ ├── release-workflow.yml │ └── validate.yml ├── .gitignore ├── .npmrc ├── .vscode/ │ ├── extensions.json │ └── tasks.json ├── Makefile ├── README.md ├── docs/ │ ├── mkdocs.yml │ ├── scenarios/ │ │ └── .gitkeep │ └── source/ │ ├── chapter/ │ │ ├── configuration/ │ │ │ ├── configuration-overview.md │ │ │ ├── examples.md │ │ │ ├── gui-configuration.md │ │ │ └── index.md │ │ ├── contribution/ │ │ │ └── contribution.md │ │ ├── faq/ │ │ │ └── faq.md │ │ ├── style/ │ │ │ ├── card-mod.md │ │ │ ├── hover.md │ │ │ ├── index.md │ │ │ ├── style.md │ │ │ └── styling-examples.md │ │ └── templating/ │ │ ├── action.md │ │ ├── index.md │ │ └── template.md │ ├── index.md │ └── quick-start.md ├── eslint.config.mjs ├── hacs.json ├── license.txt ├── package.json ├── pyproject.toml ├── rollup.config.mjs ├── src/ │ ├── Card.svelte │ ├── ExpanderCard.svelte │ ├── ExpanderCardEditor.ts │ ├── configtype.ts │ ├── editortype.ts │ ├── helpers/ │ │ ├── compute-card-size.ts │ │ ├── forward-haptic.ts │ │ ├── ha-dialog-styles.ts │ │ ├── promise-timeout.ts │ │ ├── raw-config.ts │ │ ├── style-converter.ts │ │ └── templates.ts │ ├── index.ts │ ├── title-card/ │ │ ├── showTitleCardEditForm.ts │ │ └── titleCardEditForm.ts │ └── types.ts ├── svelte.config.js ├── tests/ │ ├── conftest.py │ ├── doc-image-audit-exclusions.txt │ ├── ha-config/ │ │ ├── configuration.yaml │ │ ├── customize.yaml │ │ └── www/ │ │ └── .gitkeep │ ├── plugins.yaml │ ├── test_doc_audit.py │ └── visual/ │ ├── conftest.py │ ├── scenarios/ │ │ └── expander/ │ │ ├── expander_01_collapsed.yaml │ │ ├── expander_02_expanded.yaml │ │ ├── expander_03_expand_click.yaml │ │ ├── expander_04_clear_background.yaml │ │ ├── expander_05_title_card.yaml │ │ └── expander_06_nested.yaml │ ├── snapshots/ │ │ └── .gitkeep │ ├── test_doc_images.py │ └── test_scenarios.py ├── tsconfig.json └── vite.config.js