├── .devcontainer └── devcontainer.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── copilot-instructions.md ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── .prettierrc.yaml ├── .vscode ├── launch.json └── tasks.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── includes │ └── chlog.md ├── mkdocs.yml ├── overrides │ └── main.html ├── requirements.txt └── source │ ├── advanced │ ├── aspect-ratio.md │ ├── config-templates.md │ ├── custom-fields.md │ ├── js-templates.md │ ├── layout.md │ ├── ripple.md │ ├── section-views.md │ ├── spinner.md │ └── styling.md │ ├── changelog.md │ ├── community │ ├── contribute.md │ └── links.md │ ├── config │ ├── actions.md │ ├── lock.md │ ├── main.md │ ├── state.md │ └── tooltip.md │ ├── examples │ ├── animations.md │ ├── basic.md │ ├── js-templates.md │ ├── sizing.md │ ├── state.md │ └── styling.md │ ├── images │ ├── ac.png │ ├── all.gif │ ├── apple_style.gif │ ├── aspect_ratio.png │ ├── blink-animation.gif │ ├── browser-mod-nested-templates-example.gif │ ├── button-card-elements.png │ ├── button-card-grid-layout-example-with-callouts.png │ ├── color-variable.gif │ ├── color.gif │ ├── cube.png │ ├── custom-card.png │ ├── custom_fields_1.gif │ ├── custom_fields_2.png │ ├── custom_fields_card.png │ ├── labels.png │ ├── layout.png │ ├── lock.gif │ ├── loop_background.gif │ ├── no_icon.png │ ├── per-style-config.gif │ ├── scenes.png │ ├── section_mode.png │ ├── sofa.png │ ├── spinner.png │ ├── volume.png │ └── width_height.png │ ├── index.md │ ├── installation.md │ └── js │ └── tablesort.js ├── eslint.config.cjs ├── examples └── all.gif ├── hacs.json ├── info.md ├── package.json ├── release.config.cjs ├── rollup.config.js ├── src ├── action-handler.ts ├── button-card.ts ├── common │ ├── compute_state_display.ts │ ├── const.ts │ ├── create-thing.ts │ ├── duration.ts │ ├── fire-event.ts │ ├── format_date.ts │ ├── format_date_time.ts │ ├── format_number.ts │ ├── format_time.ts │ ├── parse-duration.ts │ ├── state_color.ts │ ├── supports-features.ts │ ├── timer.ts │ └── update.ts ├── deep-equal.ts ├── forward-haptic.ts ├── handle-action.ts ├── helpers.ts ├── styles.ts └── types │ ├── homeassistant.ts │ ├── lovelace.ts │ ├── translation.ts │ └── types.ts ├── test ├── .env ├── button-card-templates.yaml ├── configuration.yaml ├── decluttering-templates.yaml ├── lovelace │ ├── 01_main.yaml │ ├── 02_actions.yaml │ ├── 03_ripples.yaml │ ├── 04_tooltips.yaml │ ├── 05_js_templates.yaml │ ├── 06_grid.yaml │ ├── 07_styling.yaml │ ├── 08_layouts.yaml │ ├── 09_custom_fields.yaml │ ├── 20_decluttering.yaml │ ├── 30_stuff_1.yaml │ ├── 31_stuff_2.yaml │ └── 32_stuff_3.yaml ├── ui-lovelace.yaml └── www │ ├── cast.jpg │ ├── click.wav │ └── media-source │ └── click2.wav ├── tsconfig.json └── yarn.lock /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .devcontainer/www/** binary 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/README.md -------------------------------------------------------------------------------- /docs/includes/chlog.md: -------------------------------------------------------------------------------- 1 | ../../CHANGELOG.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/overrides/main.html -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | mkdocs-material==9.6.22 2 | mike==2.1.3 -------------------------------------------------------------------------------- /docs/source/advanced/aspect-ratio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/advanced/aspect-ratio.md -------------------------------------------------------------------------------- /docs/source/advanced/config-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/advanced/config-templates.md -------------------------------------------------------------------------------- /docs/source/advanced/custom-fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/advanced/custom-fields.md -------------------------------------------------------------------------------- /docs/source/advanced/js-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/advanced/js-templates.md -------------------------------------------------------------------------------- /docs/source/advanced/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/advanced/layout.md -------------------------------------------------------------------------------- /docs/source/advanced/ripple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/advanced/ripple.md -------------------------------------------------------------------------------- /docs/source/advanced/section-views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/advanced/section-views.md -------------------------------------------------------------------------------- /docs/source/advanced/spinner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/advanced/spinner.md -------------------------------------------------------------------------------- /docs/source/advanced/styling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/advanced/styling.md -------------------------------------------------------------------------------- /docs/source/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/changelog.md -------------------------------------------------------------------------------- /docs/source/community/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/community/contribute.md -------------------------------------------------------------------------------- /docs/source/community/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/community/links.md -------------------------------------------------------------------------------- /docs/source/config/actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/config/actions.md -------------------------------------------------------------------------------- /docs/source/config/lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/config/lock.md -------------------------------------------------------------------------------- /docs/source/config/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/config/main.md -------------------------------------------------------------------------------- /docs/source/config/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/config/state.md -------------------------------------------------------------------------------- /docs/source/config/tooltip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/config/tooltip.md -------------------------------------------------------------------------------- /docs/source/examples/animations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/examples/animations.md -------------------------------------------------------------------------------- /docs/source/examples/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/examples/basic.md -------------------------------------------------------------------------------- /docs/source/examples/js-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/examples/js-templates.md -------------------------------------------------------------------------------- /docs/source/examples/sizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/examples/sizing.md -------------------------------------------------------------------------------- /docs/source/examples/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/examples/state.md -------------------------------------------------------------------------------- /docs/source/examples/styling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/examples/styling.md -------------------------------------------------------------------------------- /docs/source/images/ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/ac.png -------------------------------------------------------------------------------- /docs/source/images/all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/all.gif -------------------------------------------------------------------------------- /docs/source/images/apple_style.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/apple_style.gif -------------------------------------------------------------------------------- /docs/source/images/aspect_ratio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/aspect_ratio.png -------------------------------------------------------------------------------- /docs/source/images/blink-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/blink-animation.gif -------------------------------------------------------------------------------- /docs/source/images/browser-mod-nested-templates-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/browser-mod-nested-templates-example.gif -------------------------------------------------------------------------------- /docs/source/images/button-card-elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/button-card-elements.png -------------------------------------------------------------------------------- /docs/source/images/button-card-grid-layout-example-with-callouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/button-card-grid-layout-example-with-callouts.png -------------------------------------------------------------------------------- /docs/source/images/color-variable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/color-variable.gif -------------------------------------------------------------------------------- /docs/source/images/color.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/color.gif -------------------------------------------------------------------------------- /docs/source/images/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/cube.png -------------------------------------------------------------------------------- /docs/source/images/custom-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/custom-card.png -------------------------------------------------------------------------------- /docs/source/images/custom_fields_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/custom_fields_1.gif -------------------------------------------------------------------------------- /docs/source/images/custom_fields_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/custom_fields_2.png -------------------------------------------------------------------------------- /docs/source/images/custom_fields_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/custom_fields_card.png -------------------------------------------------------------------------------- /docs/source/images/labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/labels.png -------------------------------------------------------------------------------- /docs/source/images/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/layout.png -------------------------------------------------------------------------------- /docs/source/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/lock.gif -------------------------------------------------------------------------------- /docs/source/images/loop_background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/loop_background.gif -------------------------------------------------------------------------------- /docs/source/images/no_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/no_icon.png -------------------------------------------------------------------------------- /docs/source/images/per-style-config.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/per-style-config.gif -------------------------------------------------------------------------------- /docs/source/images/scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/scenes.png -------------------------------------------------------------------------------- /docs/source/images/section_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/section_mode.png -------------------------------------------------------------------------------- /docs/source/images/sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/sofa.png -------------------------------------------------------------------------------- /docs/source/images/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/spinner.png -------------------------------------------------------------------------------- /docs/source/images/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/volume.png -------------------------------------------------------------------------------- /docs/source/images/width_height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/images/width_height.png -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /docs/source/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/installation.md -------------------------------------------------------------------------------- /docs/source/js/tablesort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/docs/source/js/tablesort.js -------------------------------------------------------------------------------- /eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/eslint.config.cjs -------------------------------------------------------------------------------- /examples/all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/examples/all.gif -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/hacs.json -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/info.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/package.json -------------------------------------------------------------------------------- /release.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/release.config.cjs -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/action-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/action-handler.ts -------------------------------------------------------------------------------- /src/button-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/button-card.ts -------------------------------------------------------------------------------- /src/common/compute_state_display.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/common/compute_state_display.ts -------------------------------------------------------------------------------- /src/common/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/common/const.ts -------------------------------------------------------------------------------- /src/common/create-thing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/common/create-thing.ts -------------------------------------------------------------------------------- /src/common/duration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/common/duration.ts -------------------------------------------------------------------------------- /src/common/fire-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/common/fire-event.ts -------------------------------------------------------------------------------- /src/common/format_date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/common/format_date.ts -------------------------------------------------------------------------------- /src/common/format_date_time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/common/format_date_time.ts -------------------------------------------------------------------------------- /src/common/format_number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/common/format_number.ts -------------------------------------------------------------------------------- /src/common/format_time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/common/format_time.ts -------------------------------------------------------------------------------- /src/common/parse-duration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/common/parse-duration.ts -------------------------------------------------------------------------------- /src/common/state_color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/common/state_color.ts -------------------------------------------------------------------------------- /src/common/supports-features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/common/supports-features.ts -------------------------------------------------------------------------------- /src/common/timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/common/timer.ts -------------------------------------------------------------------------------- /src/common/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/common/update.ts -------------------------------------------------------------------------------- /src/deep-equal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/deep-equal.ts -------------------------------------------------------------------------------- /src/forward-haptic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/forward-haptic.ts -------------------------------------------------------------------------------- /src/handle-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/handle-action.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/styles.ts -------------------------------------------------------------------------------- /src/types/homeassistant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/types/homeassistant.ts -------------------------------------------------------------------------------- /src/types/lovelace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/types/lovelace.ts -------------------------------------------------------------------------------- /src/types/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/types/translation.ts -------------------------------------------------------------------------------- /src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/src/types/types.ts -------------------------------------------------------------------------------- /test/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/.env -------------------------------------------------------------------------------- /test/button-card-templates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/button-card-templates.yaml -------------------------------------------------------------------------------- /test/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/configuration.yaml -------------------------------------------------------------------------------- /test/decluttering-templates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/decluttering-templates.yaml -------------------------------------------------------------------------------- /test/lovelace/01_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/lovelace/01_main.yaml -------------------------------------------------------------------------------- /test/lovelace/02_actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/lovelace/02_actions.yaml -------------------------------------------------------------------------------- /test/lovelace/03_ripples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/lovelace/03_ripples.yaml -------------------------------------------------------------------------------- /test/lovelace/04_tooltips.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/lovelace/04_tooltips.yaml -------------------------------------------------------------------------------- /test/lovelace/05_js_templates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/lovelace/05_js_templates.yaml -------------------------------------------------------------------------------- /test/lovelace/06_grid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/lovelace/06_grid.yaml -------------------------------------------------------------------------------- /test/lovelace/07_styling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/lovelace/07_styling.yaml -------------------------------------------------------------------------------- /test/lovelace/08_layouts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/lovelace/08_layouts.yaml -------------------------------------------------------------------------------- /test/lovelace/09_custom_fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/lovelace/09_custom_fields.yaml -------------------------------------------------------------------------------- /test/lovelace/20_decluttering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/lovelace/20_decluttering.yaml -------------------------------------------------------------------------------- /test/lovelace/30_stuff_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/lovelace/30_stuff_1.yaml -------------------------------------------------------------------------------- /test/lovelace/31_stuff_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/lovelace/31_stuff_2.yaml -------------------------------------------------------------------------------- /test/lovelace/32_stuff_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/lovelace/32_stuff_3.yaml -------------------------------------------------------------------------------- /test/ui-lovelace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/ui-lovelace.yaml -------------------------------------------------------------------------------- /test/www/cast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/www/cast.jpg -------------------------------------------------------------------------------- /test/www/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/www/click.wav -------------------------------------------------------------------------------- /test/www/media-source/click2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/test/www/media-source/click2.wav -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/button-card/HEAD/yarn.lock --------------------------------------------------------------------------------