├── .dockerignore ├── .gitignore ├── .stylelintrc.json ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── angular.json ├── browserslist ├── docker ├── .env ├── Dockerfile ├── Dockerfile.experimental ├── README.md ├── config.toml ├── configs │ ├── config.toml │ └── grafana-defaults.ini ├── docker-compose.yml ├── keto │ └── keto.yml ├── nats │ └── nats.conf ├── nginx.conf ├── nginx │ ├── .gitignore │ ├── entrypoint-ui.sh │ ├── entrypoint.sh │ ├── nginx-key.conf │ ├── nginx-x509.conf │ └── snippets │ │ ├── http_access_log.conf │ │ ├── mqtt-upstream-cluster.conf │ │ ├── mqtt-upstream-single.conf │ │ ├── mqtt-ws-upstream-cluster.conf │ │ ├── mqtt-ws-upstream-single.conf │ │ ├── proxy-headers.conf │ │ ├── ssl-client.conf │ │ ├── ssl.conf │ │ ├── stream_access_log.conf │ │ ├── verify-ssl-client.conf │ │ └── ws-upgrade.conf ├── ssl │ ├── Makefile │ ├── authorization.js │ ├── certs │ │ ├── ca.crt │ │ ├── ca.key │ │ ├── ca.srl │ │ ├── mainflux-server.crt │ │ ├── mainflux-server.key │ │ ├── thing.crt │ │ └── thing.key │ └── dhparam.pem ├── templates │ └── users.tmpl └── vault │ ├── .gitignore │ ├── README.md │ ├── config.hcl │ ├── docker-compose.yml │ ├── entrypoint.sh │ ├── vault-init.sh │ ├── vault-set-pki.sh │ └── vault-unseal.sh ├── e2e └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── proxy-config.json ├── src ├── app │ ├── @core │ │ ├── core.module.ts │ │ ├── module-import-guard.ts │ │ └── utils │ │ │ ├── .gitkeep │ │ │ ├── analytics.service.ts │ │ │ ├── index.ts │ │ │ └── layout.service.ts │ ├── @theme │ │ ├── components │ │ │ ├── footer │ │ │ │ ├── footer.component.scss │ │ │ │ └── footer.component.ts │ │ │ ├── header │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ └── header.component.ts │ │ │ ├── index.ts │ │ │ └── search-input │ │ │ │ ├── search-input.component.scss │ │ │ │ └── search-input.component.ts │ │ ├── directives │ │ │ └── .gitkeep │ │ ├── layouts │ │ │ ├── index.ts │ │ │ ├── one-column │ │ │ │ ├── one-column.layout.scss │ │ │ │ └── one-column.layout.ts │ │ │ ├── three-columns │ │ │ │ ├── three-columns.layout.scss │ │ │ │ └── three-columns.layout.ts │ │ │ └── two-columns │ │ │ │ ├── two-columns.layout.scss │ │ │ │ └── two-columns.layout.ts │ │ ├── pipes │ │ │ ├── .gitkeep │ │ │ ├── capitalize.pipe.ts │ │ │ ├── index.ts │ │ │ ├── number-with-commas.pipe.ts │ │ │ ├── plural.pipe.ts │ │ │ ├── round.pipe.ts │ │ │ └── timing.pipe.ts │ │ ├── styles │ │ │ ├── _layout.scss │ │ │ ├── _overrides.scss │ │ │ ├── pace.theme.scss │ │ │ ├── styles.scss │ │ │ ├── theme.corporate.ts │ │ │ ├── theme.cosmic.ts │ │ │ ├── theme.dark.ts │ │ │ ├── theme.default.ts │ │ │ └── themes.scss │ │ └── theme.module.ts │ ├── app-routing.module.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── auth │ │ ├── auth-guard.service.ts │ │ └── auth.token.interceptor.service.ts │ ├── common │ │ ├── common.module.ts │ │ ├── interfaces │ │ │ ├── bootstrap.interface.ts │ │ │ ├── certs.interface.ts │ │ │ ├── gateway.interface.ts │ │ │ ├── lora.interface.ts │ │ │ ├── mainflux.interface.ts │ │ │ └── opcua.interface.ts │ │ ├── services │ │ │ ├── bootstrap │ │ │ │ └── bootstrap.service.ts │ │ │ ├── certs │ │ │ │ └── certs.service.ts │ │ │ ├── channels │ │ │ │ └── channels.service.ts │ │ │ ├── fs │ │ │ │ └── fs.service.ts │ │ │ ├── gateways │ │ │ │ └── gateways.service.ts │ │ │ ├── interval │ │ │ │ └── interval.service.ts │ │ │ ├── lora │ │ │ │ └── lora.service.ts │ │ │ ├── messages │ │ │ │ └── messages.service.ts │ │ │ ├── mqtt │ │ │ │ └── mqtt.manager.service.ts │ │ │ ├── notifications │ │ │ │ └── notifications.service.ts │ │ │ ├── opcua │ │ │ │ └── opcua.service.ts │ │ │ ├── things │ │ │ │ └── things.service.ts │ │ │ ├── twins │ │ │ │ └── twins.service.ts │ │ │ └── users │ │ │ │ ├── groups.service.ts │ │ │ │ └── users.service.ts │ │ └── store │ │ │ └── opcua.store.ts │ ├── pages │ │ ├── channels │ │ │ ├── add │ │ │ │ ├── channels.add.component.html │ │ │ │ ├── channels.add.component.scss │ │ │ │ └── channels.add.component.ts │ │ │ ├── channels.component.html │ │ │ ├── channels.component.scss │ │ │ ├── channels.component.ts │ │ │ └── details │ │ │ │ ├── channels.details.component.html │ │ │ │ ├── channels.details.component.scss │ │ │ │ └── channels.details.component.ts │ │ ├── dashboard │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.scss │ │ │ └── dashboard.component.ts │ │ ├── login │ │ │ ├── login.component.html │ │ │ └── login.component.ts │ │ ├── logout │ │ │ └── logout.component.ts │ │ ├── pages-menu.ts │ │ ├── pages-routing.module.ts │ │ ├── pages.component.scss │ │ ├── pages.component.ts │ │ ├── pages.module.ts │ │ ├── profile │ │ │ ├── profile.component.html │ │ │ ├── profile.component.scss │ │ │ └── profile.component.ts │ │ ├── register │ │ │ ├── register.component.html │ │ │ └── register.component.ts │ │ ├── services │ │ │ ├── gateways │ │ │ │ ├── add │ │ │ │ │ ├── gateways.add.component.html │ │ │ │ │ ├── gateways.add.component.scss │ │ │ │ │ └── gateways.add.component.ts │ │ │ │ ├── details │ │ │ │ │ ├── config │ │ │ │ │ │ ├── gateways.config.component.html │ │ │ │ │ │ ├── gateways.config.component.scss │ │ │ │ │ │ └── gateways.config.component.ts │ │ │ │ │ ├── gateways.details.component.html │ │ │ │ │ ├── gateways.details.component.scss │ │ │ │ │ ├── gateways.details.component.ts │ │ │ │ │ ├── info │ │ │ │ │ │ ├── gateways.info.component.html │ │ │ │ │ │ ├── gateways.info.component.scss │ │ │ │ │ │ └── gateways.info.component.ts │ │ │ │ │ └── xterm │ │ │ │ │ │ ├── gateways.xterm.component.html │ │ │ │ │ │ ├── gateways.xterm.component.scss │ │ │ │ │ │ └── gateways.xterm.component.ts │ │ │ │ ├── gateways.component.html │ │ │ │ ├── gateways.component.scss │ │ │ │ └── gateways.component.ts │ │ │ ├── lora │ │ │ │ ├── add │ │ │ │ │ ├── lora.add.component.html │ │ │ │ │ ├── lora.add.component.scss │ │ │ │ │ └── lora.add.component.ts │ │ │ │ ├── details │ │ │ │ │ ├── lora.details.component.html │ │ │ │ │ ├── lora.details.component.scss │ │ │ │ │ └── lora.details.component.ts │ │ │ │ ├── lora.component.html │ │ │ │ ├── lora.component.scss │ │ │ │ └── lora.component.ts │ │ │ ├── opcua │ │ │ │ ├── add │ │ │ │ │ ├── opcua.add.component.html │ │ │ │ │ ├── opcua.add.component.scss │ │ │ │ │ └── opcua.add.component.ts │ │ │ │ ├── details │ │ │ │ │ ├── opcua.details.component.html │ │ │ │ │ ├── opcua.details.component.scss │ │ │ │ │ └── opcua.details.component.ts │ │ │ │ ├── opcua.component.html │ │ │ │ ├── opcua.component.scss │ │ │ │ └── opcua.component.ts │ │ │ ├── services.module.ts │ │ │ ├── services.routing.module.ts │ │ │ └── twins │ │ │ │ ├── add │ │ │ │ ├── twins.add.component.html │ │ │ │ ├── twins.add.component.scss │ │ │ │ └── twins.add.component.ts │ │ │ │ ├── definitions │ │ │ │ ├── twins.definitions.component.html │ │ │ │ ├── twins.definitions.component.scss │ │ │ │ └── twins.definitions.component.ts │ │ │ │ ├── details │ │ │ │ ├── twins.details.component.html │ │ │ │ ├── twins.details.component.scss │ │ │ │ └── twins.details.component.ts │ │ │ │ ├── states │ │ │ │ ├── twins.states.component.html │ │ │ │ ├── twins.states.component.scss │ │ │ │ └── twins.states.component.ts │ │ │ │ ├── twins.component.html │ │ │ │ ├── twins.component.scss │ │ │ │ └── twins.component.ts │ │ ├── things │ │ │ ├── add │ │ │ │ ├── things.add.component.html │ │ │ │ ├── things.add.component.scss │ │ │ │ └── things.add.component.ts │ │ │ ├── cert │ │ │ │ ├── things.cert.component.html │ │ │ │ ├── things.cert.component.scss │ │ │ │ └── things.cert.component.ts │ │ │ ├── details │ │ │ │ ├── things.details.component.html │ │ │ │ ├── things.details.component.scss │ │ │ │ └── things.details.component.ts │ │ │ ├── things.component.html │ │ │ ├── things.component.scss │ │ │ └── things.component.ts │ │ ├── user-groups │ │ │ ├── add │ │ │ │ ├── user-groups.add.component.html │ │ │ │ ├── user-groups.add.component.scss │ │ │ │ └── user-groups.add.component.ts │ │ │ ├── details │ │ │ │ ├── user-groups.details.component.html │ │ │ │ ├── user-groups.details.component.scss │ │ │ │ └── user-groups.details.component.ts │ │ │ ├── user-groups.component.html │ │ │ ├── user-groups.component.scss │ │ │ └── user-groups.component.ts │ │ └── users │ │ │ ├── add │ │ │ ├── users.add.component.html │ │ │ ├── users.add.component.scss │ │ │ └── users.add.component.ts │ │ │ ├── details │ │ │ ├── users.details.component.html │ │ │ ├── users.details.component.scss │ │ │ └── users.details.component.ts │ │ │ ├── users.component.html │ │ │ ├── users.component.scss │ │ │ └── users.component.ts │ ├── shared │ │ ├── components │ │ │ ├── chart │ │ │ │ ├── chart.colors.ts │ │ │ │ ├── chart.component.html │ │ │ │ ├── chart.component.scss │ │ │ │ ├── chart.component.ts │ │ │ │ ├── chart.module.ts │ │ │ │ └── chart.options.ts │ │ │ ├── confirmation │ │ │ │ ├── confirmation.component.html │ │ │ │ ├── confirmation.component.scss │ │ │ │ └── confirmation.component.ts │ │ │ ├── map │ │ │ │ ├── leaflet │ │ │ │ │ ├── map.leaflet.component.html │ │ │ │ │ ├── map.leaflet.component.scss │ │ │ │ │ └── map.leaflet.component.ts │ │ │ │ └── map.module.ts │ │ │ ├── message-monitor │ │ │ │ ├── config │ │ │ │ │ ├── message-monitor.config.component.html │ │ │ │ │ ├── message-monitor.config.component.scss │ │ │ │ │ └── message-monitor.config.component.ts │ │ │ │ ├── message-monitor.component.html │ │ │ │ ├── message-monitor.component.scss │ │ │ │ └── message-monitor.component.ts │ │ │ ├── pagination │ │ │ │ ├── pagination.component.html │ │ │ │ ├── pagination.component.scss │ │ │ │ └── pagination.component.ts │ │ │ └── table │ │ │ │ ├── table.component.html │ │ │ │ ├── table.component.scss │ │ │ │ └── table.component.ts │ │ ├── pipes │ │ │ ├── message-value.pipe.ts │ │ │ └── time.pipe.ts │ │ └── shared.module.ts │ └── styles │ │ └── mainflux.scss ├── assets │ ├── env.js │ ├── env.template.js │ ├── images │ │ ├── mainflux-logo.png │ │ └── marker-icon.png │ └── text │ │ └── strings.ts ├── environments │ ├── environment.defaults.ts │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── favicon.png ├── index.html ├── main.ts ├── polyfills.ts ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json └── tslint.json /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/browserslist -------------------------------------------------------------------------------- /docker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/.env -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile.experimental: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/Dockerfile.experimental -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/config.toml -------------------------------------------------------------------------------- /docker/configs/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/configs/config.toml -------------------------------------------------------------------------------- /docker/configs/grafana-defaults.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/configs/grafana-defaults.ini -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/keto/keto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/keto/keto.yml -------------------------------------------------------------------------------- /docker/nats/nats.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nats/nats.conf -------------------------------------------------------------------------------- /docker/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx.conf -------------------------------------------------------------------------------- /docker/nginx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx/.gitignore -------------------------------------------------------------------------------- /docker/nginx/entrypoint-ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx/entrypoint-ui.sh -------------------------------------------------------------------------------- /docker/nginx/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx/entrypoint.sh -------------------------------------------------------------------------------- /docker/nginx/nginx-key.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx/nginx-key.conf -------------------------------------------------------------------------------- /docker/nginx/nginx-x509.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx/nginx-x509.conf -------------------------------------------------------------------------------- /docker/nginx/snippets/http_access_log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx/snippets/http_access_log.conf -------------------------------------------------------------------------------- /docker/nginx/snippets/mqtt-upstream-cluster.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx/snippets/mqtt-upstream-cluster.conf -------------------------------------------------------------------------------- /docker/nginx/snippets/mqtt-upstream-single.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx/snippets/mqtt-upstream-single.conf -------------------------------------------------------------------------------- /docker/nginx/snippets/mqtt-ws-upstream-cluster.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx/snippets/mqtt-ws-upstream-cluster.conf -------------------------------------------------------------------------------- /docker/nginx/snippets/mqtt-ws-upstream-single.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx/snippets/mqtt-ws-upstream-single.conf -------------------------------------------------------------------------------- /docker/nginx/snippets/proxy-headers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx/snippets/proxy-headers.conf -------------------------------------------------------------------------------- /docker/nginx/snippets/ssl-client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx/snippets/ssl-client.conf -------------------------------------------------------------------------------- /docker/nginx/snippets/ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx/snippets/ssl.conf -------------------------------------------------------------------------------- /docker/nginx/snippets/stream_access_log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx/snippets/stream_access_log.conf -------------------------------------------------------------------------------- /docker/nginx/snippets/verify-ssl-client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx/snippets/verify-ssl-client.conf -------------------------------------------------------------------------------- /docker/nginx/snippets/ws-upgrade.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/nginx/snippets/ws-upgrade.conf -------------------------------------------------------------------------------- /docker/ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/ssl/Makefile -------------------------------------------------------------------------------- /docker/ssl/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/ssl/authorization.js -------------------------------------------------------------------------------- /docker/ssl/certs/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/ssl/certs/ca.crt -------------------------------------------------------------------------------- /docker/ssl/certs/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/ssl/certs/ca.key -------------------------------------------------------------------------------- /docker/ssl/certs/ca.srl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/ssl/certs/ca.srl -------------------------------------------------------------------------------- /docker/ssl/certs/mainflux-server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/ssl/certs/mainflux-server.crt -------------------------------------------------------------------------------- /docker/ssl/certs/mainflux-server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/ssl/certs/mainflux-server.key -------------------------------------------------------------------------------- /docker/ssl/certs/thing.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/ssl/certs/thing.crt -------------------------------------------------------------------------------- /docker/ssl/certs/thing.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/ssl/certs/thing.key -------------------------------------------------------------------------------- /docker/ssl/dhparam.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/ssl/dhparam.pem -------------------------------------------------------------------------------- /docker/templates/users.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/templates/users.tmpl -------------------------------------------------------------------------------- /docker/vault/.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | -------------------------------------------------------------------------------- /docker/vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/vault/README.md -------------------------------------------------------------------------------- /docker/vault/config.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/vault/config.hcl -------------------------------------------------------------------------------- /docker/vault/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/vault/docker-compose.yml -------------------------------------------------------------------------------- /docker/vault/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/vault/entrypoint.sh -------------------------------------------------------------------------------- /docker/vault/vault-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/vault/vault-init.sh -------------------------------------------------------------------------------- /docker/vault/vault-set-pki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/vault/vault-set-pki.sh -------------------------------------------------------------------------------- /docker/vault/vault-unseal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/docker/vault/vault-unseal.sh -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /proxy-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/proxy-config.json -------------------------------------------------------------------------------- /src/app/@core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@core/core.module.ts -------------------------------------------------------------------------------- /src/app/@core/module-import-guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@core/module-import-guard.ts -------------------------------------------------------------------------------- /src/app/@core/utils/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/@core/utils/analytics.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@core/utils/analytics.service.ts -------------------------------------------------------------------------------- /src/app/@core/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@core/utils/index.ts -------------------------------------------------------------------------------- /src/app/@core/utils/layout.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@core/utils/layout.service.ts -------------------------------------------------------------------------------- /src/app/@theme/components/footer/footer.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/components/footer/footer.component.scss -------------------------------------------------------------------------------- /src/app/@theme/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/components/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/@theme/components/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/components/header/header.component.html -------------------------------------------------------------------------------- /src/app/@theme/components/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/components/header/header.component.scss -------------------------------------------------------------------------------- /src/app/@theme/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/components/header/header.component.ts -------------------------------------------------------------------------------- /src/app/@theme/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/components/index.ts -------------------------------------------------------------------------------- /src/app/@theme/components/search-input/search-input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/components/search-input/search-input.component.scss -------------------------------------------------------------------------------- /src/app/@theme/components/search-input/search-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/components/search-input/search-input.component.ts -------------------------------------------------------------------------------- /src/app/@theme/directives/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/@theme/layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/layouts/index.ts -------------------------------------------------------------------------------- /src/app/@theme/layouts/one-column/one-column.layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/layouts/one-column/one-column.layout.scss -------------------------------------------------------------------------------- /src/app/@theme/layouts/one-column/one-column.layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/layouts/one-column/one-column.layout.ts -------------------------------------------------------------------------------- /src/app/@theme/layouts/three-columns/three-columns.layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/layouts/three-columns/three-columns.layout.scss -------------------------------------------------------------------------------- /src/app/@theme/layouts/three-columns/three-columns.layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/layouts/three-columns/three-columns.layout.ts -------------------------------------------------------------------------------- /src/app/@theme/layouts/two-columns/two-columns.layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/layouts/two-columns/two-columns.layout.scss -------------------------------------------------------------------------------- /src/app/@theme/layouts/two-columns/two-columns.layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/layouts/two-columns/two-columns.layout.ts -------------------------------------------------------------------------------- /src/app/@theme/pipes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/@theme/pipes/capitalize.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/pipes/capitalize.pipe.ts -------------------------------------------------------------------------------- /src/app/@theme/pipes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/pipes/index.ts -------------------------------------------------------------------------------- /src/app/@theme/pipes/number-with-commas.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/pipes/number-with-commas.pipe.ts -------------------------------------------------------------------------------- /src/app/@theme/pipes/plural.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/pipes/plural.pipe.ts -------------------------------------------------------------------------------- /src/app/@theme/pipes/round.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/pipes/round.pipe.ts -------------------------------------------------------------------------------- /src/app/@theme/pipes/timing.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/pipes/timing.pipe.ts -------------------------------------------------------------------------------- /src/app/@theme/styles/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/styles/_layout.scss -------------------------------------------------------------------------------- /src/app/@theme/styles/_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/styles/_overrides.scss -------------------------------------------------------------------------------- /src/app/@theme/styles/pace.theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/styles/pace.theme.scss -------------------------------------------------------------------------------- /src/app/@theme/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/styles/styles.scss -------------------------------------------------------------------------------- /src/app/@theme/styles/theme.corporate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/styles/theme.corporate.ts -------------------------------------------------------------------------------- /src/app/@theme/styles/theme.cosmic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/styles/theme.cosmic.ts -------------------------------------------------------------------------------- /src/app/@theme/styles/theme.dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/styles/theme.dark.ts -------------------------------------------------------------------------------- /src/app/@theme/styles/theme.default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/styles/theme.default.ts -------------------------------------------------------------------------------- /src/app/@theme/styles/themes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/styles/themes.scss -------------------------------------------------------------------------------- /src/app/@theme/theme.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/@theme/theme.module.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/auth/auth-guard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/auth/auth-guard.service.ts -------------------------------------------------------------------------------- /src/app/auth/auth.token.interceptor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/auth/auth.token.interceptor.service.ts -------------------------------------------------------------------------------- /src/app/common/common.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/common.module.ts -------------------------------------------------------------------------------- /src/app/common/interfaces/bootstrap.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/interfaces/bootstrap.interface.ts -------------------------------------------------------------------------------- /src/app/common/interfaces/certs.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/interfaces/certs.interface.ts -------------------------------------------------------------------------------- /src/app/common/interfaces/gateway.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/interfaces/gateway.interface.ts -------------------------------------------------------------------------------- /src/app/common/interfaces/lora.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/interfaces/lora.interface.ts -------------------------------------------------------------------------------- /src/app/common/interfaces/mainflux.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/interfaces/mainflux.interface.ts -------------------------------------------------------------------------------- /src/app/common/interfaces/opcua.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/interfaces/opcua.interface.ts -------------------------------------------------------------------------------- /src/app/common/services/bootstrap/bootstrap.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/services/bootstrap/bootstrap.service.ts -------------------------------------------------------------------------------- /src/app/common/services/certs/certs.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/services/certs/certs.service.ts -------------------------------------------------------------------------------- /src/app/common/services/channels/channels.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/services/channels/channels.service.ts -------------------------------------------------------------------------------- /src/app/common/services/fs/fs.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/services/fs/fs.service.ts -------------------------------------------------------------------------------- /src/app/common/services/gateways/gateways.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/services/gateways/gateways.service.ts -------------------------------------------------------------------------------- /src/app/common/services/interval/interval.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/services/interval/interval.service.ts -------------------------------------------------------------------------------- /src/app/common/services/lora/lora.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/services/lora/lora.service.ts -------------------------------------------------------------------------------- /src/app/common/services/messages/messages.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/services/messages/messages.service.ts -------------------------------------------------------------------------------- /src/app/common/services/mqtt/mqtt.manager.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/services/mqtt/mqtt.manager.service.ts -------------------------------------------------------------------------------- /src/app/common/services/notifications/notifications.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/services/notifications/notifications.service.ts -------------------------------------------------------------------------------- /src/app/common/services/opcua/opcua.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/services/opcua/opcua.service.ts -------------------------------------------------------------------------------- /src/app/common/services/things/things.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/services/things/things.service.ts -------------------------------------------------------------------------------- /src/app/common/services/twins/twins.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/services/twins/twins.service.ts -------------------------------------------------------------------------------- /src/app/common/services/users/groups.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/services/users/groups.service.ts -------------------------------------------------------------------------------- /src/app/common/services/users/users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/services/users/users.service.ts -------------------------------------------------------------------------------- /src/app/common/store/opcua.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/common/store/opcua.store.ts -------------------------------------------------------------------------------- /src/app/pages/channels/add/channels.add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/channels/add/channels.add.component.html -------------------------------------------------------------------------------- /src/app/pages/channels/add/channels.add.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/channels/add/channels.add.component.scss -------------------------------------------------------------------------------- /src/app/pages/channels/add/channels.add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/channels/add/channels.add.component.ts -------------------------------------------------------------------------------- /src/app/pages/channels/channels.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/channels/channels.component.html -------------------------------------------------------------------------------- /src/app/pages/channels/channels.component.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/app/pages/channels/channels.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/channels/channels.component.ts -------------------------------------------------------------------------------- /src/app/pages/channels/details/channels.details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/channels/details/channels.details.component.html -------------------------------------------------------------------------------- /src/app/pages/channels/details/channels.details.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/channels/details/channels.details.component.scss -------------------------------------------------------------------------------- /src/app/pages/channels/details/channels.details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/channels/details/channels.details.component.ts -------------------------------------------------------------------------------- /src/app/pages/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /src/app/pages/dashboard/dashboard.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/dashboard/dashboard.component.scss -------------------------------------------------------------------------------- /src/app/pages/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/app/pages/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/login/login.component.html -------------------------------------------------------------------------------- /src/app/pages/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/login/login.component.ts -------------------------------------------------------------------------------- /src/app/pages/logout/logout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/logout/logout.component.ts -------------------------------------------------------------------------------- /src/app/pages/pages-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/pages-menu.ts -------------------------------------------------------------------------------- /src/app/pages/pages-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/pages-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/pages.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/pages.component.scss -------------------------------------------------------------------------------- /src/app/pages/pages.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/pages.component.ts -------------------------------------------------------------------------------- /src/app/pages/pages.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/pages.module.ts -------------------------------------------------------------------------------- /src/app/pages/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/profile/profile.component.html -------------------------------------------------------------------------------- /src/app/pages/profile/profile.component.scss: -------------------------------------------------------------------------------- 1 | button { 2 | float: right; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/pages/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/profile/profile.component.ts -------------------------------------------------------------------------------- /src/app/pages/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/register/register.component.html -------------------------------------------------------------------------------- /src/app/pages/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/register/register.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/gateways/add/gateways.add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/gateways/add/gateways.add.component.html -------------------------------------------------------------------------------- /src/app/pages/services/gateways/add/gateways.add.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/gateways/add/gateways.add.component.scss -------------------------------------------------------------------------------- /src/app/pages/services/gateways/add/gateways.add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/gateways/add/gateways.add.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/gateways/details/config/gateways.config.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/gateways/details/config/gateways.config.component.html -------------------------------------------------------------------------------- /src/app/pages/services/gateways/details/config/gateways.config.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/services/gateways/details/config/gateways.config.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/gateways/details/config/gateways.config.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/gateways/details/gateways.details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/gateways/details/gateways.details.component.html -------------------------------------------------------------------------------- /src/app/pages/services/gateways/details/gateways.details.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/gateways/details/gateways.details.component.scss -------------------------------------------------------------------------------- /src/app/pages/services/gateways/details/gateways.details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/gateways/details/gateways.details.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/gateways/details/info/gateways.info.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/gateways/details/info/gateways.info.component.html -------------------------------------------------------------------------------- /src/app/pages/services/gateways/details/info/gateways.info.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/gateways/details/info/gateways.info.component.scss -------------------------------------------------------------------------------- /src/app/pages/services/gateways/details/info/gateways.info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/gateways/details/info/gateways.info.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/gateways/details/xterm/gateways.xterm.component.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /src/app/pages/services/gateways/details/xterm/gateways.xterm.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/gateways/details/xterm/gateways.xterm.component.scss -------------------------------------------------------------------------------- /src/app/pages/services/gateways/details/xterm/gateways.xterm.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/gateways/details/xterm/gateways.xterm.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/gateways/gateways.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/gateways/gateways.component.html -------------------------------------------------------------------------------- /src/app/pages/services/gateways/gateways.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/services/gateways/gateways.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/gateways/gateways.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/lora/add/lora.add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/lora/add/lora.add.component.html -------------------------------------------------------------------------------- /src/app/pages/services/lora/add/lora.add.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/lora/add/lora.add.component.scss -------------------------------------------------------------------------------- /src/app/pages/services/lora/add/lora.add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/lora/add/lora.add.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/lora/details/lora.details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/lora/details/lora.details.component.html -------------------------------------------------------------------------------- /src/app/pages/services/lora/details/lora.details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/services/lora/details/lora.details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/lora/details/lora.details.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/lora/lora.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/lora/lora.component.html -------------------------------------------------------------------------------- /src/app/pages/services/lora/lora.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/services/lora/lora.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/lora/lora.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/opcua/add/opcua.add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/opcua/add/opcua.add.component.html -------------------------------------------------------------------------------- /src/app/pages/services/opcua/add/opcua.add.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/opcua/add/opcua.add.component.scss -------------------------------------------------------------------------------- /src/app/pages/services/opcua/add/opcua.add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/opcua/add/opcua.add.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/opcua/details/opcua.details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/opcua/details/opcua.details.component.html -------------------------------------------------------------------------------- /src/app/pages/services/opcua/details/opcua.details.component.scss: -------------------------------------------------------------------------------- 1 | nb-icon { 2 | vertical-align: middle; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/pages/services/opcua/details/opcua.details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/opcua/details/opcua.details.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/opcua/opcua.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/opcua/opcua.component.html -------------------------------------------------------------------------------- /src/app/pages/services/opcua/opcua.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/opcua/opcua.component.scss -------------------------------------------------------------------------------- /src/app/pages/services/opcua/opcua.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/opcua/opcua.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/services.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/services.module.ts -------------------------------------------------------------------------------- /src/app/pages/services/services.routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/services.routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/services/twins/add/twins.add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/twins/add/twins.add.component.html -------------------------------------------------------------------------------- /src/app/pages/services/twins/add/twins.add.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/twins/add/twins.add.component.scss -------------------------------------------------------------------------------- /src/app/pages/services/twins/add/twins.add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/twins/add/twins.add.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/twins/definitions/twins.definitions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/twins/definitions/twins.definitions.component.html -------------------------------------------------------------------------------- /src/app/pages/services/twins/definitions/twins.definitions.component.scss: -------------------------------------------------------------------------------- 1 | nb-list-item { 2 | word-wrap: break-word; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/pages/services/twins/definitions/twins.definitions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/twins/definitions/twins.definitions.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/twins/details/twins.details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/twins/details/twins.details.component.html -------------------------------------------------------------------------------- /src/app/pages/services/twins/details/twins.details.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/twins/details/twins.details.component.scss -------------------------------------------------------------------------------- /src/app/pages/services/twins/details/twins.details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/twins/details/twins.details.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/twins/states/twins.states.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/twins/states/twins.states.component.html -------------------------------------------------------------------------------- /src/app/pages/services/twins/states/twins.states.component.scss: -------------------------------------------------------------------------------- 1 | .col-md-10 { 2 | text-align: right; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/pages/services/twins/states/twins.states.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/twins/states/twins.states.component.ts -------------------------------------------------------------------------------- /src/app/pages/services/twins/twins.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/twins/twins.component.html -------------------------------------------------------------------------------- /src/app/pages/services/twins/twins.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/services/twins/twins.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/services/twins/twins.component.ts -------------------------------------------------------------------------------- /src/app/pages/things/add/things.add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/things/add/things.add.component.html -------------------------------------------------------------------------------- /src/app/pages/things/add/things.add.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/things/add/things.add.component.scss -------------------------------------------------------------------------------- /src/app/pages/things/add/things.add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/things/add/things.add.component.ts -------------------------------------------------------------------------------- /src/app/pages/things/cert/things.cert.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/things/cert/things.cert.component.html -------------------------------------------------------------------------------- /src/app/pages/things/cert/things.cert.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/things/cert/things.cert.component.scss -------------------------------------------------------------------------------- /src/app/pages/things/cert/things.cert.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/things/cert/things.cert.component.ts -------------------------------------------------------------------------------- /src/app/pages/things/details/things.details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/things/details/things.details.component.html -------------------------------------------------------------------------------- /src/app/pages/things/details/things.details.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/things/details/things.details.component.scss -------------------------------------------------------------------------------- /src/app/pages/things/details/things.details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/things/details/things.details.component.ts -------------------------------------------------------------------------------- /src/app/pages/things/things.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/things/things.component.html -------------------------------------------------------------------------------- /src/app/pages/things/things.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/things/things.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/things/things.component.ts -------------------------------------------------------------------------------- /src/app/pages/user-groups/add/user-groups.add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/user-groups/add/user-groups.add.component.html -------------------------------------------------------------------------------- /src/app/pages/user-groups/add/user-groups.add.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/user-groups/add/user-groups.add.component.scss -------------------------------------------------------------------------------- /src/app/pages/user-groups/add/user-groups.add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/user-groups/add/user-groups.add.component.ts -------------------------------------------------------------------------------- /src/app/pages/user-groups/details/user-groups.details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/user-groups/details/user-groups.details.component.html -------------------------------------------------------------------------------- /src/app/pages/user-groups/details/user-groups.details.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/user-groups/details/user-groups.details.component.scss -------------------------------------------------------------------------------- /src/app/pages/user-groups/details/user-groups.details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/user-groups/details/user-groups.details.component.ts -------------------------------------------------------------------------------- /src/app/pages/user-groups/user-groups.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/user-groups/user-groups.component.html -------------------------------------------------------------------------------- /src/app/pages/user-groups/user-groups.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/user-groups/user-groups.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/user-groups/user-groups.component.ts -------------------------------------------------------------------------------- /src/app/pages/users/add/users.add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/users/add/users.add.component.html -------------------------------------------------------------------------------- /src/app/pages/users/add/users.add.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/users/add/users.add.component.scss -------------------------------------------------------------------------------- /src/app/pages/users/add/users.add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/users/add/users.add.component.ts -------------------------------------------------------------------------------- /src/app/pages/users/details/users.details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/users/details/users.details.component.html -------------------------------------------------------------------------------- /src/app/pages/users/details/users.details.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/users/details/users.details.component.scss -------------------------------------------------------------------------------- /src/app/pages/users/details/users.details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/users/details/users.details.component.ts -------------------------------------------------------------------------------- /src/app/pages/users/users.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/users/users.component.html -------------------------------------------------------------------------------- /src/app/pages/users/users.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/users/users.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/pages/users/users.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/chart/chart.colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/chart/chart.colors.ts -------------------------------------------------------------------------------- /src/app/shared/components/chart/chart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/chart/chart.component.html -------------------------------------------------------------------------------- /src/app/shared/components/chart/chart.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/chart/chart.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/chart/chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/chart/chart.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/chart/chart.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/chart/chart.module.ts -------------------------------------------------------------------------------- /src/app/shared/components/chart/chart.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/chart/chart.options.ts -------------------------------------------------------------------------------- /src/app/shared/components/confirmation/confirmation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/confirmation/confirmation.component.html -------------------------------------------------------------------------------- /src/app/shared/components/confirmation/confirmation.component.scss: -------------------------------------------------------------------------------- 1 | button { 2 | margin: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/shared/components/confirmation/confirmation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/confirmation/confirmation.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/map/leaflet/map.leaflet.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/map/leaflet/map.leaflet.component.html -------------------------------------------------------------------------------- /src/app/shared/components/map/leaflet/map.leaflet.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/map/leaflet/map.leaflet.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/map/leaflet/map.leaflet.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/map/leaflet/map.leaflet.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/map/map.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/map/map.module.ts -------------------------------------------------------------------------------- /src/app/shared/components/message-monitor/config/message-monitor.config.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/message-monitor/config/message-monitor.config.component.html -------------------------------------------------------------------------------- /src/app/shared/components/message-monitor/config/message-monitor.config.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/message-monitor/config/message-monitor.config.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/message-monitor/config/message-monitor.config.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/message-monitor/config/message-monitor.config.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/message-monitor/message-monitor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/message-monitor/message-monitor.component.html -------------------------------------------------------------------------------- /src/app/shared/components/message-monitor/message-monitor.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/message-monitor/message-monitor.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/message-monitor/message-monitor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/message-monitor/message-monitor.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/pagination/pagination.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/pagination/pagination.component.html -------------------------------------------------------------------------------- /src/app/shared/components/pagination/pagination.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/pagination/pagination.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/pagination/pagination.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/pagination/pagination.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/table/table.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/table/table.component.html -------------------------------------------------------------------------------- /src/app/shared/components/table/table.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/table/table.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/table/table.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/components/table/table.component.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/message-value.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/pipes/message-value.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/time.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/pipes/time.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/styles/mainflux.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/app/styles/mainflux.scss -------------------------------------------------------------------------------- /src/assets/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/assets/env.js -------------------------------------------------------------------------------- /src/assets/env.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/assets/env.template.js -------------------------------------------------------------------------------- /src/assets/images/mainflux-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/assets/images/mainflux-logo.png -------------------------------------------------------------------------------- /src/assets/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/assets/images/marker-icon.png -------------------------------------------------------------------------------- /src/assets/text/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/assets/text/strings.ts -------------------------------------------------------------------------------- /src/environments/environment.defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/environments/environment.defaults.ts -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/favicon.png -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/ui/HEAD/tslint.json --------------------------------------------------------------------------------