├── .devcontainer ├── configuration.yaml ├── devcontainer.json └── ui-lovelace.yaml ├── .eslintrc.js ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .prettierrc.js ├── .vscode ├── extensions.json └── tasks.json ├── LICENSE ├── README.md ├── docs └── imgs │ ├── AddDropdownHelper.gif │ ├── AddToggleHelper.gif │ ├── HacsInstall.gif │ ├── Refresh.gif │ ├── RetainDeviceDefault.gif │ ├── SetUse.gif │ └── default_dashboard_entity.png ├── hacs.json ├── package.json ├── rollup-plugins └── ignore.js ├── rollup.config.js ├── src ├── controller.ts ├── default-dashboard.ts ├── helpers │ ├── hass.ts │ ├── index.ts │ ├── log.ts │ └── storageOptions.ts ├── localize │ ├── languages │ │ └── en.json │ └── localize.ts └── types.ts ├── tsconfig.json └── yarn.lock /.devcontainer/configuration.yaml: -------------------------------------------------------------------------------- 1 | default_config: 2 | lovelace: 3 | mode: yaml 4 | demo: -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/ui-lovelace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/.devcontainer/ui-lovelace.yaml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [daredoes] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /docs/imgs/AddDropdownHelper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/docs/imgs/AddDropdownHelper.gif -------------------------------------------------------------------------------- /docs/imgs/AddToggleHelper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/docs/imgs/AddToggleHelper.gif -------------------------------------------------------------------------------- /docs/imgs/HacsInstall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/docs/imgs/HacsInstall.gif -------------------------------------------------------------------------------- /docs/imgs/Refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/docs/imgs/Refresh.gif -------------------------------------------------------------------------------- /docs/imgs/RetainDeviceDefault.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/docs/imgs/RetainDeviceDefault.gif -------------------------------------------------------------------------------- /docs/imgs/SetUse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/docs/imgs/SetUse.gif -------------------------------------------------------------------------------- /docs/imgs/default_dashboard_entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/docs/imgs/default_dashboard_entity.png -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/hacs.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /rollup-plugins/ignore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/rollup-plugins/ignore.js -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/src/controller.ts -------------------------------------------------------------------------------- /src/default-dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/src/default-dashboard.ts -------------------------------------------------------------------------------- /src/helpers/hass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/src/helpers/hass.ts -------------------------------------------------------------------------------- /src/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/src/helpers/index.ts -------------------------------------------------------------------------------- /src/helpers/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/src/helpers/log.ts -------------------------------------------------------------------------------- /src/helpers/storageOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/src/helpers/storageOptions.ts -------------------------------------------------------------------------------- /src/localize/languages/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/src/localize/languages/en.json -------------------------------------------------------------------------------- /src/localize/localize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/src/localize/localize.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daredoes/default-dashboard/HEAD/yarn.lock --------------------------------------------------------------------------------