├── .eslintrc.cjs ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_repport.yaml │ └── feature_request.md ├── labeler.yml └── workflows │ ├── build.yaml │ ├── codeql.yml │ ├── labeler.yml │ ├── publish.yaml │ ├── translation.yaml │ └── validate.yml ├── .gitignore ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── dosc └── scaling-mode.md ├── elements ├── formfield.js ├── ignore │ ├── select.js │ ├── switch.js │ └── textfield.js ├── select.js ├── switch.js └── textfield.js ├── hacs.json ├── package.json ├── rollup-plugins └── ignore.js ├── rollup.config.dev.js ├── rollup.config.js ├── src ├── data.ts ├── editor-warnings.ts ├── editor.ts ├── events-praser.ts ├── external │ └── swiperStyles.ts ├── helpers │ ├── action-handler-directive.ts │ ├── process-config-entities.ts │ └── process-editor-entities.ts ├── integrations │ ├── burze_dzis_net.ts │ ├── dwd.ts │ ├── env_canada.ts │ ├── integrations.ts │ ├── meteoalarm.ts │ ├── meteofrance.ts │ ├── nina.ts │ └── weatheralerts.ts ├── localize │ ├── languages │ │ ├── bg.json │ │ ├── ca.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── es.json │ │ ├── et.json │ │ ├── fi.json │ │ ├── fr.json │ │ ├── hr.json │ │ ├── it.json │ │ ├── nl.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── sk.json │ │ └── sv.json │ ├── localize.ts │ └── schema │ │ └── schema.json ├── measure-text.ts ├── meteoalarm-card.ts ├── predefined-cards.ts ├── styles.ts ├── types.ts └── utils.ts ├── tools ├── fix-translations.ts ├── translations-summary.ts └── tsconfig.json ├── tsconfig.json └── yarn.lock /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_repport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/.github/ISSUE_TEMPLATE/bug_repport.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- 1 | translation: 2 | - src/localize/**/* 3 | -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/translation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/.github/workflows/translation.yaml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/README.md -------------------------------------------------------------------------------- /dosc/scaling-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/dosc/scaling-mode.md -------------------------------------------------------------------------------- /elements/formfield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/elements/formfield.js -------------------------------------------------------------------------------- /elements/ignore/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/elements/ignore/select.js -------------------------------------------------------------------------------- /elements/ignore/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/elements/ignore/switch.js -------------------------------------------------------------------------------- /elements/ignore/textfield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/elements/ignore/textfield.js -------------------------------------------------------------------------------- /elements/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/elements/select.js -------------------------------------------------------------------------------- /elements/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/elements/switch.js -------------------------------------------------------------------------------- /elements/textfield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/elements/textfield.js -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/hacs.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/package.json -------------------------------------------------------------------------------- /rollup-plugins/ignore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/rollup-plugins/ignore.js -------------------------------------------------------------------------------- /rollup.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/rollup.config.dev.js -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/data.ts -------------------------------------------------------------------------------- /src/editor-warnings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/editor-warnings.ts -------------------------------------------------------------------------------- /src/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/editor.ts -------------------------------------------------------------------------------- /src/events-praser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/events-praser.ts -------------------------------------------------------------------------------- /src/external/swiperStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/external/swiperStyles.ts -------------------------------------------------------------------------------- /src/helpers/action-handler-directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/helpers/action-handler-directive.ts -------------------------------------------------------------------------------- /src/helpers/process-config-entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/helpers/process-config-entities.ts -------------------------------------------------------------------------------- /src/helpers/process-editor-entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/helpers/process-editor-entities.ts -------------------------------------------------------------------------------- /src/integrations/burze_dzis_net.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/integrations/burze_dzis_net.ts -------------------------------------------------------------------------------- /src/integrations/dwd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/integrations/dwd.ts -------------------------------------------------------------------------------- /src/integrations/env_canada.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/integrations/env_canada.ts -------------------------------------------------------------------------------- /src/integrations/integrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/integrations/integrations.ts -------------------------------------------------------------------------------- /src/integrations/meteoalarm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/integrations/meteoalarm.ts -------------------------------------------------------------------------------- /src/integrations/meteofrance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/integrations/meteofrance.ts -------------------------------------------------------------------------------- /src/integrations/nina.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/integrations/nina.ts -------------------------------------------------------------------------------- /src/integrations/weatheralerts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/integrations/weatheralerts.ts -------------------------------------------------------------------------------- /src/localize/languages/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/languages/bg.json -------------------------------------------------------------------------------- /src/localize/languages/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/languages/ca.json -------------------------------------------------------------------------------- /src/localize/languages/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/languages/cs.json -------------------------------------------------------------------------------- /src/localize/languages/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/languages/de.json -------------------------------------------------------------------------------- /src/localize/languages/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/languages/en.json -------------------------------------------------------------------------------- /src/localize/languages/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/languages/es.json -------------------------------------------------------------------------------- /src/localize/languages/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/languages/et.json -------------------------------------------------------------------------------- /src/localize/languages/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/languages/fi.json -------------------------------------------------------------------------------- /src/localize/languages/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/languages/fr.json -------------------------------------------------------------------------------- /src/localize/languages/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/languages/hr.json -------------------------------------------------------------------------------- /src/localize/languages/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/languages/it.json -------------------------------------------------------------------------------- /src/localize/languages/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/languages/nl.json -------------------------------------------------------------------------------- /src/localize/languages/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/languages/pl.json -------------------------------------------------------------------------------- /src/localize/languages/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/languages/pt.json -------------------------------------------------------------------------------- /src/localize/languages/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/languages/sk.json -------------------------------------------------------------------------------- /src/localize/languages/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/languages/sv.json -------------------------------------------------------------------------------- /src/localize/localize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/localize.ts -------------------------------------------------------------------------------- /src/localize/schema/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/localize/schema/schema.json -------------------------------------------------------------------------------- /src/measure-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/measure-text.ts -------------------------------------------------------------------------------- /src/meteoalarm-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/meteoalarm-card.ts -------------------------------------------------------------------------------- /src/predefined-cards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/predefined-cards.ts -------------------------------------------------------------------------------- /src/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/styles.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tools/fix-translations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/tools/fix-translations.ts -------------------------------------------------------------------------------- /tools/translations-summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/tools/translations-summary.ts -------------------------------------------------------------------------------- /tools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/tools/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBartusek/MeteoalarmCard/HEAD/yarn.lock --------------------------------------------------------------------------------