├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .firebaserc ├── .github └── workflows │ ├── firebase-hosting-merge.yml │ └── firebase-hosting-pull-request.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── 00_Websocket ├── 00_websocket.pm ├── 10_websocket_fhem.pm └── 10_websocket_json.pm ├── README.md ├── README_EN.md ├── apps ├── .gitkeep ├── fhem-native-desktop │ ├── .browserslistrc │ ├── .eslintrc.json │ ├── .gitignore │ ├── capacitor.config.ts │ ├── electron │ │ ├── .gitignore │ │ ├── assets │ │ │ ├── appIcon.ico │ │ │ └── appIcon.png │ │ ├── capacitor.config.ts │ │ ├── electron-builder.config.json │ │ ├── live-runner.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── resources │ │ │ └── electron-publisher-custom.js │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── preload.ts │ │ │ ├── rt │ │ │ │ ├── electron-plugins.js │ │ │ │ └── electron-rt.ts │ │ │ └── setup.ts │ │ └── tsconfig.json │ ├── jest.config.ts │ ├── package-lock.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── modules │ │ │ │ ├── routing.module.ts │ │ │ │ ├── service.module.ts │ │ │ │ └── translator.module.ts │ │ │ └── pages │ │ │ │ └── settings │ │ │ │ ├── settings.page.html │ │ │ │ ├── settings.page.scss │ │ │ │ └── settings.page.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── icon │ │ │ │ └── favicon.png │ │ │ └── shapes.svg │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── test-setup.ts │ │ └── theme │ │ │ └── variables.scss │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── fhem-native-docs-e2e │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── project.json │ ├── src │ │ ├── e2e │ │ │ └── app.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── e2e.ts │ └── tsconfig.json ├── fhem-native-docs │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── components │ │ │ │ ├── comp-dependencies │ │ │ │ │ ├── comp-dependencies.component.scss │ │ │ │ │ └── comp-dependencies.component.ts │ │ │ │ ├── comp-inputs │ │ │ │ │ ├── comp-inputs.component.html │ │ │ │ │ ├── comp-inputs.component.scss │ │ │ │ │ └── comp-inputs.component.ts │ │ │ │ ├── overview │ │ │ │ │ ├── overview.component.html │ │ │ │ │ ├── overview.component.scss │ │ │ │ │ └── overview.component.ts │ │ │ │ └── skeletton-doc │ │ │ │ │ ├── skeletton-doc.component.html │ │ │ │ │ ├── skeletton-doc.component.scss │ │ │ │ │ └── skeletton-doc.component.ts │ │ │ ├── comps │ │ │ │ ├── comp │ │ │ │ │ ├── comp.page.html │ │ │ │ │ ├── comp.page.scss │ │ │ │ │ ├── comp.page.ts │ │ │ │ │ ├── comp.service.ts │ │ │ │ │ └── sandbox-components.ts │ │ │ │ ├── comps.page.html │ │ │ │ ├── comps.page.scss │ │ │ │ └── comps.page.ts │ │ │ ├── configConverter │ │ │ │ ├── configConverter.page.html │ │ │ │ ├── configConverter.page.scss │ │ │ │ └── configConverter.page.ts │ │ │ ├── docs │ │ │ │ ├── doc │ │ │ │ │ ├── doc.page.html │ │ │ │ │ ├── doc.page.scss │ │ │ │ │ ├── doc.page.ts │ │ │ │ │ └── doc.service.ts │ │ │ │ ├── docs.page.html │ │ │ │ ├── docs.page.scss │ │ │ │ └── docs.page.ts │ │ │ ├── guides │ │ │ │ ├── guide │ │ │ │ │ ├── guide.page.html │ │ │ │ │ ├── guide.page.scss │ │ │ │ │ ├── guide.page.ts │ │ │ │ │ └── guide.service.ts │ │ │ │ ├── guides.page.html │ │ │ │ ├── guides.page.scss │ │ │ │ └── guides.page.ts │ │ │ ├── home │ │ │ │ ├── home.page.html │ │ │ │ ├── home.page.scss │ │ │ │ └── home.page.ts │ │ │ ├── icons │ │ │ │ ├── icons.page.scss │ │ │ │ └── icons.page.ts │ │ │ ├── playground │ │ │ │ ├── playground.page.html │ │ │ │ ├── playground.page.scss │ │ │ │ └── playground.page.ts │ │ │ ├── rights │ │ │ │ ├── imprint.component.ts │ │ │ │ ├── privacy.component.ts │ │ │ │ ├── rights-routes.ts │ │ │ │ ├── rights-styles.scss │ │ │ │ ├── terms.component.ts │ │ │ │ └── usage.component.ts │ │ │ └── shared │ │ │ │ ├── app-config.ts │ │ │ │ ├── service.module.ts │ │ │ │ ├── services │ │ │ │ └── webSettings.service.ts │ │ │ │ └── translator.module.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── i18n │ │ │ │ └── de │ │ │ │ │ ├── docs │ │ │ │ │ ├── developer.yaml │ │ │ │ │ ├── external.yaml │ │ │ │ │ ├── install.yaml │ │ │ │ │ ├── secure.yaml │ │ │ │ │ └── shortcuts.yaml │ │ │ │ │ └── guides │ │ │ │ │ └── create.yaml │ │ │ └── img │ │ │ │ ├── connection-profile.png │ │ │ │ ├── developer-guide │ │ │ │ ├── component-inputs-arr_data-example.png │ │ │ │ ├── component-inputs-arr_data.png │ │ │ │ ├── component-inputs-arr_icon-example.png │ │ │ │ ├── component-inputs-arr_icon.png │ │ │ │ ├── component-inputs-arr_style-example.png │ │ │ │ ├── component-inputs-arr_style.png │ │ │ │ ├── component-inputs-arr_style_grad-example.png │ │ │ │ ├── component-inputs-arr_style_grad.png │ │ │ │ ├── component-inputs-bool-example.png │ │ │ │ ├── component-inputs-bool.png │ │ │ │ ├── component-inputs-data-example.png │ │ │ │ ├── component-inputs-data.png │ │ │ │ ├── component-inputs-icon-example.png │ │ │ │ ├── component-inputs-icon.png │ │ │ │ ├── component-inputs-style-example.png │ │ │ │ ├── component-inputs-style.png │ │ │ │ ├── component-settings-reference.png │ │ │ │ └── main-settings.png │ │ │ │ ├── favicon.png │ │ │ │ └── home │ │ │ │ ├── intro1.png │ │ │ │ ├── intro2.png │ │ │ │ └── intro3.png │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── styles.scss │ │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── fhem-native-e2e │ ├── .eslintrc.json │ ├── cypress.json │ ├── project.json │ ├── src │ │ ├── fixtures │ │ │ └── example.json │ │ ├── integration │ │ │ └── app.spec.ts │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── index.ts │ └── tsconfig.json ├── fhem-native │ ├── .browserslistrc │ ├── .eslintrc.json │ ├── .gitignore │ ├── capacitor.config.ts │ ├── ionic.config.json │ ├── jest.config.ts │ ├── package-lock.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── modules │ │ │ │ ├── routing.module.ts │ │ │ │ ├── service.module.ts │ │ │ │ └── translator.module.ts │ │ │ └── pages │ │ │ │ └── settings │ │ │ │ ├── settings.page.html │ │ │ │ ├── settings.page.scss │ │ │ │ └── settings.page.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── icon │ │ │ │ └── favicon.png │ │ │ ├── img │ │ │ │ └── icon.png │ │ │ └── shapes.svg │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── test-setup.ts │ │ └── theme │ │ │ └── variables.scss │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json └── legacy │ ├── .gitignore │ ├── CHANGELOG.json │ ├── DEVICE_SIZE_LIST.json │ ├── LICENSE │ ├── README.md │ ├── README_EN.md │ ├── angular.json │ ├── electron-builder.json │ ├── electron-main.ts │ ├── ionic.config.json │ ├── package.json │ ├── projects │ ├── fhem-native-core │ │ ├── assets │ │ │ ├── i18n │ │ │ │ ├── de.json │ │ │ │ └── en.json │ │ │ ├── img │ │ │ │ ├── default-image.png │ │ │ │ └── default-music.png │ │ │ └── sounds │ │ │ │ ├── 1.mp3 │ │ │ │ ├── 2.mp3 │ │ │ │ ├── 3.mp3 │ │ │ │ └── 4.mp3 │ │ └── src │ │ │ ├── animations │ │ │ └── animations.ts │ │ │ ├── components │ │ │ ├── context-menu │ │ │ │ ├── context-menu.component.html │ │ │ │ ├── context-menu.component.scss │ │ │ │ └── context-menu.component.ts │ │ │ ├── create-edit-component │ │ │ │ ├── create-edit-component.component.html │ │ │ │ ├── create-edit-component.component.scss │ │ │ │ └── create-edit-component.component.ts │ │ │ ├── create-edit-room │ │ │ │ ├── create-edit-room.component.html │ │ │ │ ├── create-edit-room.component.scss │ │ │ │ └── create-edit-room.component.ts │ │ │ ├── edit-button │ │ │ │ ├── edit-button.component.html │ │ │ │ ├── edit-button.component.scss │ │ │ │ └── edit-button.component.ts │ │ │ ├── fhem-component-container │ │ │ │ ├── fhem-component-container.component.html │ │ │ │ ├── fhem-component-container.component.scss │ │ │ │ └── fhem-component-container.component.ts │ │ │ ├── fhem-components │ │ │ │ ├── fhem-box │ │ │ │ │ ├── fhem-box.component.html │ │ │ │ │ ├── fhem-box.component.scss │ │ │ │ │ └── fhem-box.component.ts │ │ │ │ ├── fhem-button-menu │ │ │ │ │ ├── fhem-button-menu.component.html │ │ │ │ │ └── fhem-button-menu.component.ts │ │ │ │ ├── fhem-button-multistate │ │ │ │ │ ├── fhem-button-multistate.component.html │ │ │ │ │ └── fhem-button-multistate.component.ts │ │ │ │ ├── fhem-button │ │ │ │ │ ├── fhem-button.component.html │ │ │ │ │ ├── fhem-button.component.scss │ │ │ │ │ └── fhem-button.component.ts │ │ │ │ ├── fhem-chart │ │ │ │ │ ├── fhem-chart.component.html │ │ │ │ │ ├── fhem-chart.component.scss │ │ │ │ │ ├── fhem-chart.component.ts │ │ │ │ │ └── fhem-chart.service.ts │ │ │ │ ├── fhem-circle-menu │ │ │ │ │ ├── fhem-circle-menu.component.html │ │ │ │ │ ├── fhem-circle-menu.component.scss │ │ │ │ │ └── fhem-circle-menu.component.ts │ │ │ │ ├── fhem-circle-slider │ │ │ │ │ ├── fhem-circle-slider.component.html │ │ │ │ │ ├── fhem-circle-slider.component.scss │ │ │ │ │ └── fhem-circle-slider.component.ts │ │ │ │ ├── fhem-clock │ │ │ │ │ ├── fhem-clock.component.html │ │ │ │ │ ├── fhem-clock.component.scss │ │ │ │ │ └── fhem-clock.component.ts │ │ │ │ ├── fhem-color-picker │ │ │ │ │ ├── fhem-color-picker.component.html │ │ │ │ │ ├── fhem-color-picker.component.scss │ │ │ │ │ └── fhem-color-picker.component.ts │ │ │ │ ├── fhem-component.module.ts │ │ │ │ ├── fhem-html │ │ │ │ │ ├── fhem-html.component.html │ │ │ │ │ ├── fhem-html.component.scss │ │ │ │ │ └── fhem-html.component.ts │ │ │ │ ├── fhem-icon │ │ │ │ │ ├── fhem-icon.component.html │ │ │ │ │ ├── fhem-icon.component.scss │ │ │ │ │ └── fhem-icon.component.ts │ │ │ │ ├── fhem-iframe │ │ │ │ │ ├── fhem-iframe.component.html │ │ │ │ │ ├── fhem-iframe.component.scss │ │ │ │ │ └── fhem-iframe.component.ts │ │ │ │ ├── fhem-image │ │ │ │ │ ├── fhem-image.component.html │ │ │ │ │ ├── fhem-image.component.scss │ │ │ │ │ └── fhem-image.component.ts │ │ │ │ ├── fhem-input │ │ │ │ │ ├── fhem-input.component.html │ │ │ │ │ ├── fhem-input.component.scss │ │ │ │ │ └── fhem-input.component.ts │ │ │ │ ├── fhem-label │ │ │ │ │ ├── fhem-label.component.html │ │ │ │ │ ├── fhem-label.component.scss │ │ │ │ │ └── fhem-label.component.ts │ │ │ │ ├── fhem-line │ │ │ │ │ ├── fhem-line.component.html │ │ │ │ │ ├── fhem-line.component.scss │ │ │ │ │ └── fhem-line.component.ts │ │ │ │ ├── fhem-medialist │ │ │ │ │ ├── fhem-medialist.component.html │ │ │ │ │ ├── fhem-medialist.component.scss │ │ │ │ │ └── fhem-medialist.component.ts │ │ │ │ ├── fhem-picker │ │ │ │ │ ├── fhem-picker.component.html │ │ │ │ │ ├── fhem-picker.component.scss │ │ │ │ │ └── fhem-picker.component.ts │ │ │ │ ├── fhem-pinpad │ │ │ │ │ ├── fhem-pinpad.component.html │ │ │ │ │ ├── fhem-pinpad.component.scss │ │ │ │ │ └── fhem-pinpad.component.ts │ │ │ │ ├── fhem-popup │ │ │ │ │ ├── fhem-popup.component.html │ │ │ │ │ ├── fhem-popup.component.scss │ │ │ │ │ └── fhem-popup.component.ts │ │ │ │ ├── fhem-select │ │ │ │ │ ├── fhem-select.component.html │ │ │ │ │ ├── fhem-select.component.scss │ │ │ │ │ └── fhem-select.component.ts │ │ │ │ ├── fhem-slider │ │ │ │ │ ├── fhem-slider.component.html │ │ │ │ │ ├── fhem-slider.component.scss │ │ │ │ │ └── fhem-slider.component.ts │ │ │ │ ├── fhem-sprinkler │ │ │ │ │ ├── fhem-sprinkler.component.html │ │ │ │ │ ├── fhem-sprinkler.component.scss │ │ │ │ │ ├── fhem-sprinkler.component.ts │ │ │ │ │ ├── sprinkler-colors │ │ │ │ │ │ ├── sprinkler-colors.component.html │ │ │ │ │ │ ├── sprinkler-colors.component.scss │ │ │ │ │ │ └── sprinkler-colors.component.ts │ │ │ │ │ ├── sprinkler-config │ │ │ │ │ │ ├── sprinkler-config.component.html │ │ │ │ │ │ ├── sprinkler-config.component.scss │ │ │ │ │ │ └── sprinkler-config.component.ts │ │ │ │ │ ├── sprinkler-settings │ │ │ │ │ │ ├── sprinkler-settings.component.html │ │ │ │ │ │ ├── sprinkler-settings.component.scss │ │ │ │ │ │ └── sprinkler-settings.component.ts │ │ │ │ │ ├── sprinkler-smart │ │ │ │ │ │ ├── sprinkler-smart.component.html │ │ │ │ │ │ ├── sprinkler-smart.component.scss │ │ │ │ │ │ └── sprinkler-smart.component.ts │ │ │ │ │ ├── sprinkler-timeline │ │ │ │ │ │ ├── sprinkler-timeline.component.html │ │ │ │ │ │ ├── sprinkler-timeline.component.scss │ │ │ │ │ │ └── sprinkler-timeline.component.ts │ │ │ │ │ ├── sprinkler-weather │ │ │ │ │ │ ├── sprinkler-weather.component.html │ │ │ │ │ │ ├── sprinkler-weather.component.scss │ │ │ │ │ │ └── sprinkler-weather.component.ts │ │ │ │ │ └── sprinkler-winter │ │ │ │ │ │ ├── sprinkler-winter.component.html │ │ │ │ │ │ ├── sprinkler-winter.component.scss │ │ │ │ │ │ └── sprinkler-winter.component.ts │ │ │ │ ├── fhem-swiper │ │ │ │ │ ├── fhem-swiper.component.html │ │ │ │ │ ├── fhem-swiper.component.scss │ │ │ │ │ └── fhem-swiper.component.ts │ │ │ │ ├── fhem-switch │ │ │ │ │ ├── fhem-switch.component.html │ │ │ │ │ ├── fhem-switch.component.scss │ │ │ │ │ └── fhem-switch.component.ts │ │ │ │ ├── fhem-table │ │ │ │ │ ├── fhem-table.component.html │ │ │ │ │ ├── fhem-table.component.scss │ │ │ │ │ └── fhem-table.component.ts │ │ │ │ ├── fhem-tabs │ │ │ │ │ ├── fhem-tabs.component.html │ │ │ │ │ ├── fhem-tabs.component.scss │ │ │ │ │ └── fhem-tabs.component.ts │ │ │ │ ├── fhem-thermostat │ │ │ │ │ ├── fhem-thermostat.component.html │ │ │ │ │ ├── fhem-thermostat.component.scss │ │ │ │ │ └── fhem-thermostat.component.ts │ │ │ │ ├── fhem-timepicker │ │ │ │ │ ├── fhem-timepicker.component.html │ │ │ │ │ ├── fhem-timepicker.component.scss │ │ │ │ │ └── fhem-timepicker.component.ts │ │ │ │ └── fhem-weather │ │ │ │ │ ├── fhem-weather.component.html │ │ │ │ │ └── fhem-weather.component.ts │ │ │ ├── fhem-menu │ │ │ │ ├── fhem-menu.component.html │ │ │ │ ├── fhem-menu.component.scss │ │ │ │ └── fhem-menu.component.ts │ │ │ ├── grid │ │ │ │ ├── grid.component.html │ │ │ │ ├── grid.component.scss │ │ │ │ └── grid.component.ts │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.scss │ │ │ │ └── icon.component.ts │ │ │ ├── loader │ │ │ │ ├── loader.component.html │ │ │ │ ├── loader.component.scss │ │ │ │ └── loader.component.ts │ │ │ ├── menu-button-container │ │ │ │ ├── menu-button-container.component.html │ │ │ │ ├── menu-button-container.component.scss │ │ │ │ └── menu-button-container.component.ts │ │ │ ├── picker │ │ │ │ ├── picker.component.html │ │ │ │ ├── picker.component.scss │ │ │ │ └── picker.component.ts │ │ │ ├── popover │ │ │ │ ├── popover.component.html │ │ │ │ ├── popover.component.scss │ │ │ │ └── popover.component.ts │ │ │ ├── room │ │ │ │ ├── header │ │ │ │ │ ├── header.component.html │ │ │ │ │ ├── header.component.scss │ │ │ │ │ └── header.component.ts │ │ │ │ ├── room.component.html │ │ │ │ ├── room.component.scss │ │ │ │ └── room.component.ts │ │ │ ├── select │ │ │ │ ├── select.component.html │ │ │ │ ├── select.component.scss │ │ │ │ └── select.component.ts │ │ │ ├── settings │ │ │ │ ├── core-settings.component.html │ │ │ │ ├── core-settings.component.scss │ │ │ │ └── core-settings.component.ts │ │ │ ├── side-menu │ │ │ │ ├── animations.ts │ │ │ │ ├── side-menu.component.html │ │ │ │ ├── side-menu.component.scss │ │ │ │ └── side-menu.component.ts │ │ │ ├── switch │ │ │ │ ├── switch.component.html │ │ │ │ ├── switch.component.scss │ │ │ │ └── switch.component.ts │ │ │ ├── tasks │ │ │ │ ├── tasks.component.html │ │ │ │ ├── tasks.component.scss │ │ │ │ └── tasks.component.ts │ │ │ ├── timepicker │ │ │ │ ├── timepicker.component.html │ │ │ │ ├── timepicker.component.scss │ │ │ │ └── timepicker.component.ts │ │ │ └── variables │ │ │ │ ├── variables.component.html │ │ │ │ ├── variables.component.scss │ │ │ │ └── variables.component.ts │ │ │ ├── directives │ │ │ ├── clicker.directive.ts │ │ │ ├── grouper.directive.ts │ │ │ ├── news-slide.directive.ts │ │ │ ├── ngIfOnce.directive.ts │ │ │ ├── outside-click.directive.ts │ │ │ ├── room-color.directive.ts │ │ │ ├── transformations │ │ │ │ ├── mover.directive.ts │ │ │ │ ├── resizer.directive.ts │ │ │ │ ├── rotator.directive.ts │ │ │ │ ├── transformation-handler.directive.ts │ │ │ │ └── transformations.module.ts │ │ │ └── trim.directive.ts │ │ │ ├── interfaces │ │ │ └── interfaces.type.ts │ │ │ ├── router │ │ │ └── routing.module.ts │ │ │ ├── services │ │ │ ├── back-button.service.ts │ │ │ ├── component-loader.service.ts │ │ │ ├── event-handler.service.ts │ │ │ ├── fhem.service.ts │ │ │ ├── hotkey.service.ts │ │ │ ├── logger │ │ │ │ ├── logger.module.ts │ │ │ │ └── logger.service.ts │ │ │ ├── native-functions.service.ts │ │ │ ├── select-component.service.ts │ │ │ ├── settings.service.ts │ │ │ ├── storage.service.ts │ │ │ ├── structure.service.ts │ │ │ ├── task.service.ts │ │ │ ├── theme │ │ │ │ ├── theme.service.ts │ │ │ │ └── themes.ts │ │ │ ├── time.service.ts │ │ │ ├── toast.service.ts │ │ │ ├── undo-redo.service.ts │ │ │ └── variable.service.ts │ │ │ ├── styles.scss │ │ │ └── variables.scss │ ├── fhem-native-desktop │ │ ├── karma.conf.js │ │ ├── resources │ │ │ └── icon.png │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.scss │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── components │ │ │ │ │ └── settings │ │ │ │ │ │ ├── settings.component.html │ │ │ │ │ │ ├── settings.component.scss │ │ │ │ │ │ └── settings.component.ts │ │ │ │ └── services │ │ │ │ │ ├── electron.service.ts │ │ │ │ │ └── settings.service.ts │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ └── tsconfig.spec.json │ └── fhem-native-mobile │ │ ├── .browserslistrc │ │ ├── capacitor.config.ts │ │ ├── karma.conf.js │ │ ├── package.json │ │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── components │ │ │ │ └── settings │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.scss │ │ │ │ │ └── settings.component.ts │ │ │ └── services │ │ │ │ └── native-functions.service.ts │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ └── tsconfig.spec.json │ ├── tsconfig.json │ └── tsconfig.serve.json ├── firebase.json ├── jest.config.ts ├── jest.preset.js ├── libs ├── .gitkeep ├── animations │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── animations │ │ │ ├── animations.ts │ │ │ └── ionic │ │ │ ├── index.ts │ │ │ ├── ion-animation.service.ts │ │ │ ├── picker.service.ts │ │ │ └── popup.service.ts │ ├── tsconfig.json │ └── tsconfig.lib.json ├── app-config │ ├── fhem-components.ts │ ├── index.ts │ ├── properties.ts │ └── version.ts ├── components │ ├── .browserslistrc │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── _ui │ │ │ │ ├── box │ │ │ │ │ ├── box.component.scss │ │ │ │ │ └── box.component.ts │ │ │ │ ├── category │ │ │ │ │ ├── category.component.scss │ │ │ │ │ └── category.component.ts │ │ │ │ └── index.ts │ │ │ ├── add-room │ │ │ │ ├── add-room.component.scss │ │ │ │ └── add-room.component.ts │ │ │ ├── close-btn-container │ │ │ │ ├── close-btn-container.component.html │ │ │ │ ├── close-btn-container.component.scss │ │ │ │ ├── close-btn-container.component.ts │ │ │ │ ├── close-btn-container.module.ts │ │ │ │ └── close-btn │ │ │ │ │ ├── close-btn.component.html │ │ │ │ │ ├── close-btn.component.scss │ │ │ │ │ ├── close-btn.component.ts │ │ │ │ │ └── close-btn.module.ts │ │ │ ├── comp-loader │ │ │ │ ├── comp-loader.component.html │ │ │ │ ├── comp-loader.component.scss │ │ │ │ ├── comp-loader.component.ts │ │ │ │ └── comp-loader.module.ts │ │ │ ├── component-details │ │ │ │ ├── component-details.component.html │ │ │ │ ├── component-details.component.scss │ │ │ │ └── component-details.component.ts │ │ │ ├── confirm-cancel │ │ │ │ ├── confirm-cancel.component.scss │ │ │ │ └── confirm-cancel.component.ts │ │ │ ├── context-menu │ │ │ │ ├── context-menu.component.html │ │ │ │ ├── context-menu.component.scss │ │ │ │ ├── context-menu.component.ts │ │ │ │ └── context-menu.module.ts │ │ │ ├── edit-button │ │ │ │ ├── edit-button.component.html │ │ │ │ ├── edit-button.component.scss │ │ │ │ └── edit-button.component.ts │ │ │ ├── grid │ │ │ │ ├── grid.component.html │ │ │ │ ├── grid.component.scss │ │ │ │ ├── grid.component.ts │ │ │ │ └── grid.module.ts │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.scss │ │ │ │ ├── icon.component.ts │ │ │ │ └── icon.module.ts │ │ │ ├── info-btn │ │ │ │ ├── info-btn.component.html │ │ │ │ ├── info-btn.component.scss │ │ │ │ ├── info-btn.component.ts │ │ │ │ └── info-btn.module.ts │ │ │ ├── input │ │ │ │ ├── input.component.html │ │ │ │ ├── input.component.scss │ │ │ │ ├── input.component.ts │ │ │ │ └── input.module.ts │ │ │ ├── loader │ │ │ │ ├── animations.ts │ │ │ │ ├── loader.component.html │ │ │ │ ├── loader.component.scss │ │ │ │ ├── loader.component.ts │ │ │ │ └── loader.module.ts │ │ │ ├── modal │ │ │ │ ├── index.ts │ │ │ │ ├── modal.component.scss │ │ │ │ ├── modal.component.ts │ │ │ │ ├── picker │ │ │ │ │ ├── picker.component.scss │ │ │ │ │ └── picker.component.ts │ │ │ │ └── popup │ │ │ │ │ └── popup.component.ts │ │ │ ├── select │ │ │ │ ├── select-color │ │ │ │ │ ├── select-color.component.html │ │ │ │ │ ├── select-color.component.scss │ │ │ │ │ ├── select-color.component.ts │ │ │ │ │ └── select-color.module.ts │ │ │ │ ├── select-gradient │ │ │ │ │ ├── select-gradient.component.html │ │ │ │ │ ├── select-gradient.component.scss │ │ │ │ │ ├── select-gradient.component.ts │ │ │ │ │ └── select-gradient.module.ts │ │ │ │ ├── select-icon │ │ │ │ │ ├── select-icon.component.html │ │ │ │ │ ├── select-icon.component.scss │ │ │ │ │ ├── select-icon.component.ts │ │ │ │ │ └── select-icon.module.ts │ │ │ │ ├── select.component.html │ │ │ │ ├── select.component.scss │ │ │ │ ├── select.component.ts │ │ │ │ └── select.module.ts │ │ │ ├── state-icon │ │ │ │ ├── state-icon.component.html │ │ │ │ ├── state-icon.component.scss │ │ │ │ ├── state-icon.component.ts │ │ │ │ └── state-icon.module.ts │ │ │ ├── switch │ │ │ │ ├── switch.component.html │ │ │ │ ├── switch.component.scss │ │ │ │ ├── switch.component.ts │ │ │ │ └── switch.module.ts │ │ │ ├── text │ │ │ │ ├── block │ │ │ │ │ ├── block.component.html │ │ │ │ │ ├── block.component.scss │ │ │ │ │ ├── block.component.ts │ │ │ │ │ └── block.module.ts │ │ │ │ └── line │ │ │ │ │ ├── line.component.html │ │ │ │ │ ├── line.component.ts │ │ │ │ │ └── line.module.ts │ │ │ └── timepicker │ │ │ │ ├── timepicker.component.html │ │ │ │ ├── timepicker.component.scss │ │ │ │ └── timepicker.component.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── directives │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── context-click │ │ │ │ ├── context-click.directive.ts │ │ │ │ └── context-click.module.ts │ │ │ ├── mover │ │ │ │ ├── mover.directive.ts │ │ │ │ └── mover.module.ts │ │ │ ├── ngIfOnce │ │ │ │ ├── ngIfOnce.directive.ts │ │ │ │ └── ngIfOnce.module.ts │ │ │ ├── outsideClick │ │ │ │ ├── outside-click.directive.ts │ │ │ │ └── outside-click.module.ts │ │ │ ├── resizeManager │ │ │ │ ├── resizeManager.directive.ts │ │ │ │ └── resizeManager.module.ts │ │ │ ├── scrollHeader │ │ │ │ ├── scrollHeader.directive.ts │ │ │ │ └── scrollHeader.module.ts │ │ │ ├── scrollManager │ │ │ │ ├── schrollManager.module.ts │ │ │ │ ├── scrollAnchor.directive.ts │ │ │ │ ├── scrollManager.directive.ts │ │ │ │ └── scrollSection.directive.ts │ │ │ ├── transformationManager │ │ │ │ ├── index.ts │ │ │ │ ├── moveManager │ │ │ │ │ ├── moveManager.directive.ts │ │ │ │ │ └── moveManager.module.ts │ │ │ │ ├── scaleManager │ │ │ │ │ ├── scaleManager.directive.ts │ │ │ │ │ └── scaleManager.module.ts │ │ │ │ ├── transformationItem │ │ │ │ │ ├── transformationItem.directive.ts │ │ │ │ │ └── transformationItem.module.ts │ │ │ │ ├── transformationManager.directive.ts │ │ │ │ └── transformationManager.module.ts │ │ │ └── trim │ │ │ │ ├── trim.directive.ts │ │ │ │ └── trim.module.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── docs │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── doc-item │ │ │ │ ├── doc-code-raw │ │ │ │ │ ├── doc-code-raw.component.scss │ │ │ │ │ └── doc-code-raw.component.ts │ │ │ │ ├── doc-code │ │ │ │ │ ├── doc-code.component.scss │ │ │ │ │ └── doc-code.component.ts │ │ │ │ ├── doc-header │ │ │ │ │ ├── doc-header.component.scss │ │ │ │ │ └── doc-header.component.ts │ │ │ │ ├── doc-img │ │ │ │ │ ├── doc-img.component.scss │ │ │ │ │ └── doc-img.component.ts │ │ │ │ ├── doc-item.component.ts │ │ │ │ ├── doc-item.module.ts │ │ │ │ ├── doc-link │ │ │ │ │ └── doc-link.component.ts │ │ │ │ ├── doc-list │ │ │ │ │ ├── doc-list.component.scss │ │ │ │ │ └── doc-list.component.ts │ │ │ │ ├── doc-note │ │ │ │ │ ├── doc-note.component.scss │ │ │ │ │ └── doc-note.component.ts │ │ │ │ ├── doc-text │ │ │ │ │ └── doc-text.component.ts │ │ │ │ └── index.ts │ │ │ ├── footer │ │ │ │ ├── footer.component.html │ │ │ │ ├── footer.component.scss │ │ │ │ └── footer.component.ts │ │ │ ├── header │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ └── header.component.ts │ │ │ └── side-menu │ │ │ │ ├── side-menu.component.html │ │ │ │ ├── side-menu.component.scss │ │ │ │ └── side-menu.component.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── fhem-components │ ├── .browserslistrc │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── lib │ │ │ ├── _fhem-component │ │ │ │ ├── fhem-component.component.html │ │ │ │ ├── fhem-component.component.scss │ │ │ │ ├── fhem-component.component.ts │ │ │ │ ├── fhem-component.module.ts │ │ │ │ └── index.ts │ │ │ ├── _settings │ │ │ │ ├── common.ts │ │ │ │ ├── fhem-box-container.ts │ │ │ │ ├── fhem-box.ts │ │ │ │ ├── fhem-button-menu.ts │ │ │ │ ├── fhem-button-multistate.ts │ │ │ │ ├── fhem-button.ts │ │ │ │ ├── fhem-circle-menu.ts │ │ │ │ ├── fhem-circle-slider.ts │ │ │ │ ├── fhem-clock.ts │ │ │ │ ├── fhem-color-picker.ts │ │ │ │ ├── fhem-grouper.ts │ │ │ │ ├── fhem-html.ts │ │ │ │ ├── fhem-icon.ts │ │ │ │ ├── fhem-iframe.ts │ │ │ │ ├── fhem-image.ts │ │ │ │ ├── fhem-input.ts │ │ │ │ ├── fhem-label.ts │ │ │ │ ├── fhem-line.ts │ │ │ │ ├── fhem-picker.ts │ │ │ │ ├── fhem-popup.ts │ │ │ │ ├── fhem-select.ts │ │ │ │ ├── fhem-slider.ts │ │ │ │ ├── fhem-swiper.ts │ │ │ │ ├── fhem-switch.ts │ │ │ │ ├── fhem-table.ts │ │ │ │ ├── fhem-tabs.ts │ │ │ │ ├── fhem-thermostat.ts │ │ │ │ ├── fhem-time-picker.ts │ │ │ │ └── fhem-weather.ts │ │ │ ├── fhem-box-container │ │ │ │ ├── fhem-box-container.component.html │ │ │ │ └── fhem-box-container.component.ts │ │ │ ├── fhem-box │ │ │ │ ├── fhem-box.component.html │ │ │ │ ├── fhem-box.component.scss │ │ │ │ └── fhem-box.component.ts │ │ │ ├── fhem-button-menu │ │ │ │ ├── fhem-button-menu.component.html │ │ │ │ └── fhem-button-menu.component.ts │ │ │ ├── fhem-button-multistate │ │ │ │ ├── fhem-button-multistate.component.html │ │ │ │ └── fhem-button-multistate.component.ts │ │ │ ├── fhem-button │ │ │ │ ├── fhem-button.component.html │ │ │ │ ├── fhem-button.component.scss │ │ │ │ └── fhem-button.component.ts │ │ │ ├── fhem-circle-menu │ │ │ │ ├── fhem-circle-menu.component.html │ │ │ │ ├── fhem-circle-menu.component.scss │ │ │ │ └── fhem-circle-menu.component.ts │ │ │ ├── fhem-circle-slider │ │ │ │ ├── fhem-circle-slider.component.html │ │ │ │ ├── fhem-circle-slider.component.scss │ │ │ │ └── fhem-circle-slider.component.ts │ │ │ ├── fhem-clock │ │ │ │ ├── fhem-clock.component.html │ │ │ │ ├── fhem-clock.component.scss │ │ │ │ └── fhem-clock.component.ts │ │ │ ├── fhem-color-picker │ │ │ │ ├── fhem-color-picker.component.html │ │ │ │ ├── fhem-color-picker.component.scss │ │ │ │ └── fhem-color-picker.component.ts │ │ │ ├── fhem-grouper │ │ │ │ ├── fhem-grouper.component.html │ │ │ │ └── fhem-grouper.component.ts │ │ │ ├── fhem-html │ │ │ │ ├── fhem-html.component.scss │ │ │ │ └── fhem-html.component.ts │ │ │ ├── fhem-icon │ │ │ │ ├── fhem-icon.component.scss │ │ │ │ └── fhem-icon.component.ts │ │ │ ├── fhem-iframe │ │ │ │ ├── fhem-iframe.component.scss │ │ │ │ └── fhem-iframe.component.ts │ │ │ ├── fhem-image │ │ │ │ ├── fhem-image.component.scss │ │ │ │ └── fhem-image.component.ts │ │ │ ├── fhem-input │ │ │ │ ├── fhem-input.component.html │ │ │ │ ├── fhem-input.component.scss │ │ │ │ └── fhem-input.component.ts │ │ │ ├── fhem-label │ │ │ │ ├── fhem-label.component.scss │ │ │ │ └── fhem-label.component.ts │ │ │ ├── fhem-line │ │ │ │ ├── fhem-line.component.html │ │ │ │ ├── fhem-line.component.scss │ │ │ │ └── fhem-line.component.ts │ │ │ ├── fhem-picker │ │ │ │ ├── fhem-picker.component.html │ │ │ │ ├── fhem-picker.component.scss │ │ │ │ └── fhem-picker.component.ts │ │ │ ├── fhem-popup │ │ │ │ ├── fhem-popup.component.html │ │ │ │ ├── fhem-popup.component.scss │ │ │ │ └── fhem-popup.component.ts │ │ │ ├── fhem-select │ │ │ │ ├── fhem-select.component.html │ │ │ │ ├── fhem-select.component.scss │ │ │ │ └── fhem-select.component.ts │ │ │ ├── fhem-slider │ │ │ │ ├── fhem-slider.component.html │ │ │ │ ├── fhem-slider.component.scss │ │ │ │ └── fhem-slider.component.ts │ │ │ ├── fhem-swiper │ │ │ │ ├── fhem-swiper.component.html │ │ │ │ ├── fhem-swiper.component.scss │ │ │ │ └── fhem-swiper.component.ts │ │ │ ├── fhem-switch │ │ │ │ ├── fhem-switch.component.html │ │ │ │ └── fhem-switch.component.ts │ │ │ ├── fhem-table │ │ │ │ ├── fhem-table.component.html │ │ │ │ ├── fhem-table.component.scss │ │ │ │ └── fhem-table.component.ts │ │ │ ├── fhem-tabs │ │ │ │ ├── fhem-tabs.component.html │ │ │ │ ├── fhem-tabs.component.scss │ │ │ │ └── fhem-tabs.component.ts │ │ │ ├── fhem-thermostat │ │ │ │ ├── fhem-thermostat.component.html │ │ │ │ ├── fhem-thermostat.component.scss │ │ │ │ └── fhem-thermostat.component.ts │ │ │ ├── fhem-time-picker │ │ │ │ └── fhem-time-picker.component.ts │ │ │ ├── fhem-weather │ │ │ │ ├── fhem-weather.component.html │ │ │ │ ├── fhem-weather.component.scss │ │ │ │ ├── fhem-weather.component.ts │ │ │ │ ├── fhem-weather.type.ts │ │ │ │ └── mappers │ │ │ │ │ ├── index.ts │ │ │ │ │ └── proplanta.ts │ │ │ └── index.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── guards │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── demoMode.guard.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── modules │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── core.module.ts │ │ │ ├── coreAndTranslate.module.ts │ │ │ ├── coreExtended.module.ts │ │ │ ├── coreExtendedAndTranslate.module.ts │ │ │ └── coreServices.module.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── pages │ ├── .browserslistrc │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── app-pages-routing.module.ts │ │ │ ├── app-pages.module.ts │ │ │ ├── home │ │ │ │ ├── animations.ts │ │ │ │ ├── home-routing.module.ts │ │ │ │ ├── home.module.ts │ │ │ │ ├── home.page.html │ │ │ │ ├── home.page.scss │ │ │ │ └── home.page.ts │ │ │ ├── pages.style.scss │ │ │ ├── release-notes │ │ │ │ ├── release-notes.page.html │ │ │ │ └── release-notes.page.ts │ │ │ ├── rights │ │ │ │ ├── imprint │ │ │ │ │ ├── imprint.component.html │ │ │ │ │ └── imprint.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── privacy │ │ │ │ │ ├── privacy.component.html │ │ │ │ │ └── privacy.component.ts │ │ │ │ ├── rights.style.scss │ │ │ │ ├── support │ │ │ │ │ ├── support.component.html │ │ │ │ │ └── support.component.ts │ │ │ │ ├── terms │ │ │ │ │ ├── terms.component.html │ │ │ │ │ └── terms.component.ts │ │ │ │ └── usage │ │ │ │ │ ├── usage.component.html │ │ │ │ │ └── usage.component.ts │ │ │ ├── room │ │ │ │ ├── animations.ts │ │ │ │ ├── room-components │ │ │ │ │ ├── component-creator │ │ │ │ │ │ ├── component-creator.component.html │ │ │ │ │ │ ├── component-creator.component.scss │ │ │ │ │ │ └── component-creator.component.ts │ │ │ │ │ ├── room-header │ │ │ │ │ │ ├── editor │ │ │ │ │ │ │ ├── editor.component.html │ │ │ │ │ │ │ ├── editor.component.scss │ │ │ │ │ │ │ ├── editor.component.ts │ │ │ │ │ │ │ └── undo-redo │ │ │ │ │ │ │ │ ├── undo-redo.component.html │ │ │ │ │ │ │ │ ├── undo-redo.component.scss │ │ │ │ │ │ │ │ └── undo-redo.component.ts │ │ │ │ │ │ ├── room-header.component.html │ │ │ │ │ │ ├── room-header.component.scss │ │ │ │ │ │ └── room-header.component.ts │ │ │ │ │ └── room-sidebar │ │ │ │ │ │ ├── room-sidebar.component.html │ │ │ │ │ │ ├── room-sidebar.component.scss │ │ │ │ │ │ └── room-sidebar.component.ts │ │ │ │ ├── room-content │ │ │ │ │ └── room-content.page.ts │ │ │ │ ├── room-guard.service.ts │ │ │ │ ├── room-routing.module.ts │ │ │ │ ├── room.module.ts │ │ │ │ ├── room.page.html │ │ │ │ ├── room.page.scss │ │ │ │ └── room.page.ts │ │ │ ├── sandbox │ │ │ │ ├── sandbox-guard.service.ts │ │ │ │ ├── sandbox-routing.module.ts │ │ │ │ ├── sandbox.module.ts │ │ │ │ ├── sandbox.page.html │ │ │ │ ├── sandbox.page.scss │ │ │ │ ├── sandbox.page.ts │ │ │ │ └── services │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── sandbox-editor.service.ts │ │ │ │ │ ├── sandbox-fhem.service.ts │ │ │ │ │ ├── sandbox-select-component.service.ts │ │ │ │ │ ├── sandbox-settings.service.ts │ │ │ │ │ ├── sandbox-storage.service.ts │ │ │ │ │ ├── sandbox-structure.service.ts │ │ │ │ │ └── sandbox-undo-redo.service.ts │ │ │ └── settings │ │ │ │ ├── advanced │ │ │ │ ├── advanced.page.html │ │ │ │ ├── advanced.page.ts │ │ │ │ └── shared-config │ │ │ │ │ ├── shared-config.page.html │ │ │ │ │ ├── shared-config.page.scss │ │ │ │ │ └── shared-config.page.ts │ │ │ │ ├── login │ │ │ │ ├── login.page.html │ │ │ │ ├── login.page.scss │ │ │ │ └── login.page.ts │ │ │ │ ├── settings.module.ts │ │ │ │ ├── settings.page.html │ │ │ │ ├── settings.page.scss │ │ │ │ ├── settings.page.ts │ │ │ │ └── support │ │ │ │ ├── support.page.html │ │ │ │ ├── support.page.scss │ │ │ │ └── support.page.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── services │ ├── .browserslistrc │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── back-button.service.ts │ │ │ ├── color.service.ts │ │ │ ├── component-loader.service.ts │ │ │ ├── contextMenu.service.ts │ │ │ ├── cssVariable.service.ts │ │ │ ├── editor.service.ts │ │ │ ├── fhem.service.ts │ │ │ ├── hotkey.service.ts │ │ │ ├── icon.service.ts │ │ │ ├── importExport.service.ts │ │ │ ├── loader.service.ts │ │ │ ├── logger.service.ts │ │ │ ├── platform-specific │ │ │ │ ├── importExport-desktop.service.ts │ │ │ │ ├── importExport-mobile.service.ts │ │ │ │ └── index.ts │ │ │ ├── release-informer.service.ts │ │ │ ├── select-component.service.ts │ │ │ ├── settings.service.ts │ │ │ ├── storage.service.ts │ │ │ ├── store │ │ │ │ ├── products.ts │ │ │ │ └── store.service.ts │ │ │ ├── structure.service.ts │ │ │ ├── theme │ │ │ │ ├── theme.service.ts │ │ │ │ └── themes.ts │ │ │ ├── time.service.ts │ │ │ ├── toast.service.ts │ │ │ └── undo-redo.service.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── types │ ├── .browserslistrc │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── lib │ │ │ ├── common │ │ │ │ ├── index.ts │ │ │ │ └── theme.type.ts │ │ │ ├── components │ │ │ │ ├── core.type.ts │ │ │ │ ├── editor.type.ts │ │ │ │ ├── fhem.type.ts │ │ │ │ ├── index.ts │ │ │ │ ├── registry.type.ts │ │ │ │ └── settings.type.ts │ │ │ ├── docs │ │ │ │ ├── index.ts │ │ │ │ └── nav-item.type.ts │ │ │ ├── fhem │ │ │ │ ├── connection.type.ts │ │ │ │ ├── devices.type.ts │ │ │ │ └── index.ts │ │ │ ├── room │ │ │ │ ├── index.ts │ │ │ │ └── room.type.ts │ │ │ └── storage │ │ │ │ ├── index.ts │ │ │ │ └── storage.type.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── ui │ ├── .browserslistrc │ ├── .eslintrc.json │ ├── README.md │ ├── assets │ │ ├── fonts │ │ │ ├── Montserrat-Bold.ttf │ │ │ ├── Montserrat-Regular.ttf │ │ │ ├── Poppins-Bold.ttf │ │ │ └── Poppins-Regular.ttf │ │ ├── i18n │ │ │ ├── app │ │ │ │ ├── de.json │ │ │ │ └── en.json │ │ │ └── web │ │ │ │ ├── de.json │ │ │ │ └── en.json │ │ ├── icons │ │ │ └── knx-uf │ │ │ │ ├── fts_door.svg │ │ │ │ ├── fts_door_locked.svg │ │ │ │ ├── fts_door_open.svg │ │ │ │ ├── fts_door_opener_key.svg │ │ │ │ ├── fts_door_slide.svg │ │ │ │ ├── fts_door_slide_open.svg │ │ │ │ ├── fts_door_tilt.svg │ │ │ │ ├── fts_door_unlocked.svg │ │ │ │ ├── fts_shutter.svg │ │ │ │ ├── fts_shutter_10.svg │ │ │ │ ├── fts_shutter_100.svg │ │ │ │ ├── fts_shutter_20.svg │ │ │ │ ├── fts_shutter_30.svg │ │ │ │ ├── fts_shutter_40.svg │ │ │ │ ├── fts_shutter_50.svg │ │ │ │ ├── fts_shutter_60.svg │ │ │ │ ├── fts_shutter_70.svg │ │ │ │ ├── fts_shutter_80.svg │ │ │ │ ├── fts_shutter_90.svg │ │ │ │ ├── fts_shutter_attention.svg │ │ │ │ ├── fts_shutter_automatic.svg │ │ │ │ ├── fts_shutter_down.svg │ │ │ │ ├── fts_shutter_jam.svg │ │ │ │ ├── fts_shutter_locked.svg │ │ │ │ ├── fts_shutter_manual.svg │ │ │ │ ├── fts_shutter_stop.svg │ │ │ │ ├── fts_shutter_unlocked.svg │ │ │ │ ├── fts_shutter_up.svg │ │ │ │ ├── fts_shutter_vert.svg │ │ │ │ ├── fts_shutter_vert_automatic.svg │ │ │ │ ├── fts_shutter_vert_blade_00.svg │ │ │ │ ├── fts_shutter_vert_blade_10.svg │ │ │ │ ├── fts_shutter_vert_blade_100.svg │ │ │ │ ├── fts_shutter_vert_blade_20.svg │ │ │ │ ├── fts_shutter_vert_blade_30.svg │ │ │ │ ├── fts_shutter_vert_blade_40.svg │ │ │ │ ├── fts_shutter_vert_blade_50.svg │ │ │ │ ├── fts_shutter_vert_blade_60.svg │ │ │ │ ├── fts_shutter_vert_blade_70.svg │ │ │ │ ├── fts_shutter_vert_blade_80.svg │ │ │ │ ├── fts_shutter_vert_blade_90.svg │ │ │ │ ├── fts_shutter_vert_down.svg │ │ │ │ ├── fts_shutter_vert_manual.svg │ │ │ │ ├── fts_shutter_vert_up.svg │ │ │ │ ├── fts_window_1w.svg │ │ │ │ ├── fts_window_1w_locked.svg │ │ │ │ ├── fts_window_1w_open.svg │ │ │ │ ├── fts_window_1w_tilt.svg │ │ │ │ └── fts_window_1w_unlocked.svg │ │ └── img │ │ │ ├── app │ │ │ ├── default-image.png │ │ │ └── default-music.png │ │ │ └── common │ │ │ ├── icon.png │ │ │ └── icon_transparent.png │ ├── jest.config.ts │ ├── project.json │ ├── styles │ │ ├── _align.scss │ │ ├── _animations.scss │ │ ├── _fonts.scss │ │ ├── _global.scss │ │ ├── _ion-overwrite.scss │ │ ├── _toasts.scss │ │ ├── _variables.scss │ │ ├── app │ │ │ ├── colors.scss │ │ │ ├── editable.scss │ │ │ ├── sizes.scss │ │ │ └── styles.scss │ │ └── web │ │ │ ├── colors.scss │ │ │ ├── sizes.scss │ │ │ └── styles.scss │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json └── utils │ ├── .browserslistrc │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ ├── index.ts │ ├── lib │ │ ├── colors.ts │ │ ├── fhem.ts │ │ ├── fonts.ts │ │ ├── helpers.ts │ │ ├── id.ts │ │ ├── importExport.ts │ │ ├── time.ts │ │ └── version.ts │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── nx.json ├── package.json ├── tools └── tsconfig.tools.json └── tsconfig.base.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/workflows/firebase-hosting-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/.github/workflows/firebase-hosting-merge.yml -------------------------------------------------------------------------------- /.github/workflows/firebase-hosting-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/.github/workflows/firebase-hosting-pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /00_Websocket/00_websocket.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/00_Websocket/00_websocket.pm -------------------------------------------------------------------------------- /00_Websocket/10_websocket_fhem.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/00_Websocket/10_websocket_fhem.pm -------------------------------------------------------------------------------- /00_Websocket/10_websocket_json.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/00_Websocket/10_websocket_json.pm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/README_EN.md -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/fhem-native-desktop/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/.browserslistrc -------------------------------------------------------------------------------- /apps/fhem-native-desktop/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/.eslintrc.json -------------------------------------------------------------------------------- /apps/fhem-native-desktop/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /ios 3 | /android -------------------------------------------------------------------------------- /apps/fhem-native-desktop/capacitor.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/capacitor.config.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/electron/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/electron/.gitignore -------------------------------------------------------------------------------- /apps/fhem-native-desktop/electron/assets/appIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/electron/assets/appIcon.ico -------------------------------------------------------------------------------- /apps/fhem-native-desktop/electron/assets/appIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/electron/assets/appIcon.png -------------------------------------------------------------------------------- /apps/fhem-native-desktop/electron/capacitor.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/electron/capacitor.config.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/electron/electron-builder.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/electron/electron-builder.config.json -------------------------------------------------------------------------------- /apps/fhem-native-desktop/electron/live-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/electron/live-runner.js -------------------------------------------------------------------------------- /apps/fhem-native-desktop/electron/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/electron/package-lock.json -------------------------------------------------------------------------------- /apps/fhem-native-desktop/electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/electron/package.json -------------------------------------------------------------------------------- /apps/fhem-native-desktop/electron/resources/electron-publisher-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/electron/resources/electron-publisher-custom.js -------------------------------------------------------------------------------- /apps/fhem-native-desktop/electron/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/electron/src/index.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/electron/src/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/electron/src/preload.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/electron/src/rt/electron-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/electron/src/rt/electron-plugins.js -------------------------------------------------------------------------------- /apps/fhem-native-desktop/electron/src/rt/electron-rt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/electron/src/rt/electron-rt.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/electron/src/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/electron/src/setup.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/electron/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/electron/tsconfig.json -------------------------------------------------------------------------------- /apps/fhem-native-desktop/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/jest.config.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/package-lock.json -------------------------------------------------------------------------------- /apps/fhem-native-desktop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/package.json -------------------------------------------------------------------------------- /apps/fhem-native-desktop/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/project.json -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/app/app.component.html -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/app/modules/routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/app/modules/routing.module.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/app/modules/service.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/app/modules/service.module.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/app/modules/translator.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/app/modules/translator.module.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/app/pages/settings/settings.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/app/pages/settings/settings.page.html -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/app/pages/settings/settings.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/app/pages/settings/settings.page.scss -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/app/pages/settings/settings.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/app/pages/settings/settings.page.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/assets/icon/favicon.png -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/assets/shapes.svg -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/index.html -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/main.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/polyfills.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/styles.scss -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/src/test-setup.ts -------------------------------------------------------------------------------- /apps/fhem-native-desktop/src/theme/variables.scss: -------------------------------------------------------------------------------- 1 | :root{ 2 | 3 | } -------------------------------------------------------------------------------- /apps/fhem-native-desktop/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/tsconfig.app.json -------------------------------------------------------------------------------- /apps/fhem-native-desktop/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/fhem-native-desktop/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/tsconfig.json -------------------------------------------------------------------------------- /apps/fhem-native-desktop/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-desktop/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/fhem-native-docs-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/fhem-native-docs-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs-e2e/cypress.config.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs-e2e/project.json -------------------------------------------------------------------------------- /apps/fhem-native-docs-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/fhem-native-docs-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/fhem-native-docs-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/fhem-native-docs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/.eslintrc.json -------------------------------------------------------------------------------- /apps/fhem-native-docs/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/jest.config.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/project.json -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/app.component.html -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/app.component.scss -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/components/overview/overview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/components/overview/overview.component.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/comps/comp/comp.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/comps/comp/comp.page.html -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/comps/comp/comp.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/comps/comp/comp.page.scss -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/comps/comp/comp.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/comps/comp/comp.page.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/comps/comp/comp.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/comps/comp/comp.service.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/comps/comp/sandbox-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/comps/comp/sandbox-components.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/comps/comps.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/comps/comps.page.html -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/comps/comps.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/comps/comps.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/comps/comps.page.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/configConverter/configConverter.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/configConverter/configConverter.page.html -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/configConverter/configConverter.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/configConverter/configConverter.page.scss -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/configConverter/configConverter.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/configConverter/configConverter.page.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/docs/doc/doc.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/docs/doc/doc.page.html -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/docs/doc/doc.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/docs/doc/doc.page.scss -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/docs/doc/doc.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/docs/doc/doc.page.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/docs/doc/doc.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/docs/doc/doc.service.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/docs/docs.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/docs/docs.page.html -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/docs/docs.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/docs/docs.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/docs/docs.page.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/guides/guide/guide.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/guides/guide/guide.page.html -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/guides/guide/guide.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/guides/guide/guide.page.scss -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/guides/guide/guide.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/guides/guide/guide.page.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/guides/guide/guide.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/guides/guide/guide.service.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/guides/guides.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/guides/guides.page.html -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/guides/guides.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/guides/guides.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/guides/guides.page.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/home/home.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/home/home.page.html -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/home/home.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/home/home.page.scss -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/home/home.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/home/home.page.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/icons/icons.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/icons/icons.page.scss -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/icons/icons.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/icons/icons.page.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/playground/playground.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/playground/playground.page.html -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/playground/playground.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/playground/playground.page.scss -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/playground/playground.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/playground/playground.page.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/rights/imprint.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/rights/imprint.component.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/rights/privacy.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/rights/privacy.component.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/rights/rights-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/rights/rights-routes.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/rights/rights-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/rights/rights-styles.scss -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/rights/terms.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/rights/terms.component.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/rights/usage.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/rights/usage.component.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/shared/app-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/shared/app-config.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/shared/service.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/shared/service.module.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/shared/services/webSettings.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/shared/services/webSettings.service.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/app/shared/translator.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/app/shared/translator.module.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/assets/i18n/de/docs/developer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/assets/i18n/de/docs/developer.yaml -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/assets/i18n/de/docs/external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/assets/i18n/de/docs/external.yaml -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/assets/i18n/de/docs/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/assets/i18n/de/docs/install.yaml -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/assets/i18n/de/docs/secure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/assets/i18n/de/docs/secure.yaml -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/assets/i18n/de/docs/shortcuts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/assets/i18n/de/docs/shortcuts.yaml -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/assets/i18n/de/guides/create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/assets/i18n/de/guides/create.yaml -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/assets/img/connection-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/assets/img/connection-profile.png -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/assets/img/developer-guide/main-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/assets/img/developer-guide/main-settings.png -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/assets/img/favicon.png -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/assets/img/home/intro1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/assets/img/home/intro1.png -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/assets/img/home/intro2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/assets/img/home/intro2.png -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/assets/img/home/intro3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/assets/img/home/intro3.png -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/favicon.ico -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/index.html -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/main.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/styles.scss -------------------------------------------------------------------------------- /apps/fhem-native-docs/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/src/test-setup.ts -------------------------------------------------------------------------------- /apps/fhem-native-docs/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/tsconfig.app.json -------------------------------------------------------------------------------- /apps/fhem-native-docs/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/fhem-native-docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/tsconfig.json -------------------------------------------------------------------------------- /apps/fhem-native-docs/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-docs/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/fhem-native-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/fhem-native-e2e/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-e2e/cypress.json -------------------------------------------------------------------------------- /apps/fhem-native-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-e2e/project.json -------------------------------------------------------------------------------- /apps/fhem-native-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/fhem-native-e2e/src/integration/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-e2e/src/integration/app.spec.ts -------------------------------------------------------------------------------- /apps/fhem-native-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/fhem-native-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/fhem-native-e2e/src/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-e2e/src/support/index.ts -------------------------------------------------------------------------------- /apps/fhem-native-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/fhem-native/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/.browserslistrc -------------------------------------------------------------------------------- /apps/fhem-native/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/.eslintrc.json -------------------------------------------------------------------------------- /apps/fhem-native/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /ios 3 | /android -------------------------------------------------------------------------------- /apps/fhem-native/capacitor.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/capacitor.config.ts -------------------------------------------------------------------------------- /apps/fhem-native/ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/ionic.config.json -------------------------------------------------------------------------------- /apps/fhem-native/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/jest.config.ts -------------------------------------------------------------------------------- /apps/fhem-native/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/package-lock.json -------------------------------------------------------------------------------- /apps/fhem-native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/package.json -------------------------------------------------------------------------------- /apps/fhem-native/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/project.json -------------------------------------------------------------------------------- /apps/fhem-native/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/app/app.component.html -------------------------------------------------------------------------------- /apps/fhem-native/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/fhem-native/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/fhem-native/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/fhem-native/src/app/modules/routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/app/modules/routing.module.ts -------------------------------------------------------------------------------- /apps/fhem-native/src/app/modules/service.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/app/modules/service.module.ts -------------------------------------------------------------------------------- /apps/fhem-native/src/app/modules/translator.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/app/modules/translator.module.ts -------------------------------------------------------------------------------- /apps/fhem-native/src/app/pages/settings/settings.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/app/pages/settings/settings.page.html -------------------------------------------------------------------------------- /apps/fhem-native/src/app/pages/settings/settings.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/app/pages/settings/settings.page.scss -------------------------------------------------------------------------------- /apps/fhem-native/src/app/pages/settings/settings.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/app/pages/settings/settings.page.ts -------------------------------------------------------------------------------- /apps/fhem-native/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/fhem-native/src/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/assets/icon/favicon.png -------------------------------------------------------------------------------- /apps/fhem-native/src/assets/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/assets/img/icon.png -------------------------------------------------------------------------------- /apps/fhem-native/src/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/assets/shapes.svg -------------------------------------------------------------------------------- /apps/fhem-native/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /apps/fhem-native/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/fhem-native/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/index.html -------------------------------------------------------------------------------- /apps/fhem-native/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/main.ts -------------------------------------------------------------------------------- /apps/fhem-native/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/polyfills.ts -------------------------------------------------------------------------------- /apps/fhem-native/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/styles.scss -------------------------------------------------------------------------------- /apps/fhem-native/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/src/test-setup.ts -------------------------------------------------------------------------------- /apps/fhem-native/src/theme/variables.scss: -------------------------------------------------------------------------------- 1 | :root{ 2 | 3 | } -------------------------------------------------------------------------------- /apps/fhem-native/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/tsconfig.app.json -------------------------------------------------------------------------------- /apps/fhem-native/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/fhem-native/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/tsconfig.json -------------------------------------------------------------------------------- /apps/fhem-native/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/fhem-native/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/legacy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/.gitignore -------------------------------------------------------------------------------- /apps/legacy/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/CHANGELOG.json -------------------------------------------------------------------------------- /apps/legacy/DEVICE_SIZE_LIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/DEVICE_SIZE_LIST.json -------------------------------------------------------------------------------- /apps/legacy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/LICENSE -------------------------------------------------------------------------------- /apps/legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/README.md -------------------------------------------------------------------------------- /apps/legacy/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/README_EN.md -------------------------------------------------------------------------------- /apps/legacy/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/angular.json -------------------------------------------------------------------------------- /apps/legacy/electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/electron-builder.json -------------------------------------------------------------------------------- /apps/legacy/electron-main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/electron-main.ts -------------------------------------------------------------------------------- /apps/legacy/ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/ionic.config.json -------------------------------------------------------------------------------- /apps/legacy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/package.json -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/assets/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/assets/i18n/de.json -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/assets/i18n/en.json -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/assets/img/default-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/assets/img/default-image.png -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/assets/img/default-music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/assets/img/default-music.png -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/assets/sounds/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/assets/sounds/1.mp3 -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/assets/sounds/2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/assets/sounds/2.mp3 -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/assets/sounds/3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/assets/sounds/3.mp3 -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/assets/sounds/4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/assets/sounds/4.mp3 -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/animations/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/animations/animations.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/components/edit-button/edit-button.component.scss: -------------------------------------------------------------------------------- 1 | :host{ 2 | .btn-round{ 3 | top: 5.5px; 4 | } 5 | } -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/directives/trim.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/directives/trim.directive.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/interfaces/interfaces.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/interfaces/interfaces.type.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/router/routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/router/routing.module.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/services/fhem.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/services/fhem.service.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/services/hotkey.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/services/hotkey.service.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/services/settings.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/services/settings.service.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/services/storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/services/storage.service.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/services/structure.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/services/structure.service.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/services/task.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/services/task.service.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/services/theme/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/services/theme/themes.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/services/time.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/services/time.service.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/services/toast.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/services/toast.service.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/services/undo-redo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/services/undo-redo.service.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/services/variable.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/services/variable.service.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/styles.scss -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-core/src/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-core/src/variables.scss -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-desktop/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-desktop/karma.conf.js -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-desktop/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-desktop/resources/icon.png -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-desktop/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-desktop/src/app/app.component.html -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-desktop/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | :host{ 2 | 3 | } -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-desktop/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-desktop/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-desktop/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-desktop/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-desktop/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-desktop/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-desktop/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-desktop/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-desktop/src/favicon.ico -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-desktop/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-desktop/src/index.html -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-desktop/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-desktop/src/main.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-desktop/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-desktop/src/polyfills.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-desktop/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-desktop/src/test.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-desktop/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-desktop/tsconfig.app.json -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-desktop/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-desktop/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-mobile/.browserslistrc -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/capacitor.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-mobile/capacitor.config.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-mobile/karma.conf.js -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-mobile/package.json -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-mobile/src/app/app.component.html -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | :host{ 2 | 3 | } -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-mobile/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-mobile/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-mobile/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-mobile/src/favicon.ico -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-mobile/src/index.html -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-mobile/src/main.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-mobile/src/polyfills.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-mobile/src/test.ts -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-mobile/tsconfig.app.json -------------------------------------------------------------------------------- /apps/legacy/projects/fhem-native-mobile/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/projects/fhem-native-mobile/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/legacy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/tsconfig.json -------------------------------------------------------------------------------- /apps/legacy/tsconfig.serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/apps/legacy/tsconfig.serve.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/firebase.json -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/animations/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/animations/.eslintrc.json -------------------------------------------------------------------------------- /libs/animations/README.md: -------------------------------------------------------------------------------- 1 | # animations 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /libs/animations/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/animations/project.json -------------------------------------------------------------------------------- /libs/animations/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/animations/src/index.ts -------------------------------------------------------------------------------- /libs/animations/src/lib/animations/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/animations/src/lib/animations/animations.ts -------------------------------------------------------------------------------- /libs/animations/src/lib/animations/ionic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/animations/src/lib/animations/ionic/index.ts -------------------------------------------------------------------------------- /libs/animations/src/lib/animations/ionic/ion-animation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/animations/src/lib/animations/ionic/ion-animation.service.ts -------------------------------------------------------------------------------- /libs/animations/src/lib/animations/ionic/picker.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/animations/src/lib/animations/ionic/picker.service.ts -------------------------------------------------------------------------------- /libs/animations/src/lib/animations/ionic/popup.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/animations/src/lib/animations/ionic/popup.service.ts -------------------------------------------------------------------------------- /libs/animations/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/animations/tsconfig.json -------------------------------------------------------------------------------- /libs/animations/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/animations/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/app-config/fhem-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/app-config/fhem-components.ts -------------------------------------------------------------------------------- /libs/app-config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/app-config/index.ts -------------------------------------------------------------------------------- /libs/app-config/properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/app-config/properties.ts -------------------------------------------------------------------------------- /libs/app-config/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/app-config/version.ts -------------------------------------------------------------------------------- /libs/components/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/.browserslistrc -------------------------------------------------------------------------------- /libs/components/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/.eslintrc.json -------------------------------------------------------------------------------- /libs/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/README.md -------------------------------------------------------------------------------- /libs/components/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/jest.config.ts -------------------------------------------------------------------------------- /libs/components/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/project.json -------------------------------------------------------------------------------- /libs/components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/index.ts -------------------------------------------------------------------------------- /libs/components/src/lib/_ui/box/box.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/_ui/box/box.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/_ui/box/box.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/_ui/box/box.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/_ui/category/category.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/_ui/category/category.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/_ui/category/category.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/_ui/category/category.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/_ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/_ui/index.ts -------------------------------------------------------------------------------- /libs/components/src/lib/add-room/add-room.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/add-room/add-room.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/add-room/add-room.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/add-room/add-room.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/comp-loader/comp-loader.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/comp-loader/comp-loader.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/comp-loader/comp-loader.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/comp-loader/comp-loader.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/comp-loader/comp-loader.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/comp-loader/comp-loader.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/comp-loader/comp-loader.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/comp-loader/comp-loader.module.ts -------------------------------------------------------------------------------- /libs/components/src/lib/confirm-cancel/confirm-cancel.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/confirm-cancel/confirm-cancel.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/confirm-cancel/confirm-cancel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/confirm-cancel/confirm-cancel.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/context-menu/context-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/context-menu/context-menu.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/context-menu/context-menu.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/context-menu/context-menu.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/context-menu/context-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/context-menu/context-menu.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/context-menu/context-menu.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/context-menu/context-menu.module.ts -------------------------------------------------------------------------------- /libs/components/src/lib/edit-button/edit-button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/edit-button/edit-button.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/edit-button/edit-button.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/edit-button/edit-button.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/edit-button/edit-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/edit-button/edit-button.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/grid/grid.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/grid/grid.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/grid/grid.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/grid/grid.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/grid/grid.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/grid/grid.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/grid/grid.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/grid/grid.module.ts -------------------------------------------------------------------------------- /libs/components/src/lib/icon/icon.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/icon/icon.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/icon/icon.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/icon/icon.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/icon/icon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/icon/icon.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/icon/icon.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/icon/icon.module.ts -------------------------------------------------------------------------------- /libs/components/src/lib/info-btn/info-btn.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/info-btn/info-btn.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/info-btn/info-btn.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/info-btn/info-btn.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/info-btn/info-btn.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/info-btn/info-btn.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/info-btn/info-btn.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/info-btn/info-btn.module.ts -------------------------------------------------------------------------------- /libs/components/src/lib/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/input/input.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/input/input.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/input/input.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/input/input.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/input/input.module.ts -------------------------------------------------------------------------------- /libs/components/src/lib/loader/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/loader/animations.ts -------------------------------------------------------------------------------- /libs/components/src/lib/loader/loader.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/loader/loader.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/loader/loader.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/loader/loader.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/loader/loader.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/loader/loader.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/loader/loader.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/loader/loader.module.ts -------------------------------------------------------------------------------- /libs/components/src/lib/modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/modal/index.ts -------------------------------------------------------------------------------- /libs/components/src/lib/modal/modal.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/modal/modal.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/modal/modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/modal/modal.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/modal/picker/picker.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/modal/picker/picker.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/modal/picker/picker.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/modal/picker/picker.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/modal/popup/popup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/modal/popup/popup.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/select/select-color/select-color.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/select/select-color/select-color.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/select/select-color/select-color.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/select/select-color/select-color.module.ts -------------------------------------------------------------------------------- /libs/components/src/lib/select/select-icon/select-icon.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/select/select-icon/select-icon.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/select/select-icon/select-icon.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/select/select-icon/select-icon.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/select/select-icon/select-icon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/select/select-icon/select-icon.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/select/select-icon/select-icon.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/select/select-icon/select-icon.module.ts -------------------------------------------------------------------------------- /libs/components/src/lib/select/select.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/select/select.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/select/select.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/select/select.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/select/select.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/select/select.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/select/select.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/select/select.module.ts -------------------------------------------------------------------------------- /libs/components/src/lib/state-icon/state-icon.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/state-icon/state-icon.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/state-icon/state-icon.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/state-icon/state-icon.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/state-icon/state-icon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/state-icon/state-icon.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/state-icon/state-icon.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/state-icon/state-icon.module.ts -------------------------------------------------------------------------------- /libs/components/src/lib/switch/switch.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/switch/switch.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/switch/switch.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/switch/switch.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/switch/switch.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/switch/switch.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/switch/switch.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/switch/switch.module.ts -------------------------------------------------------------------------------- /libs/components/src/lib/text/block/block.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/text/block/block.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/text/block/block.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/text/block/block.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/text/block/block.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/text/block/block.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/text/block/block.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/text/block/block.module.ts -------------------------------------------------------------------------------- /libs/components/src/lib/text/line/line.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/text/line/line.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/text/line/line.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/text/line/line.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/text/line/line.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/text/line/line.module.ts -------------------------------------------------------------------------------- /libs/components/src/lib/timepicker/timepicker.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/timepicker/timepicker.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/timepicker/timepicker.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/timepicker/timepicker.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/timepicker/timepicker.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/lib/timepicker/timepicker.component.ts -------------------------------------------------------------------------------- /libs/components/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/src/test-setup.ts -------------------------------------------------------------------------------- /libs/components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/tsconfig.json -------------------------------------------------------------------------------- /libs/components/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/components/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/components/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/directives/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/.eslintrc.json -------------------------------------------------------------------------------- /libs/directives/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/README.md -------------------------------------------------------------------------------- /libs/directives/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/jest.config.ts -------------------------------------------------------------------------------- /libs/directives/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/project.json -------------------------------------------------------------------------------- /libs/directives/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/index.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/context-click/context-click.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/context-click/context-click.directive.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/context-click/context-click.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/context-click/context-click.module.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/mover/mover.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/mover/mover.directive.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/mover/mover.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/mover/mover.module.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/ngIfOnce/ngIfOnce.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/ngIfOnce/ngIfOnce.directive.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/ngIfOnce/ngIfOnce.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/ngIfOnce/ngIfOnce.module.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/outsideClick/outside-click.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/outsideClick/outside-click.directive.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/outsideClick/outside-click.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/outsideClick/outside-click.module.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/resizeManager/resizeManager.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/resizeManager/resizeManager.directive.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/resizeManager/resizeManager.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/resizeManager/resizeManager.module.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/scrollHeader/scrollHeader.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/scrollHeader/scrollHeader.directive.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/scrollHeader/scrollHeader.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/scrollHeader/scrollHeader.module.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/scrollManager/schrollManager.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/scrollManager/schrollManager.module.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/scrollManager/scrollAnchor.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/scrollManager/scrollAnchor.directive.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/scrollManager/scrollManager.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/scrollManager/scrollManager.directive.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/scrollManager/scrollSection.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/scrollManager/scrollSection.directive.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/transformationManager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/transformationManager/index.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/trim/trim.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/trim/trim.directive.ts -------------------------------------------------------------------------------- /libs/directives/src/lib/trim/trim.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/lib/trim/trim.module.ts -------------------------------------------------------------------------------- /libs/directives/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/src/test-setup.ts -------------------------------------------------------------------------------- /libs/directives/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/tsconfig.json -------------------------------------------------------------------------------- /libs/directives/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/directives/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/directives/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/docs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/.eslintrc.json -------------------------------------------------------------------------------- /libs/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/README.md -------------------------------------------------------------------------------- /libs/docs/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/jest.config.ts -------------------------------------------------------------------------------- /libs/docs/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/project.json -------------------------------------------------------------------------------- /libs/docs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/index.ts -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/doc-code-raw/doc-code-raw.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/doc-code-raw/doc-code-raw.component.scss -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/doc-code-raw/doc-code-raw.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/doc-code-raw/doc-code-raw.component.ts -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/doc-code/doc-code.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/doc-code/doc-code.component.scss -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/doc-code/doc-code.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/doc-code/doc-code.component.ts -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/doc-header/doc-header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/doc-header/doc-header.component.scss -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/doc-header/doc-header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/doc-header/doc-header.component.ts -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/doc-img/doc-img.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/doc-img/doc-img.component.scss -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/doc-img/doc-img.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/doc-img/doc-img.component.ts -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/doc-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/doc-item.component.ts -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/doc-item.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/doc-item.module.ts -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/doc-link/doc-link.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/doc-link/doc-link.component.ts -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/doc-list/doc-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/doc-list/doc-list.component.scss -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/doc-list/doc-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/doc-list/doc-list.component.ts -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/doc-note/doc-note.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/doc-note/doc-note.component.scss -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/doc-note/doc-note.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/doc-note/doc-note.component.ts -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/doc-text/doc-text.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/doc-text/doc-text.component.ts -------------------------------------------------------------------------------- /libs/docs/src/lib/doc-item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/doc-item/index.ts -------------------------------------------------------------------------------- /libs/docs/src/lib/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/footer/footer.component.html -------------------------------------------------------------------------------- /libs/docs/src/lib/footer/footer.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/footer/footer.component.scss -------------------------------------------------------------------------------- /libs/docs/src/lib/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/footer/footer.component.ts -------------------------------------------------------------------------------- /libs/docs/src/lib/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/header/header.component.html -------------------------------------------------------------------------------- /libs/docs/src/lib/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/header/header.component.scss -------------------------------------------------------------------------------- /libs/docs/src/lib/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/header/header.component.ts -------------------------------------------------------------------------------- /libs/docs/src/lib/side-menu/side-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/side-menu/side-menu.component.html -------------------------------------------------------------------------------- /libs/docs/src/lib/side-menu/side-menu.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/side-menu/side-menu.component.scss -------------------------------------------------------------------------------- /libs/docs/src/lib/side-menu/side-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/lib/side-menu/side-menu.component.ts -------------------------------------------------------------------------------- /libs/docs/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/src/test-setup.ts -------------------------------------------------------------------------------- /libs/docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/docs/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/docs/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/fhem-components/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/.browserslistrc -------------------------------------------------------------------------------- /libs/fhem-components/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/.eslintrc.json -------------------------------------------------------------------------------- /libs/fhem-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/README.md -------------------------------------------------------------------------------- /libs/fhem-components/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/jest.config.ts -------------------------------------------------------------------------------- /libs/fhem-components/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/project.json -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_fhem-component/fhem-component.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_fhem-component/fhem-component.module.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_fhem-component/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_fhem-component/index.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/common.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-box-container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-box-container.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-box.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-button-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-button-menu.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-button-multistate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-button-multistate.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-button.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-circle-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-circle-menu.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-circle-slider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-circle-slider.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-clock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-clock.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-color-picker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-color-picker.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-grouper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-grouper.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-html.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-icon.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-iframe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-iframe.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-image.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-input.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-label.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-line.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-picker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-picker.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-popup.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-select.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-slider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-slider.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-swiper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-swiper.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-switch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-switch.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-table.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-tabs.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-thermostat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-thermostat.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-time-picker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-time-picker.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/_settings/fhem-weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/_settings/fhem-weather.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-box/fhem-box.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-box/fhem-box.component.html -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-box/fhem-box.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-box/fhem-box.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-box/fhem-box.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-box/fhem-box.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-button/fhem-button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-button/fhem-button.component.html -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-button/fhem-button.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-button/fhem-button.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-button/fhem-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-button/fhem-button.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-clock/fhem-clock.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-clock/fhem-clock.component.html -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-clock/fhem-clock.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-clock/fhem-clock.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-clock/fhem-clock.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-clock/fhem-clock.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-grouper/fhem-grouper.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-grouper/fhem-grouper.component.html -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-grouper/fhem-grouper.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-grouper/fhem-grouper.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-html/fhem-html.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-html/fhem-html.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-html/fhem-html.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-html/fhem-html.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-icon/fhem-icon.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-icon/fhem-icon.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-icon/fhem-icon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-icon/fhem-icon.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-iframe/fhem-iframe.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-iframe/fhem-iframe.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-iframe/fhem-iframe.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-iframe/fhem-iframe.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-image/fhem-image.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-image/fhem-image.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-image/fhem-image.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-image/fhem-image.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-input/fhem-input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-input/fhem-input.component.html -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-input/fhem-input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-input/fhem-input.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-input/fhem-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-input/fhem-input.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-label/fhem-label.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-label/fhem-label.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-label/fhem-label.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-label/fhem-label.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-line/fhem-line.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-line/fhem-line.component.html -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-line/fhem-line.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-line/fhem-line.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-line/fhem-line.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-line/fhem-line.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-picker/fhem-picker.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-picker/fhem-picker.component.html -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-picker/fhem-picker.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-picker/fhem-picker.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-picker/fhem-picker.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-picker/fhem-picker.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-popup/fhem-popup.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-popup/fhem-popup.component.html -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-popup/fhem-popup.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-popup/fhem-popup.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-popup/fhem-popup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-popup/fhem-popup.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-select/fhem-select.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-select/fhem-select.component.html -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-select/fhem-select.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-select/fhem-select.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-select/fhem-select.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-select/fhem-select.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-slider/fhem-slider.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-slider/fhem-slider.component.html -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-slider/fhem-slider.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-slider/fhem-slider.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-slider/fhem-slider.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-slider/fhem-slider.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-swiper/fhem-swiper.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-swiper/fhem-swiper.component.html -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-swiper/fhem-swiper.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-swiper/fhem-swiper.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-swiper/fhem-swiper.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-swiper/fhem-swiper.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-switch/fhem-switch.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-switch/fhem-switch.component.html -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-switch/fhem-switch.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-switch/fhem-switch.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-table/fhem-table.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-table/fhem-table.component.html -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-table/fhem-table.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-table/fhem-table.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-table/fhem-table.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-table/fhem-table.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-tabs/fhem-tabs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-tabs/fhem-tabs.component.html -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-tabs/fhem-tabs.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-tabs/fhem-tabs.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-tabs/fhem-tabs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-tabs/fhem-tabs.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-weather/fhem-weather.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-weather/fhem-weather.component.html -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-weather/fhem-weather.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-weather/fhem-weather.component.scss -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-weather/fhem-weather.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-weather/fhem-weather.component.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-weather/fhem-weather.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-weather/fhem-weather.type.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-weather/mappers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './proplanta'; -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/fhem-weather/mappers/proplanta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/fhem-weather/mappers/proplanta.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/lib/index.ts -------------------------------------------------------------------------------- /libs/fhem-components/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/src/test-setup.ts -------------------------------------------------------------------------------- /libs/fhem-components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/tsconfig.json -------------------------------------------------------------------------------- /libs/fhem-components/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/fhem-components/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/fhem-components/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/guards/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/guards/.eslintrc.json -------------------------------------------------------------------------------- /libs/guards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/guards/README.md -------------------------------------------------------------------------------- /libs/guards/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/guards/jest.config.ts -------------------------------------------------------------------------------- /libs/guards/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/guards/project.json -------------------------------------------------------------------------------- /libs/guards/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/demoMode.guard'; -------------------------------------------------------------------------------- /libs/guards/src/lib/demoMode.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/guards/src/lib/demoMode.guard.ts -------------------------------------------------------------------------------- /libs/guards/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/guards/src/test-setup.ts -------------------------------------------------------------------------------- /libs/guards/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/guards/tsconfig.json -------------------------------------------------------------------------------- /libs/guards/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/guards/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/guards/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/guards/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/modules/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/modules/.eslintrc.json -------------------------------------------------------------------------------- /libs/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/modules/README.md -------------------------------------------------------------------------------- /libs/modules/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/modules/jest.config.ts -------------------------------------------------------------------------------- /libs/modules/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/modules/project.json -------------------------------------------------------------------------------- /libs/modules/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/modules/src/index.ts -------------------------------------------------------------------------------- /libs/modules/src/lib/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/modules/src/lib/core.module.ts -------------------------------------------------------------------------------- /libs/modules/src/lib/coreAndTranslate.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/modules/src/lib/coreAndTranslate.module.ts -------------------------------------------------------------------------------- /libs/modules/src/lib/coreExtended.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/modules/src/lib/coreExtended.module.ts -------------------------------------------------------------------------------- /libs/modules/src/lib/coreExtendedAndTranslate.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/modules/src/lib/coreExtendedAndTranslate.module.ts -------------------------------------------------------------------------------- /libs/modules/src/lib/coreServices.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/modules/src/lib/coreServices.module.ts -------------------------------------------------------------------------------- /libs/modules/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/modules/src/test-setup.ts -------------------------------------------------------------------------------- /libs/modules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/modules/tsconfig.json -------------------------------------------------------------------------------- /libs/modules/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/modules/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/modules/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/modules/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/.browserslistrc -------------------------------------------------------------------------------- /libs/pages/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/README.md -------------------------------------------------------------------------------- /libs/pages/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/project.json -------------------------------------------------------------------------------- /libs/pages/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/index.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/app-pages-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/app-pages-routing.module.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/app-pages.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/app-pages.module.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/home/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/home/animations.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/home/home-routing.module.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/home/home.module.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/home/home.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/home/home.page.html -------------------------------------------------------------------------------- /libs/pages/src/lib/home/home.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/home/home.page.scss -------------------------------------------------------------------------------- /libs/pages/src/lib/home/home.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/home/home.page.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/pages.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/pages.style.scss -------------------------------------------------------------------------------- /libs/pages/src/lib/release-notes/release-notes.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/release-notes/release-notes.page.html -------------------------------------------------------------------------------- /libs/pages/src/lib/release-notes/release-notes.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/release-notes/release-notes.page.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/rights/imprint/imprint.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/rights/imprint/imprint.component.html -------------------------------------------------------------------------------- /libs/pages/src/lib/rights/imprint/imprint.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/rights/imprint/imprint.component.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/rights/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/rights/index.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/rights/privacy/privacy.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/rights/privacy/privacy.component.html -------------------------------------------------------------------------------- /libs/pages/src/lib/rights/privacy/privacy.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/rights/privacy/privacy.component.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/rights/rights.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/rights/rights.style.scss -------------------------------------------------------------------------------- /libs/pages/src/lib/rights/support/support.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/rights/support/support.component.html -------------------------------------------------------------------------------- /libs/pages/src/lib/rights/support/support.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/rights/support/support.component.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/rights/terms/terms.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/rights/terms/terms.component.html -------------------------------------------------------------------------------- /libs/pages/src/lib/rights/terms/terms.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/rights/terms/terms.component.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/rights/usage/usage.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/rights/usage/usage.component.html -------------------------------------------------------------------------------- /libs/pages/src/lib/rights/usage/usage.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/rights/usage/usage.component.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/room/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/room/animations.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/room/room-content/room-content.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/room/room-content/room-content.page.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/room/room-guard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/room/room-guard.service.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/room/room-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/room/room-routing.module.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/room/room.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/room/room.module.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/room/room.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/room/room.page.html -------------------------------------------------------------------------------- /libs/pages/src/lib/room/room.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/room/room.page.scss -------------------------------------------------------------------------------- /libs/pages/src/lib/room/room.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/room/room.page.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/sandbox/sandbox-guard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/sandbox/sandbox-guard.service.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/sandbox/sandbox-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/sandbox/sandbox-routing.module.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/sandbox/sandbox.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/sandbox/sandbox.module.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/sandbox/sandbox.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/sandbox/sandbox.page.html -------------------------------------------------------------------------------- /libs/pages/src/lib/sandbox/sandbox.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/sandbox/sandbox.page.scss -------------------------------------------------------------------------------- /libs/pages/src/lib/sandbox/sandbox.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/sandbox/sandbox.page.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/sandbox/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/sandbox/services/index.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/sandbox/services/sandbox-editor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/sandbox/services/sandbox-editor.service.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/sandbox/services/sandbox-fhem.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/sandbox/services/sandbox-fhem.service.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/sandbox/services/sandbox-settings.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/sandbox/services/sandbox-settings.service.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/sandbox/services/sandbox-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/sandbox/services/sandbox-storage.service.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/sandbox/services/sandbox-structure.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/sandbox/services/sandbox-structure.service.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/sandbox/services/sandbox-undo-redo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/sandbox/services/sandbox-undo-redo.service.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/settings/advanced/advanced.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/settings/advanced/advanced.page.html -------------------------------------------------------------------------------- /libs/pages/src/lib/settings/advanced/advanced.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/settings/advanced/advanced.page.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/settings/login/login.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/settings/login/login.page.html -------------------------------------------------------------------------------- /libs/pages/src/lib/settings/login/login.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/settings/login/login.page.scss -------------------------------------------------------------------------------- /libs/pages/src/lib/settings/login/login.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/settings/login/login.page.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/settings/settings.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/settings/settings.module.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/settings/settings.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/settings/settings.page.html -------------------------------------------------------------------------------- /libs/pages/src/lib/settings/settings.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/settings/settings.page.scss -------------------------------------------------------------------------------- /libs/pages/src/lib/settings/settings.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/settings/settings.page.ts -------------------------------------------------------------------------------- /libs/pages/src/lib/settings/support/support.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/settings/support/support.page.html -------------------------------------------------------------------------------- /libs/pages/src/lib/settings/support/support.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/settings/support/support.page.scss -------------------------------------------------------------------------------- /libs/pages/src/lib/settings/support/support.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/lib/settings/support/support.page.ts -------------------------------------------------------------------------------- /libs/pages/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/src/test-setup.ts -------------------------------------------------------------------------------- /libs/pages/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/pages/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/services/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/.browserslistrc -------------------------------------------------------------------------------- /libs/services/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/.eslintrc.json -------------------------------------------------------------------------------- /libs/services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/README.md -------------------------------------------------------------------------------- /libs/services/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/jest.config.ts -------------------------------------------------------------------------------- /libs/services/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/project.json -------------------------------------------------------------------------------- /libs/services/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/index.ts -------------------------------------------------------------------------------- /libs/services/src/lib/back-button.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/back-button.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/color.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/color.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/component-loader.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/component-loader.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/contextMenu.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/contextMenu.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/cssVariable.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/cssVariable.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/editor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/editor.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/fhem.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/fhem.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/hotkey.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/hotkey.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/icon.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/icon.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/importExport.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/importExport.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/loader.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/loader.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/logger.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/platform-specific/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/platform-specific/index.ts -------------------------------------------------------------------------------- /libs/services/src/lib/release-informer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/release-informer.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/select-component.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/select-component.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/settings.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/settings.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/storage.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/store/products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/store/products.ts -------------------------------------------------------------------------------- /libs/services/src/lib/store/store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/store/store.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/structure.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/structure.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/theme/theme.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/theme/theme.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/theme/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/theme/themes.ts -------------------------------------------------------------------------------- /libs/services/src/lib/time.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/time.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/toast.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/toast.service.ts -------------------------------------------------------------------------------- /libs/services/src/lib/undo-redo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/lib/undo-redo.service.ts -------------------------------------------------------------------------------- /libs/services/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/src/test-setup.ts -------------------------------------------------------------------------------- /libs/services/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/tsconfig.json -------------------------------------------------------------------------------- /libs/services/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/services/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/services/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/types/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/.browserslistrc -------------------------------------------------------------------------------- /libs/types/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/.eslintrc.json -------------------------------------------------------------------------------- /libs/types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/README.md -------------------------------------------------------------------------------- /libs/types/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/jest.config.ts -------------------------------------------------------------------------------- /libs/types/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/project.json -------------------------------------------------------------------------------- /libs/types/src/lib/common/index.ts: -------------------------------------------------------------------------------- 1 | export * from './theme.type'; -------------------------------------------------------------------------------- /libs/types/src/lib/common/theme.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/src/lib/common/theme.type.ts -------------------------------------------------------------------------------- /libs/types/src/lib/components/core.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/src/lib/components/core.type.ts -------------------------------------------------------------------------------- /libs/types/src/lib/components/editor.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/src/lib/components/editor.type.ts -------------------------------------------------------------------------------- /libs/types/src/lib/components/fhem.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/src/lib/components/fhem.type.ts -------------------------------------------------------------------------------- /libs/types/src/lib/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/src/lib/components/index.ts -------------------------------------------------------------------------------- /libs/types/src/lib/components/registry.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/src/lib/components/registry.type.ts -------------------------------------------------------------------------------- /libs/types/src/lib/components/settings.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/src/lib/components/settings.type.ts -------------------------------------------------------------------------------- /libs/types/src/lib/docs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './nav-item.type'; -------------------------------------------------------------------------------- /libs/types/src/lib/docs/nav-item.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/src/lib/docs/nav-item.type.ts -------------------------------------------------------------------------------- /libs/types/src/lib/fhem/connection.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/src/lib/fhem/connection.type.ts -------------------------------------------------------------------------------- /libs/types/src/lib/fhem/devices.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/src/lib/fhem/devices.type.ts -------------------------------------------------------------------------------- /libs/types/src/lib/fhem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/src/lib/fhem/index.ts -------------------------------------------------------------------------------- /libs/types/src/lib/room/index.ts: -------------------------------------------------------------------------------- 1 | export * from './room.type'; -------------------------------------------------------------------------------- /libs/types/src/lib/room/room.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/src/lib/room/room.type.ts -------------------------------------------------------------------------------- /libs/types/src/lib/storage/index.ts: -------------------------------------------------------------------------------- 1 | export * from './storage.type'; -------------------------------------------------------------------------------- /libs/types/src/lib/storage/storage.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/src/lib/storage/storage.type.ts -------------------------------------------------------------------------------- /libs/types/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/src/test-setup.ts -------------------------------------------------------------------------------- /libs/types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/tsconfig.json -------------------------------------------------------------------------------- /libs/types/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/types/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/types/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/ui/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/.browserslistrc -------------------------------------------------------------------------------- /libs/ui/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/.eslintrc.json -------------------------------------------------------------------------------- /libs/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/README.md -------------------------------------------------------------------------------- /libs/ui/assets/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /libs/ui/assets/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /libs/ui/assets/fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /libs/ui/assets/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /libs/ui/assets/i18n/app/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/i18n/app/de.json -------------------------------------------------------------------------------- /libs/ui/assets/i18n/app/en.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /libs/ui/assets/i18n/web/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/i18n/web/de.json -------------------------------------------------------------------------------- /libs/ui/assets/i18n/web/en.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_door.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_door.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_door_locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_door_locked.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_door_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_door_open.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_door_opener_key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_door_opener_key.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_door_slide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_door_slide.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_door_slide_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_door_slide_open.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_door_tilt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_door_tilt.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_door_unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_door_unlocked.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_10.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_100.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_20.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_30.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_40.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_50.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_60.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_60.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_70.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_70.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_80.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_80.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_90.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_90.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_attention.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_attention.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_automatic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_automatic.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_down.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_jam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_jam.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_locked.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_manual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_manual.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_stop.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_unlocked.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_up.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_vert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_vert.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_vert_automatic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_vert_automatic.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_00.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_00.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_10.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_100.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_20.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_30.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_40.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_50.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_60.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_60.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_70.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_70.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_80.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_80.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_90.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_vert_blade_90.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_vert_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_vert_down.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_vert_manual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_vert_manual.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_shutter_vert_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_shutter_vert_up.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_window_1w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_window_1w.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_window_1w_locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_window_1w_locked.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_window_1w_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_window_1w_open.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_window_1w_tilt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_window_1w_tilt.svg -------------------------------------------------------------------------------- /libs/ui/assets/icons/knx-uf/fts_window_1w_unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/icons/knx-uf/fts_window_1w_unlocked.svg -------------------------------------------------------------------------------- /libs/ui/assets/img/app/default-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/img/app/default-image.png -------------------------------------------------------------------------------- /libs/ui/assets/img/app/default-music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/img/app/default-music.png -------------------------------------------------------------------------------- /libs/ui/assets/img/common/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/img/common/icon.png -------------------------------------------------------------------------------- /libs/ui/assets/img/common/icon_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/assets/img/common/icon_transparent.png -------------------------------------------------------------------------------- /libs/ui/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/jest.config.ts -------------------------------------------------------------------------------- /libs/ui/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/project.json -------------------------------------------------------------------------------- /libs/ui/styles/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/styles/_align.scss -------------------------------------------------------------------------------- /libs/ui/styles/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/styles/_animations.scss -------------------------------------------------------------------------------- /libs/ui/styles/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/styles/_fonts.scss -------------------------------------------------------------------------------- /libs/ui/styles/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/styles/_global.scss -------------------------------------------------------------------------------- /libs/ui/styles/_ion-overwrite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/styles/_ion-overwrite.scss -------------------------------------------------------------------------------- /libs/ui/styles/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/styles/_toasts.scss -------------------------------------------------------------------------------- /libs/ui/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/styles/_variables.scss -------------------------------------------------------------------------------- /libs/ui/styles/app/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/styles/app/colors.scss -------------------------------------------------------------------------------- /libs/ui/styles/app/editable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/styles/app/editable.scss -------------------------------------------------------------------------------- /libs/ui/styles/app/sizes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/styles/app/sizes.scss -------------------------------------------------------------------------------- /libs/ui/styles/app/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/styles/app/styles.scss -------------------------------------------------------------------------------- /libs/ui/styles/web/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/styles/web/colors.scss -------------------------------------------------------------------------------- /libs/ui/styles/web/sizes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/styles/web/sizes.scss -------------------------------------------------------------------------------- /libs/ui/styles/web/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/styles/web/styles.scss -------------------------------------------------------------------------------- /libs/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/tsconfig.json -------------------------------------------------------------------------------- /libs/ui/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/ui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/ui/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/utils/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/.browserslistrc -------------------------------------------------------------------------------- /libs/utils/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/.eslintrc.json -------------------------------------------------------------------------------- /libs/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/README.md -------------------------------------------------------------------------------- /libs/utils/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/jest.config.ts -------------------------------------------------------------------------------- /libs/utils/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/project.json -------------------------------------------------------------------------------- /libs/utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/src/index.ts -------------------------------------------------------------------------------- /libs/utils/src/lib/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/src/lib/colors.ts -------------------------------------------------------------------------------- /libs/utils/src/lib/fhem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/src/lib/fhem.ts -------------------------------------------------------------------------------- /libs/utils/src/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/src/lib/fonts.ts -------------------------------------------------------------------------------- /libs/utils/src/lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/src/lib/helpers.ts -------------------------------------------------------------------------------- /libs/utils/src/lib/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/src/lib/id.ts -------------------------------------------------------------------------------- /libs/utils/src/lib/importExport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/src/lib/importExport.ts -------------------------------------------------------------------------------- /libs/utils/src/lib/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/src/lib/time.ts -------------------------------------------------------------------------------- /libs/utils/src/lib/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/src/lib/version.ts -------------------------------------------------------------------------------- /libs/utils/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/src/test-setup.ts -------------------------------------------------------------------------------- /libs/utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/tsconfig.json -------------------------------------------------------------------------------- /libs/utils/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/utils/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/libs/utils/tsconfig.spec.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/package.json -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syrex-o/FhemNative/HEAD/tsconfig.base.json --------------------------------------------------------------------------------