├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── docker_image.yml │ ├── docker_rc.yml │ ├── docker_release.yml │ ├── docker_snap7.yml │ └── electron_latest.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── app └── electron │ ├── .gitignore │ ├── icons │ ├── fuxa-logo.icns │ ├── fuxa-logo.ico │ ├── fuxa-logo.png │ └── placeholder │ ├── loading.html │ ├── main.js │ ├── package-lock.json │ ├── package.json │ ├── project-selection.html │ ├── settings.app.js │ └── settings.html ├── client ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── angular.json ├── bs-config.json ├── dist │ ├── 3rdpartylicenses.txt │ ├── Quicksand-Bold.071154c292aef0b8.woff │ ├── Quicksand-Bold.6383d6475ed5c40f.woff2 │ ├── Quicksand-Bold.f07d467887f9cfab.ttf │ ├── Quicksand-Medium.0982a651e8d4315f.woff │ ├── Quicksand-Medium.9d2733fbfb9b1be8.ttf │ ├── Quicksand-Medium.b09302365c586eb2.woff2 │ ├── Quicksand-Regular.16adf9eecd267273.woff │ ├── Quicksand-Regular.78819724f6aeff59.woff2 │ ├── Quicksand-Regular.8829564f0e14bf76.ttf │ ├── assets │ │ ├── fonts │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ ├── icomoon.woff │ │ │ ├── myicons.eot │ │ │ ├── myicons.svg │ │ │ ├── myicons.ttf │ │ │ ├── myicons.woff │ │ │ ├── quicksand-bold │ │ │ │ ├── Quicksand-Bold.ttf │ │ │ │ ├── Quicksand-Bold.woff │ │ │ │ └── Quicksand-Bold.woff2 │ │ │ ├── quicksand-medium │ │ │ │ ├── Quicksand-Medium.ttf │ │ │ │ ├── Quicksand-Medium.woff │ │ │ │ └── Quicksand-Medium.woff2 │ │ │ ├── quicksand-regular │ │ │ │ ├── Quicksand-Regular.ttf │ │ │ │ ├── Quicksand-Regular.woff │ │ │ │ └── Quicksand-Regular.woff2 │ │ │ ├── roboto-bold │ │ │ │ ├── roboto-bold-webfont.svg │ │ │ │ ├── roboto-bold-webfont.ttf │ │ │ │ ├── roboto-bold-webfont.woff │ │ │ │ └── roboto-bold-webfont.woff2 │ │ │ ├── roboto-light │ │ │ │ ├── roboto-light-webfont.svg │ │ │ │ ├── roboto-light-webfont.ttf │ │ │ │ ├── roboto-light-webfont.woff │ │ │ │ └── roboto-light-webfont.woff2 │ │ │ ├── roboto-medium │ │ │ │ ├── roboto-medium-webfont.svg │ │ │ │ ├── roboto-medium-webfont.ttf │ │ │ │ ├── roboto-medium-webfont.woff │ │ │ │ └── roboto-medium-webfont.woff2 │ │ │ ├── roboto-regular │ │ │ │ ├── roboto-regular-webfont.svg │ │ │ │ ├── roboto-regular-webfont.ttf │ │ │ │ ├── roboto-regular-webfont.woff │ │ │ │ └── roboto-regular-webfont.woff2 │ │ │ └── roboto-thin │ │ │ │ ├── roboto-thin-webfont.svg │ │ │ │ ├── roboto-thin-webfont.ttf │ │ │ │ ├── roboto-thin-webfont.woff │ │ │ │ └── roboto-thin-webfont.woff2 │ │ ├── i18n │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── fr.json │ │ │ ├── ja.json │ │ │ ├── ko.json │ │ │ ├── pt.json │ │ │ ├── ru.json │ │ │ ├── sv.json │ │ │ ├── tr.json │ │ │ ├── ua.json │ │ │ ├── zh-cn.json │ │ │ └── zh-tw.json │ │ ├── images │ │ │ ├── align-bottom.svg │ │ │ ├── align-center.svg │ │ │ ├── align-left.svg │ │ │ ├── align-middle.svg │ │ │ ├── align-right.svg │ │ │ ├── align-top.svg │ │ │ ├── bag.svg │ │ │ ├── button.svg │ │ │ ├── chart.svg │ │ │ ├── circle.svg │ │ │ ├── compressor-a.svg │ │ │ ├── editvalue.svg │ │ │ ├── ellipse.svg │ │ │ ├── flip-orizontal.svg │ │ │ ├── flip-vertical.svg │ │ │ ├── gauge-donut.png │ │ │ ├── gauge-mat.png │ │ │ ├── gauge-zone.png │ │ │ ├── graphbar.svg │ │ │ ├── group.svg │ │ │ ├── iframe.svg │ │ │ ├── image.svg │ │ │ ├── led-circle.svg │ │ │ ├── line.svg │ │ │ ├── linecap-butt.svg │ │ │ ├── linecap-round.svg │ │ │ ├── linecap-square.svg │ │ │ ├── linejoin-bevel.svg │ │ │ ├── linejoin-miter.svg │ │ │ ├── linejoin-round.svg │ │ │ ├── logo.svg │ │ │ ├── marker-icon.png │ │ │ ├── marker-shadow.png │ │ │ ├── nodered-icon.svg │ │ │ ├── path.svg │ │ │ ├── pencil.svg │ │ │ ├── pipe.svg │ │ │ ├── progress-v.svg │ │ │ ├── rect.svg │ │ │ ├── select-pointer.svg │ │ │ ├── selectvalue.svg │ │ │ ├── semaphore.svg │ │ │ ├── slider.svg │ │ │ ├── switch.svg │ │ │ ├── table.svg │ │ │ ├── text.svg │ │ │ ├── to-bottom.svg │ │ │ ├── to-path.svg │ │ │ ├── to-top.svg │ │ │ ├── to_top.svg │ │ │ ├── todelete.svg │ │ │ ├── ungroup.svg │ │ │ ├── value.svg │ │ │ ├── valve-a.svg │ │ │ └── webcam.svg │ │ ├── lib │ │ │ ├── ext-styles.css │ │ │ ├── gauge │ │ │ │ ├── gauge.js │ │ │ │ └── gauge.min.js │ │ │ ├── nouislider │ │ │ │ ├── nouislider.min.css │ │ │ │ └── nouislider.min.js │ │ │ ├── numeral │ │ │ │ ├── locales.min.js │ │ │ │ └── numeral.min.js │ │ │ ├── pdfkit-table │ │ │ │ └── index.js │ │ │ ├── svg │ │ │ │ ├── raphael.min.js │ │ │ │ ├── svg.js │ │ │ │ └── svg.min.js │ │ │ ├── svgeditor │ │ │ │ ├── extensions │ │ │ │ │ ├── ext-bundle.min.js │ │ │ │ │ └── ext-html_button.min.css │ │ │ │ ├── fuxa-editor.min.js │ │ │ │ ├── jquery-plugin.min.css │ │ │ │ ├── jquery-plugin.min.js │ │ │ │ ├── jquery-ui-1.8.17.custom.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── shapes │ │ │ │ │ ├── ape-shapes.js │ │ │ │ │ ├── img │ │ │ │ │ │ ├── agitator-disc.svg │ │ │ │ │ │ ├── agitator-paddle.svg │ │ │ │ │ │ ├── agitator-prop.svg │ │ │ │ │ │ ├── agitator-turbo.svg │ │ │ │ │ │ ├── anim-eli.svg │ │ │ │ │ │ ├── anim-piston.svg │ │ │ │ │ │ ├── centrifugal.svg │ │ │ │ │ │ ├── centrifugal1.svg │ │ │ │ │ │ ├── centrifuge1.svg │ │ │ │ │ │ ├── centrifuge2.svg │ │ │ │ │ │ ├── centrifuge3.svg │ │ │ │ │ │ ├── centrifuge4.svg │ │ │ │ │ │ ├── compair.svg │ │ │ │ │ │ ├── compdiaph.svg │ │ │ │ │ │ ├── compejector.svg │ │ │ │ │ │ ├── compreci.svg │ │ │ │ │ │ ├── compreci2.svg │ │ │ │ │ │ ├── compressor-fan.svg │ │ │ │ │ │ ├── compressor-piston.svg │ │ │ │ │ │ ├── compressor-void.svg │ │ │ │ │ │ ├── compring.svg │ │ │ │ │ │ ├── compring2.svg │ │ │ │ │ │ ├── comprotary.svg │ │ │ │ │ │ ├── comprotary2.svg │ │ │ │ │ │ ├── compscrew.svg │ │ │ │ │ │ ├── compsilence.svg │ │ │ │ │ │ ├── compturbo.svg │ │ │ │ │ │ ├── crusher1.svg │ │ │ │ │ │ ├── crusher2.svg │ │ │ │ │ │ ├── crusher3.svg │ │ │ │ │ │ ├── crusher4.svg │ │ │ │ │ │ ├── crusher5.svg │ │ │ │ │ │ ├── crusher6.svg │ │ │ │ │ │ ├── crusher7.svg │ │ │ │ │ │ ├── diaph.svg │ │ │ │ │ │ ├── drier1.svg │ │ │ │ │ │ ├── drier2.svg │ │ │ │ │ │ ├── drier3.svg │ │ │ │ │ │ ├── drier4.svg │ │ │ │ │ │ ├── drier5.svg │ │ │ │ │ │ ├── exchanger-filter.svg │ │ │ │ │ │ ├── exchanger-heat.svg │ │ │ │ │ │ ├── exchanger-tube.svg │ │ │ │ │ │ ├── exchanger1.svg │ │ │ │ │ │ ├── exchanger2.svg │ │ │ │ │ │ ├── exchanger3.svg │ │ │ │ │ │ ├── exchanger4.svg │ │ │ │ │ │ ├── exchanger5.svg │ │ │ │ │ │ ├── exchanger6.svg │ │ │ │ │ │ ├── exchanger7.svg │ │ │ │ │ │ ├── exchanger8.svg │ │ │ │ │ │ ├── exchanger9.svg │ │ │ │ │ │ ├── feeder.svg │ │ │ │ │ │ ├── feeder2.svg │ │ │ │ │ │ ├── feeder3.svg │ │ │ │ │ │ ├── filter2.svg │ │ │ │ │ │ ├── filter3.svg │ │ │ │ │ │ ├── fitting1.svg │ │ │ │ │ │ ├── fitting10.svg │ │ │ │ │ │ ├── fitting11.svg │ │ │ │ │ │ ├── fitting12.svg │ │ │ │ │ │ ├── fitting13.svg │ │ │ │ │ │ ├── fitting2.svg │ │ │ │ │ │ ├── fitting3.svg │ │ │ │ │ │ ├── fitting4.svg │ │ │ │ │ │ ├── fitting5.svg │ │ │ │ │ │ ├── fitting6.svg │ │ │ │ │ │ ├── fitting7.svg │ │ │ │ │ │ ├── fitting8.svg │ │ │ │ │ │ ├── fitting9.svg │ │ │ │ │ │ ├── misc1.svg │ │ │ │ │ │ ├── misc2.svg │ │ │ │ │ │ ├── misc3.svg │ │ │ │ │ │ ├── misc4.svg │ │ │ │ │ │ ├── misc5.svg │ │ │ │ │ │ ├── misc6.svg │ │ │ │ │ │ ├── misc7.svg │ │ │ │ │ │ ├── misc8.svg │ │ │ │ │ │ ├── motor-simb.svg │ │ │ │ │ │ ├── nozzle.svg │ │ │ │ │ │ ├── nozzle2.svg │ │ │ │ │ │ ├── pipi1.svg │ │ │ │ │ │ ├── pipi2.svg │ │ │ │ │ │ ├── pipi3.svg │ │ │ │ │ │ ├── pipi4.svg │ │ │ │ │ │ ├── pipi5.svg │ │ │ │ │ │ ├── pipi6.svg │ │ │ │ │ │ ├── pipi7.svg │ │ │ │ │ │ ├── pumpblower.svg │ │ │ │ │ │ ├── pumpcentri1.svg │ │ │ │ │ │ ├── pumpcentri2.svg │ │ │ │ │ │ ├── pumpfeed.svg │ │ │ │ │ │ ├── pumpgear.svg │ │ │ │ │ │ ├── pumpgear2.svg │ │ │ │ │ │ ├── pumphidra.svg │ │ │ │ │ │ ├── pumphorizo.svg │ │ │ │ │ │ ├── pumpjet.svg │ │ │ │ │ │ ├── pumpperis.svg │ │ │ │ │ │ ├── pumpscreew.svg │ │ │ │ │ │ ├── pumpscreew2.svg │ │ │ │ │ │ ├── pumpturbi.svg │ │ │ │ │ │ ├── pumpvacuum.svg │ │ │ │ │ │ ├── shape-arrow.svg │ │ │ │ │ │ ├── shape-circle.svg │ │ │ │ │ │ ├── shape-circlehalf.svg │ │ │ │ │ │ ├── shape-circleindi.svg │ │ │ │ │ │ ├── shape-cloud.svg │ │ │ │ │ │ ├── shape-cone.svg │ │ │ │ │ │ ├── shape-corner.svg │ │ │ │ │ │ ├── shape-cross.svg │ │ │ │ │ │ ├── shape-cylinder.svg │ │ │ │ │ │ ├── shape-delay.svg │ │ │ │ │ │ ├── shape-diamond.svg │ │ │ │ │ │ ├── shape-display.svg │ │ │ │ │ │ ├── shape-docu.svg │ │ │ │ │ │ ├── shape-doublearrow.svg │ │ │ │ │ │ ├── shape-drop.svg │ │ │ │ │ │ ├── shape-halfcircle.svg │ │ │ │ │ │ ├── shape-heart.svg │ │ │ │ │ │ ├── shape-looplimit.svg │ │ │ │ │ │ ├── shape-maninput.svg │ │ │ │ │ │ ├── shape-nosymbol.svg │ │ │ │ │ │ ├── shape-octagon.svg │ │ │ │ │ │ ├── shape-offpage.svg │ │ │ │ │ │ ├── shape-or.svg │ │ │ │ │ │ ├── shape-or2.svg │ │ │ │ │ │ ├── shape-parallelogram.svg │ │ │ │ │ │ ├── shape-pentagon.svg │ │ │ │ │ │ ├── shape-poval.svg │ │ │ │ │ │ ├── shape-prepara.svg │ │ │ │ │ │ ├── shape-radiuskorner.svg │ │ │ │ │ │ ├── shape-rectangle.svg │ │ │ │ │ │ ├── shape-rectindi.svg │ │ │ │ │ │ ├── shape-star4.svg │ │ │ │ │ │ ├── shape-switch.svg │ │ │ │ │ │ ├── shape-tape.svg │ │ │ │ │ │ ├── shape-tee.svg │ │ │ │ │ │ ├── shape-ticket.svg │ │ │ │ │ │ ├── shape-trape.svg │ │ │ │ │ │ ├── shape-triangle.svg │ │ │ │ │ │ ├── shape-vor.svg │ │ │ │ │ │ ├── tank1.svg │ │ │ │ │ │ ├── tank2.svg │ │ │ │ │ │ ├── tank3.svg │ │ │ │ │ │ ├── tank4.svg │ │ │ │ │ │ ├── tank5.svg │ │ │ │ │ │ ├── tank6.svg │ │ │ │ │ │ ├── tank7.svg │ │ │ │ │ │ ├── tank8.svg │ │ │ │ │ │ ├── tank9.svg │ │ │ │ │ │ ├── valve-ax.svg │ │ │ │ │ │ ├── valve-bx.svg │ │ │ │ │ │ ├── valve-cx.svg │ │ │ │ │ │ └── webcam.svg │ │ │ │ │ ├── my-shapes.js │ │ │ │ │ ├── proc-comp-shapes.js │ │ │ │ │ ├── proc-general-shapes.js │ │ │ │ │ ├── proc-pumps-shapes.js │ │ │ │ │ ├── proc-shapes.js │ │ │ │ │ └── shapes.js │ │ │ │ └── svg-editor.min.css │ │ │ └── uplot │ │ │ │ └── placement.min.js │ │ └── project.demo.fuxap │ ├── favicon.ico │ ├── icomoon.86abfb46e057ade8.eot │ ├── icomoon.c1f8b59bad308d66.woff │ ├── icomoon.ce427f75e21963af.ttf │ ├── icomoon.dfb0a89feb346906.svg │ ├── index.html │ ├── layers-2x.9859cd1231006a4a.png │ ├── layers.ef6db8722c2c3f9a.png │ ├── logo.0e8e64e69250a450.svg │ ├── main.a62c7b1140f06fc4.js │ ├── marker-icon.d577052aa271e13f.png │ ├── material-icons-outlined.78a93b2079680a08.woff │ ├── material-icons-outlined.f86cb7b0aa53f0fe.woff2 │ ├── material-icons-round.92dc7ca2f4c591e7.woff │ ├── material-icons-round.b10ec9db5b7fbc74.woff2 │ ├── material-icons-sharp.3885863ee4746422.woff2 │ ├── material-icons-sharp.a71cb2bf66c604de.woff │ ├── material-icons-two-tone.588d63134de807a7.woff │ ├── material-icons-two-tone.675bd578bd14533e.woff2 │ ├── material-icons.4ad034d2c499d9b6.woff │ ├── material-icons.59322316b3fd6063.woff2 │ ├── polyfills.c8e7db9850a3ad8b.js │ ├── roboto-bold-webfont.29ac6158e35aee95.woff │ ├── roboto-bold-webfont.568ab1fa3f154a77.svg │ ├── roboto-bold-webfont.6bcfbdc216b3bc78.woff2 │ ├── roboto-bold-webfont.7c22a4dfdee2ff33.ttf │ ├── roboto-light-webfont.13492ec56771eeee.svg │ ├── roboto-light-webfont.61fa26c99b07ac83.woff2 │ ├── roboto-light-webfont.95295ce84942d8ce.ttf │ ├── roboto-light-webfont.ae19119a2889dfdf.woff │ ├── roboto-medium-webfont.30344f0411888055.woff │ ├── roboto-medium-webfont.57fb00cab0317d2d.woff2 │ ├── roboto-medium-webfont.a40869e060a388c0.ttf │ ├── roboto-medium-webfont.ea02241c29620c02.svg │ ├── roboto-regular-webfont.2b0501b72f5a94d5.ttf │ ├── roboto-regular-webfont.2ce0ba9a06424965.svg │ ├── roboto-regular-webfont.ae47f6f1292d196f.woff2 │ ├── roboto-regular-webfont.f58066a2d9061006.woff │ ├── roboto-thin-webfont.0a64479870f676e8.ttf │ ├── roboto-thin-webfont.0f7221f5c7e972ef.woff2 │ ├── roboto-thin-webfont.51b221e22714b1fe.svg │ ├── roboto-thin-webfont.dac941649dd4eac0.woff │ ├── runtime.8ef63094e52a66ba.js │ ├── scripts.40b60f02658462e4.js │ └── styles.d30c1822f4cc23b6.css ├── e2e │ ├── app.e2e-spec.ts │ └── tsconfig.json ├── package-lock.json ├── package.json ├── proxy.conf.json ├── src │ ├── app │ │ ├── _config │ │ │ └── theme.config.ts │ │ ├── _directives │ │ │ ├── dialog-draggable.directive.ts │ │ │ ├── lazyFor.directive.ts │ │ │ ├── modal-position.cache.ts │ │ │ ├── ngx-draggable.directive.ts │ │ │ ├── number.directive.ts │ │ │ ├── resize.directive.ts │ │ │ └── stop-input-propagation.directive.ts │ │ ├── _helpers │ │ │ ├── auth-interceptor.ts │ │ │ ├── calc.ts │ │ │ ├── define.ts │ │ │ ├── dictionary.ts │ │ │ ├── endpointapi.ts │ │ │ ├── event-utils.ts │ │ │ ├── intervals.ts │ │ │ ├── json-utils.ts │ │ │ ├── svg-utils.ts │ │ │ ├── utils.ts │ │ │ └── windowref.ts │ │ ├── _models │ │ │ ├── alarm.ts │ │ │ ├── chart.ts │ │ │ ├── client-access.ts │ │ │ ├── device.ts │ │ │ ├── diagnose.ts │ │ │ ├── graph.ts │ │ │ ├── hmi.ts │ │ │ ├── language.ts │ │ │ ├── maps.ts │ │ │ ├── notification.ts │ │ │ ├── plugin.ts │ │ │ ├── project.ts │ │ │ ├── report.ts │ │ │ ├── resources.ts │ │ │ ├── script.ts │ │ │ ├── settings.ts │ │ │ └── user.ts │ │ ├── _services │ │ │ ├── app.service.ts │ │ │ ├── auth.service.ts │ │ │ ├── command.service.ts │ │ │ ├── data-converter.service.ts │ │ │ ├── diagnose.service.ts │ │ │ ├── heartbeat.service.ts │ │ │ ├── hmi.service.ts │ │ │ ├── language.service.ts │ │ │ ├── maps-locations.service.ts │ │ │ ├── my-file.service.ts │ │ │ ├── plugin.service.ts │ │ │ ├── project.service.ts │ │ │ ├── rcgi │ │ │ │ ├── rcgi.service.ts │ │ │ │ ├── resclient.service.ts │ │ │ │ ├── resdemo.service.ts │ │ │ │ ├── resource-storage.service.ts │ │ │ │ └── reswebapi.service.ts │ │ │ ├── reports.service.ts │ │ │ ├── resources.service.ts │ │ │ ├── script.service.ts │ │ │ ├── settings.service.ts │ │ │ ├── theme.service.ts │ │ │ ├── toast-notifier.service.ts │ │ │ └── user.service.ts │ │ ├── alarms │ │ │ ├── alarm-list │ │ │ │ ├── alarm-list.component.css │ │ │ │ ├── alarm-list.component.html │ │ │ │ └── alarm-list.component.ts │ │ │ ├── alarm-property │ │ │ │ ├── alarm-property.component.html │ │ │ │ ├── alarm-property.component.scss │ │ │ │ └── alarm-property.component.ts │ │ │ └── alarm-view │ │ │ │ ├── alarm-view.component.css │ │ │ │ ├── alarm-view.component.html │ │ │ │ └── alarm-view.component.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.routing.ts │ │ ├── auth.guard.ts │ │ ├── cards-view │ │ │ ├── cards-view.component.html │ │ │ ├── cards-view.component.scss │ │ │ └── cards-view.component.ts │ │ ├── device-adapter │ │ │ ├── device-adapter.service.ts │ │ │ └── device-adapter.ts │ │ ├── device │ │ │ ├── device-list │ │ │ │ ├── device-list.component.html │ │ │ │ ├── device-list.component.scss │ │ │ │ └── device-list.component.ts │ │ │ ├── device-map │ │ │ │ ├── device-map.component.html │ │ │ │ ├── device-map.component.scss │ │ │ │ ├── device-map.component.ts │ │ │ │ └── device-webapi-property-dialog │ │ │ │ │ ├── device-webapi-property-dialog.component.css │ │ │ │ │ ├── device-webapi-property-dialog.component.html │ │ │ │ │ └── device-webapi-property-dialog.component.ts │ │ │ ├── device-property │ │ │ │ ├── device-property.component.html │ │ │ │ ├── device-property.component.scss │ │ │ │ └── device-property.component.ts │ │ │ ├── device-tag-selection │ │ │ │ ├── device-tag-selection.component.html │ │ │ │ ├── device-tag-selection.component.scss │ │ │ │ └── device-tag-selection.component.ts │ │ │ ├── device.component.css │ │ │ ├── device.component.html │ │ │ ├── device.component.ts │ │ │ ├── tag-options │ │ │ │ ├── tag-options.component.html │ │ │ │ ├── tag-options.component.scss │ │ │ │ └── tag-options.component.ts │ │ │ ├── tag-property │ │ │ │ ├── tag-property-edit-adsclient │ │ │ │ │ ├── tag-property-edit-adsclient.component.html │ │ │ │ │ ├── tag-property-edit-adsclient.component.scss │ │ │ │ │ └── tag-property-edit-adsclient.component.ts │ │ │ │ ├── tag-property-edit-bacnet │ │ │ │ │ ├── tag-property-edit-bacnet.component.css │ │ │ │ │ ├── tag-property-edit-bacnet.component.html │ │ │ │ │ └── tag-property-edit-bacnet.component.ts │ │ │ │ ├── tag-property-edit-ethernetip │ │ │ │ │ ├── tag-property-edit-ethernetip.component.html │ │ │ │ │ ├── tag-property-edit-ethernetip.component.scss │ │ │ │ │ └── tag-property-edit-ethernetip.component.ts │ │ │ │ ├── tag-property-edit-gpio │ │ │ │ │ ├── tag-property-edit-gpio.component.html │ │ │ │ │ ├── tag-property-edit-gpio.component.scss │ │ │ │ │ └── tag-property-edit-gpio.component.ts │ │ │ │ ├── tag-property-edit-internal │ │ │ │ │ ├── tag-property-edit-internal.component.html │ │ │ │ │ ├── tag-property-edit-internal.component.scss │ │ │ │ │ └── tag-property-edit-internal.component.ts │ │ │ │ ├── tag-property-edit-melsec │ │ │ │ │ ├── tag-property-edit-melsec.component.html │ │ │ │ │ ├── tag-property-edit-melsec.component.scss │ │ │ │ │ └── tag-property-edit-melsec.component.ts │ │ │ │ ├── tag-property-edit-modbus │ │ │ │ │ ├── tag-property-edit-modbus.component.html │ │ │ │ │ ├── tag-property-edit-modbus.component.scss │ │ │ │ │ └── tag-property-edit-modbus.component.ts │ │ │ │ ├── tag-property-edit-opcua │ │ │ │ │ ├── tag-property-edit-opcua.component.html │ │ │ │ │ ├── tag-property-edit-opcua.component.scss │ │ │ │ │ └── tag-property-edit-opcua.component.ts │ │ │ │ ├── tag-property-edit-s7 │ │ │ │ │ ├── tag-property-edit-s7.component.html │ │ │ │ │ ├── tag-property-edit-s7.component.scss │ │ │ │ │ └── tag-property-edit-s7.component.ts │ │ │ │ ├── tag-property-edit-server │ │ │ │ │ ├── tag-property-edit-server.component.html │ │ │ │ │ ├── tag-property-edit-server.component.scss │ │ │ │ │ └── tag-property-edit-server.component.ts │ │ │ │ ├── tag-property-edit-webapi │ │ │ │ │ ├── tag-property-edit-webapi.component.css │ │ │ │ │ ├── tag-property-edit-webapi.component.html │ │ │ │ │ └── tag-property-edit-webapi.component.ts │ │ │ │ ├── tag-property-edit-webcam │ │ │ │ │ ├── tag-property-edit-webcam.component.html │ │ │ │ │ ├── tag-property-edit-webcam.component.scss │ │ │ │ │ └── tag-property-edit-webcam.component.ts │ │ │ │ └── tag-property.service.ts │ │ │ └── topic-property │ │ │ │ ├── topic-property.component.html │ │ │ │ ├── topic-property.component.scss │ │ │ │ └── topic-property.component.ts │ │ ├── editor │ │ │ ├── app-settings │ │ │ │ ├── app-settings.component.css │ │ │ │ ├── app-settings.component.html │ │ │ │ └── app-settings.component.ts │ │ │ ├── card-config │ │ │ │ ├── card-config.component.html │ │ │ │ ├── card-config.component.scss │ │ │ │ └── card-config.component.ts │ │ │ ├── chart-config │ │ │ │ ├── chart-config.component.css │ │ │ │ ├── chart-config.component.html │ │ │ │ ├── chart-config.component.ts │ │ │ │ └── chart-line-property │ │ │ │ │ ├── chart-line-property.component.html │ │ │ │ │ ├── chart-line-property.component.scss │ │ │ │ │ └── chart-line-property.component.ts │ │ │ ├── client-script-access │ │ │ │ ├── client-script-access.component.html │ │ │ │ ├── client-script-access.component.scss │ │ │ │ └── client-script-access.component.ts │ │ │ ├── editor-views-list │ │ │ │ ├── editor-views-list.component.html │ │ │ │ ├── editor-views-list.component.scss │ │ │ │ └── editor-views-list.component.ts │ │ │ ├── editor.component.css │ │ │ ├── editor.component.html │ │ │ ├── editor.component.ts │ │ │ ├── graph-config │ │ │ │ ├── graph-config.component.css │ │ │ │ ├── graph-config.component.html │ │ │ │ ├── graph-config.component.ts │ │ │ │ └── graph-source-edit │ │ │ │ │ ├── graph-source-edit.component.css │ │ │ │ │ ├── graph-source-edit.component.html │ │ │ │ │ └── graph-source-edit.component.ts │ │ │ ├── layout-property │ │ │ │ ├── layout-header-item-property │ │ │ │ │ ├── layout-header-item-property.component.html │ │ │ │ │ ├── layout-header-item-property.component.scss │ │ │ │ │ └── layout-header-item-property.component.ts │ │ │ │ ├── layout-menu-item-property │ │ │ │ │ ├── layout-menu-item-property.component.html │ │ │ │ │ ├── layout-menu-item-property.component.scss │ │ │ │ │ └── layout-menu-item-property.component.ts │ │ │ │ ├── layout-property.component.html │ │ │ │ ├── layout-property.component.scss │ │ │ │ └── layout-property.component.ts │ │ │ ├── linkproperty.dialog.html │ │ │ ├── plugins │ │ │ │ ├── plugins.component.html │ │ │ │ ├── plugins.component.scss │ │ │ │ └── plugins.component.ts │ │ │ ├── setup │ │ │ │ ├── setup.component.html │ │ │ │ ├── setup.component.scss │ │ │ │ └── setup.component.ts │ │ │ ├── svg-selector │ │ │ │ ├── svg-selector.component.html │ │ │ │ ├── svg-selector.component.scss │ │ │ │ └── svg-selector.component.ts │ │ │ ├── tags-ids-config │ │ │ │ ├── tags-ids-config.component.html │ │ │ │ ├── tags-ids-config.component.scss │ │ │ │ └── tags-ids-config.component.ts │ │ │ └── view-property │ │ │ │ ├── view-property.component.html │ │ │ │ ├── view-property.component.scss │ │ │ │ └── view-property.component.ts │ │ ├── framework │ │ │ ├── directives │ │ │ │ └── json-tooltip.ts │ │ │ ├── file-upload │ │ │ │ ├── file-upload.component.html │ │ │ │ ├── file-upload.component.scss │ │ │ │ └── file-upload.component.ts │ │ │ ├── framework.module.ts │ │ │ └── ngx-touch-keyboard │ │ │ │ ├── Locale │ │ │ │ ├── constants.ts │ │ │ │ ├── en-GB │ │ │ │ │ └── index.ts │ │ │ │ ├── en-US │ │ │ │ │ └── index.ts │ │ │ │ ├── fa-IR │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ │ ├── ngx-touch-keyboard.component.html │ │ │ │ ├── ngx-touch-keyboard.component.scss │ │ │ │ ├── ngx-touch-keyboard.component.ts │ │ │ │ ├── ngx-touch-keyboard.directive.ts │ │ │ │ └── ngx-touch-keyboard.module.ts │ │ ├── fuxa-view │ │ │ ├── fuxa-view-dialog │ │ │ │ ├── fuxa-view-dialog.component.html │ │ │ │ ├── fuxa-view-dialog.component.scss │ │ │ │ └── fuxa-view-dialog.component.ts │ │ │ ├── fuxa-view.component.css │ │ │ ├── fuxa-view.component.html │ │ │ └── fuxa-view.component.ts │ │ ├── gauges │ │ │ ├── controls │ │ │ │ ├── gauge-progress │ │ │ │ │ ├── gauge-progress.component.css │ │ │ │ │ ├── gauge-progress.component.html │ │ │ │ │ └── gauge-progress.component.ts │ │ │ │ ├── gauge-semaphore │ │ │ │ │ ├── gauge-semaphore.component.css │ │ │ │ │ ├── gauge-semaphore.component.html │ │ │ │ │ └── gauge-semaphore.component.ts │ │ │ │ ├── html-bag │ │ │ │ │ ├── bag-property │ │ │ │ │ │ ├── bag-property.component.css │ │ │ │ │ │ ├── bag-property.component.html │ │ │ │ │ │ └── bag-property.component.ts │ │ │ │ │ ├── html-bag.component.css │ │ │ │ │ ├── html-bag.component.html │ │ │ │ │ └── html-bag.component.ts │ │ │ │ ├── html-button │ │ │ │ │ ├── html-button.component.css │ │ │ │ │ ├── html-button.component.html │ │ │ │ │ └── html-button.component.ts │ │ │ │ ├── html-chart │ │ │ │ │ ├── chart-property │ │ │ │ │ │ ├── chart-property.component.html │ │ │ │ │ │ ├── chart-property.component.scss │ │ │ │ │ │ └── chart-property.component.ts │ │ │ │ │ ├── chart-uplot │ │ │ │ │ │ ├── chart-uplot.component.html │ │ │ │ │ │ ├── chart-uplot.component.scss │ │ │ │ │ │ └── chart-uplot.component.ts │ │ │ │ │ ├── html-chart.component.css │ │ │ │ │ ├── html-chart.component.html │ │ │ │ │ └── html-chart.component.ts │ │ │ │ ├── html-graph │ │ │ │ │ ├── graph-bar │ │ │ │ │ │ ├── graph-bar.component.html │ │ │ │ │ │ ├── graph-bar.component.scss │ │ │ │ │ │ └── graph-bar.component.ts │ │ │ │ │ ├── graph-base │ │ │ │ │ │ └── graph-base.component.ts │ │ │ │ │ ├── graph-pie │ │ │ │ │ │ ├── graph-pie.component.css │ │ │ │ │ │ ├── graph-pie.component.html │ │ │ │ │ │ └── graph-pie.component.ts │ │ │ │ │ ├── graph-property │ │ │ │ │ │ ├── graph-property.component.html │ │ │ │ │ │ ├── graph-property.component.scss │ │ │ │ │ │ └── graph-property.component.ts │ │ │ │ │ ├── html-graph.component.css │ │ │ │ │ ├── html-graph.component.html │ │ │ │ │ └── html-graph.component.ts │ │ │ │ ├── html-iframe │ │ │ │ │ ├── html-iframe.component.css │ │ │ │ │ ├── html-iframe.component.html │ │ │ │ │ ├── html-iframe.component.ts │ │ │ │ │ └── iframe-property │ │ │ │ │ │ ├── iframe-property.component.html │ │ │ │ │ │ ├── iframe-property.component.scss │ │ │ │ │ │ └── iframe-property.component.ts │ │ │ │ ├── html-image │ │ │ │ │ ├── html-image.component.css │ │ │ │ │ ├── html-image.component.html │ │ │ │ │ └── html-image.component.ts │ │ │ │ ├── html-input │ │ │ │ │ ├── html-input.component.css │ │ │ │ │ ├── html-input.component.html │ │ │ │ │ ├── html-input.component.ts │ │ │ │ │ └── input-property │ │ │ │ │ │ ├── input-property.component.html │ │ │ │ │ │ ├── input-property.component.scss │ │ │ │ │ │ └── input-property.component.ts │ │ │ │ ├── html-scheduler │ │ │ │ │ ├── html-scheduler.component.css │ │ │ │ │ ├── html-scheduler.component.html │ │ │ │ │ ├── html-scheduler.component.ts │ │ │ │ │ ├── scheduler-confirm-dialog │ │ │ │ │ │ ├── scheduler-confirm-dialog.component.html │ │ │ │ │ │ ├── scheduler-confirm-dialog.component.scss │ │ │ │ │ │ └── scheduler-confirm-dialog.component.ts │ │ │ │ │ ├── scheduler-property │ │ │ │ │ │ ├── scheduler-property.component.html │ │ │ │ │ │ ├── scheduler-property.component.scss │ │ │ │ │ │ └── scheduler-property.component.ts │ │ │ │ │ └── scheduler │ │ │ │ │ │ ├── scheduler.component.html │ │ │ │ │ │ ├── scheduler.component.scss │ │ │ │ │ │ └── scheduler.component.ts │ │ │ │ ├── html-select │ │ │ │ │ ├── html-select.component.css │ │ │ │ │ ├── html-select.component.html │ │ │ │ │ └── html-select.component.ts │ │ │ │ ├── html-switch │ │ │ │ │ ├── html-switch-property │ │ │ │ │ │ ├── html-switch-property.component.html │ │ │ │ │ │ ├── html-switch-property.component.scss │ │ │ │ │ │ └── html-switch-property.component.ts │ │ │ │ │ └── html-switch.component.ts │ │ │ │ ├── html-table │ │ │ │ │ ├── data-table │ │ │ │ │ │ ├── data-table.component.html │ │ │ │ │ │ ├── data-table.component.scss │ │ │ │ │ │ └── data-table.component.ts │ │ │ │ │ ├── html-table.component.ts │ │ │ │ │ ├── table-alarms │ │ │ │ │ │ ├── table-alarms.component.html │ │ │ │ │ │ ├── table-alarms.component.scss │ │ │ │ │ │ └── table-alarms.component.ts │ │ │ │ │ ├── table-customizer │ │ │ │ │ │ ├── table-customizer-cell-edit │ │ │ │ │ │ │ ├── table-customizer-cell-edit.component.css │ │ │ │ │ │ │ ├── table-customizer-cell-edit.component.html │ │ │ │ │ │ │ └── table-customizer-cell-edit.component.ts │ │ │ │ │ │ ├── table-customizer.component.html │ │ │ │ │ │ ├── table-customizer.component.scss │ │ │ │ │ │ └── table-customizer.component.ts │ │ │ │ │ ├── table-property │ │ │ │ │ │ ├── table-property.component.html │ │ │ │ │ │ ├── table-property.component.scss │ │ │ │ │ │ └── table-property.component.ts │ │ │ │ │ └── table-reports │ │ │ │ │ │ ├── table-reports.component.html │ │ │ │ │ │ ├── table-reports.component.scss │ │ │ │ │ │ └── table-reports.component.ts │ │ │ │ ├── html-video │ │ │ │ │ ├── html-video.component.css │ │ │ │ │ ├── html-video.component.html │ │ │ │ │ ├── html-video.component.ts │ │ │ │ │ └── video-property │ │ │ │ │ │ ├── video-property.component.html │ │ │ │ │ │ ├── video-property.component.scss │ │ │ │ │ │ └── video-property.component.ts │ │ │ │ ├── panel │ │ │ │ │ ├── panel-property │ │ │ │ │ │ ├── panel-property.component.html │ │ │ │ │ │ ├── panel-property.component.scss │ │ │ │ │ │ └── panel-property.component.ts │ │ │ │ │ ├── panel.component.css │ │ │ │ │ ├── panel.component.html │ │ │ │ │ └── panel.component.ts │ │ │ │ ├── pipe │ │ │ │ │ ├── pipe-property │ │ │ │ │ │ ├── pipe-property.component.html │ │ │ │ │ │ ├── pipe-property.component.scss │ │ │ │ │ │ └── pipe-property.component.ts │ │ │ │ │ └── pipe.component.ts │ │ │ │ ├── slider │ │ │ │ │ ├── slider-property │ │ │ │ │ │ ├── slider-property.component.css │ │ │ │ │ │ ├── slider-property.component.html │ │ │ │ │ │ └── slider-property.component.ts │ │ │ │ │ └── slider.component.ts │ │ │ │ └── value │ │ │ │ │ ├── value.component.css │ │ │ │ │ ├── value.component.html │ │ │ │ │ └── value.component.ts │ │ │ ├── gauge-base │ │ │ │ ├── gauge-base.component.css │ │ │ │ ├── gauge-base.component.html │ │ │ │ └── gauge-base.component.ts │ │ │ ├── gauge-property │ │ │ │ ├── action-properties-dialog │ │ │ │ │ ├── action-properties-dialog.component.html │ │ │ │ │ ├── action-properties-dialog.component.scss │ │ │ │ │ ├── action-properties-dialog.component.ts │ │ │ │ │ └── action-property.service.ts │ │ │ │ ├── flex-action │ │ │ │ │ ├── flex-action.component.css │ │ │ │ │ ├── flex-action.component.html │ │ │ │ │ └── flex-action.component.ts │ │ │ │ ├── flex-auth │ │ │ │ │ ├── flex-auth.component.css │ │ │ │ │ ├── flex-auth.component.html │ │ │ │ │ └── flex-auth.component.ts │ │ │ │ ├── flex-device-tag │ │ │ │ │ ├── flex-device-tag.component.html │ │ │ │ │ ├── flex-device-tag.component.scss │ │ │ │ │ └── flex-device-tag.component.ts │ │ │ │ ├── flex-event │ │ │ │ │ ├── flex-event.component.css │ │ │ │ │ ├── flex-event.component.html │ │ │ │ │ └── flex-event.component.ts │ │ │ │ ├── flex-head │ │ │ │ │ ├── flex-head.component.css │ │ │ │ │ ├── flex-head.component.html │ │ │ │ │ └── flex-head.component.ts │ │ │ │ ├── flex-input │ │ │ │ │ ├── flex-input.component.css │ │ │ │ │ ├── flex-input.component.html │ │ │ │ │ └── flex-input.component.ts │ │ │ │ ├── flex-variable-map │ │ │ │ │ ├── flex-variable-map.component.html │ │ │ │ │ ├── flex-variable-map.component.scss │ │ │ │ │ └── flex-variable-map.component.ts │ │ │ │ ├── flex-variable │ │ │ │ │ ├── flex-variable.component.html │ │ │ │ │ ├── flex-variable.component.scss │ │ │ │ │ └── flex-variable.component.ts │ │ │ │ ├── flex-variables-mapping │ │ │ │ │ ├── flex-variables-mapping.component.css │ │ │ │ │ ├── flex-variables-mapping.component.html │ │ │ │ │ └── flex-variables-mapping.component.ts │ │ │ │ ├── flex-widget-property │ │ │ │ │ ├── flex-widget-property.component.html │ │ │ │ │ ├── flex-widget-property.component.scss │ │ │ │ │ └── flex-widget-property.component.ts │ │ │ │ ├── gauge-property.component.html │ │ │ │ ├── gauge-property.component.scss │ │ │ │ ├── gauge-property.component.ts │ │ │ │ └── permission-dialog │ │ │ │ │ ├── permission-dialog.component.html │ │ │ │ │ ├── permission-dialog.component.scss │ │ │ │ │ └── permission-dialog.component.ts │ │ │ ├── gauges.component.ts │ │ │ └── shapes │ │ │ │ ├── ape-shapes │ │ │ │ ├── ape-shapes.component.css │ │ │ │ ├── ape-shapes.component.html │ │ │ │ └── ape-shapes.component.ts │ │ │ │ ├── proc-eng │ │ │ │ ├── proc-eng.component.css │ │ │ │ ├── proc-eng.component.html │ │ │ │ └── proc-eng.component.ts │ │ │ │ ├── shapes.component.css │ │ │ │ ├── shapes.component.html │ │ │ │ └── shapes.component.ts │ │ ├── gui-helpers │ │ │ ├── bitmask │ │ │ │ ├── bitmask.component.css │ │ │ │ ├── bitmask.component.html │ │ │ │ └── bitmask.component.ts │ │ │ ├── confirm-dialog │ │ │ │ ├── confirm-dialog.component.css │ │ │ │ ├── confirm-dialog.component.html │ │ │ │ └── confirm-dialog.component.ts │ │ │ ├── daterange-dialog │ │ │ │ ├── daterange-dialog.component.css │ │ │ │ ├── daterange-dialog.component.html │ │ │ │ └── daterange-dialog.component.ts │ │ │ ├── daterangepicker │ │ │ │ ├── daterangepicker.component.html │ │ │ │ ├── daterangepicker.component.scss │ │ │ │ ├── daterangepicker.component.ts │ │ │ │ ├── daterangepicker.config.ts │ │ │ │ ├── daterangepicker.directive.ts │ │ │ │ ├── daterangepicker.module.ts │ │ │ │ ├── index.ts │ │ │ │ └── locale.service.ts │ │ │ ├── edit-name │ │ │ │ ├── edit-name.component.css │ │ │ │ ├── edit-name.component.html │ │ │ │ └── edit-name.component.ts │ │ │ ├── edit-placeholder │ │ │ │ ├── edit-placeholder.component.html │ │ │ │ ├── edit-placeholder.component.scss │ │ │ │ └── edit-placeholder.component.ts │ │ │ ├── fab-button │ │ │ │ ├── ngx-fab-button.component.ts │ │ │ │ └── ngx-fab-item-button.component.ts │ │ │ ├── mat-select-search │ │ │ │ ├── mat-select-search.component.html │ │ │ │ ├── mat-select-search.component.scss │ │ │ │ ├── mat-select-search.component.ts │ │ │ │ └── mat-select-search.module.ts │ │ │ ├── ngx-gauge │ │ │ │ ├── gaugeOptions.ts │ │ │ │ ├── ngx-gauge.component.css │ │ │ │ ├── ngx-gauge.component.html │ │ │ │ └── ngx-gauge.component.ts │ │ │ ├── ngx-nouislider │ │ │ │ ├── ngx-nouislider.component.css │ │ │ │ ├── ngx-nouislider.component.html │ │ │ │ └── ngx-nouislider.component.ts │ │ │ ├── ngx-scheduler │ │ │ │ ├── ngx-scheduler.component.html │ │ │ │ ├── ngx-scheduler.component.scss │ │ │ │ └── ngx-scheduler.component.ts │ │ │ ├── ngx-switch │ │ │ │ ├── ngx-switch.component.css │ │ │ │ ├── ngx-switch.component.html │ │ │ │ └── ngx-switch.component.ts │ │ │ ├── ngx-uplot │ │ │ │ ├── ngx-uplot.component.css │ │ │ │ ├── ngx-uplot.component.html │ │ │ │ ├── ngx-uplot.component.ts │ │ │ │ └── uPlot.d.ts │ │ │ ├── range-number │ │ │ │ ├── range-number.component.css │ │ │ │ ├── range-number.component.html │ │ │ │ └── range-number.component.ts │ │ │ ├── sel-options │ │ │ │ ├── sel-options.component.css │ │ │ │ ├── sel-options.component.html │ │ │ │ └── sel-options.component.ts │ │ │ ├── treetable │ │ │ │ ├── treetable.component.css │ │ │ │ ├── treetable.component.html │ │ │ │ └── treetable.component.ts │ │ │ └── webcam-player │ │ │ │ ├── webcam-player-dialog │ │ │ │ ├── webcam-player-dialog.component.html │ │ │ │ ├── webcam-player-dialog.component.scss │ │ │ │ └── webcam-player-dialog.component.ts │ │ │ │ ├── webcam-player.component.css │ │ │ │ ├── webcam-player.component.html │ │ │ │ └── webcam-player.component.ts │ │ ├── header │ │ │ ├── header.component.css │ │ │ ├── header.component.html │ │ │ ├── header.component.ts │ │ │ └── info.dialog.html │ │ ├── help │ │ │ └── tutorial │ │ │ │ ├── tutorial.component.css │ │ │ │ ├── tutorial.component.html │ │ │ │ └── tutorial.component.ts │ │ ├── home │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ ├── home.component.ts │ │ │ └── userinfo.dialog.html │ │ ├── iframe │ │ │ ├── iframe.component.css │ │ │ ├── iframe.component.html │ │ │ └── iframe.component.ts │ │ ├── integrations │ │ │ └── node-red │ │ │ │ └── node-red-flows │ │ │ │ ├── node-red-flows.component.html │ │ │ │ ├── node-red-flows.component.scss │ │ │ │ └── node-red-flows.component.ts │ │ ├── lab │ │ │ ├── lab.component.css │ │ │ ├── lab.component.html │ │ │ └── lab.component.ts │ │ ├── language │ │ │ ├── language-text-list │ │ │ │ ├── language-text-list.component.html │ │ │ │ ├── language-text-list.component.scss │ │ │ │ └── language-text-list.component.ts │ │ │ ├── language-text-property │ │ │ │ ├── language-text-property.component.html │ │ │ │ ├── language-text-property.component.scss │ │ │ │ └── language-text-property.component.ts │ │ │ └── language-type-property │ │ │ │ ├── language-type-property.component.html │ │ │ │ ├── language-type-property.component.scss │ │ │ │ └── language-type-property.component.ts │ │ ├── login │ │ │ ├── login.component.css │ │ │ ├── login.component.html │ │ │ └── login.component.ts │ │ ├── logs-view │ │ │ ├── logs-view.component.css │ │ │ ├── logs-view.component.html │ │ │ └── logs-view.component.ts │ │ ├── maps │ │ │ ├── maps-location-import │ │ │ │ ├── maps-location-import.component.html │ │ │ │ ├── maps-location-import.component.scss │ │ │ │ └── maps-location-import.component.ts │ │ │ ├── maps-location-list │ │ │ │ ├── maps-location-list.component.html │ │ │ │ ├── maps-location-list.component.scss │ │ │ │ └── maps-location-list.component.ts │ │ │ ├── maps-location-property │ │ │ │ ├── maps-location-property.component.html │ │ │ │ ├── maps-location-property.component.scss │ │ │ │ └── maps-location-property.component.ts │ │ │ └── maps-view │ │ │ │ ├── maps-fab-button-menu │ │ │ │ ├── maps-fab-button-menu.component.html │ │ │ │ ├── maps-fab-button-menu.component.scss │ │ │ │ └── maps-fab-button-menu.component.ts │ │ │ │ ├── maps-view.component.html │ │ │ │ ├── maps-view.component.scss │ │ │ │ └── maps-view.component.ts │ │ ├── material.module.ts │ │ ├── notifications │ │ │ ├── notification-list │ │ │ │ ├── notification-list.component.html │ │ │ │ ├── notification-list.component.scss │ │ │ │ └── notification-list.component.ts │ │ │ └── notification-property │ │ │ │ ├── notification-property.component.html │ │ │ │ ├── notification-property.component.scss │ │ │ │ └── notification-property.component.ts │ │ ├── paginator │ │ │ └── paginator-intl.ts │ │ ├── reports │ │ │ ├── report-editor │ │ │ │ ├── report-editor.component.html │ │ │ │ ├── report-editor.component.scss │ │ │ │ ├── report-editor.component.ts │ │ │ │ ├── report-item-alarms │ │ │ │ │ ├── report-item-alarms.component.html │ │ │ │ │ ├── report-item-alarms.component.scss │ │ │ │ │ └── report-item-alarms.component.ts │ │ │ │ ├── report-item-chart │ │ │ │ │ ├── report-item-chart.component.html │ │ │ │ │ ├── report-item-chart.component.scss │ │ │ │ │ └── report-item-chart.component.ts │ │ │ │ ├── report-item-table │ │ │ │ │ ├── report-item-table.component.html │ │ │ │ │ ├── report-item-table.component.scss │ │ │ │ │ └── report-item-table.component.ts │ │ │ │ └── report-item-text │ │ │ │ │ ├── report-item-text.component.css │ │ │ │ │ ├── report-item-text.component.html │ │ │ │ │ └── report-item-text.component.ts │ │ │ └── report-list │ │ │ │ ├── report-list.component.css │ │ │ │ ├── report-list.component.html │ │ │ │ └── report-list.component.ts │ │ ├── resources │ │ │ ├── kiosk-widgets │ │ │ │ ├── kiosk-widgets.component.html │ │ │ │ ├── kiosk-widgets.component.scss │ │ │ │ ├── kiosk-widgets.component.ts │ │ │ │ └── kiosk-widgets.service.ts │ │ │ ├── lib-images │ │ │ │ ├── lib-images.component.css │ │ │ │ ├── lib-images.component.html │ │ │ │ └── lib-images.component.ts │ │ │ └── lib-widgets │ │ │ │ ├── lib-widgets.component.html │ │ │ │ ├── lib-widgets.component.scss │ │ │ │ ├── lib-widgets.component.ts │ │ │ │ └── lib-widgets.service.ts │ │ ├── scripts │ │ │ ├── script-editor │ │ │ │ ├── script-editor-param │ │ │ │ │ ├── script-editor-param.component.css │ │ │ │ │ ├── script-editor-param.component.html │ │ │ │ │ └── script-editor-param.component.ts │ │ │ │ ├── script-editor.component.html │ │ │ │ ├── script-editor.component.scss │ │ │ │ └── script-editor.component.ts │ │ │ ├── script-list │ │ │ │ ├── script-list.component.css │ │ │ │ ├── script-list.component.html │ │ │ │ └── script-list.component.ts │ │ │ ├── script-mode │ │ │ │ ├── script-mode.component.css │ │ │ │ ├── script-mode.component.html │ │ │ │ └── script-mode.component.ts │ │ │ ├── script-permission │ │ │ │ ├── script-permission.component.css │ │ │ │ ├── script-permission.component.html │ │ │ │ └── script-permission.component.ts │ │ │ └── script-scheduling │ │ │ │ ├── script-scheduling.component.html │ │ │ │ ├── script-scheduling.component.scss │ │ │ │ └── script-scheduling.component.ts │ │ ├── sidenav │ │ │ ├── sidenav.component.html │ │ │ ├── sidenav.component.scss │ │ │ └── sidenav.component.ts │ │ ├── tester │ │ │ ├── tester.component.css │ │ │ ├── tester.component.html │ │ │ ├── tester.component.ts │ │ │ └── tester.service.ts │ │ ├── users │ │ │ ├── user-edit │ │ │ │ ├── user-edit.component.css │ │ │ │ ├── user-edit.component.html │ │ │ │ └── user-edit.component.ts │ │ │ ├── users-role-edit │ │ │ │ ├── users-role-edit.component.css │ │ │ │ ├── users-role-edit.component.html │ │ │ │ └── users-role-edit.component.ts │ │ │ ├── users-roles │ │ │ │ ├── users-roles.component.html │ │ │ │ ├── users-roles.component.scss │ │ │ │ └── users-roles.component.ts │ │ │ ├── users.component.css │ │ │ ├── users.component.html │ │ │ └── users.component.ts │ │ └── view │ │ │ ├── view.component.html │ │ │ ├── view.component.scss │ │ │ └── view.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── fonts │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ ├── icomoon.woff │ │ │ ├── myicons.eot │ │ │ ├── myicons.svg │ │ │ ├── myicons.ttf │ │ │ ├── myicons.woff │ │ │ ├── quicksand-bold │ │ │ │ ├── Quicksand-Bold.ttf │ │ │ │ ├── Quicksand-Bold.woff │ │ │ │ └── Quicksand-Bold.woff2 │ │ │ ├── quicksand-medium │ │ │ │ ├── Quicksand-Medium.ttf │ │ │ │ ├── Quicksand-Medium.woff │ │ │ │ └── Quicksand-Medium.woff2 │ │ │ ├── quicksand-regular │ │ │ │ ├── Quicksand-Regular.ttf │ │ │ │ ├── Quicksand-Regular.woff │ │ │ │ └── Quicksand-Regular.woff2 │ │ │ ├── roboto-bold │ │ │ │ ├── roboto-bold-webfont.svg │ │ │ │ ├── roboto-bold-webfont.ttf │ │ │ │ ├── roboto-bold-webfont.woff │ │ │ │ └── roboto-bold-webfont.woff2 │ │ │ ├── roboto-light │ │ │ │ ├── roboto-light-webfont.svg │ │ │ │ ├── roboto-light-webfont.ttf │ │ │ │ ├── roboto-light-webfont.woff │ │ │ │ └── roboto-light-webfont.woff2 │ │ │ ├── roboto-medium │ │ │ │ ├── roboto-medium-webfont.svg │ │ │ │ ├── roboto-medium-webfont.ttf │ │ │ │ ├── roboto-medium-webfont.woff │ │ │ │ └── roboto-medium-webfont.woff2 │ │ │ ├── roboto-regular │ │ │ │ ├── roboto-regular-webfont.svg │ │ │ │ ├── roboto-regular-webfont.ttf │ │ │ │ ├── roboto-regular-webfont.woff │ │ │ │ └── roboto-regular-webfont.woff2 │ │ │ └── roboto-thin │ │ │ │ ├── roboto-thin-webfont.svg │ │ │ │ ├── roboto-thin-webfont.ttf │ │ │ │ ├── roboto-thin-webfont.woff │ │ │ │ └── roboto-thin-webfont.woff2 │ │ ├── i18n │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── fr.json │ │ │ ├── ja.json │ │ │ ├── ko.json │ │ │ ├── pt.json │ │ │ ├── ru.json │ │ │ ├── sv.json │ │ │ ├── tr.json │ │ │ ├── ua.json │ │ │ ├── zh-cn.json │ │ │ └── zh-tw.json │ │ ├── images │ │ │ ├── align-bottom.svg │ │ │ ├── align-center.svg │ │ │ ├── align-left.svg │ │ │ ├── align-middle.svg │ │ │ ├── align-right.svg │ │ │ ├── align-top.svg │ │ │ ├── bag.svg │ │ │ ├── button.svg │ │ │ ├── chart.svg │ │ │ ├── circle.svg │ │ │ ├── compressor-a.svg │ │ │ ├── editvalue.svg │ │ │ ├── ellipse.svg │ │ │ ├── flip-orizontal.svg │ │ │ ├── flip-vertical.svg │ │ │ ├── gauge-donut.png │ │ │ ├── gauge-mat.png │ │ │ ├── gauge-zone.png │ │ │ ├── graphbar.svg │ │ │ ├── group.svg │ │ │ ├── iframe.svg │ │ │ ├── image.svg │ │ │ ├── led-circle.svg │ │ │ ├── line.svg │ │ │ ├── linecap-butt.svg │ │ │ ├── linecap-round.svg │ │ │ ├── linecap-square.svg │ │ │ ├── linejoin-bevel.svg │ │ │ ├── linejoin-miter.svg │ │ │ ├── linejoin-round.svg │ │ │ ├── logo.svg │ │ │ ├── marker-icon.png │ │ │ ├── marker-shadow.png │ │ │ ├── nodered-icon.svg │ │ │ ├── path.svg │ │ │ ├── pencil.svg │ │ │ ├── pipe.svg │ │ │ ├── progress-v.svg │ │ │ ├── rect.svg │ │ │ ├── select-pointer.svg │ │ │ ├── selectvalue.svg │ │ │ ├── semaphore.svg │ │ │ ├── slider.svg │ │ │ ├── switch.svg │ │ │ ├── table.svg │ │ │ ├── text.svg │ │ │ ├── to-bottom.svg │ │ │ ├── to-path.svg │ │ │ ├── to-top.svg │ │ │ ├── to_top.svg │ │ │ ├── todelete.svg │ │ │ ├── ungroup.svg │ │ │ ├── value.svg │ │ │ ├── valve-a.svg │ │ │ └── webcam.svg │ │ ├── lib │ │ │ ├── ext-styles.css │ │ │ ├── gauge │ │ │ │ ├── gauge.js │ │ │ │ └── gauge.min.js │ │ │ ├── nouislider │ │ │ │ ├── nouislider.min.css │ │ │ │ └── nouislider.min.js │ │ │ ├── numeral │ │ │ │ ├── locales.min.js │ │ │ │ └── numeral.min.js │ │ │ ├── pdfkit-table │ │ │ │ └── index.js │ │ │ ├── svg │ │ │ │ ├── raphael.min.js │ │ │ │ ├── svg.js │ │ │ │ └── svg.min.js │ │ │ ├── svgeditor │ │ │ │ ├── extensions │ │ │ │ │ ├── ext-bundle.min.js │ │ │ │ │ └── ext-html_button.min.css │ │ │ │ ├── fuxa-editor.min.js │ │ │ │ ├── jquery-plugin.min.css │ │ │ │ ├── jquery-plugin.min.js │ │ │ │ ├── jquery-ui-1.8.17.custom.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── shapes │ │ │ │ │ ├── ape-shapes.js │ │ │ │ │ ├── img │ │ │ │ │ │ ├── agitator-disc.svg │ │ │ │ │ │ ├── agitator-paddle.svg │ │ │ │ │ │ ├── agitator-prop.svg │ │ │ │ │ │ ├── agitator-turbo.svg │ │ │ │ │ │ ├── anim-eli.svg │ │ │ │ │ │ ├── anim-piston.svg │ │ │ │ │ │ ├── centrifugal.svg │ │ │ │ │ │ ├── centrifugal1.svg │ │ │ │ │ │ ├── centrifuge1.svg │ │ │ │ │ │ ├── centrifuge2.svg │ │ │ │ │ │ ├── centrifuge3.svg │ │ │ │ │ │ ├── centrifuge4.svg │ │ │ │ │ │ ├── compair.svg │ │ │ │ │ │ ├── compdiaph.svg │ │ │ │ │ │ ├── compejector.svg │ │ │ │ │ │ ├── compreci.svg │ │ │ │ │ │ ├── compreci2.svg │ │ │ │ │ │ ├── compressor-fan.svg │ │ │ │ │ │ ├── compressor-piston.svg │ │ │ │ │ │ ├── compressor-void.svg │ │ │ │ │ │ ├── compring.svg │ │ │ │ │ │ ├── compring2.svg │ │ │ │ │ │ ├── comprotary.svg │ │ │ │ │ │ ├── comprotary2.svg │ │ │ │ │ │ ├── compscrew.svg │ │ │ │ │ │ ├── compsilence.svg │ │ │ │ │ │ ├── compturbo.svg │ │ │ │ │ │ ├── crusher1.svg │ │ │ │ │ │ ├── crusher2.svg │ │ │ │ │ │ ├── crusher3.svg │ │ │ │ │ │ ├── crusher4.svg │ │ │ │ │ │ ├── crusher5.svg │ │ │ │ │ │ ├── crusher6.svg │ │ │ │ │ │ ├── crusher7.svg │ │ │ │ │ │ ├── diaph.svg │ │ │ │ │ │ ├── drier1.svg │ │ │ │ │ │ ├── drier2.svg │ │ │ │ │ │ ├── drier3.svg │ │ │ │ │ │ ├── drier4.svg │ │ │ │ │ │ ├── drier5.svg │ │ │ │ │ │ ├── exchanger-filter.svg │ │ │ │ │ │ ├── exchanger-heat.svg │ │ │ │ │ │ ├── exchanger-tube.svg │ │ │ │ │ │ ├── exchanger1.svg │ │ │ │ │ │ ├── exchanger2.svg │ │ │ │ │ │ ├── exchanger3.svg │ │ │ │ │ │ ├── exchanger4.svg │ │ │ │ │ │ ├── exchanger5.svg │ │ │ │ │ │ ├── exchanger6.svg │ │ │ │ │ │ ├── exchanger7.svg │ │ │ │ │ │ ├── exchanger8.svg │ │ │ │ │ │ ├── exchanger9.svg │ │ │ │ │ │ ├── feeder.svg │ │ │ │ │ │ ├── feeder2.svg │ │ │ │ │ │ ├── feeder3.svg │ │ │ │ │ │ ├── filter2.svg │ │ │ │ │ │ ├── filter3.svg │ │ │ │ │ │ ├── fitting1.svg │ │ │ │ │ │ ├── fitting10.svg │ │ │ │ │ │ ├── fitting11.svg │ │ │ │ │ │ ├── fitting12.svg │ │ │ │ │ │ ├── fitting13.svg │ │ │ │ │ │ ├── fitting2.svg │ │ │ │ │ │ ├── fitting3.svg │ │ │ │ │ │ ├── fitting4.svg │ │ │ │ │ │ ├── fitting5.svg │ │ │ │ │ │ ├── fitting6.svg │ │ │ │ │ │ ├── fitting7.svg │ │ │ │ │ │ ├── fitting8.svg │ │ │ │ │ │ ├── fitting9.svg │ │ │ │ │ │ ├── misc1.svg │ │ │ │ │ │ ├── misc2.svg │ │ │ │ │ │ ├── misc3.svg │ │ │ │ │ │ ├── misc4.svg │ │ │ │ │ │ ├── misc5.svg │ │ │ │ │ │ ├── misc6.svg │ │ │ │ │ │ ├── misc7.svg │ │ │ │ │ │ ├── misc8.svg │ │ │ │ │ │ ├── motor-simb.svg │ │ │ │ │ │ ├── nozzle.svg │ │ │ │ │ │ ├── nozzle2.svg │ │ │ │ │ │ ├── pipi1.svg │ │ │ │ │ │ ├── pipi2.svg │ │ │ │ │ │ ├── pipi3.svg │ │ │ │ │ │ ├── pipi4.svg │ │ │ │ │ │ ├── pipi5.svg │ │ │ │ │ │ ├── pipi6.svg │ │ │ │ │ │ ├── pipi7.svg │ │ │ │ │ │ ├── pumpblower.svg │ │ │ │ │ │ ├── pumpcentri1.svg │ │ │ │ │ │ ├── pumpcentri2.svg │ │ │ │ │ │ ├── pumpfeed.svg │ │ │ │ │ │ ├── pumpgear.svg │ │ │ │ │ │ ├── pumpgear2.svg │ │ │ │ │ │ ├── pumphidra.svg │ │ │ │ │ │ ├── pumphorizo.svg │ │ │ │ │ │ ├── pumpjet.svg │ │ │ │ │ │ ├── pumpperis.svg │ │ │ │ │ │ ├── pumpscreew.svg │ │ │ │ │ │ ├── pumpscreew2.svg │ │ │ │ │ │ ├── pumpturbi.svg │ │ │ │ │ │ ├── pumpvacuum.svg │ │ │ │ │ │ ├── shape-arrow.svg │ │ │ │ │ │ ├── shape-circle.svg │ │ │ │ │ │ ├── shape-circlehalf.svg │ │ │ │ │ │ ├── shape-circleindi.svg │ │ │ │ │ │ ├── shape-cloud.svg │ │ │ │ │ │ ├── shape-cone.svg │ │ │ │ │ │ ├── shape-corner.svg │ │ │ │ │ │ ├── shape-cross.svg │ │ │ │ │ │ ├── shape-cylinder.svg │ │ │ │ │ │ ├── shape-delay.svg │ │ │ │ │ │ ├── shape-diamond.svg │ │ │ │ │ │ ├── shape-display.svg │ │ │ │ │ │ ├── shape-docu.svg │ │ │ │ │ │ ├── shape-doublearrow.svg │ │ │ │ │ │ ├── shape-drop.svg │ │ │ │ │ │ ├── shape-halfcircle.svg │ │ │ │ │ │ ├── shape-heart.svg │ │ │ │ │ │ ├── shape-looplimit.svg │ │ │ │ │ │ ├── shape-maninput.svg │ │ │ │ │ │ ├── shape-nosymbol.svg │ │ │ │ │ │ ├── shape-octagon.svg │ │ │ │ │ │ ├── shape-offpage.svg │ │ │ │ │ │ ├── shape-or.svg │ │ │ │ │ │ ├── shape-or2.svg │ │ │ │ │ │ ├── shape-parallelogram.svg │ │ │ │ │ │ ├── shape-pentagon.svg │ │ │ │ │ │ ├── shape-poval.svg │ │ │ │ │ │ ├── shape-prepara.svg │ │ │ │ │ │ ├── shape-radiuskorner.svg │ │ │ │ │ │ ├── shape-rectangle.svg │ │ │ │ │ │ ├── shape-rectindi.svg │ │ │ │ │ │ ├── shape-star4.svg │ │ │ │ │ │ ├── shape-switch.svg │ │ │ │ │ │ ├── shape-tape.svg │ │ │ │ │ │ ├── shape-tee.svg │ │ │ │ │ │ ├── shape-ticket.svg │ │ │ │ │ │ ├── shape-trape.svg │ │ │ │ │ │ ├── shape-triangle.svg │ │ │ │ │ │ ├── shape-vor.svg │ │ │ │ │ │ ├── tank1.svg │ │ │ │ │ │ ├── tank2.svg │ │ │ │ │ │ ├── tank3.svg │ │ │ │ │ │ ├── tank4.svg │ │ │ │ │ │ ├── tank5.svg │ │ │ │ │ │ ├── tank6.svg │ │ │ │ │ │ ├── tank7.svg │ │ │ │ │ │ ├── tank8.svg │ │ │ │ │ │ ├── tank9.svg │ │ │ │ │ │ ├── valve-ax.svg │ │ │ │ │ │ ├── valve-bx.svg │ │ │ │ │ │ ├── valve-cx.svg │ │ │ │ │ │ └── webcam.svg │ │ │ │ │ ├── my-shapes.js │ │ │ │ │ ├── proc-comp-shapes.js │ │ │ │ │ ├── proc-general-shapes.js │ │ │ │ │ ├── proc-pumps-shapes.js │ │ │ │ │ ├── proc-shapes.js │ │ │ │ │ └── shapes.js │ │ │ │ └── svg-editor.min.css │ │ │ └── uplot │ │ │ │ └── placement.min.js │ │ └── project.demo.fuxap │ ├── environments │ │ ├── environment.client.ts │ │ ├── environment.demo.ts │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── theme.scss │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts └── tsconfig.json ├── compose.yml ├── node-red └── node-red-contrib-fuxa │ ├── index.js │ ├── nodes │ ├── fuxa-ack-alarm.html │ ├── fuxa-ack-alarm.js │ ├── fuxa-emit-event.html │ ├── fuxa-emit-event.js │ ├── fuxa-enable-device.html │ ├── fuxa-enable-device.js │ ├── fuxa-execute-script.html │ ├── fuxa-execute-script.js │ ├── fuxa-get-alarms.html │ ├── fuxa-get-alarms.js │ ├── fuxa-get-daq.html │ ├── fuxa-get-daq.js │ ├── fuxa-get-device-property.html │ ├── fuxa-get-device-property.js │ ├── fuxa-get-device.html │ ├── fuxa-get-device.js │ ├── fuxa-get-historical-tags.html │ ├── fuxa-get-historical-tags.js │ ├── fuxa-get-history-alarms.html │ ├── fuxa-get-history-alarms.js │ ├── fuxa-get-tag-daq-settings.html │ ├── fuxa-get-tag-daq-settings.js │ ├── fuxa-get-tag-id.html │ ├── fuxa-get-tag-id.js │ ├── fuxa-get-tag.html │ ├── fuxa-get-tag.js │ ├── fuxa-open-card.html │ ├── fuxa-open-card.js │ ├── fuxa-send-message.html │ ├── fuxa-send-message.js │ ├── fuxa-set-device-property.html │ ├── fuxa-set-device-property.js │ ├── fuxa-set-tag-daq-settings.html │ ├── fuxa-set-tag-daq-settings.js │ ├── fuxa-set-tag.html │ ├── fuxa-set-tag.js │ ├── fuxa-set-view.html │ └── fuxa-set-view.js │ └── package.json ├── odbc ├── install_odbc_drivers.sh └── odbcinst.ini ├── screenshot ├── feature-action-move.gif ├── fuxa-device.gif ├── fuxa-editor.png ├── fuxa-hmi.gif ├── fuxa-home.png ├── fuxa-test.gif └── fuxa-thinglinks.gif ├── server ├── _images │ ├── Pipes │ │ └── P1.svg │ └── Tanks │ │ └── Fl.svg ├── _widgets │ └── README.md ├── api │ ├── alarms │ │ └── index.js │ ├── auth │ │ └── index.js │ ├── command │ │ └── index.js │ ├── daq │ │ └── index.js │ ├── diagnose │ │ └── index.js │ ├── index.js │ ├── jwt-helper.js │ ├── plugins │ │ └── index.js │ ├── projects │ │ └── index.js │ ├── reports │ │ └── reports.service.ts │ ├── resources │ │ └── index.js │ ├── scheduler │ │ └── index.js │ ├── scripts │ │ └── index.js │ └── users │ │ └── index.js ├── dist │ └── reports.service.js ├── envParams.js ├── fuxa.js ├── integrations │ └── node-red │ │ ├── index.js │ │ └── node-red-contrib-fuxa │ │ ├── index.js │ │ ├── nodes │ │ ├── fuxa-ack-alarm.html │ │ ├── fuxa-ack-alarm.js │ │ ├── fuxa-emit-event.html │ │ ├── fuxa-emit-event.js │ │ ├── fuxa-enable-device.html │ │ ├── fuxa-enable-device.js │ │ ├── fuxa-execute-script.html │ │ ├── fuxa-execute-script.js │ │ ├── fuxa-get-alarms.html │ │ ├── fuxa-get-alarms.js │ │ ├── fuxa-get-daq.html │ │ ├── fuxa-get-daq.js │ │ ├── fuxa-get-device-property.html │ │ ├── fuxa-get-device-property.js │ │ ├── fuxa-get-device.html │ │ ├── fuxa-get-device.js │ │ ├── fuxa-get-historical-tags.html │ │ ├── fuxa-get-historical-tags.js │ │ ├── fuxa-get-history-alarms.html │ │ ├── fuxa-get-history-alarms.js │ │ ├── fuxa-get-tag-change.html │ │ ├── fuxa-get-tag-change.js │ │ ├── fuxa-get-tag-daq-settings.html │ │ ├── fuxa-get-tag-daq-settings.js │ │ ├── fuxa-get-tag-id.html │ │ ├── fuxa-get-tag-id.js │ │ ├── fuxa-get-tag.html │ │ ├── fuxa-get-tag.js │ │ ├── fuxa-open-card.html │ │ ├── fuxa-open-card.js │ │ ├── fuxa-send-message.html │ │ ├── fuxa-send-message.js │ │ ├── fuxa-set-device-property.html │ │ ├── fuxa-set-device-property.js │ │ ├── fuxa-set-tag-daq-settings.html │ │ ├── fuxa-set-tag-daq-settings.js │ │ ├── fuxa-set-tag.html │ │ ├── fuxa-set-tag.js │ │ ├── fuxa-set-view.html │ │ └── fuxa-set-view.js │ │ └── package.json ├── main.js ├── package-lock.json ├── package.json ├── paths.js ├── project.default.json ├── project.demo.fuxap ├── runtime │ ├── alarms │ │ ├── alarmstorage.js │ │ └── index.js │ ├── devices │ │ ├── adsclient │ │ │ └── index.js │ │ ├── bacnet │ │ │ └── index.js │ │ ├── device-utils.js │ │ ├── device.js │ │ ├── ethernetip │ │ │ └── index.js │ │ ├── fuxaserver │ │ │ └── index.js │ │ ├── gpio │ │ │ └── index.js │ │ ├── httprequest │ │ │ └── index.js │ │ ├── index.js │ │ ├── melsec │ │ │ └── index.js │ │ ├── modbus │ │ │ ├── datatypes.js │ │ │ └── index.js │ │ ├── mqtt │ │ │ └── index.js │ │ ├── odbc │ │ │ └── index.js │ │ ├── opcua │ │ │ └── index.js │ │ ├── s7 │ │ │ ├── datatypes.js │ │ │ └── index.js │ │ ├── template │ │ │ └── index.js │ │ └── webcam │ │ │ └── index.js │ ├── events.js │ ├── index.js │ ├── jobs │ │ ├── cleaner.js │ │ ├── fonts │ │ │ ├── LICENSE.txt │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-LightItalic.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.ttf │ │ │ └── Roboto-ThinItalic.ttf │ │ ├── helper │ │ │ └── image-generator.js │ │ ├── index.js │ │ └── report.js │ ├── logger.js │ ├── notificator │ │ ├── index.js │ │ └── notifystorage.js │ ├── plugins │ │ └── index.js │ ├── project │ │ ├── index.js │ │ └── prjstorage.js │ ├── scheduler │ │ ├── scheduler-service.js │ │ └── scheduler-storage.js │ ├── scripts │ │ ├── index.js │ │ └── msm.js │ ├── storage │ │ ├── calculator.js │ │ ├── daqstorage.js │ │ ├── influxdb │ │ │ └── index.js │ │ ├── sqlite │ │ │ ├── currentstorage.js │ │ │ └── index.js │ │ └── tdengine │ │ │ └── index.js │ ├── users │ │ ├── index.js │ │ └── usrstorage.js │ └── utils.js ├── settings.default.js ├── test │ └── help │ │ ├── runtimeUtils.test.js │ │ └── runtimeUtilsTypes.test.js └── tsconfig.json └── wiki ├── Getting-Started.md ├── Home.md ├── HowTo-Chart-Control.md ├── HowTo-Devices-and-Tags.md ├── HowTo-Node-Red.md ├── HowTo-Scheduler.md ├── HowTo-UI-Layout.md ├── HowTo-View.md ├── HowTo-animate-Pipe.md ├── HowTo-bind-Controls.md ├── HowTo-bind-Shapes.md ├── HowTo-configure-Script.md ├── HowTo-configure-events.md ├── HowTo-define-Shapes.md ├── HowTo-save-load-Project.md ├── HowTo-setup-Alarms.md ├── HowTo-use-same-view.md ├── Installing-and-Running.md ├── Settings.md ├── Tips-and-Tricks.md ├── _Footer.md ├── _Sidebar.md └── images ├── add-view.png ├── fuxa-alarms.gif ├── fuxa-alarms2.gif ├── fuxa-alarms3.gif ├── fuxa-chart.gif ├── fuxa-chart2.gif ├── fuxa-control.gif ├── fuxa-control2.gif ├── fuxa-control3.gif ├── fuxa-device.gif ├── fuxa-dialog.gif ├── fuxa-dialog2.gif ├── fuxa-editor.png ├── fuxa-events1.gif ├── fuxa-events2.gif ├── fuxa-events3.gif ├── fuxa-events4.gif ├── fuxa-events5.gif ├── fuxa-events6.gif ├── fuxa-events7.gif ├── fuxa-events8.gif ├── fuxa-home.png ├── fuxa-input-control.gif ├── fuxa-layout-input.gif ├── fuxa-layout.gif ├── fuxa-layout.png ├── fuxa-layout2.gif ├── fuxa-layout2.png ├── fuxa-layout3.png ├── fuxa-modbus.gif ├── fuxa-mqtt.gif ├── fuxa-opcuatag.gif ├── fuxa-output-control.gif ├── fuxa-pipe.gif ├── fuxa-proceng.gif ├── fuxa-project.png ├── fuxa-reuse-view1.gif ├── fuxa-reuse-view1.png ├── fuxa-reuse-view2.gif ├── fuxa-reuse-view3.gif ├── fuxa-reuse-view4.gif ├── fuxa-script.gif ├── fuxa-script1.gif ├── fuxa-script2.gif ├── fuxa-select-control.gif ├── fuxa-shapes.gif ├── fuxa-slider-control.gif ├── fuxa-webapi.gif ├── property-view.png ├── property-view2.png ├── setup-alarms.png ├── setup-charts.png ├── setup-connections.png ├── setup-layout.png ├── setup-notifications.png ├── setup-scripts.png ├── setup-settings.png ├── setup-users.png └── setup.PNG /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/docker_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/.github/workflows/docker_image.yml -------------------------------------------------------------------------------- /.github/workflows/docker_rc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/.github/workflows/docker_rc.yml -------------------------------------------------------------------------------- /.github/workflows/docker_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/.github/workflows/docker_release.yml -------------------------------------------------------------------------------- /.github/workflows/docker_snap7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/.github/workflows/docker_snap7.yml -------------------------------------------------------------------------------- /.github/workflows/electron_latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/.github/workflows/electron_latest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/electron/.gitignore: -------------------------------------------------------------------------------- 1 | _appdata 2 | _db 3 | _logs 4 | 5 | out/ 6 | -------------------------------------------------------------------------------- /app/electron/icons/fuxa-logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/app/electron/icons/fuxa-logo.icns -------------------------------------------------------------------------------- /app/electron/icons/fuxa-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/app/electron/icons/fuxa-logo.ico -------------------------------------------------------------------------------- /app/electron/icons/fuxa-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/app/electron/icons/fuxa-logo.png -------------------------------------------------------------------------------- /app/electron/icons/placeholder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/electron/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/app/electron/loading.html -------------------------------------------------------------------------------- /app/electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/app/electron/main.js -------------------------------------------------------------------------------- /app/electron/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/app/electron/package-lock.json -------------------------------------------------------------------------------- /app/electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/app/electron/package.json -------------------------------------------------------------------------------- /app/electron/project-selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/app/electron/project-selection.html -------------------------------------------------------------------------------- /app/electron/settings.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/app/electron/settings.app.js -------------------------------------------------------------------------------- /app/electron/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/app/electron/settings.html -------------------------------------------------------------------------------- /client/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/.editorconfig -------------------------------------------------------------------------------- /client/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/.eslintrc.json -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/.travis.yml -------------------------------------------------------------------------------- /client/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/angular.json -------------------------------------------------------------------------------- /client/bs-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/bs-config.json -------------------------------------------------------------------------------- /client/dist/3rdpartylicenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/3rdpartylicenses.txt -------------------------------------------------------------------------------- /client/dist/Quicksand-Bold.071154c292aef0b8.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/Quicksand-Bold.071154c292aef0b8.woff -------------------------------------------------------------------------------- /client/dist/Quicksand-Bold.6383d6475ed5c40f.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/Quicksand-Bold.6383d6475ed5c40f.woff2 -------------------------------------------------------------------------------- /client/dist/Quicksand-Bold.f07d467887f9cfab.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/Quicksand-Bold.f07d467887f9cfab.ttf -------------------------------------------------------------------------------- /client/dist/Quicksand-Medium.0982a651e8d4315f.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/Quicksand-Medium.0982a651e8d4315f.woff -------------------------------------------------------------------------------- /client/dist/Quicksand-Medium.9d2733fbfb9b1be8.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/Quicksand-Medium.9d2733fbfb9b1be8.ttf -------------------------------------------------------------------------------- /client/dist/Quicksand-Medium.b09302365c586eb2.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/Quicksand-Medium.b09302365c586eb2.woff2 -------------------------------------------------------------------------------- /client/dist/Quicksand-Regular.16adf9eecd267273.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/Quicksand-Regular.16adf9eecd267273.woff -------------------------------------------------------------------------------- /client/dist/Quicksand-Regular.78819724f6aeff59.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/Quicksand-Regular.78819724f6aeff59.woff2 -------------------------------------------------------------------------------- /client/dist/Quicksand-Regular.8829564f0e14bf76.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/Quicksand-Regular.8829564f0e14bf76.ttf -------------------------------------------------------------------------------- /client/dist/assets/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/fonts/icomoon.eot -------------------------------------------------------------------------------- /client/dist/assets/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/fonts/icomoon.svg -------------------------------------------------------------------------------- /client/dist/assets/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/fonts/icomoon.ttf -------------------------------------------------------------------------------- /client/dist/assets/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/fonts/icomoon.woff -------------------------------------------------------------------------------- /client/dist/assets/fonts/myicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/fonts/myicons.eot -------------------------------------------------------------------------------- /client/dist/assets/fonts/myicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/fonts/myicons.svg -------------------------------------------------------------------------------- /client/dist/assets/fonts/myicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/fonts/myicons.ttf -------------------------------------------------------------------------------- /client/dist/assets/fonts/myicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/fonts/myicons.woff -------------------------------------------------------------------------------- /client/dist/assets/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/i18n/de.json -------------------------------------------------------------------------------- /client/dist/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/i18n/en.json -------------------------------------------------------------------------------- /client/dist/assets/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/i18n/es.json -------------------------------------------------------------------------------- /client/dist/assets/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/i18n/fr.json -------------------------------------------------------------------------------- /client/dist/assets/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/i18n/ja.json -------------------------------------------------------------------------------- /client/dist/assets/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/i18n/ko.json -------------------------------------------------------------------------------- /client/dist/assets/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/i18n/pt.json -------------------------------------------------------------------------------- /client/dist/assets/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/i18n/ru.json -------------------------------------------------------------------------------- /client/dist/assets/i18n/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/i18n/sv.json -------------------------------------------------------------------------------- /client/dist/assets/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/i18n/tr.json -------------------------------------------------------------------------------- /client/dist/assets/i18n/ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/i18n/ua.json -------------------------------------------------------------------------------- /client/dist/assets/i18n/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/i18n/zh-cn.json -------------------------------------------------------------------------------- /client/dist/assets/i18n/zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/i18n/zh-tw.json -------------------------------------------------------------------------------- /client/dist/assets/images/align-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/align-bottom.svg -------------------------------------------------------------------------------- /client/dist/assets/images/align-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/align-center.svg -------------------------------------------------------------------------------- /client/dist/assets/images/align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/align-left.svg -------------------------------------------------------------------------------- /client/dist/assets/images/align-middle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/align-middle.svg -------------------------------------------------------------------------------- /client/dist/assets/images/align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/align-right.svg -------------------------------------------------------------------------------- /client/dist/assets/images/align-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/align-top.svg -------------------------------------------------------------------------------- /client/dist/assets/images/bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/bag.svg -------------------------------------------------------------------------------- /client/dist/assets/images/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/button.svg -------------------------------------------------------------------------------- /client/dist/assets/images/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/chart.svg -------------------------------------------------------------------------------- /client/dist/assets/images/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/circle.svg -------------------------------------------------------------------------------- /client/dist/assets/images/compressor-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/compressor-a.svg -------------------------------------------------------------------------------- /client/dist/assets/images/editvalue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/editvalue.svg -------------------------------------------------------------------------------- /client/dist/assets/images/ellipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/ellipse.svg -------------------------------------------------------------------------------- /client/dist/assets/images/flip-orizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/flip-orizontal.svg -------------------------------------------------------------------------------- /client/dist/assets/images/flip-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/flip-vertical.svg -------------------------------------------------------------------------------- /client/dist/assets/images/gauge-donut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/gauge-donut.png -------------------------------------------------------------------------------- /client/dist/assets/images/gauge-mat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/gauge-mat.png -------------------------------------------------------------------------------- /client/dist/assets/images/gauge-zone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/gauge-zone.png -------------------------------------------------------------------------------- /client/dist/assets/images/graphbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/graphbar.svg -------------------------------------------------------------------------------- /client/dist/assets/images/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/group.svg -------------------------------------------------------------------------------- /client/dist/assets/images/iframe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/iframe.svg -------------------------------------------------------------------------------- /client/dist/assets/images/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/image.svg -------------------------------------------------------------------------------- /client/dist/assets/images/led-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/led-circle.svg -------------------------------------------------------------------------------- /client/dist/assets/images/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/line.svg -------------------------------------------------------------------------------- /client/dist/assets/images/linecap-butt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/linecap-butt.svg -------------------------------------------------------------------------------- /client/dist/assets/images/linecap-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/linecap-round.svg -------------------------------------------------------------------------------- /client/dist/assets/images/linecap-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/linecap-square.svg -------------------------------------------------------------------------------- /client/dist/assets/images/linejoin-bevel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/linejoin-bevel.svg -------------------------------------------------------------------------------- /client/dist/assets/images/linejoin-miter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/linejoin-miter.svg -------------------------------------------------------------------------------- /client/dist/assets/images/linejoin-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/linejoin-round.svg -------------------------------------------------------------------------------- /client/dist/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/logo.svg -------------------------------------------------------------------------------- /client/dist/assets/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/marker-icon.png -------------------------------------------------------------------------------- /client/dist/assets/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/marker-shadow.png -------------------------------------------------------------------------------- /client/dist/assets/images/nodered-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/nodered-icon.svg -------------------------------------------------------------------------------- /client/dist/assets/images/path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/path.svg -------------------------------------------------------------------------------- /client/dist/assets/images/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/pencil.svg -------------------------------------------------------------------------------- /client/dist/assets/images/pipe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/pipe.svg -------------------------------------------------------------------------------- /client/dist/assets/images/progress-v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/progress-v.svg -------------------------------------------------------------------------------- /client/dist/assets/images/rect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/rect.svg -------------------------------------------------------------------------------- /client/dist/assets/images/select-pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/select-pointer.svg -------------------------------------------------------------------------------- /client/dist/assets/images/selectvalue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/selectvalue.svg -------------------------------------------------------------------------------- /client/dist/assets/images/semaphore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/semaphore.svg -------------------------------------------------------------------------------- /client/dist/assets/images/slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/slider.svg -------------------------------------------------------------------------------- /client/dist/assets/images/switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/switch.svg -------------------------------------------------------------------------------- /client/dist/assets/images/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/table.svg -------------------------------------------------------------------------------- /client/dist/assets/images/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/text.svg -------------------------------------------------------------------------------- /client/dist/assets/images/to-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/to-bottom.svg -------------------------------------------------------------------------------- /client/dist/assets/images/to-path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/to-path.svg -------------------------------------------------------------------------------- /client/dist/assets/images/to-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/to-top.svg -------------------------------------------------------------------------------- /client/dist/assets/images/to_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/to_top.svg -------------------------------------------------------------------------------- /client/dist/assets/images/todelete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/todelete.svg -------------------------------------------------------------------------------- /client/dist/assets/images/ungroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/ungroup.svg -------------------------------------------------------------------------------- /client/dist/assets/images/value.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/value.svg -------------------------------------------------------------------------------- /client/dist/assets/images/valve-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/valve-a.svg -------------------------------------------------------------------------------- /client/dist/assets/images/webcam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/images/webcam.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/ext-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/ext-styles.css -------------------------------------------------------------------------------- /client/dist/assets/lib/gauge/gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/gauge/gauge.js -------------------------------------------------------------------------------- /client/dist/assets/lib/gauge/gauge.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/gauge/gauge.min.js -------------------------------------------------------------------------------- /client/dist/assets/lib/nouislider/nouislider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/nouislider/nouislider.min.css -------------------------------------------------------------------------------- /client/dist/assets/lib/nouislider/nouislider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/nouislider/nouislider.min.js -------------------------------------------------------------------------------- /client/dist/assets/lib/numeral/locales.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/numeral/locales.min.js -------------------------------------------------------------------------------- /client/dist/assets/lib/numeral/numeral.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/numeral/numeral.min.js -------------------------------------------------------------------------------- /client/dist/assets/lib/pdfkit-table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/pdfkit-table/index.js -------------------------------------------------------------------------------- /client/dist/assets/lib/svg/raphael.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svg/raphael.min.js -------------------------------------------------------------------------------- /client/dist/assets/lib/svg/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svg/svg.js -------------------------------------------------------------------------------- /client/dist/assets/lib/svg/svg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svg/svg.min.js -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/fuxa-editor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/fuxa-editor.min.js -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/jquery-plugin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/jquery-plugin.min.css -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/jquery-plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/jquery-plugin.min.js -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/jquery.min.js -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/ape-shapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/ape-shapes.js -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/anim-eli.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/anim-eli.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/compair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/compair.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/compreci.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/compreci.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/compring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/compring.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/crusher1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/crusher1.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/crusher2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/crusher2.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/crusher3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/crusher3.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/crusher4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/crusher4.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/crusher5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/crusher5.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/crusher6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/crusher6.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/crusher7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/crusher7.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/diaph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/diaph.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/drier1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/drier1.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/drier2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/drier2.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/drier3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/drier3.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/drier4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/drier4.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/drier5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/drier5.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/feeder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/feeder.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/feeder2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/feeder2.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/feeder3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/feeder3.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/filter2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/filter2.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/filter3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/filter3.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/fitting1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/fitting1.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/fitting2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/fitting2.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/fitting3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/fitting3.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/fitting4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/fitting4.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/fitting5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/fitting5.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/fitting6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/fitting6.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/fitting7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/fitting7.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/fitting8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/fitting8.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/fitting9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/fitting9.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/misc1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/misc1.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/misc2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/misc2.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/misc3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/misc3.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/misc4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/misc4.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/misc5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/misc5.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/misc6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/misc6.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/misc7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/misc7.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/misc8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/misc8.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/nozzle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/nozzle.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/nozzle2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/nozzle2.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/pipi1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/pipi1.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/pipi2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/pipi2.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/pipi3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/pipi3.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/pipi4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/pipi4.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/pipi5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/pipi5.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/pipi6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/pipi6.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/pipi7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/pipi7.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/pumpfeed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/pumpfeed.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/pumpgear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/pumpgear.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/pumpjet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/pumpjet.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/shape-or.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/shape-or.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/tank1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/tank1.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/tank2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/tank2.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/tank3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/tank3.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/tank4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/tank4.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/tank5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/tank5.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/tank6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/tank6.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/tank7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/tank7.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/tank8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/tank8.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/tank9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/tank9.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/valve-ax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/valve-ax.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/valve-bx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/valve-bx.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/valve-cx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/valve-cx.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/img/webcam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/img/webcam.svg -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/my-shapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/my-shapes.js -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/proc-shapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/proc-shapes.js -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/shapes/shapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/shapes/shapes.js -------------------------------------------------------------------------------- /client/dist/assets/lib/svgeditor/svg-editor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/svgeditor/svg-editor.min.css -------------------------------------------------------------------------------- /client/dist/assets/lib/uplot/placement.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/lib/uplot/placement.min.js -------------------------------------------------------------------------------- /client/dist/assets/project.demo.fuxap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/assets/project.demo.fuxap -------------------------------------------------------------------------------- /client/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/favicon.ico -------------------------------------------------------------------------------- /client/dist/icomoon.86abfb46e057ade8.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/icomoon.86abfb46e057ade8.eot -------------------------------------------------------------------------------- /client/dist/icomoon.c1f8b59bad308d66.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/icomoon.c1f8b59bad308d66.woff -------------------------------------------------------------------------------- /client/dist/icomoon.ce427f75e21963af.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/icomoon.ce427f75e21963af.ttf -------------------------------------------------------------------------------- /client/dist/icomoon.dfb0a89feb346906.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/icomoon.dfb0a89feb346906.svg -------------------------------------------------------------------------------- /client/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/index.html -------------------------------------------------------------------------------- /client/dist/layers-2x.9859cd1231006a4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/layers-2x.9859cd1231006a4a.png -------------------------------------------------------------------------------- /client/dist/layers.ef6db8722c2c3f9a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/layers.ef6db8722c2c3f9a.png -------------------------------------------------------------------------------- /client/dist/logo.0e8e64e69250a450.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/logo.0e8e64e69250a450.svg -------------------------------------------------------------------------------- /client/dist/main.a62c7b1140f06fc4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/main.a62c7b1140f06fc4.js -------------------------------------------------------------------------------- /client/dist/marker-icon.d577052aa271e13f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/marker-icon.d577052aa271e13f.png -------------------------------------------------------------------------------- /client/dist/material-icons-round.92dc7ca2f4c591e7.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/material-icons-round.92dc7ca2f4c591e7.woff -------------------------------------------------------------------------------- /client/dist/material-icons-round.b10ec9db5b7fbc74.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/material-icons-round.b10ec9db5b7fbc74.woff2 -------------------------------------------------------------------------------- /client/dist/material-icons-sharp.3885863ee4746422.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/material-icons-sharp.3885863ee4746422.woff2 -------------------------------------------------------------------------------- /client/dist/material-icons-sharp.a71cb2bf66c604de.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/material-icons-sharp.a71cb2bf66c604de.woff -------------------------------------------------------------------------------- /client/dist/material-icons.4ad034d2c499d9b6.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/material-icons.4ad034d2c499d9b6.woff -------------------------------------------------------------------------------- /client/dist/material-icons.59322316b3fd6063.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/material-icons.59322316b3fd6063.woff2 -------------------------------------------------------------------------------- /client/dist/polyfills.c8e7db9850a3ad8b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/polyfills.c8e7db9850a3ad8b.js -------------------------------------------------------------------------------- /client/dist/roboto-bold-webfont.29ac6158e35aee95.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-bold-webfont.29ac6158e35aee95.woff -------------------------------------------------------------------------------- /client/dist/roboto-bold-webfont.568ab1fa3f154a77.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-bold-webfont.568ab1fa3f154a77.svg -------------------------------------------------------------------------------- /client/dist/roboto-bold-webfont.6bcfbdc216b3bc78.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-bold-webfont.6bcfbdc216b3bc78.woff2 -------------------------------------------------------------------------------- /client/dist/roboto-bold-webfont.7c22a4dfdee2ff33.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-bold-webfont.7c22a4dfdee2ff33.ttf -------------------------------------------------------------------------------- /client/dist/roboto-light-webfont.13492ec56771eeee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-light-webfont.13492ec56771eeee.svg -------------------------------------------------------------------------------- /client/dist/roboto-light-webfont.61fa26c99b07ac83.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-light-webfont.61fa26c99b07ac83.woff2 -------------------------------------------------------------------------------- /client/dist/roboto-light-webfont.95295ce84942d8ce.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-light-webfont.95295ce84942d8ce.ttf -------------------------------------------------------------------------------- /client/dist/roboto-light-webfont.ae19119a2889dfdf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-light-webfont.ae19119a2889dfdf.woff -------------------------------------------------------------------------------- /client/dist/roboto-medium-webfont.30344f0411888055.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-medium-webfont.30344f0411888055.woff -------------------------------------------------------------------------------- /client/dist/roboto-medium-webfont.57fb00cab0317d2d.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-medium-webfont.57fb00cab0317d2d.woff2 -------------------------------------------------------------------------------- /client/dist/roboto-medium-webfont.a40869e060a388c0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-medium-webfont.a40869e060a388c0.ttf -------------------------------------------------------------------------------- /client/dist/roboto-medium-webfont.ea02241c29620c02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-medium-webfont.ea02241c29620c02.svg -------------------------------------------------------------------------------- /client/dist/roboto-regular-webfont.2b0501b72f5a94d5.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-regular-webfont.2b0501b72f5a94d5.ttf -------------------------------------------------------------------------------- /client/dist/roboto-regular-webfont.2ce0ba9a06424965.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-regular-webfont.2ce0ba9a06424965.svg -------------------------------------------------------------------------------- /client/dist/roboto-regular-webfont.f58066a2d9061006.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-regular-webfont.f58066a2d9061006.woff -------------------------------------------------------------------------------- /client/dist/roboto-thin-webfont.0a64479870f676e8.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-thin-webfont.0a64479870f676e8.ttf -------------------------------------------------------------------------------- /client/dist/roboto-thin-webfont.0f7221f5c7e972ef.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-thin-webfont.0f7221f5c7e972ef.woff2 -------------------------------------------------------------------------------- /client/dist/roboto-thin-webfont.51b221e22714b1fe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-thin-webfont.51b221e22714b1fe.svg -------------------------------------------------------------------------------- /client/dist/roboto-thin-webfont.dac941649dd4eac0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/roboto-thin-webfont.dac941649dd4eac0.woff -------------------------------------------------------------------------------- /client/dist/runtime.8ef63094e52a66ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/runtime.8ef63094e52a66ba.js -------------------------------------------------------------------------------- /client/dist/scripts.40b60f02658462e4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/scripts.40b60f02658462e4.js -------------------------------------------------------------------------------- /client/dist/styles.d30c1822f4cc23b6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/dist/styles.d30c1822f4cc23b6.css -------------------------------------------------------------------------------- /client/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /client/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/e2e/tsconfig.json -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/package.json -------------------------------------------------------------------------------- /client/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/proxy.conf.json -------------------------------------------------------------------------------- /client/src/app/_config/theme.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_config/theme.config.ts -------------------------------------------------------------------------------- /client/src/app/_directives/dialog-draggable.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_directives/dialog-draggable.directive.ts -------------------------------------------------------------------------------- /client/src/app/_directives/lazyFor.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_directives/lazyFor.directive.ts -------------------------------------------------------------------------------- /client/src/app/_directives/modal-position.cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_directives/modal-position.cache.ts -------------------------------------------------------------------------------- /client/src/app/_directives/ngx-draggable.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_directives/ngx-draggable.directive.ts -------------------------------------------------------------------------------- /client/src/app/_directives/number.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_directives/number.directive.ts -------------------------------------------------------------------------------- /client/src/app/_directives/resize.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_directives/resize.directive.ts -------------------------------------------------------------------------------- /client/src/app/_helpers/auth-interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_helpers/auth-interceptor.ts -------------------------------------------------------------------------------- /client/src/app/_helpers/calc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_helpers/calc.ts -------------------------------------------------------------------------------- /client/src/app/_helpers/define.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_helpers/define.ts -------------------------------------------------------------------------------- /client/src/app/_helpers/dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_helpers/dictionary.ts -------------------------------------------------------------------------------- /client/src/app/_helpers/endpointapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_helpers/endpointapi.ts -------------------------------------------------------------------------------- /client/src/app/_helpers/event-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_helpers/event-utils.ts -------------------------------------------------------------------------------- /client/src/app/_helpers/intervals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_helpers/intervals.ts -------------------------------------------------------------------------------- /client/src/app/_helpers/json-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_helpers/json-utils.ts -------------------------------------------------------------------------------- /client/src/app/_helpers/svg-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_helpers/svg-utils.ts -------------------------------------------------------------------------------- /client/src/app/_helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_helpers/utils.ts -------------------------------------------------------------------------------- /client/src/app/_helpers/windowref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_helpers/windowref.ts -------------------------------------------------------------------------------- /client/src/app/_models/alarm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/alarm.ts -------------------------------------------------------------------------------- /client/src/app/_models/chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/chart.ts -------------------------------------------------------------------------------- /client/src/app/_models/client-access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/client-access.ts -------------------------------------------------------------------------------- /client/src/app/_models/device.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/device.ts -------------------------------------------------------------------------------- /client/src/app/_models/diagnose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/diagnose.ts -------------------------------------------------------------------------------- /client/src/app/_models/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/graph.ts -------------------------------------------------------------------------------- /client/src/app/_models/hmi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/hmi.ts -------------------------------------------------------------------------------- /client/src/app/_models/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/language.ts -------------------------------------------------------------------------------- /client/src/app/_models/maps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/maps.ts -------------------------------------------------------------------------------- /client/src/app/_models/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/notification.ts -------------------------------------------------------------------------------- /client/src/app/_models/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/plugin.ts -------------------------------------------------------------------------------- /client/src/app/_models/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/project.ts -------------------------------------------------------------------------------- /client/src/app/_models/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/report.ts -------------------------------------------------------------------------------- /client/src/app/_models/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/resources.ts -------------------------------------------------------------------------------- /client/src/app/_models/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/script.ts -------------------------------------------------------------------------------- /client/src/app/_models/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/settings.ts -------------------------------------------------------------------------------- /client/src/app/_models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_models/user.ts -------------------------------------------------------------------------------- /client/src/app/_services/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/app.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/auth.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/command.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/command.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/data-converter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/data-converter.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/diagnose.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/diagnose.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/heartbeat.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/heartbeat.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/hmi.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/hmi.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/language.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/language.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/maps-locations.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/maps-locations.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/my-file.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/my-file.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/plugin.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/plugin.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/project.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/project.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/rcgi/rcgi.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/rcgi/rcgi.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/rcgi/resclient.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/rcgi/resclient.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/rcgi/resdemo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/rcgi/resdemo.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/rcgi/reswebapi.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/rcgi/reswebapi.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/reports.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/reports.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/resources.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/resources.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/script.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/script.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/settings.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/settings.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/theme.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/theme.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/toast-notifier.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/toast-notifier.service.ts -------------------------------------------------------------------------------- /client/src/app/_services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/_services/user.service.ts -------------------------------------------------------------------------------- /client/src/app/alarms/alarm-list/alarm-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/alarms/alarm-list/alarm-list.component.ts -------------------------------------------------------------------------------- /client/src/app/alarms/alarm-view/alarm-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/alarms/alarm-view/alarm-view.component.ts -------------------------------------------------------------------------------- /client/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/app.component.html -------------------------------------------------------------------------------- /client/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/app.component.scss -------------------------------------------------------------------------------- /client/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/app.component.ts -------------------------------------------------------------------------------- /client/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/app.module.ts -------------------------------------------------------------------------------- /client/src/app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/app.routing.ts -------------------------------------------------------------------------------- /client/src/app/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/auth.guard.ts -------------------------------------------------------------------------------- /client/src/app/cards-view/cards-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/cards-view/cards-view.component.html -------------------------------------------------------------------------------- /client/src/app/cards-view/cards-view.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/cards-view/cards-view.component.scss -------------------------------------------------------------------------------- /client/src/app/cards-view/cards-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/cards-view/cards-view.component.ts -------------------------------------------------------------------------------- /client/src/app/device-adapter/device-adapter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/device-adapter/device-adapter.service.ts -------------------------------------------------------------------------------- /client/src/app/device-adapter/device-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/device-adapter/device-adapter.ts -------------------------------------------------------------------------------- /client/src/app/device/device-map/device-map.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/device/device-map/device-map.component.ts -------------------------------------------------------------------------------- /client/src/app/device/device.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/device/device.component.css -------------------------------------------------------------------------------- /client/src/app/device/device.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/device/device.component.html -------------------------------------------------------------------------------- /client/src/app/device/device.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/device/device.component.ts -------------------------------------------------------------------------------- /client/src/app/device/tag-property/tag-property-edit-bacnet/tag-property-edit-bacnet.component.css: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | } -------------------------------------------------------------------------------- /client/src/app/device/tag-property/tag-property-edit-webapi/tag-property-edit-webapi.component.css: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | } -------------------------------------------------------------------------------- /client/src/app/editor/editor.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/editor/editor.component.css -------------------------------------------------------------------------------- /client/src/app/editor/editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/editor/editor.component.html -------------------------------------------------------------------------------- /client/src/app/editor/editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/editor/editor.component.ts -------------------------------------------------------------------------------- /client/src/app/editor/graph-config/graph-source-edit/graph-source-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/editor/linkproperty.dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/editor/linkproperty.dialog.html -------------------------------------------------------------------------------- /client/src/app/editor/plugins/plugins.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/editor/plugins/plugins.component.html -------------------------------------------------------------------------------- /client/src/app/editor/plugins/plugins.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/editor/plugins/plugins.component.scss -------------------------------------------------------------------------------- /client/src/app/editor/plugins/plugins.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/editor/plugins/plugins.component.ts -------------------------------------------------------------------------------- /client/src/app/editor/setup/setup.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/editor/setup/setup.component.html -------------------------------------------------------------------------------- /client/src/app/editor/setup/setup.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/editor/setup/setup.component.scss -------------------------------------------------------------------------------- /client/src/app/editor/setup/setup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/editor/setup/setup.component.ts -------------------------------------------------------------------------------- /client/src/app/framework/directives/json-tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/framework/directives/json-tooltip.ts -------------------------------------------------------------------------------- /client/src/app/framework/framework.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/framework/framework.module.ts -------------------------------------------------------------------------------- /client/src/app/fuxa-view/fuxa-view.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/fuxa-view/fuxa-view.component.css -------------------------------------------------------------------------------- /client/src/app/fuxa-view/fuxa-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/fuxa-view/fuxa-view.component.html -------------------------------------------------------------------------------- /client/src/app/fuxa-view/fuxa-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/fuxa-view/fuxa-view.component.ts -------------------------------------------------------------------------------- /client/src/app/gauges/controls/gauge-progress/gauge-progress.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/gauge-progress/gauge-progress.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/gauge-semaphore/gauge-semaphore.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/gauge-semaphore/gauge-semaphore.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-bag/html-bag.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-bag/html-bag.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-button/html-button.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-button/html-button.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-chart/html-chart.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-chart/html-chart.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-graph/graph-pie/graph-pie.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-graph/html-graph.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-graph/html-graph.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-iframe/html-iframe.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-iframe/html-iframe.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-image/html-image.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-image/html-image.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-input/html-input.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-input/html-input.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-scheduler/html-scheduler.component.css: -------------------------------------------------------------------------------- 1 | /* HTML Scheduler component styles */ -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-select/html-select.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-select/html-select.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-table/table-customizer/table-customizer-cell-edit/table-customizer-cell-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-video/html-video.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/html-video/html-video.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/panel/panel.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/panel/panel.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/panel/panel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/gauges/controls/panel/panel.component.ts -------------------------------------------------------------------------------- /client/src/app/gauges/controls/pipe/pipe.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/gauges/controls/pipe/pipe.component.ts -------------------------------------------------------------------------------- /client/src/app/gauges/controls/value/value.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/value/value.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/controls/value/value.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/gauges/controls/value/value.component.ts -------------------------------------------------------------------------------- /client/src/app/gauges/gauge-base/gauge-base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/gauges/gauge-base/gauge-base.component.ts -------------------------------------------------------------------------------- /client/src/app/gauges/gauge-property/flex-auth/flex-auth.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/gauge-property/flex-variables-mapping/flex-variables-mapping.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/gauges.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/gauges/gauges.component.ts -------------------------------------------------------------------------------- /client/src/app/gauges/shapes/ape-shapes/ape-shapes.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/shapes/ape-shapes/ape-shapes.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/shapes/proc-eng/proc-eng.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/shapes/proc-eng/proc-eng.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/shapes/shapes.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/shapes/shapes.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gauges/shapes/shapes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/gauges/shapes/shapes.component.ts -------------------------------------------------------------------------------- /client/src/app/gui-helpers/bitmask/bitmask.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/gui-helpers/bitmask/bitmask.component.css -------------------------------------------------------------------------------- /client/src/app/gui-helpers/bitmask/bitmask.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/gui-helpers/bitmask/bitmask.component.ts -------------------------------------------------------------------------------- /client/src/app/gui-helpers/confirm-dialog/confirm-dialog.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gui-helpers/daterangepicker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/gui-helpers/daterangepicker/index.ts -------------------------------------------------------------------------------- /client/src/app/gui-helpers/edit-name/edit-name.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gui-helpers/ngx-gauge/gaugeOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangoteam/FUXA/HEAD/client/src/app/gui-helpers/ngx-gauge/gaugeOptions.ts -------------------------------------------------------------------------------- /client/src/app/gui-helpers/ngx-switch/ngx-switch.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gui-helpers/ngx-uplot/ngx-uplot.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/app/gui-helpers/ngx-uplot/ngx-uplot.component.html: -------------------------------------------------------------------------------- 1 |