@flexem/fc-gui 3.0.0-alpha.90 → 3.0.0-alpha.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +13 -0
- package/.eslintrc.js +159 -0
- package/.vscode/settings.json +12 -0
- package/CHANGELOG.md +5 -0
- package/angular.json +157 -0
- package/demo/src/app/app.component.html +5 -0
- package/demo/src/app/app.component.ts +8 -0
- package/demo/src/app/app.module.ts +54 -0
- package/demo/src/app/bar/bar-config-store.ts +487 -0
- package/demo/src/app/bar/bar.component.html +3 -0
- package/demo/src/app/bar/bar.component.ts +146 -0
- package/demo/src/app/default/default.component.html +3 -0
- package/demo/src/app/default/default.component.ts +28 -0
- package/demo/src/app/history-data/history-data.component.html +5 -0
- package/demo/src/app/history-data/history-data.component.less +6 -0
- package/demo/src/app/history-data/history-data.component.ts +33 -0
- package/demo/src/app/history-data/history-data.config-store.ts +159 -0
- package/demo/src/app/switch-indicator-light/switch-config-store.ts +477 -0
- package/demo/src/app/switch-indicator-light/switch-indicator-light.component.html +5 -0
- package/demo/src/app/switch-indicator-light/switch-indicator-light.component.ts +28 -0
- package/demo/src/assets/e8nZC.gif +0 -0
- package/demo/src/assets/gallery/character01/character1.png +0 -0
- package/demo/src/assets/gallery/character01/index.json +24 -0
- package/demo/src/assets/gallery/character01/state0.svg +19 -0
- package/demo/src/assets/gallery/indicatorLight/index.json +58 -0
- package/demo/src/assets/gallery/indicatorLight/indicatorLight.png +0 -0
- package/demo/src/assets/gallery/indicatorLight/state0.svg +33 -0
- package/demo/src/assets/gallery/indicatorLight/state1.svg +33 -0
- package/demo/src/assets/gallery/indicatorLight/state2.svg +68 -0
- package/demo/src/assets/gallery/indicatorLight/state3.svg +68 -0
- package/demo/src/assets/gallery/indicatorLight/state4.svg +72 -0
- package/demo/src/assets/gallery/indicatorLight/state5.svg +68 -0
- package/demo/src/assets/gallery/indicatorLight2/app.component.html +3 -0
- package/demo/src/assets/gallery/indicatorLight2/index.json +30 -0
- package/demo/src/assets/gallery/indicatorLight2/indicatorLight2.png +0 -0
- package/demo/src/assets/gallery/indicatorLight2/state0.png +0 -0
- package/demo/src/assets/gallery/indicatorLight2/state1.png +0 -0
- package/demo/src/environments/environment.prod.ts +3 -0
- package/demo/src/environments/environment.ts +8 -0
- package/demo/src/favicon.ico +0 -0
- package/demo/src/gui/default-config-store.ts +225 -0
- package/demo/src/gui/default-gui-context.ts +46 -0
- package/demo/src/gui/default-history-data.store.ts +10 -0
- package/demo/src/gui/default-operation-record.service.ts +11 -0
- package/demo/src/gui/default-permission-checker.ts +23 -0
- package/demo/src/gui/default-variable-communicator.ts +68 -0
- package/demo/src/index.html +14 -0
- package/demo/src/main.ts +11 -0
- package/demo/src/polyfills.ts +68 -0
- package/demo/src/styles.css +1 -0
- package/demo/src/tsconfig.app.json +29 -0
- package/demo/src/tsconfig.spec.json +21 -0
- package/demo/src/typings.d.ts +5 -0
- package/e2e/app.e2e-spec.ts +14 -0
- package/e2e/app.po.ts +11 -0
- package/e2e/tsconfig.e2e.json +12 -0
- package/karma.conf.js +42 -0
- package/package.json +98 -23
- package/protractor.conf.js +30 -0
- package/src/communication/variable/variable-communicator.ts +22 -0
- package/src/communication/variable/variable-definition.ts +10 -0
- package/src/communication/variable/variable-state-enum.ts +7 -0
- package/src/communication/variable/variable-state.ts +5 -0
- package/src/communication/variable/variable-value.ts +5 -0
- package/src/config/alarm/alarm.store.ts +9 -0
- package/src/config/alarm/get-alarms-args.ts +11 -0
- package/src/config/config-store.ts +24 -0
- package/src/config/graph/graph-result.ts +16 -0
- package/src/config/graph/graph-store.ts +12 -0
- package/src/config/graph/graph-type.ts +4 -0
- package/src/config/graph/graph.ts +6 -0
- package/src/config/history-data/get-history-data-args.ts +23 -0
- package/src/config/history-data/historical-curve.time-range.ts +25 -0
- package/src/config/history-data/history-data-value.ts +6 -0
- package/src/config/history-data/history-data.model.ts +6 -0
- package/src/config/history-data/history-data.store.ts +12 -0
- package/src/config/image/image-store.ts +8 -0
- package/src/config/index.ts +17 -0
- package/src/config/variable/get-variable-name-args.ts +7 -0
- package/src/config/variable/variable-store.ts +10 -0
- package/src/config/view/view-store.ts +25 -0
- package/src/config/view/view.model.ts +4 -0
- package/src/core/stringifying-map.ts +30 -0
- package/src/core/stringifying-set.ts +26 -0
- package/src/elements/air-quality/air-quality-element.ts +239 -0
- package/src/elements/alarm/alarm-element.ts +423 -0
- package/src/elements/bar-graph-element.ts +193 -0
- package/src/elements/base/base-element.ts +15 -0
- package/src/elements/base/conditional-control-element.ts +101 -0
- package/src/elements/base/conditional-display-element.ts +90 -0
- package/src/elements/base/conditional-dynamic-display-element.ts +159 -0
- package/src/elements/base/conditional-enable-element.ts +113 -0
- package/src/elements/base/readable-element.ts +94 -0
- package/src/elements/base/state-control-element.ts +200 -0
- package/src/elements/character-display/character-display-element.ts +314 -0
- package/src/elements/datetime-display/datetime-display-element.ts +149 -0
- package/src/elements/historical-curve/historical-curve-element-status.ts +6 -0
- package/src/elements/historical-curve/historical-curve.element.ts +593 -0
- package/src/elements/main-element.ts +507 -0
- package/src/elements/meter-element.ts +158 -0
- package/src/elements/numerical-display/numerical-display-element.ts +438 -0
- package/src/elements/per-view-variable-communicator.ts +77 -0
- package/src/elements/pipe/pipe-element.ts +166 -0
- package/src/elements/ring-graph/ring-graph-element.ts +230 -0
- package/src/elements/shared/graph/graph-state-element.ts +121 -0
- package/src/elements/shared/math-utils.ts +14 -0
- package/src/elements/shared/text/text-element.ts +88 -0
- package/src/elements/shared/text/text-state-element.ts +150 -0
- package/src/elements/shared/text/text-state.model.ts +6 -0
- package/src/elements/shared/text/text-utils.ts +45 -0
- package/src/elements/static-elements/hyperlink-element.ts +62 -0
- package/src/elements/static-elements/image-element.ts +56 -0
- package/src/elements/static-elements/text-element.ts +70 -0
- package/src/elements/switch-indicator-light/bit-indicator-light-operator.ts +82 -0
- package/src/elements/switch-indicator-light/bit-switch-operator.ts +113 -0
- package/src/elements/switch-indicator-light/current-stateId-value.ts +8 -0
- package/src/elements/switch-indicator-light/indicator-light-operator.ts +9 -0
- package/src/elements/switch-indicator-light/switch-indicator-light-element.ts +305 -0
- package/src/elements/switch-indicator-light/switch-operator.ts +7 -0
- package/src/elements/switch-indicator-light/word-indicator-light-operator.ts +70 -0
- package/src/elements/switch-indicator-light/word-switch-operator.ts +82 -0
- package/src/elements/table/table-element.ts +15 -0
- package/src/elements/vector-graphics/ellipse-element.ts +15 -0
- package/src/elements/vector-graphics/poly-line-element.ts +31 -0
- package/src/elements/vector-graphics/polygon-element.ts +31 -0
- package/src/elements/vector-graphics/rectangle-element.ts +15 -0
- package/src/elements/vector-graphics/sector-element.ts +15 -0
- package/src/elements/vector-graphics/straight-line-element.ts +31 -0
- package/src/elements/video/video-element.ts +240 -0
- package/src/elements/view-operation/view-operation.element.ts +228 -0
- package/src/elements/weather/weater-element.ts +281 -0
- package/src/gui/gui-context.ts +18 -0
- package/src/gui/gui-host.ts +187 -0
- package/src/gui/gui-view.ts +214 -0
- package/src/gui/gui.component.ts +220 -0
- package/src/gui/interfaces/gui-options.ts +7 -0
- package/src/gui.module.ts +68 -0
- package/src/localization/localization.service.ts +115 -0
- package/src/localization/localization.service.zh_CN.ts +57 -0
- package/src/logger/console-logger.service.ts +38 -0
- package/src/logger/logger.service.ts +26 -0
- package/src/modal/alert/alert-modal.component.ts +26 -0
- package/src/modal/confirm-operation/confirm-operation-modal.component.ts +28 -0
- package/src/modal/verify-password/verify-password-modal.component.ts +59 -0
- package/src/modal/write-character/write-character-modal-args.ts +8 -0
- package/src/modal/write-character/write-character-modal.component.ts +74 -0
- package/src/modal/write-value/write-value-modal-args.ts +16 -0
- package/src/modal/write-value/write-value-modal.component.ts +237 -0
- package/src/modal/write-value/write-value-model-result.ts +4 -0
- package/src/model/air-quality/air-quality-info.ts +25 -0
- package/src/model/air-quality/air-quality.model.ts +8 -0
- package/src/model/alarm/alarm.model.ts +14 -0
- package/src/model/bar-graph/bar-graph-direction.ts +6 -0
- package/src/model/bar-graph/bar-graph.ts +28 -0
- package/src/model/base/base-element-model.ts +5 -0
- package/src/model/base/conditional-control-model.ts +7 -0
- package/src/model/base/conditional-display-model.ts +10 -0
- package/src/model/base/conditional-dynamic-display-model.ts +22 -0
- package/src/model/base/conditional-enable-model.ts +10 -0
- package/src/model/base/font-setting-model.ts +14 -0
- package/src/model/base/readable-model.ts +21 -0
- package/src/model/character-display/character-display.ts +20 -0
- package/src/model/datetime-display/date-format-type.ts +5 -0
- package/src/model/datetime-display/datetime-display-settings.ts +19 -0
- package/src/model/datetime-display/datetime-display.ts +21 -0
- package/src/model/datetime-display/datetime-separator-type.ts +6 -0
- package/src/model/datetime-display/time-format-type.ts +4 -0
- package/src/model/historical-curve/curve-type.ts +5 -0
- package/src/model/historical-curve/historical-curve-axis-settings.ts +18 -0
- package/src/model/historical-curve/historical-curve-chanel.model.ts +25 -0
- package/src/model/historical-curve/historical-curve.data-settings.ts +10 -0
- package/src/model/historical-curve/historical-curve.display-settings.ts +20 -0
- package/src/model/historical-curve/historical-curve.model.ts +9 -0
- package/src/model/hyperlink/hyperlink.model.ts +9 -0
- package/src/model/image/image-fill-type.ts +4 -0
- package/src/model/image/image.ts +10 -0
- package/src/model/meter/meter.ts +20 -0
- package/src/model/numerical-display/index.ts +9 -0
- package/src/model/numerical-display/numerical-display.ts +30 -0
- package/src/model/numerical-display/numerical-operation-settings.ts +7 -0
- package/src/model/numerical-display/numerical-operation-type.ts +4 -0
- package/src/model/numerical-display/numerical-operation.ts +12 -0
- package/src/model/pipe/flow-direction-type.ts +4 -0
- package/src/model/pipe/pipe.ts +18 -0
- package/src/model/poly-line/poly-line-model.ts +5 -0
- package/src/model/polygon/polygon-model.ts +5 -0
- package/src/model/ring-graph/ring-graph.model.ts +36 -0
- package/src/model/settings/background/view-background-fill-type.ts +5 -0
- package/src/model/settings/background/view-background.model.ts +9 -0
- package/src/model/settings/popup/view-popup-backdrop-type.ts +4 -0
- package/src/model/settings/popup/view-popup-location-type.ts +4 -0
- package/src/model/settings/popup/view-popup-setting.model.ts +18 -0
- package/src/model/settings/view-settings.model.ts +7 -0
- package/src/model/shared/binary.ts +41 -0
- package/src/model/shared/condition/bit-condition-item-observer.ts +59 -0
- package/src/model/shared/condition/bit-condition-logic.ts +4 -0
- package/src/model/shared/condition/bit-condition-model.ts +9 -0
- package/src/model/shared/condition/bit-condition.ts +5 -0
- package/src/model/shared/condition/condition-control-result-value.ts +6 -0
- package/src/model/shared/condition/condition-helper.ts +23 -0
- package/src/model/shared/condition/condition-item-model.ts +11 -0
- package/src/model/shared/condition/condition-item-observer.ts +22 -0
- package/src/model/shared/condition/condition-items-observer.ts +6 -0
- package/src/model/shared/condition/condition-items-result-observer.ts +96 -0
- package/src/model/shared/condition/condition-type.ts +4 -0
- package/src/model/shared/condition/convert-condition-model.ts +6 -0
- package/src/model/shared/condition/index.ts +18 -0
- package/src/model/shared/condition/relation-condition-result-state.ts +8 -0
- package/src/model/shared/condition/relation-condition-result.ts +7 -0
- package/src/model/shared/condition/relation-type.ts +5 -0
- package/src/model/shared/condition/relational-operator.ts +8 -0
- package/src/model/shared/condition/variable-value-logic-model.ts +12 -0
- package/src/model/shared/condition/variable-value-type.ts +4 -0
- package/src/model/shared/condition/word-condition-item-observer.ts +158 -0
- package/src/model/shared/condition/word-condition-model.ts +9 -0
- package/src/model/shared/condition/word-condition.ts +6 -0
- package/src/model/shared/data-type/display-data-type.ts +5 -0
- package/src/model/shared/data-type/fbox-data-type.ts +15 -0
- package/src/model/shared/data-type/fcloud-data-Type.ts +8 -0
- package/src/model/shared/dynamic-display/dynamic-behavior-type.ts +5 -0
- package/src/model/shared/dynamic-display/dynamic-display-behavior-model.ts +6 -0
- package/src/model/shared/dynamic-display/dynamic-display-result-model.ts +6 -0
- package/src/model/shared/dynamic-display/dynamic-display.ts +48 -0
- package/src/model/shared/graph/custom-style.ts +17 -0
- package/src/model/shared/graph/graph-setting.ts +11 -0
- package/src/model/shared/rotation/rotation-behavior-model.ts +5 -0
- package/src/model/shared/rotation/rotation-behavior.ts +91 -0
- package/src/model/shared/rotation/rotation-direction-type.ts +4 -0
- package/src/model/shared/rotation/rotation-model.ts +15 -0
- package/src/model/shared/rotation/rotation-observer-model.ts +5 -0
- package/src/model/shared/rotation/rotation-observer.ts +32 -0
- package/src/model/shared/scale/scale-mark.model.ts +7 -0
- package/src/model/shared/scale/scale-model.ts +25 -0
- package/src/model/shared/size.model.ts +17 -0
- package/src/model/shared/state/state.ts +8 -0
- package/src/model/shared/text/text.ts +6 -0
- package/src/model/shared/translation/translation-behavior-model.ts +5 -0
- package/src/model/shared/translation/translation-behavior.ts +71 -0
- package/src/model/shared/translation/translation-direction-type.ts +4 -0
- package/src/model/shared/translation/translation-observer-model.ts +5 -0
- package/src/model/shared/translation/translation-observer.ts +33 -0
- package/src/model/shared/variable/variable-identifier.model.ts +6 -0
- package/src/model/straight-line/straight-line-model.ts +5 -0
- package/src/model/switch-indicator-light/bit-switch-operation.ts +6 -0
- package/src/model/switch-indicator-light/bit-switch-settings.ts +12 -0
- package/src/model/switch-indicator-light/fault-flicker.ts +6 -0
- package/src/model/switch-indicator-light/flicker.ts +5 -0
- package/src/model/switch-indicator-light/index.ts +18 -0
- package/src/model/switch-indicator-light/indicator-light-fault-flicker.ts +6 -0
- package/src/model/switch-indicator-light/indicator-light-settings.ts +8 -0
- package/src/model/switch-indicator-light/indicator-light-type.ts +4 -0
- package/src/model/switch-indicator-light/switch-indicator-light.ts +47 -0
- package/src/model/switch-indicator-light/switch-indicator-state.ts +9 -0
- package/src/model/switch-indicator-light/switch-settings.ts +8 -0
- package/src/model/switch-indicator-light/switch-type.ts +4 -0
- package/src/model/switch-indicator-light/word-switch-operation.ts +5 -0
- package/src/model/switch-indicator-light/word-switch-settings.ts +14 -0
- package/src/model/table/table-model.ts +14 -0
- package/src/model/text/text.model.ts +8 -0
- package/src/model/video/video.model.ts +9 -0
- package/src/model/view-operation/view-operation-element.model.ts +20 -0
- package/src/model/view-operation/view-operation-type.ts +22 -0
- package/src/model/weather/weather-info.ts +11 -0
- package/src/model/weather/weather.model.ts +8 -0
- package/src/package.json +17 -0
- package/src/public_api.ts +25 -0
- package/src/remote/communication/variable/remote-variable-communicator.ts +254 -0
- package/src/remote/communication/variable/remote-variable-protocol.ts +29 -0
- package/src/remote/config/graph/get-released-graph-state-result.ts +7 -0
- package/src/remote/config/graph/get-released-graph-states.ts +5 -0
- package/src/remote/config/graph/graph-state-key.ts +7 -0
- package/src/remote/config/graph/graph-state-result.ts +6 -0
- package/src/remote/config/graph/remote-graph-protocol.ts +19 -0
- package/src/remote/config/graph/remote-graph-store.ts +112 -0
- package/src/remote/config/image/remote-image-protocol.ts +6 -0
- package/src/remote/config/image/remote-image-store.ts +29 -0
- package/src/remote/config/view/remote-view-protocol.ts +14 -0
- package/src/remote/config/view/remote-view-store.ts +52 -0
- package/src/remote/index.ts +17 -0
- package/src/service/operation-record/create-operation-record-args.ts +6 -0
- package/src/service/operation-record/index.ts +5 -0
- package/src/service/operation-record/operation-record.service.ts +5 -0
- package/src/service/operation-record/variable-option.model.ts +6 -0
- package/src/service/released-variable/released-variable.service.ts +5 -0
- package/src/service/video/video.service.ts +5 -0
- package/src/service/weather.service.ts +7 -0
- package/src/settings/display-mode.ts +12 -0
- package/src/settings/global-settings.ts +11 -0
- package/src/settings/view-resize-mode.ts +12 -0
- package/src/shared/disposable.ts +3 -0
- package/src/shared/gui-consts.ts +33 -0
- package/src/shared/operation-helper.ts +42 -0
- package/src/tsconfig.json +33 -0
- package/src/typings.d.ts +1 -0
- package/src/utils/access-permission.service.ts +27 -0
- package/src/utils/access-permission.ts +5 -0
- package/src/utils/auto-focus.directive.ts +16 -0
- package/src/utils/bs-modal-drag.directive.ts +26 -0
- package/src/utils/data-type/data-type.service.ts +156 -0
- package/src/utils/data-type/fbox-data-type.service.ts +302 -0
- package/src/utils/data-type/fcloud-data-type.service.ts +205 -0
- package/src/utils/fraction-digit.service.ts +132 -0
- package/src/utils/graph-util.ts +19 -0
- package/src/utils/guid.ts +29 -0
- package/src/utils/index.ts +8 -0
- package/src/utils/numerical-operation-type.ts +4 -0
- package/src/utils/numerical-operation.service.ts +167 -0
- package/src/utils/variable-util.ts +13 -0
- package/src/view/popup-view.service.ts +11 -0
- package/src/view/view.service.ts +13 -0
- package/bundles/@flexem/fc-gui.umd.js +0 -83982
- package/bundles/@flexem/fc-gui.umd.js.map +0 -1
- package/bundles/@flexem/fc-gui.umd.min.js +0 -47
- package/bundles/@flexem/fc-gui.umd.min.js.map +0 -1
- package/communication/index.js +0 -1
- package/communication/index.metadata.json +0 -1
- package/communication/variable/index.js +0 -4
- package/communication/variable/index.metadata.json +0 -1
- package/communication/variable/variable-communicator.d.ts +0 -13
- package/communication/variable/variable-communicator.js +0 -0
- package/communication/variable/variable-communicator.metadata.json +0 -1
- package/communication/variable/variable-definition.d.ts +0 -10
- package/communication/variable/variable-definition.js +0 -14
- package/communication/variable/variable-definition.metadata.json +0 -1
- package/communication/variable/variable-state-enum.d.ts +0 -7
- package/communication/variable/variable-state-enum.js +0 -8
- package/communication/variable/variable-state-enum.metadata.json +0 -1
- package/communication/variable/variable-state.d.ts +0 -6
- package/communication/variable/variable-state.js +0 -6
- package/communication/variable/variable-state.metadata.json +0 -1
- package/communication/variable/variable-value.d.ts +0 -8
- package/communication/variable/variable-value.js +0 -8
- package/communication/variable/variable-value.metadata.json +0 -1
- package/config/alarm/alarm.store.d.ts +0 -6
- package/config/alarm/alarm.store.js +0 -0
- package/config/alarm/alarm.store.metadata.json +0 -1
- package/config/alarm/get-alarms-args.d.ts +0 -9
- package/config/alarm/get-alarms-args.js +0 -9
- package/config/alarm/get-alarms-args.metadata.json +0 -1
- package/config/alarm/index.js +0 -1
- package/config/alarm/index.metadata.json +0 -1
- package/config/config-store.d.ts +0 -17
- package/config/config-store.js +0 -0
- package/config/config-store.metadata.json +0 -1
- package/config/graph/graph-result.d.ts +0 -9
- package/config/graph/graph-result.js +0 -13
- package/config/graph/graph-result.metadata.json +0 -1
- package/config/graph/graph-store.d.ts +0 -9
- package/config/graph/graph-store.js +0 -0
- package/config/graph/graph-store.metadata.json +0 -1
- package/config/graph/graph-type.d.ts +0 -4
- package/config/graph/graph-type.js +0 -5
- package/config/graph/graph-type.metadata.json +0 -1
- package/config/graph/graph.d.ts +0 -6
- package/config/graph/graph.js +0 -6
- package/config/graph/graph.metadata.json +0 -1
- package/config/history-data/get-history-data-args.d.ts +0 -22
- package/config/history-data/get-history-data-args.js +0 -21
- package/config/history-data/get-history-data-args.metadata.json +0 -1
- package/config/history-data/historical-curve.time-range.d.ts +0 -18
- package/config/history-data/historical-curve.time-range.js +0 -19
- package/config/history-data/historical-curve.time-range.metadata.json +0 -1
- package/config/history-data/history-data-value.d.ts +0 -6
- package/config/history-data/history-data-value.js +0 -6
- package/config/history-data/history-data-value.metadata.json +0 -1
- package/config/history-data/history-data.model.d.ts +0 -7
- package/config/history-data/history-data.model.js +0 -7
- package/config/history-data/history-data.model.metadata.json +0 -1
- package/config/history-data/history-data.store.d.ts +0 -10
- package/config/history-data/history-data.store.js +0 -0
- package/config/history-data/history-data.store.metadata.json +0 -1
- package/config/history-data/index.js +0 -3
- package/config/history-data/index.metadata.json +0 -1
- package/config/image/image-store.d.ts +0 -6
- package/config/image/image-store.js +0 -0
- package/config/image/image-store.metadata.json +0 -1
- package/config/index.d.ts +0 -11
- package/config/index.js +0 -7
- package/config/index.metadata.json +0 -1
- package/config/variable/get-variable-name-args.d.ts +0 -6
- package/config/variable/get-variable-name-args.js +0 -7
- package/config/variable/get-variable-name-args.metadata.json +0 -1
- package/config/variable/index.js +0 -1
- package/config/variable/index.metadata.json +0 -1
- package/config/variable/variable-store.d.ts +0 -7
- package/config/variable/variable-store.js +0 -0
- package/config/variable/variable-store.metadata.json +0 -1
- package/config/view/view-store.d.ts +0 -20
- package/config/view/view-store.js +0 -0
- package/config/view/view-store.metadata.json +0 -1
- package/config/view/view.model.d.ts +0 -4
- package/config/view/view.model.js +0 -5
- package/config/view/view.model.metadata.json +0 -1
- package/core/index.js +0 -1
- package/core/index.metadata.json +0 -1
- package/core/stringifying-map.d.ts +0 -11
- package/core/stringifying-map.js +0 -24
- package/core/stringifying-map.metadata.json +0 -1
- package/core/stringifying-set.d.ts +0 -10
- package/core/stringifying-set.js +0 -21
- package/core/stringifying-set.metadata.json +0 -1
- package/elements/air-quality/air-quality-element.d.ts +0 -31
- package/elements/air-quality/air-quality-element.js +0 -194
- package/elements/air-quality/air-quality-element.metadata.json +0 -1
- package/elements/alarm/alarm-element.d.ts +0 -44
- package/elements/alarm/alarm-element.js +0 -382
- package/elements/alarm/alarm-element.metadata.json +0 -1
- package/elements/bar-graph-element.d.ts +0 -27
- package/elements/bar-graph-element.js +0 -180
- package/elements/bar-graph-element.metadata.json +0 -1
- package/elements/base/base-element.d.ts +0 -11
- package/elements/base/base-element.js +0 -9
- package/elements/base/base-element.metadata.json +0 -1
- package/elements/base/conditional-control-element.d.ts +0 -16
- package/elements/base/conditional-control-element.js +0 -87
- package/elements/base/conditional-control-element.metadata.json +0 -1
- package/elements/base/conditional-display-element.d.ts +0 -24
- package/elements/base/conditional-display-element.js +0 -86
- package/elements/base/conditional-display-element.metadata.json +0 -1
- package/elements/base/conditional-dynamic-display-element.d.ts +0 -26
- package/elements/base/conditional-dynamic-display-element.js +0 -142
- package/elements/base/conditional-dynamic-display-element.metadata.json +0 -1
- package/elements/base/conditional-enable-element.d.ts +0 -21
- package/elements/base/conditional-enable-element.js +0 -100
- package/elements/base/conditional-enable-element.metadata.json +0 -1
- package/elements/base/index.js +0 -3
- package/elements/base/index.metadata.json +0 -1
- package/elements/base/readable-element.d.ts +0 -20
- package/elements/base/readable-element.js +0 -87
- package/elements/base/readable-element.metadata.json +0 -1
- package/elements/base/state-control-element.d.ts +0 -24
- package/elements/base/state-control-element.js +0 -180
- package/elements/base/state-control-element.metadata.json +0 -1
- package/elements/character-display/character-display-element.d.ts +0 -35
- package/elements/character-display/character-display-element.js +0 -311
- package/elements/character-display/character-display-element.metadata.json +0 -1
- package/elements/datetime-display/datetime-display-element.d.ts +0 -21
- package/elements/datetime-display/datetime-display-element.js +0 -132
- package/elements/datetime-display/datetime-display-element.metadata.json +0 -1
- package/elements/historical-curve/historical-curve-element-status.d.ts +0 -6
- package/elements/historical-curve/historical-curve-element-status.js +0 -7
- package/elements/historical-curve/historical-curve-element-status.metadata.json +0 -1
- package/elements/historical-curve/historical-curve.element.d.ts +0 -59
- package/elements/historical-curve/historical-curve.element.js +0 -475
- package/elements/historical-curve/historical-curve.element.metadata.json +0 -1
- package/elements/historical-curve/historical-curve.element.option.js +0 -0
- package/elements/historical-curve/historical-curve.element.option.metadata.json +0 -1
- package/elements/historical-curve/historical-curve.time-period.js +0 -0
- package/elements/historical-curve/historical-curve.time-period.metadata.json +0 -1
- package/elements/main-element.d.ts +0 -45
- package/elements/main-element.js +0 -328
- package/elements/main-element.metadata.json +0 -1
- package/elements/meter-element.d.ts +0 -26
- package/elements/meter-element.js +0 -139
- package/elements/meter-element.metadata.json +0 -1
- package/elements/numerical-display/numerical-display-element.d.ts +0 -47
- package/elements/numerical-display/numerical-display-element.js +0 -405
- package/elements/numerical-display/numerical-display-element.metadata.json +0 -1
- package/elements/per-view-variable-communicator.d.ts +0 -19
- package/elements/per-view-variable-communicator.js +0 -53
- package/elements/per-view-variable-communicator.metadata.json +0 -1
- package/elements/pipe/pipe-element.d.ts +0 -19
- package/elements/pipe/pipe-element.js +0 -141
- package/elements/pipe/pipe-element.metadata.json +0 -1
- package/elements/ring-graph/ring-graph-element.d.ts +0 -28
- package/elements/ring-graph/ring-graph-element.js +0 -192
- package/elements/ring-graph/ring-graph-element.metadata.json +0 -1
- package/elements/shared/graph/graph-state-element.d.ts +0 -27
- package/elements/shared/graph/graph-state-element.js +0 -110
- package/elements/shared/graph/graph-state-element.metadata.json +0 -1
- package/elements/shared/math-utils.d.ts +0 -2
- package/elements/shared/math-utils.js +0 -14
- package/elements/shared/math-utils.metadata.json +0 -1
- package/elements/shared/text/text-element.d.ts +0 -8
- package/elements/shared/text/text-element.js +0 -79
- package/elements/shared/text/text-element.metadata.json +0 -1
- package/elements/shared/text/text-state-element.d.ts +0 -23
- package/elements/shared/text/text-state-element.js +0 -136
- package/elements/shared/text/text-state-element.metadata.json +0 -1
- package/elements/shared/text/text-state.model.d.ts +0 -5
- package/elements/shared/text/text-state.model.js +0 -0
- package/elements/shared/text/text-state.model.metadata.json +0 -1
- package/elements/shared/text/text-utils.d.ts +0 -5
- package/elements/shared/text/text-utils.js +0 -45
- package/elements/shared/text/text-utils.metadata.json +0 -1
- package/elements/static-elements/hyperlink-element.d.ts +0 -14
- package/elements/static-elements/hyperlink-element.js +0 -48
- package/elements/static-elements/hyperlink-element.metadata.json +0 -1
- package/elements/static-elements/image-element.d.ts +0 -14
- package/elements/static-elements/image-element.js +0 -41
- package/elements/static-elements/image-element.metadata.json +0 -1
- package/elements/static-elements/text-element.d.ts +0 -16
- package/elements/static-elements/text-element.js +0 -55
- package/elements/static-elements/text-element.metadata.json +0 -1
- package/elements/switch-indicator-light/bit-indicator-light-operator.d.ts +0 -20
- package/elements/switch-indicator-light/bit-indicator-light-operator.js +0 -78
- package/elements/switch-indicator-light/bit-indicator-light-operator.metadata.json +0 -1
- package/elements/switch-indicator-light/bit-switch-operator.d.ts +0 -19
- package/elements/switch-indicator-light/bit-switch-operator.js +0 -107
- package/elements/switch-indicator-light/bit-switch-operator.metadata.json +0 -1
- package/elements/switch-indicator-light/current-stateId-value.d.ts +0 -6
- package/elements/switch-indicator-light/current-stateId-value.js +0 -8
- package/elements/switch-indicator-light/current-stateId-value.metadata.json +0 -1
- package/elements/switch-indicator-light/indicator-light-operator.d.ts +0 -8
- package/elements/switch-indicator-light/indicator-light-operator.js +0 -0
- package/elements/switch-indicator-light/indicator-light-operator.metadata.json +0 -1
- package/elements/switch-indicator-light/switch-indicator-light-element.d.ts +0 -39
- package/elements/switch-indicator-light/switch-indicator-light-element.js +0 -252
- package/elements/switch-indicator-light/switch-indicator-light-element.metadata.json +0 -1
- package/elements/switch-indicator-light/switch-operator.d.ts +0 -6
- package/elements/switch-indicator-light/switch-operator.js +0 -0
- package/elements/switch-indicator-light/switch-operator.metadata.json +0 -1
- package/elements/switch-indicator-light/word-indicator-light-operator.d.ts +0 -18
- package/elements/switch-indicator-light/word-indicator-light-operator.js +0 -65
- package/elements/switch-indicator-light/word-indicator-light-operator.metadata.json +0 -1
- package/elements/switch-indicator-light/word-switch-operator.d.ts +0 -18
- package/elements/switch-indicator-light/word-switch-operator.js +0 -75
- package/elements/switch-indicator-light/word-switch-operator.metadata.json +0 -1
- package/elements/table/table-element.d.ts +0 -9
- package/elements/table/table-element.js +0 -6
- package/elements/table/table-element.metadata.json +0 -1
- package/elements/vector-graphics/ellipse-element.d.ts +0 -9
- package/elements/vector-graphics/ellipse-element.js +0 -6
- package/elements/vector-graphics/ellipse-element.metadata.json +0 -1
- package/elements/vector-graphics/poly-line-element.d.ts +0 -12
- package/elements/vector-graphics/poly-line-element.js +0 -19
- package/elements/vector-graphics/poly-line-element.metadata.json +0 -1
- package/elements/vector-graphics/polygon-element.d.ts +0 -12
- package/elements/vector-graphics/polygon-element.js +0 -19
- package/elements/vector-graphics/polygon-element.metadata.json +0 -1
- package/elements/vector-graphics/rectangle-element.d.ts +0 -9
- package/elements/vector-graphics/rectangle-element.js +0 -6
- package/elements/vector-graphics/rectangle-element.metadata.json +0 -1
- package/elements/vector-graphics/sector-element.d.ts +0 -9
- package/elements/vector-graphics/sector-element.js +0 -6
- package/elements/vector-graphics/sector-element.metadata.json +0 -1
- package/elements/vector-graphics/straight-line-element.d.ts +0 -12
- package/elements/vector-graphics/straight-line-element.js +0 -19
- package/elements/vector-graphics/straight-line-element.metadata.json +0 -1
- package/elements/video/video-element.d.ts +0 -31
- package/elements/video/video-element.js +0 -209
- package/elements/video/video-element.metadata.json +0 -1
- package/elements/view-operation/view-operation.element.d.ts +0 -36
- package/elements/view-operation/view-operation.element.js +0 -202
- package/elements/view-operation/view-operation.element.metadata.json +0 -1
- package/elements/weather/weater-element.d.ts +0 -38
- package/elements/weather/weater-element.js +0 -237
- package/elements/weather/weater-element.metadata.json +0 -1
- package/gui/gui-context.d.ts +0 -17
- package/gui/gui-context.js +0 -0
- package/gui/gui-context.metadata.json +0 -1
- package/gui/gui-host.d.ts +0 -50
- package/gui/gui-host.js +0 -173
- package/gui/gui-host.metadata.json +0 -1
- package/gui/gui-view.d.ts +0 -42
- package/gui/gui-view.js +0 -204
- package/gui/gui-view.metadata.json +0 -1
- package/gui/gui.component.d.ts +0 -45
- package/gui/gui.component.js +0 -240
- package/gui/gui.component.metadata.json +0 -1
- package/gui/interfaces/gui-options.d.ts +0 -6
- package/gui/interfaces/gui-options.js +0 -0
- package/gui/interfaces/gui-options.metadata.json +0 -1
- package/gui.module.d.ts +0 -2
- package/gui.module.js +0 -78
- package/gui.module.metadata.json +0 -1
- package/localization/index.js +0 -2
- package/localization/index.metadata.json +0 -1
- package/localization/localization.service.d.ts +0 -58
- package/localization/localization.service.js +0 -57
- package/localization/localization.service.metadata.json +0 -1
- package/localization/localization.service.zh_CN.d.ts +0 -2
- package/localization/localization.service.zh_CN.js +0 -55
- package/localization/localization.service.zh_CN.metadata.json +0 -1
- package/logger/console-logger.service.d.ts +0 -13
- package/logger/console-logger.service.js +0 -38
- package/logger/console-logger.service.metadata.json +0 -1
- package/logger/index.js +0 -2
- package/logger/index.metadata.json +0 -1
- package/logger/logger.service.d.ts +0 -14
- package/logger/logger.service.js +0 -2
- package/logger/logger.service.metadata.json +0 -1
- package/modal/alert/alert-modal.component.d.ts +0 -10
- package/modal/alert/alert-modal.component.js +0 -38
- package/modal/alert/alert-modal.component.metadata.json +0 -1
- package/modal/confirm-operation/confirm-operation-modal.component.d.ts +0 -10
- package/modal/confirm-operation/confirm-operation-modal.component.js +0 -41
- package/modal/confirm-operation/confirm-operation-modal.component.metadata.json +0 -1
- package/modal/verify-password/verify-password-modal.component.d.ts +0 -18
- package/modal/verify-password/verify-password-modal.component.js +0 -66
- package/modal/verify-password/verify-password-modal.component.metadata.json +0 -1
- package/modal/write-character/write-character-modal-args.d.ts +0 -7
- package/modal/write-character/write-character-modal-args.js +0 -8
- package/modal/write-character/write-character-modal-args.metadata.json +0 -1
- package/modal/write-character/write-character-modal.component.d.ts +0 -25
- package/modal/write-character/write-character-modal.component.js +0 -74
- package/modal/write-character/write-character-modal.component.metadata.json +0 -1
- package/modal/write-value/write-value-modal-args.d.ts +0 -14
- package/modal/write-value/write-value-modal-args.js +0 -13
- package/modal/write-value/write-value-modal-args.metadata.json +0 -1
- package/modal/write-value/write-value-modal.component.d.ts +0 -55
- package/modal/write-value/write-value-modal.component.js +0 -220
- package/modal/write-value/write-value-modal.component.metadata.json +0 -1
- package/modal/write-value/write-value-model-result.d.ts +0 -3
- package/modal/write-value/write-value-model-result.js +0 -0
- package/modal/write-value/write-value-model-result.metadata.json +0 -1
- package/model/air-quality/air-quality-info.d.ts +0 -23
- package/model/air-quality/air-quality-info.js +0 -4
- package/model/air-quality/air-quality-info.metadata.json +0 -1
- package/model/air-quality/air-quality.model.d.ts +0 -7
- package/model/air-quality/air-quality.model.js +0 -0
- package/model/air-quality/air-quality.model.metadata.json +0 -1
- package/model/alarm/alarm.model.d.ts +0 -13
- package/model/alarm/alarm.model.js +0 -0
- package/model/alarm/alarm.model.metadata.json +0 -1
- package/model/bar-graph/FontStyleData.js +0 -0
- package/model/bar-graph/FontStyleData.metadata.json +0 -1
- package/model/bar-graph/bar-graph-direction.d.ts +0 -6
- package/model/bar-graph/bar-graph-direction.js +0 -7
- package/model/bar-graph/bar-graph-direction.metadata.json +0 -1
- package/model/bar-graph/bar-graph.d.ts +0 -26
- package/model/bar-graph/bar-graph.js +0 -0
- package/model/bar-graph/bar-graph.metadata.json +0 -1
- package/model/base/base-element-model.d.ts +0 -5
- package/model/base/base-element-model.js +0 -2
- package/model/base/base-element-model.metadata.json +0 -1
- package/model/base/conditional-control-model.d.ts +0 -6
- package/model/base/conditional-control-model.js +0 -0
- package/model/base/conditional-control-model.metadata.json +0 -1
- package/model/base/conditional-display-model.d.ts +0 -9
- package/model/base/conditional-display-model.js +0 -0
- package/model/base/conditional-display-model.metadata.json +0 -1
- package/model/base/conditional-dynamic-display-model.d.ts +0 -13
- package/model/base/conditional-dynamic-display-model.js +0 -0
- package/model/base/conditional-dynamic-display-model.metadata.json +0 -1
- package/model/base/conditional-enable-model.d.ts +0 -9
- package/model/base/conditional-enable-model.js +0 -0
- package/model/base/conditional-enable-model.metadata.json +0 -1
- package/model/base/font-setting-model.d.ts +0 -8
- package/model/base/font-setting-model.js +0 -0
- package/model/base/font-setting-model.metadata.json +0 -1
- package/model/base/index.js +0 -1
- package/model/base/index.metadata.json +0 -1
- package/model/base/readable-model.d.ts +0 -14
- package/model/base/readable-model.js +0 -0
- package/model/base/readable-model.metadata.json +0 -1
- package/model/base/security-model.js +0 -0
- package/model/base/security-model.metadata.json +0 -1
- package/model/character-display/character-display.d.ts +0 -19
- package/model/character-display/character-display.js +0 -0
- package/model/character-display/character-display.metadata.json +0 -1
- package/model/datetime-display/date-format-type.d.ts +0 -5
- package/model/datetime-display/date-format-type.js +0 -6
- package/model/datetime-display/date-format-type.metadata.json +0 -1
- package/model/datetime-display/datetime-display-settings.d.ts +0 -17
- package/model/datetime-display/datetime-display-settings.js +0 -0
- package/model/datetime-display/datetime-display-settings.metadata.json +0 -1
- package/model/datetime-display/datetime-display.d.ts +0 -20
- package/model/datetime-display/datetime-display.js +0 -0
- package/model/datetime-display/datetime-display.metadata.json +0 -1
- package/model/datetime-display/datetime-separator-type.d.ts +0 -6
- package/model/datetime-display/datetime-separator-type.js +0 -7
- package/model/datetime-display/datetime-separator-type.metadata.json +0 -1
- package/model/datetime-display/time-format-type.d.ts +0 -4
- package/model/datetime-display/time-format-type.js +0 -5
- package/model/datetime-display/time-format-type.metadata.json +0 -1
- package/model/historical-curve/curve-type.d.ts +0 -5
- package/model/historical-curve/curve-type.js +0 -6
- package/model/historical-curve/curve-type.metadata.json +0 -1
- package/model/historical-curve/historical-curve-axis-settings.d.ts +0 -16
- package/model/historical-curve/historical-curve-axis-settings.js +0 -5
- package/model/historical-curve/historical-curve-axis-settings.metadata.json +0 -1
- package/model/historical-curve/historical-curve-chanel.model.d.ts +0 -14
- package/model/historical-curve/historical-curve-chanel.model.js +0 -0
- package/model/historical-curve/historical-curve-chanel.model.metadata.json +0 -1
- package/model/historical-curve/historical-curve.data-settings.d.ts +0 -9
- package/model/historical-curve/historical-curve.data-settings.js +0 -0
- package/model/historical-curve/historical-curve.data-settings.metadata.json +0 -1
- package/model/historical-curve/historical-curve.display-settings.d.ts +0 -19
- package/model/historical-curve/historical-curve.display-settings.js +0 -0
- package/model/historical-curve/historical-curve.display-settings.metadata.json +0 -1
- package/model/historical-curve/historical-curve.model.d.ts +0 -8
- package/model/historical-curve/historical-curve.model.js +0 -0
- package/model/historical-curve/historical-curve.model.metadata.json +0 -1
- package/model/historical-curve/index.js +0 -0
- package/model/historical-curve/index.metadata.json +0 -1
- package/model/hyperlink/hyperlink.model.d.ts +0 -8
- package/model/hyperlink/hyperlink.model.js +0 -0
- package/model/hyperlink/hyperlink.model.metadata.json +0 -1
- package/model/image/image-fill-type.d.ts +0 -4
- package/model/image/image-fill-type.js +0 -5
- package/model/image/image-fill-type.metadata.json +0 -1
- package/model/image/image.d.ts +0 -9
- package/model/image/image.js +0 -0
- package/model/image/image.metadata.json +0 -1
- package/model/index.js +0 -8
- package/model/index.metadata.json +0 -1
- package/model/meter/meter.d.ts +0 -17
- package/model/meter/meter.js +0 -0
- package/model/meter/meter.metadata.json +0 -1
- package/model/numerical-display/index.d.ts +0 -8
- package/model/numerical-display/index.js +0 -2
- package/model/numerical-display/index.metadata.json +0 -1
- package/model/numerical-display/numerical-display.d.ts +0 -29
- package/model/numerical-display/numerical-display.js +0 -0
- package/model/numerical-display/numerical-display.metadata.json +0 -1
- package/model/numerical-display/numerical-operation-settings.d.ts +0 -6
- package/model/numerical-display/numerical-operation-settings.js +0 -0
- package/model/numerical-display/numerical-operation-settings.metadata.json +0 -1
- package/model/numerical-display/numerical-operation-type.d.ts +0 -4
- package/model/numerical-display/numerical-operation-type.js +0 -5
- package/model/numerical-display/numerical-operation-type.metadata.json +0 -1
- package/model/numerical-display/numerical-operation.d.ts +0 -11
- package/model/numerical-display/numerical-operation.js +0 -0
- package/model/numerical-display/numerical-operation.metadata.json +0 -1
- package/model/numerical-display/proportional-conversion.js +0 -0
- package/model/numerical-display/proportional-conversion.metadata.json +0 -1
- package/model/numerical-display/type-settings.js +0 -0
- package/model/numerical-display/type-settings.metadata.json +0 -1
- package/model/numerical-display/zoom.js +0 -0
- package/model/numerical-display/zoom.metadata.json +0 -1
- package/model/pipe/flow-direction-type.d.ts +0 -4
- package/model/pipe/flow-direction-type.js +0 -5
- package/model/pipe/flow-direction-type.metadata.json +0 -1
- package/model/pipe/index.js +0 -1
- package/model/pipe/index.metadata.json +0 -1
- package/model/pipe/pipe.d.ts +0 -17
- package/model/pipe/pipe.js +0 -0
- package/model/pipe/pipe.metadata.json +0 -1
- package/model/poly-line/poly-line-model.d.ts +0 -4
- package/model/poly-line/poly-line-model.js +0 -0
- package/model/poly-line/poly-line-model.metadata.json +0 -1
- package/model/polygon/polygon-model.d.ts +0 -4
- package/model/polygon/polygon-model.js +0 -0
- package/model/polygon/polygon-model.metadata.json +0 -1
- package/model/ring-graph/ring-graph.model.d.ts +0 -33
- package/model/ring-graph/ring-graph.model.js +0 -0
- package/model/ring-graph/ring-graph.model.metadata.json +0 -1
- package/model/settings/background/view-background-fill-type.d.ts +0 -5
- package/model/settings/background/view-background-fill-type.js +0 -6
- package/model/settings/background/view-background-fill-type.metadata.json +0 -1
- package/model/settings/background/view-background.model.d.ts +0 -8
- package/model/settings/background/view-background.model.js +0 -0
- package/model/settings/background/view-background.model.metadata.json +0 -1
- package/model/settings/index.js +0 -2
- package/model/settings/index.metadata.json +0 -1
- package/model/settings/popup/view-popup-backdrop-type.d.ts +0 -4
- package/model/settings/popup/view-popup-backdrop-type.js +0 -5
- package/model/settings/popup/view-popup-backdrop-type.metadata.json +0 -1
- package/model/settings/popup/view-popup-location-type.d.ts +0 -4
- package/model/settings/popup/view-popup-location-type.js +0 -5
- package/model/settings/popup/view-popup-location-type.metadata.json +0 -1
- package/model/settings/popup/view-popup-setting.model.d.ts +0 -17
- package/model/settings/popup/view-popup-setting.model.js +0 -2
- package/model/settings/popup/view-popup-setting.model.metadata.json +0 -1
- package/model/settings/view-settings.model.d.ts +0 -6
- package/model/settings/view-settings.model.js +0 -0
- package/model/settings/view-settings.model.metadata.json +0 -1
- package/model/shared/alarm/alarm-range.model.js +0 -0
- package/model/shared/alarm/alarm-range.model.metadata.json +0 -1
- package/model/shared/arc.model.js +0 -0
- package/model/shared/arc.model.metadata.json +0 -1
- package/model/shared/binary.d.ts +0 -7
- package/model/shared/binary.js +0 -37
- package/model/shared/binary.metadata.json +0 -1
- package/model/shared/condition/bit-condition-item-observer.d.ts +0 -14
- package/model/shared/condition/bit-condition-item-observer.js +0 -53
- package/model/shared/condition/bit-condition-item-observer.metadata.json +0 -1
- package/model/shared/condition/bit-condition-logic.d.ts +0 -4
- package/model/shared/condition/bit-condition-logic.js +0 -5
- package/model/shared/condition/bit-condition-logic.metadata.json +0 -1
- package/model/shared/condition/bit-condition-model.d.ts +0 -8
- package/model/shared/condition/bit-condition-model.js +0 -0
- package/model/shared/condition/bit-condition-model.metadata.json +0 -1
- package/model/shared/condition/bit-condition.d.ts +0 -4
- package/model/shared/condition/bit-condition.js +0 -0
- package/model/shared/condition/bit-condition.metadata.json +0 -1
- package/model/shared/condition/condition-control-result-value.d.ts +0 -5
- package/model/shared/condition/condition-control-result-value.js +0 -0
- package/model/shared/condition/condition-control-result-value.metadata.json +0 -1
- package/model/shared/condition/condition-helper.d.ts +0 -4
- package/model/shared/condition/condition-helper.js +0 -22
- package/model/shared/condition/condition-helper.metadata.json +0 -1
- package/model/shared/condition/condition-item-model.d.ts +0 -10
- package/model/shared/condition/condition-item-model.js +0 -0
- package/model/shared/condition/condition-item-model.metadata.json +0 -1
- package/model/shared/condition/condition-item-observer.d.ts +0 -12
- package/model/shared/condition/condition-item-observer.js +0 -14
- package/model/shared/condition/condition-item-observer.metadata.json +0 -1
- package/model/shared/condition/condition-items-observer.d.ts +0 -5
- package/model/shared/condition/condition-items-observer.js +0 -0
- package/model/shared/condition/condition-items-observer.metadata.json +0 -1
- package/model/shared/condition/condition-items-result-observer.d.ts +0 -16
- package/model/shared/condition/condition-items-result-observer.js +0 -87
- package/model/shared/condition/condition-items-result-observer.metadata.json +0 -1
- package/model/shared/condition/condition-model.js +0 -0
- package/model/shared/condition/condition-model.metadata.json +0 -1
- package/model/shared/condition/condition-type.d.ts +0 -4
- package/model/shared/condition/condition-type.js +0 -5
- package/model/shared/condition/condition-type.metadata.json +0 -1
- package/model/shared/condition/convert-condition-model.d.ts +0 -5
- package/model/shared/condition/convert-condition-model.js +0 -0
- package/model/shared/condition/convert-condition-model.metadata.json +0 -1
- package/model/shared/condition/index.d.ts +0 -11
- package/model/shared/condition/index.js +0 -4
- package/model/shared/condition/index.metadata.json +0 -1
- package/model/shared/condition/relation-condition-result-state.d.ts +0 -6
- package/model/shared/condition/relation-condition-result-state.js +0 -8
- package/model/shared/condition/relation-condition-result-state.metadata.json +0 -1
- package/model/shared/condition/relation-condition-result.d.ts +0 -8
- package/model/shared/condition/relation-condition-result.js +0 -7
- package/model/shared/condition/relation-condition-result.metadata.json +0 -1
- package/model/shared/condition/relation-type.d.ts +0 -5
- package/model/shared/condition/relation-type.js +0 -6
- package/model/shared/condition/relation-type.metadata.json +0 -1
- package/model/shared/condition/relational-operator.d.ts +0 -8
- package/model/shared/condition/relational-operator.js +0 -9
- package/model/shared/condition/relational-operator.metadata.json +0 -1
- package/model/shared/condition/variable-value-logic-model.d.ts +0 -11
- package/model/shared/condition/variable-value-logic-model.js +0 -0
- package/model/shared/condition/variable-value-logic-model.metadata.json +0 -1
- package/model/shared/condition/variable-value-type.d.ts +0 -4
- package/model/shared/condition/variable-value-type.js +0 -5
- package/model/shared/condition/variable-value-type.metadata.json +0 -1
- package/model/shared/condition/word-condition-item-observer.d.ts +0 -21
- package/model/shared/condition/word-condition-item-observer.js +0 -165
- package/model/shared/condition/word-condition-item-observer.metadata.json +0 -1
- package/model/shared/condition/word-condition-model.d.ts +0 -8
- package/model/shared/condition/word-condition-model.js +0 -0
- package/model/shared/condition/word-condition-model.metadata.json +0 -1
- package/model/shared/condition/word-condition.d.ts +0 -5
- package/model/shared/condition/word-condition.js +0 -0
- package/model/shared/condition/word-condition.metadata.json +0 -1
- package/model/shared/data-type/display-data-type.d.ts +0 -5
- package/model/shared/data-type/display-data-type.js +0 -6
- package/model/shared/data-type/display-data-type.metadata.json +0 -1
- package/model/shared/data-type/fbox-data-type.d.ts +0 -15
- package/model/shared/data-type/fbox-data-type.js +0 -16
- package/model/shared/data-type/fbox-data-type.metadata.json +0 -1
- package/model/shared/data-type/fcloud-data-Type.d.ts +0 -8
- package/model/shared/data-type/fcloud-data-Type.js +0 -9
- package/model/shared/data-type/fcloud-data-Type.metadata.json +0 -1
- package/model/shared/dynamic-display/dynamic-behavior-type.d.ts +0 -5
- package/model/shared/dynamic-display/dynamic-behavior-type.js +0 -6
- package/model/shared/dynamic-display/dynamic-behavior-type.metadata.json +0 -1
- package/model/shared/dynamic-display/dynamic-display-behavior-model.d.ts +0 -5
- package/model/shared/dynamic-display/dynamic-display-behavior-model.js +0 -0
- package/model/shared/dynamic-display/dynamic-display-behavior-model.metadata.json +0 -1
- package/model/shared/dynamic-display/dynamic-display-model.js +0 -0
- package/model/shared/dynamic-display/dynamic-display-model.metadata.json +0 -1
- package/model/shared/dynamic-display/dynamic-display-result-model.d.ts +0 -7
- package/model/shared/dynamic-display/dynamic-display-result-model.js +0 -7
- package/model/shared/dynamic-display/dynamic-display-result-model.metadata.json +0 -1
- package/model/shared/dynamic-display/dynamic-display.d.ts +0 -11
- package/model/shared/dynamic-display/dynamic-display.js +0 -35
- package/model/shared/dynamic-display/dynamic-display.metadata.json +0 -1
- package/model/shared/graph/custom-style.d.ts +0 -14
- package/model/shared/graph/custom-style.js +0 -0
- package/model/shared/graph/custom-style.metadata.json +0 -1
- package/model/shared/graph/graph-setting.d.ts +0 -10
- package/model/shared/graph/graph-setting.js +0 -0
- package/model/shared/graph/graph-setting.metadata.json +0 -1
- package/model/shared/index.js +0 -3
- package/model/shared/index.metadata.json +0 -1
- package/model/shared/point.model.js +0 -0
- package/model/shared/point.model.metadata.json +0 -1
- package/model/shared/rotation/rotation-behavior-model.d.ts +0 -4
- package/model/shared/rotation/rotation-behavior-model.js +0 -0
- package/model/shared/rotation/rotation-behavior-model.metadata.json +0 -1
- package/model/shared/rotation/rotation-behavior.d.ts +0 -9
- package/model/shared/rotation/rotation-behavior.js +0 -101
- package/model/shared/rotation/rotation-behavior.metadata.json +0 -1
- package/model/shared/rotation/rotation-direction-type.d.ts +0 -4
- package/model/shared/rotation/rotation-direction-type.js +0 -5
- package/model/shared/rotation/rotation-direction-type.metadata.json +0 -1
- package/model/shared/rotation/rotation-model.d.ts +0 -14
- package/model/shared/rotation/rotation-model.js +0 -0
- package/model/shared/rotation/rotation-model.metadata.json +0 -1
- package/model/shared/rotation/rotation-observer-model.d.ts +0 -4
- package/model/shared/rotation/rotation-observer-model.js +0 -0
- package/model/shared/rotation/rotation-observer-model.metadata.json +0 -1
- package/model/shared/rotation/rotation-observer.d.ts +0 -11
- package/model/shared/rotation/rotation-observer.js +0 -28
- package/model/shared/rotation/rotation-observer.metadata.json +0 -1
- package/model/shared/scale/scale-mark.model.d.ts +0 -6
- package/model/shared/scale/scale-mark.model.js +0 -0
- package/model/shared/scale/scale-mark.model.metadata.json +0 -1
- package/model/shared/scale/scale-model.d.ts +0 -20
- package/model/shared/scale/scale-model.js +0 -0
- package/model/shared/scale/scale-model.metadata.json +0 -1
- package/model/shared/size.model.d.ts +0 -7
- package/model/shared/size.model.js +0 -12
- package/model/shared/size.model.metadata.json +0 -1
- package/model/shared/state/index.js +0 -1
- package/model/shared/state/index.metadata.json +0 -1
- package/model/shared/state/state.d.ts +0 -8
- package/model/shared/state/state.js +0 -9
- package/model/shared/state/state.metadata.json +0 -1
- package/model/shared/text/font.js +0 -0
- package/model/shared/text/font.metadata.json +0 -1
- package/model/shared/text/index.js +0 -0
- package/model/shared/text/index.metadata.json +0 -1
- package/model/shared/text/text.d.ts +0 -5
- package/model/shared/text/text.js +0 -0
- package/model/shared/text/text.metadata.json +0 -1
- package/model/shared/translation/translation-behavior-model.d.ts +0 -4
- package/model/shared/translation/translation-behavior-model.js +0 -0
- package/model/shared/translation/translation-behavior-model.metadata.json +0 -1
- package/model/shared/translation/translation-behavior.d.ts +0 -12
- package/model/shared/translation/translation-behavior.js +0 -63
- package/model/shared/translation/translation-behavior.metadata.json +0 -1
- package/model/shared/translation/translation-direction-type.d.ts +0 -4
- package/model/shared/translation/translation-direction-type.js +0 -5
- package/model/shared/translation/translation-direction-type.metadata.json +0 -1
- package/model/shared/translation/translation-model.js +0 -0
- package/model/shared/translation/translation-model.metadata.json +0 -1
- package/model/shared/translation/translation-observer-model.d.ts +0 -4
- package/model/shared/translation/translation-observer-model.js +0 -0
- package/model/shared/translation/translation-observer-model.metadata.json +0 -1
- package/model/shared/translation/translation-observer.d.ts +0 -10
- package/model/shared/translation/translation-observer.js +0 -27
- package/model/shared/translation/translation-observer.metadata.json +0 -1
- package/model/shared/variable/variable-identifier.model.d.ts +0 -5
- package/model/shared/variable/variable-identifier.model.js +0 -0
- package/model/shared/variable/variable-identifier.model.metadata.json +0 -1
- package/model/shared/variable/variable-name.model.js +0 -0
- package/model/shared/variable/variable-name.model.metadata.json +0 -1
- package/model/straight-line/straight-line-model.d.ts +0 -4
- package/model/straight-line/straight-line-model.js +0 -0
- package/model/straight-line/straight-line-model.metadata.json +0 -1
- package/model/switch-indicator-light/bit-indicator-light-settings.js +0 -0
- package/model/switch-indicator-light/bit-indicator-light-settings.metadata.json +0 -1
- package/model/switch-indicator-light/bit-switch-operation.d.ts +0 -6
- package/model/switch-indicator-light/bit-switch-operation.js +0 -7
- package/model/switch-indicator-light/bit-switch-operation.metadata.json +0 -1
- package/model/switch-indicator-light/bit-switch-settings.d.ts +0 -11
- package/model/switch-indicator-light/bit-switch-settings.js +0 -0
- package/model/switch-indicator-light/bit-switch-settings.metadata.json +0 -1
- package/model/switch-indicator-light/fault-flicker.d.ts +0 -5
- package/model/switch-indicator-light/fault-flicker.js +0 -0
- package/model/switch-indicator-light/fault-flicker.metadata.json +0 -1
- package/model/switch-indicator-light/flicker.d.ts +0 -5
- package/model/switch-indicator-light/flicker.js +0 -6
- package/model/switch-indicator-light/flicker.metadata.json +0 -1
- package/model/switch-indicator-light/index.d.ts +0 -14
- package/model/switch-indicator-light/index.js +0 -5
- package/model/switch-indicator-light/index.metadata.json +0 -1
- package/model/switch-indicator-light/indicator-light-fault-flicker.d.ts +0 -5
- package/model/switch-indicator-light/indicator-light-fault-flicker.js +0 -0
- package/model/switch-indicator-light/indicator-light-fault-flicker.metadata.json +0 -1
- package/model/switch-indicator-light/indicator-light-settings.d.ts +0 -7
- package/model/switch-indicator-light/indicator-light-settings.js +0 -0
- package/model/switch-indicator-light/indicator-light-settings.metadata.json +0 -1
- package/model/switch-indicator-light/indicator-light-type.d.ts +0 -4
- package/model/switch-indicator-light/indicator-light-type.js +0 -5
- package/model/switch-indicator-light/indicator-light-type.metadata.json +0 -1
- package/model/switch-indicator-light/switch-indicator-light.d.ts +0 -33
- package/model/switch-indicator-light/switch-indicator-light.js +0 -0
- package/model/switch-indicator-light/switch-indicator-light.metadata.json +0 -1
- package/model/switch-indicator-light/switch-indicator-state.d.ts +0 -8
- package/model/switch-indicator-light/switch-indicator-state.js +0 -0
- package/model/switch-indicator-light/switch-indicator-state.metadata.json +0 -1
- package/model/switch-indicator-light/switch-settings.d.ts +0 -7
- package/model/switch-indicator-light/switch-settings.js +0 -0
- package/model/switch-indicator-light/switch-settings.metadata.json +0 -1
- package/model/switch-indicator-light/switch-type.d.ts +0 -4
- package/model/switch-indicator-light/switch-type.js +0 -5
- package/model/switch-indicator-light/switch-type.metadata.json +0 -1
- package/model/switch-indicator-light/word-indicator-light-settings.js +0 -0
- package/model/switch-indicator-light/word-indicator-light-settings.metadata.json +0 -1
- package/model/switch-indicator-light/word-switch-operation.d.ts +0 -5
- package/model/switch-indicator-light/word-switch-operation.js +0 -6
- package/model/switch-indicator-light/word-switch-operation.metadata.json +0 -1
- package/model/switch-indicator-light/word-switch-settings.d.ts +0 -13
- package/model/switch-indicator-light/word-switch-settings.js +0 -0
- package/model/switch-indicator-light/word-switch-settings.metadata.json +0 -1
- package/model/table/table-model.d.ts +0 -9
- package/model/table/table-model.js +0 -0
- package/model/table/table-model.metadata.json +0 -1
- package/model/text/text.model.d.ts +0 -7
- package/model/text/text.model.js +0 -0
- package/model/text/text.model.metadata.json +0 -1
- package/model/video/video.model.d.ts +0 -8
- package/model/video/video.model.js +0 -0
- package/model/video/video.model.metadata.json +0 -1
- package/model/view-operation/index.js +0 -1
- package/model/view-operation/index.metadata.json +0 -1
- package/model/view-operation/view-operation-element.model.d.ts +0 -19
- package/model/view-operation/view-operation-element.model.js +0 -0
- package/model/view-operation/view-operation-element.model.metadata.json +0 -1
- package/model/view-operation/view-operation-type.d.ts +0 -18
- package/model/view-operation/view-operation-type.js +0 -19
- package/model/view-operation/view-operation-type.metadata.json +0 -1
- package/model/weather/weather-info.d.ts +0 -11
- package/model/weather/weather-info.js +0 -2
- package/model/weather/weather-info.metadata.json +0 -1
- package/model/weather/weather.model.d.ts +0 -7
- package/model/weather/weather.model.js +0 -0
- package/model/weather/weather.model.metadata.json +0 -1
- package/public_api.d.ts +0 -14
- package/public_api.js +0 -11
- package/public_api.metadata.json +0 -1
- package/remote/communication/variable/remote-variable-communicator.d.ts +0 -34
- package/remote/communication/variable/remote-variable-communicator.js +0 -237
- package/remote/communication/variable/remote-variable-communicator.metadata.json +0 -1
- package/remote/communication/variable/remote-variable-protocol.d.ts +0 -16
- package/remote/communication/variable/remote-variable-protocol.js +0 -0
- package/remote/communication/variable/remote-variable-protocol.metadata.json +0 -1
- package/remote/config/graph/get-released-graph-state-result.d.ts +0 -6
- package/remote/config/graph/get-released-graph-state-result.js +0 -0
- package/remote/config/graph/get-released-graph-state-result.metadata.json +0 -1
- package/remote/config/graph/get-released-graph-states.d.ts +0 -4
- package/remote/config/graph/get-released-graph-states.js +0 -0
- package/remote/config/graph/get-released-graph-states.metadata.json +0 -1
- package/remote/config/graph/graph-state-key.d.ts +0 -6
- package/remote/config/graph/graph-state-key.js +0 -0
- package/remote/config/graph/graph-state-key.metadata.json +0 -1
- package/remote/config/graph/graph-state-result.d.ts +0 -5
- package/remote/config/graph/graph-state-result.js +0 -0
- package/remote/config/graph/graph-state-result.metadata.json +0 -1
- package/remote/config/graph/graph-state.js +0 -0
- package/remote/config/graph/graph-state.metadata.json +0 -1
- package/remote/config/graph/remote-graph-protocol.d.ts +0 -11
- package/remote/config/graph/remote-graph-protocol.js +0 -0
- package/remote/config/graph/remote-graph-protocol.metadata.json +0 -1
- package/remote/config/graph/remote-graph-store.d.ts +0 -16
- package/remote/config/graph/remote-graph-store.js +0 -101
- package/remote/config/graph/remote-graph-store.metadata.json +0 -1
- package/remote/config/image/remote-image-protocol.d.ts +0 -4
- package/remote/config/image/remote-image-protocol.js +0 -0
- package/remote/config/image/remote-image-protocol.metadata.json +0 -1
- package/remote/config/image/remote-image-store.d.ts +0 -8
- package/remote/config/image/remote-image-store.js +0 -19
- package/remote/config/image/remote-image-store.metadata.json +0 -1
- package/remote/config/view/remote-view-protocol.d.ts +0 -8
- package/remote/config/view/remote-view-protocol.js +0 -0
- package/remote/config/view/remote-view-protocol.metadata.json +0 -1
- package/remote/config/view/remote-view-store.d.ts +0 -13
- package/remote/config/view/remote-view-store.js +0 -39
- package/remote/config/view/remote-view-store.metadata.json +0 -1
- package/remote/config/view/view-result.js +0 -0
- package/remote/config/view/view-result.metadata.json +0 -1
- package/remote/index.d.ts +0 -14
- package/remote/index.js +0 -4
- package/remote/index.metadata.json +0 -1
- package/security/index.js +0 -0
- package/security/index.metadata.json +0 -1
- package/security/security-checker.js +0 -0
- package/security/security-checker.metadata.json +0 -1
- package/service/index.js +0 -0
- package/service/index.metadata.json +0 -1
- package/service/operation-record/create-operation-record-args.d.ts +0 -5
- package/service/operation-record/create-operation-record-args.js +0 -0
- package/service/operation-record/create-operation-record-args.metadata.json +0 -1
- package/service/operation-record/index.d.ts +0 -3
- package/service/operation-record/index.js +0 -0
- package/service/operation-record/index.metadata.json +0 -1
- package/service/operation-record/operation-record.service.d.ts +0 -4
- package/service/operation-record/operation-record.service.js +0 -0
- package/service/operation-record/operation-record.service.metadata.json +0 -1
- package/service/operation-record/variable-option.model.d.ts +0 -5
- package/service/operation-record/variable-option.model.js +0 -0
- package/service/operation-record/variable-option.model.metadata.json +0 -1
- package/service/permission-checker.js +0 -0
- package/service/permission-checker.metadata.json +0 -1
- package/service/released-variable/index.js +0 -0
- package/service/released-variable/index.metadata.json +0 -1
- package/service/released-variable/released-variable.service.d.ts +0 -4
- package/service/released-variable/released-variable.service.js +0 -0
- package/service/released-variable/released-variable.service.metadata.json +0 -1
- package/service/video/index.js +0 -0
- package/service/video/index.metadata.json +0 -1
- package/service/video/video-url.js +0 -0
- package/service/video/video-url.metadata.json +0 -1
- package/service/video/video.service.d.ts +0 -4
- package/service/video/video.service.js +0 -0
- package/service/video/video.service.metadata.json +0 -1
- package/service/weather.service.d.ts +0 -4
- package/service/weather.service.js +0 -0
- package/service/weather.service.metadata.json +0 -1
- package/settings/display-mode.d.ts +0 -10
- package/settings/display-mode.js +0 -11
- package/settings/display-mode.metadata.json +0 -1
- package/settings/global-settings.d.ts +0 -7
- package/settings/global-settings.js +0 -13
- package/settings/global-settings.metadata.json +0 -1
- package/settings/index.js +0 -3
- package/settings/index.metadata.json +0 -1
- package/settings/view-resize-mode.d.ts +0 -10
- package/settings/view-resize-mode.js +0 -11
- package/settings/view-resize-mode.metadata.json +0 -1
- package/shared/config-is-empty-error.d.ts +0 -3
- package/shared/config-is-empty-error.metadata.json +0 -1
- package/shared/disposable.d.ts +0 -3
- package/shared/disposable.js +0 -0
- package/shared/disposable.metadata.json +0 -1
- package/shared/graph-extended-style.js +0 -0
- package/shared/graph-extended-style.metadata.json +0 -1
- package/shared/gui-consts.d.ts +0 -32
- package/shared/gui-consts.js +0 -32
- package/shared/gui-consts.metadata.json +0 -1
- package/shared/index.js +0 -3
- package/shared/index.metadata.json +0 -1
- package/shared/operation-helper.d.ts +0 -6
- package/shared/operation-helper.js +0 -38
- package/shared/operation-helper.metadata.json +0 -1
- package/utils/access-permission.d.ts +0 -5
- package/utils/access-permission.js +0 -6
- package/utils/access-permission.metadata.json +0 -1
- package/utils/access-permission.service.d.ts +0 -11
- package/utils/access-permission.service.js +0 -30
- package/utils/access-permission.service.metadata.json +0 -1
- package/utils/auto-focus.directive.d.ts +0 -6
- package/utils/auto-focus.directive.js +0 -27
- package/utils/auto-focus.directive.metadata.json +0 -1
- package/utils/bs-modal-drag.directive.d.ts +0 -7
- package/utils/bs-modal-drag.directive.js +0 -38
- package/utils/bs-modal-drag.directive.metadata.json +0 -1
- package/utils/data-type/data-type.service.d.ts +0 -57
- package/utils/data-type/data-type.service.js +0 -155
- package/utils/data-type/data-type.service.metadata.json +0 -1
- package/utils/data-type/fbox-data-type.service.d.ts +0 -54
- package/utils/data-type/fbox-data-type.service.js +0 -300
- package/utils/data-type/fbox-data-type.service.metadata.json +0 -1
- package/utils/data-type/fcloud-data-type.service.d.ts +0 -55
- package/utils/data-type/fcloud-data-type.service.js +0 -203
- package/utils/data-type/fcloud-data-type.service.metadata.json +0 -1
- package/utils/fraction-digit.service.d.ts +0 -41
- package/utils/fraction-digit.service.js +0 -133
- package/utils/fraction-digit.service.metadata.json +0 -1
- package/utils/graph-util.d.ts +0 -5
- package/utils/graph-util.js +0 -19
- package/utils/graph-util.metadata.json +0 -1
- package/utils/guid.d.ts +0 -6
- package/utils/guid.js +0 -27
- package/utils/guid.metadata.json +0 -1
- package/utils/index.d.ts +0 -7
- package/utils/index.js +0 -7
- package/utils/index.metadata.json +0 -1
- package/utils/numerical-operation-type.d.ts +0 -4
- package/utils/numerical-operation-type.js +0 -5
- package/utils/numerical-operation-type.metadata.json +0 -1
- package/utils/numerical-operation.service.d.ts +0 -17
- package/utils/numerical-operation.service.js +0 -177
- package/utils/numerical-operation.service.metadata.json +0 -1
- package/utils/variable-util.d.ts +0 -5
- package/utils/variable-util.js +0 -11
- package/utils/variable-util.metadata.json +0 -1
- package/view/popup-view.service.d.ts +0 -7
- package/view/popup-view.service.js +0 -0
- package/view/popup-view.service.metadata.json +0 -1
- package/view/view.service.d.ts +0 -6
- package/view/view.service.js +0 -20
- package/view/view.service.metadata.json +0 -1
- /package/{assets → src/assets}/img/abnormal.svg +0 -0
- /package/{assets → src/assets}/img/alert.svg +0 -0
- /package/{assets → src/assets}/img/disabled.svg +0 -0
- /package/{assets → src/assets}/img/first_page.svg +0 -0
- /package/{assets → src/assets}/img/last_page.svg +0 -0
- /package/{assets → src/assets}/img/loading.svg +0 -0
- /package/{assets → src/assets}/img/next_page.svg +0 -0
- /package/{assets → src/assets}/img/offline.svg +0 -0
- /package/{assets → src/assets}/img/previous_page.svg +0 -0
- /package/{assets → src/assets}/img/unbind.svg +0 -0
- /package/{assets → src/assets}/img/video.jpg +0 -0
- /package/{assets → src/assets}/img/weather/blizzard.png +0 -0
- /package/{assets → src/assets}/img/weather/cloudy.png +0 -0
- /package/{assets → src/assets}/img/weather/extraordinary-heavy-rain.png +0 -0
- /package/{assets → src/assets}/img/weather/fog.png +0 -0
- /package/{assets → src/assets}/img/weather/haze.png +0 -0
- /package/{assets → src/assets}/img/weather/heavy-rain.png +0 -0
- /package/{assets → src/assets}/img/weather/heavy-rainstorm.png +0 -0
- /package/{assets → src/assets}/img/weather/heavy-snow.png +0 -0
- /package/{assets → src/assets}/img/weather/light-rain.png +0 -0
- /package/{assets → src/assets}/img/weather/light-snow.png +0 -0
- /package/{assets → src/assets}/img/weather/location.png +0 -0
- /package/{assets → src/assets}/img/weather/medium-snow.png +0 -0
- /package/{assets → src/assets}/img/weather/moderate-rain.png +0 -0
- /package/{assets → src/assets}/img/weather/overcast.png +0 -0
- /package/{assets → src/assets}/img/weather/rain-icon.png +0 -0
- /package/{assets → src/assets}/img/weather/rainstorm.png +0 -0
- /package/{assets → src/assets}/img/weather/sandstorm.png +0 -0
- /package/{assets → src/assets}/img/weather/severe-haze.png +0 -0
- /package/{assets → src/assets}/img/weather/shower.png +0 -0
- /package/{assets → src/assets}/img/weather/sink-float.png +0 -0
- /package/{assets → src/assets}/img/weather/sleet.png +0 -0
- /package/{assets → src/assets}/img/weather/snow-shower.png +0 -0
- /package/{assets → src/assets}/img/weather/strong-sandstorm.png +0 -0
- /package/{assets → src/assets}/img/weather/sunny.png +0 -0
- /package/{assets → src/assets}/img/weather/thick-fog.png +0 -0
- /package/{assets → src/assets}/img/weather/thunder-shower.png +0 -0
- /package/{assets → src/assets}/img/weather/windy.png +0 -0
- /package/{communication/index.d.ts → src/communication/index.ts} +0 -0
- /package/{communication/variable/index.d.ts → src/communication/variable/index.ts} +0 -0
- /package/{config/alarm/index.d.ts → src/config/alarm/index.ts} +0 -0
- /package/{config/history-data/index.d.ts → src/config/history-data/index.ts} +0 -0
- /package/{config/variable/index.d.ts → src/config/variable/index.ts} +0 -0
- /package/{core/index.d.ts → src/core/index.ts} +0 -0
- /package/{elements/base/index.d.ts → src/elements/base/index.ts} +0 -0
- /package/{elements/historical-curve/historical-curve.element.option.d.ts → src/elements/historical-curve/historical-curve.element.option.ts} +0 -0
- /package/{elements/historical-curve/historical-curve.time-period.d.ts → src/elements/historical-curve/historical-curve.time-period.ts} +0 -0
- /package/{gui → src/gui}/gui.component.html +0 -0
- /package/{localization/index.d.ts → src/localization/index.ts} +0 -0
- /package/{logger/index.d.ts → src/logger/index.ts} +0 -0
- /package/{modal → src/modal}/alert/alert-modal.component.html +0 -0
- /package/{modal → src/modal}/alert/alert-modal.component.less +0 -0
- /package/{modal → src/modal}/confirm-operation/confirm-operation-modal.component.html +0 -0
- /package/{modal → src/modal}/confirm-operation/confirm-operation-modal.component.less +0 -0
- /package/{modal → src/modal}/verify-password/verify-password-modal.component.html +0 -0
- /package/{modal → src/modal}/verify-password/verify-password-modal.component.less +0 -0
- /package/{modal → src/modal}/write-character/write-character-modal.component.html +0 -0
- /package/{modal → src/modal}/write-character/write-character-modal.component.less +0 -0
- /package/{modal → src/modal}/write-value/write-value-modal.component.html +0 -0
- /package/{modal → src/modal}/write-value/write-value-modal.component.less +0 -0
- /package/{model/bar-graph/FontStyleData.d.ts → src/model/bar-graph/FontStyleData.ts} +0 -0
- /package/{model/base/index.d.ts → src/model/base/index.ts} +0 -0
- /package/{model/base/security-model.d.ts → src/model/base/security-model.ts} +0 -0
- /package/{model/historical-curve/index.d.ts → src/model/historical-curve/index.ts} +0 -0
- /package/{model/index.d.ts → src/model/index.ts} +0 -0
- /package/{model/numerical-display/proportional-conversion.d.ts → src/model/numerical-display/proportional-conversion.ts} +0 -0
- /package/{model/numerical-display/type-settings.d.ts → src/model/numerical-display/type-settings.ts} +0 -0
- /package/{model/numerical-display/zoom.d.ts → src/model/numerical-display/zoom.ts} +0 -0
- /package/{model/pipe/index.d.ts → src/model/pipe/index.ts} +0 -0
- /package/{model/settings/index.d.ts → src/model/settings/index.ts} +0 -0
- /package/{model/shared/alarm/alarm-range.model.d.ts → src/model/shared/alarm/alarm-range.model.ts} +0 -0
- /package/{model/shared/arc.model.d.ts → src/model/shared/arc.model.ts} +0 -0
- /package/{model/shared/condition/condition-model.d.ts → src/model/shared/condition/condition-model.ts} +0 -0
- /package/{model/shared/dynamic-display/dynamic-display-model.d.ts → src/model/shared/dynamic-display/dynamic-display-model.ts} +0 -0
- /package/{model/shared/index.d.ts → src/model/shared/index.ts} +0 -0
- /package/{model/shared/point.model.d.ts → src/model/shared/point.model.ts} +0 -0
- /package/{model/shared/state/index.d.ts → src/model/shared/state/index.ts} +0 -0
- /package/{model/shared/text/font.d.ts → src/model/shared/text/font.ts} +0 -0
- /package/{model/shared/text/index.d.ts → src/model/shared/text/index.ts} +0 -0
- /package/{model/shared/translation/translation-model.d.ts → src/model/shared/translation/translation-model.ts} +0 -0
- /package/{model/shared/variable/variable-name.model.d.ts → src/model/shared/variable/variable-name.model.ts} +0 -0
- /package/{model/switch-indicator-light/bit-indicator-light-settings.d.ts → src/model/switch-indicator-light/bit-indicator-light-settings.ts} +0 -0
- /package/{model/switch-indicator-light/word-indicator-light-settings.d.ts → src/model/switch-indicator-light/word-indicator-light-settings.ts} +0 -0
- /package/{model/view-operation/index.d.ts → src/model/view-operation/index.ts} +0 -0
- /package/{remote/config/graph/graph-state.d.ts → src/remote/config/graph/graph-state.ts} +0 -0
- /package/{remote/config/view/view-result.d.ts → src/remote/config/view/view-result.ts} +0 -0
- /package/{security/index.d.ts → src/security/index.ts} +0 -0
- /package/{security/security-checker.d.ts → src/security/security-checker.ts} +0 -0
- /package/{service/index.d.ts → src/service/index.ts} +0 -0
- /package/{service/permission-checker.d.ts → src/service/permission-checker.ts} +0 -0
- /package/{service/released-variable/index.d.ts → src/service/released-variable/index.ts} +0 -0
- /package/{service/video/index.d.ts → src/service/video/index.ts} +0 -0
- /package/{service/video/video-url.d.ts → src/service/video/video-url.ts} +0 -0
- /package/{settings/index.d.ts → src/settings/index.ts} +0 -0
- /package/{shared/config-is-empty-error.js → src/shared/config-is-empty-error.ts} +0 -0
- /package/{shared/graph-extended-style.d.ts → src/shared/graph-extended-style.ts} +0 -0
- /package/{shared/index.d.ts → src/shared/index.ts} +0 -0
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
import { ConfigStore, Graph, GraphExtendedStyle, GraphResult, GraphStore, GraphType, HistoryDataStore, ImageStore, ViewModel, ViewStore, VariableStore } from '@flexem/fc-gui';
|
|
2
|
+
import { Observable, of } from 'rxjs';
|
|
3
|
+
import { DefaultHistoryDataStore } from './default-history-data.store';
|
|
4
|
+
|
|
5
|
+
export class DefaultGraphStore implements GraphStore {
|
|
6
|
+
|
|
7
|
+
getGraph(graphId: string | number, stateId: number, extendedStyle?: GraphExtendedStyle): Observable<GraphResult> {
|
|
8
|
+
if (graphId === 'indicatorLight2') {
|
|
9
|
+
if (stateId >= 2) { return of(GraphResult.failed()); }
|
|
10
|
+
return of(GraphResult.success(new Graph(GraphType.Image, `/assets/gallery/indicatorLight2/state${stateId}.png`)));
|
|
11
|
+
} else if (graphId === 'indicatorLight') {
|
|
12
|
+
if (stateId > 6) { return of(GraphResult.failed()); }
|
|
13
|
+
return of(GraphResult.success(new Graph(GraphType.SVG, `/assets/gallery/indicatorLight/state${stateId}.svg`)));
|
|
14
|
+
} else if (graphId === 'character01') {
|
|
15
|
+
return of(GraphResult.success(new Graph(GraphType.SVG, `/assets/gallery/character01/state0.svg`)));
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export class DefaultConfigStore implements ConfigStore {
|
|
21
|
+
imageStore: ImageStore = new DefaultImageStore();
|
|
22
|
+
viewStore: ViewStore = new DefaultViewStore();
|
|
23
|
+
graphStore: GraphStore = new DefaultGraphStore();
|
|
24
|
+
historyDataStore: HistoryDataStore = new DefaultHistoryDataStore();
|
|
25
|
+
variableStore: VariableStore = new DefaultVariableStore();
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export class DefaultVariableStore implements VariableStore {
|
|
29
|
+
getVariableName(arc: any): string {
|
|
30
|
+
return arc.name;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export class DefaultImageStore implements ImageStore {
|
|
35
|
+
getImageUrl(imageId: string): string {
|
|
36
|
+
return 'assets/e8nZC.gif';
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export class DefaultViewStore implements ViewStore {
|
|
41
|
+
|
|
42
|
+
getMainViewConfig(): Observable<ViewModel> {
|
|
43
|
+
return of<ViewModel>(new ViewModel(SVG));
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
getViewConfig(viewId: number): Observable<ViewModel> {
|
|
47
|
+
return of<ViewModel>(new ViewModel(SVG));
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
getViewConfigByConfigureViewId(viewId: number): Observable<ViewModel> {
|
|
51
|
+
return of<ViewModel>(new ViewModel(SVG));
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
getViewConfigByConfigureViewCode(viewId: string): Observable<ViewModel> {
|
|
55
|
+
return of<ViewModel>(new ViewModel(SVG));
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// tslint:disable:max-line-length
|
|
60
|
+
const SVG = `<svg width="802px" height="482px" RL="0 0 802 482" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" data-model="{"background":{"fillType":0,"solidColor":"#ffff00"}}">
|
|
61
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" clip-path="url(#mainClip2447)">
|
|
62
|
+
<g transform="matrix(1, 0, 0, 1, 1, 1)">
|
|
63
|
+
<g transform="matrix(1, 0, 0, 1, 289, 322)" data-model="{"category":"Pipe","version":3,"isPipeWall":true,"isFlowBlock":true,"isFlow":false,"pipeDiameter":14,"pipeWallSize":1,"pipeWallColor":"#333","blockColor":"#0081ff","blockWidth":6,"blockLength":12,"blockMargin":6,"backGroundColor":"#ffffff","flowDirection":0,"isControl":false}"><path d="M 0,0 L 300,0" fill="none" stroke="#60768c" stroke-width="14" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 7, 7)" /><path d="M 0,0 L 300,0" fill="none" stroke="#ffffff" stroke-width="12" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 7, 7)" /><path fill="none" stroke="#0081ff" stroke-width="6" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 7, 7)" /></g>
|
|
64
|
+
<g transform="matrix(1, 0, 0, 1, 490, 167.7439208984375)" data-model="{"id":-2,"category":"NumericalDisplay","variableName":"v1","dataType":1,"fractionDigits":0}">
|
|
65
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
66
|
+
<text x="20" y="15.241992187500001" style="font: 16px Microsoft YaHei" text-anchor="middle" fill="#333" stroke="none" transform="matrix(1, 0, 0, 1, 9, 9)"/>
|
|
67
|
+
</g>
|
|
68
|
+
</g>
|
|
69
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" data-model="{"id":-3,"category":"Image","imageId":"125d0ccc-c7cc-5a61-a5ec-39dec0f02f8c","imageType":"image/png"}">
|
|
70
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
71
|
+
<image x="0" y="0" width="200" height="100" preserveAspectRatio="none" transform="matrix(1, 0, 0, 1, 0, 0) scale(0.6, 0.9)"/>
|
|
72
|
+
</g>
|
|
73
|
+
</g>
|
|
74
|
+
<g transform="matrix(1, 0, 0, 1, 420, 167.7439208984375)" data-model="{"id":-4,"category":"Text"}">
|
|
75
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
76
|
+
<text x="24" y="15.241992187500001" style="font: 16px Microsoft YaHei" text-anchor="middle" fill="#333" stroke="none" transform="matrix(1, 0, 0, 1, 10, 10)">温度:</text>
|
|
77
|
+
</g>
|
|
78
|
+
</g>
|
|
79
|
+
<g transform="matrix(1, 0, 0, 1, 287.234375, 320)" data-model="{"id":-5,"category":"NumericalDisplay","variableName":"UInt16","dataType":5,"fractionDigits":0,"accessPermission":6}">
|
|
80
|
+
<path d="M 0,0 L 0,38.32265625 L 52.199999999999996,38.32265625 L 58,30.658125000000002 L 58,0 L 0,0 z" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"/>
|
|
81
|
+
<path d="M 58,38.32265625 L 58,30.658125000000002 L 52.199999999999996,38.32265625 z" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"/>
|
|
82
|
+
<path d="M 58,38.32265625 L 58,30.658125000000002 L 52.199999999999996,38.32265625 z" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"/>
|
|
83
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
84
|
+
<text x="20" y="15.241992187500001" style="font: 16px Microsoft YaHei" text-anchor="middle" fill="#333" stroke="none" transform="matrix(1, 0, 0, 1, 9, 9)"/>
|
|
85
|
+
</g>
|
|
86
|
+
</g>
|
|
87
|
+
<g transform="matrix(1, 0, 0, 1, 200, 320)" data-model="{"id":-6,"category":"Text"}">
|
|
88
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
89
|
+
<text x="33.6171875" y="15.241992187500001" style="font: 16px Microsoft YaHei" text-anchor="middle" fill="#333" stroke="none" transform="matrix(1, 0, 0, 1, 10, 10)">UInt16:</text>
|
|
90
|
+
</g>
|
|
91
|
+
</g>
|
|
92
|
+
<g transform="matrix(1, 0, 0, 1, 390, 130)" data-model="{"id":-2,"category":"NumericalDisplay","variableName":"16位有","dataType":2,"integerDigits":4,"fractionDigits":1,"accessPermission":6,"useSecurity":true}">
|
|
93
|
+
<path d="M 0,0 L 0,38.32265625 L 52.199999999999996,38.32265625 L 58,30.658125000000002 L 58,0 L 0,0 z" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"/>
|
|
94
|
+
<path d="M 58,38.32265625 L 58,30.658125000000002 L 52.199999999999996,38.32265625 z" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"/>
|
|
95
|
+
<path d="M 58,38.32265625 L 58,30.658125000000002 L 52.199999999999996,38.32265625 z" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"/>
|
|
96
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
97
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
98
|
+
<text x="20" y="15.241992187500001" style="font: 16px Microsoft YaHei" text-anchor="middle" fill="#333" stroke="none" transform="matrix(1, 0, 0, 1, 9.25, 9.25)"/>
|
|
99
|
+
</g>
|
|
100
|
+
</g>
|
|
101
|
+
</g>
|
|
102
|
+
<g transform="matrix(1, 0, 0, 1, 570, 200)" data-model="{"id":-2,"category":"NumericalDisplay","variableName":"16位有","dataType":1,"integerDigits":3,"fractionDigits":3,"accessPermission":6}">
|
|
103
|
+
<path d="M 0,0 L 0,38.32265625 L 52.199999999999996,38.32265625 L 58,30.658125000000002 L 58,0 L 0,0 z" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"/>
|
|
104
|
+
<path d="M 58,38.32265625 L 58,30.658125000000002 L 52.199999999999996,38.32265625 z" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"/>
|
|
105
|
+
<path d="M 58,38.32265625 L 58,30.658125000000002 L 52.199999999999996,38.32265625 z" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"/>
|
|
106
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
107
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
108
|
+
<text x="20" y="15.241992187500001" style="font: 16px Microsoft YaHei" text-anchor="middle" fill="#333" stroke="none" transform="matrix(1, 0, 0, 1, 9.25, 9.25)"/>
|
|
109
|
+
</g>
|
|
110
|
+
</g>
|
|
111
|
+
</g>
|
|
112
|
+
<g transform="matrix(1, 0, 0, 1, 490, 330)" data-model="{"id":-2,"category":"NumericalDisplay","variableName":"32位16","dataType":14,"accessPermission":6,"integerDigits":7,"fractionDigits":2}">
|
|
113
|
+
<path d="M 0,0 L 0,38.32265625 L 52.199999999999996,38.32265625 L 58,30.658125000000002 L 58,0 L 0,0 z" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"/>
|
|
114
|
+
<path d="M 58,38.32265625 L 58,30.658125000000002 L 52.199999999999996,38.32265625 z" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"/>
|
|
115
|
+
<path d="M 58,38.32265625 L 58,30.658125000000002 L 52.199999999999996,38.32265625 z" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"/>
|
|
116
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
117
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
118
|
+
<text x="20" y="15.241992187500001" style="font: 16px Microsoft YaHei" text-anchor="middle" fill="#333" stroke="none" transform="matrix(1, 0, 0, 1, 9.25, 9.25)"/>
|
|
119
|
+
</g>
|
|
120
|
+
</g>
|
|
121
|
+
</g>
|
|
122
|
+
<g transform="matrix(1, 0, 0, 1, 60, 60)" data-model="{"id":-4,"category":"Meter","variableName":"UInt16","min":0,"max":60}">
|
|
123
|
+
<path d="M 175,0 C 271.6498312203889,0 350,78.35016877961112 350,175 C 350,271.6498312203889 271.6498312203889,350 175,350 C 78.35016877961112,350 0,271.6498312203889 0,175 C 0,78.35016877961112 78.35016877961112,0 175,0 z" fill="transparent" stroke="none" transform="matrix(1, 0, 0, 1, 1, 1)"/>
|
|
124
|
+
<path d="M 175,0 C 271.6498312203889,0 350,78.35016877961112 350,175 C 350,271.6498312203889 271.6498312203889,350 175,350 C 78.35016877961112,350 0,271.6498312203889 0,175 C 0,78.35016877961112 78.35016877961112,0 175,0 z" fill="none" stroke="transparent" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 1, 1)"/>
|
|
125
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
126
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" clip-path="url(#CLIP5373)">
|
|
127
|
+
<path d="M 51.25631329235418,298.7436867076458 L 51.25631329235419,298.7436867076458 A 175,175 270 1,1 298.74368670764585,298.7436867076458 M 175,350" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 1, 1)"/>
|
|
128
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.5923308088049003, -0.8056948634194788, 0.8056948634194788, -0.5923308088049003, 34.979603525279536, 278.44913011116097)"/>
|
|
129
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.42099055842640287, -0.9070650195635511, 0.9070650195635511, -0.42099055842640287, 20.568587596347847, 255.21823785872843)"/>
|
|
130
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.3301637340511433, -0.9439236773793769, 0.9439236773793769, -0.3301637340511433, 10.154136604358852, 229.87465367999113)"/>
|
|
131
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.14282527191820135, -0.9897479182607518, 0.9897479182607518, -0.14282527191820135, 3.822336079995618, 203.28163717455058)"/>
|
|
132
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.1428252719182001, -0.989747918260752, 0.989747918260752, 0.1428252719182001, 3.8223360799956025, 148.71836282544947)"/>
|
|
133
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.33016373405114213, -0.9439236773793773, 0.9439236773793773, 0.33016373405114213, 10.15413660435883, 122.12534632000892)"/>
|
|
134
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.42099055842640176, -0.9070650195635517, 0.9070650195635517, 0.42099055842640176, 20.568587596347797, 96.78176214127163)"/>
|
|
135
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.5923308088049001, -0.805694863419479, 0.805694863419479, 0.5923308088049001, 34.97960352527947, 73.55086988883902)"/>
|
|
136
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.8056948634194783, -0.5923308088049011, 0.5923308088049011, 0.8056948634194783, 73.55086988883885, 34.97960352527959)"/>
|
|
137
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9070650195635511, -0.4209905584264029, 0.4209905584264029, 0.9070650195635511, 96.78176214127149, 20.568587596347868)"/>
|
|
138
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9439236773793771, -0.3301637340511425, 0.3301637340511425, 0.9439236773793771, 122.12534632000873, 10.154136604358891)"/>
|
|
139
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9897479182607519, -0.14282527191820055, 0.14282527191820055, 0.9897479182607519, 148.71836282544928, 3.8223360799956314)"/>
|
|
140
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9897479182607519, 0.14282527191820066, -0.14282527191820066, 0.9897479182607519, 203.2816371745504, 3.8223360799955954)"/>
|
|
141
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9439236773793773, 0.330163734051142, -0.330163734051142, 0.9439236773793773, 229.87465367999098, 10.15413660435881)"/>
|
|
142
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9070650195635512, 0.4209905584264026, -0.4209905584264026, 0.9070650195635512, 255.21823785872823, 20.568587596347744)"/>
|
|
143
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.8056948634194792, 0.5923308088049, -0.5923308088049, 0.8056948634194792, 278.4491301111608, 34.979603525279366)"/>
|
|
144
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.5923308088049006, 0.8056948634194786, -0.8056948634194786, 0.5923308088049006, 317.02039647472037, 73.5508698888388)"/>
|
|
145
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.42099055842640176, 0.9070650195635517, -0.9070650195635517, 0.42099055842640176, 331.43141240365213, 96.78176214127143)"/>
|
|
146
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.3301637340511436, 0.9439236773793768, -0.9439236773793768, 0.3301637340511436, 341.8458633956411, 122.12534632000879)"/>
|
|
147
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.14282527191820168, 0.9897479182607518, -0.9897479182607518, 0.14282527191820168, 348.1776639200044, 148.71836282544933)"/>
|
|
148
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.14282527191820155, 0.9897479182607518, -0.9897479182607518, -0.14282527191820155, 348.1776639200044, 203.28163717455047)"/>
|
|
149
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.33016373405114324, 0.9439236773793769, -0.9439236773793769, -0.33016373405114324, 341.8458633956412, 229.87465367999098)"/>
|
|
150
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.42099055842640265, 0.9070650195635512, -0.9070650195635512, -0.42099055842640265, 331.4314124036522, 255.2182378587284)"/>
|
|
151
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.5923308088048997, 0.8056948634194793, -0.8056948634194793, -0.5923308088048997, 317.0203964747205, 278.44913011116097)"/>
|
|
152
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.6705466226192047, -0.7418673917176694, 0.7418673917176694, -0.6705466226192047, 52.99818068407185, 299.0731400850266)"/>
|
|
153
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 2.0000000000000133, 176.00000000000006)"/>
|
|
154
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.7071067811865474, -0.7071067811865477, 0.7071067811865477, 0.7071067811865474, 52.96342007354064, 52.9634200735408)"/>
|
|
155
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 175.9999999999998, 2.0000000000000187)"/>
|
|
156
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.7071067811865478, 0.7071067811865472, -0.7071067811865472, 0.7071067811865478, 299.03657992645907, 52.963420073540526)"/>
|
|
157
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 350, 175.9999999999998)"/>
|
|
158
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.6705466226192042, 0.7418673917176698, -0.7418673917176698, -0.6705466226192042, 299.0018193159282, 299.0731400850266)"/>
|
|
159
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 69.04098342034911, 267.776640293474)">0</text>
|
|
160
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 20.0572967529297, 164.14935226440434)">10</text>
|
|
161
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 62.52681348088021, 61.618868992354976)">20</text>
|
|
162
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 165.0572967529295, 19.149352264404314)">30</text>
|
|
163
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 267.5877800249789, 61.618868992354706)">40</text>
|
|
164
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 310.0572967529297, 164.1493522644041)">50</text>
|
|
165
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 266.5449617090454, 267.776640293474)">60</text>
|
|
166
|
+
</g>
|
|
167
|
+
<path d="M 169,6 L 175,0 L 350,6 L 175,12 z" fill="red" stroke="none" transform="matrix(-0.8660254037844387, 0.49999999999999994, -0.49999999999999994, -0.8660254037844387, 330.5544456622768, 93.69615242270665)"/>
|
|
168
|
+
</g>
|
|
169
|
+
</g>
|
|
170
|
+
<g transform="matrix(1, 0, 0, 1, 470, 80)" data-model="{"id":-2,"category":"Meter","variableName":"UInt16","min":0,"max":60}">
|
|
171
|
+
<path d="M 114.99999999999999,0 C 178.51274623054124,0 229.99999999999997,51.48725376945873 229.99999999999997,114.99999999999999 C 229.99999999999997,178.51274623054124 178.51274623054124,229.99999999999997 114.99999999999999,229.99999999999997 C 51.48725376945873,229.99999999999997 0,178.51274623054124 0,114.99999999999999 C 0,51.48725376945873 51.48725376945873,0 114.99999999999999,0 z" fill="transparent" stroke="none" transform="matrix(1, 0, 0, 1, 1, 1)"/>
|
|
172
|
+
<path d="M 114.99999999999999,0 C 178.51274623054124,0 229.99999999999997,51.48725376945873 229.99999999999997,114.99999999999999 C 229.99999999999997,178.51274623054124 178.51274623054124,229.99999999999997 114.99999999999999,229.99999999999997 C 51.48725376945873,229.99999999999997 0,178.51274623054124 0,114.99999999999999 C 0,51.48725376945873 51.48725376945873,0 114.99999999999999,0 z" fill="none" stroke="transparent" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 1, 1)"/>
|
|
173
|
+
<g transform="matrix(1, 0, 0, 1, 2.842170943040401e-14, 0)">
|
|
174
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" clip-path="url(#CLIP5374)">
|
|
175
|
+
<path d="M 33.68272016354702,196.31727983645294 L 33.68272016354703,196.31727983645294 A 115,115 270 1,1 196.31727983645297,196.31727983645294 M 114.99999999999999,230" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 1, 1)"/>
|
|
176
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.5923308088049003, -0.8056948634194788, 0.8056948634194788, -0.5923308088049003, 23.46757286462701, 183.22217164868212)"/>
|
|
177
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.42099055842640287, -0.9070650195635511, 0.9070650195635511, -0.42099055842640287, 14.014854423810888, 167.98552935429126)"/>
|
|
178
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.3301637340511433, -0.9439236773793769, 0.9439236773793769, -0.3301637340511433, 7.17739097041513, 151.34674434958538)"/>
|
|
179
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.14282527191820135, -0.9897479182607518, 0.9897479182607518, -0.14282527191820135, 3.024349067127524, 133.9034486680901)"/>
|
|
180
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.1428252719182001, -0.989747918260752, 0.989747918260752, 0.1428252719182001, 3.0243490671275213, 98.09655133190988)"/>
|
|
181
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.33016373405114213, -0.9439236773793773, 0.9439236773793773, 0.33016373405114213, 7.17739097041513, 80.65325565041458)"/>
|
|
182
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.42099055842640176, -0.9070650195635517, 0.9070650195635517, 0.42099055842640176, 14.014854423810885, 64.01447064570868)"/>
|
|
183
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.5923308088049001, -0.805694863419479, 0.805694863419479, 0.5923308088049001, 23.467572864627023, 48.77782835131785)"/>
|
|
184
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.8056948634194783, -0.5923308088049011, 0.5923308088049011, 0.8056948634194783, 48.77782835131783, 23.467572864627037)"/>
|
|
185
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9070650195635511, -0.4209905584264029, 0.4209905584264029, 0.9070650195635511, 64.01447064570866, 14.014854423810897)"/>
|
|
186
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9439236773793771, -0.3301637340511425, 0.3301637340511425, 0.9439236773793771, 80.65325565041455, 7.177390970415141)"/>
|
|
187
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9897479182607519, -0.14282527191820055, 0.14282527191820055, 0.9897479182607519, 98.09655133190985, 3.0243490671275275)"/>
|
|
188
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9897479182607519, 0.1428252719182007, -0.1428252719182007, 0.9897479182607519, 133.9034486680901, 3.0243490671275226)"/>
|
|
189
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9439236773793771, 0.3301637340511424, -0.3301637340511424, 0.9439236773793771, 151.3467443495854, 7.17739097041513)"/>
|
|
190
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9070650195635512, 0.4209905584264026, -0.4209905584264026, 0.9070650195635512, 167.98552935429126, 14.014854423810876)"/>
|
|
191
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.8056948634194785, 0.5923308088049007, -0.5923308088049007, 0.8056948634194785, 183.2221716486821, 23.467572864626987)"/>
|
|
192
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.5923308088049022, 0.8056948634194775, -0.8056948634194775, 0.5923308088049022, 208.5324271353729, 48.77782835131778)"/>
|
|
193
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.42099055842640054, 0.9070650195635522, -0.9070650195635522, 0.42099055842640054, 217.98514557618904, 64.01447064570857)"/>
|
|
194
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.33016373405114063, 0.9439236773793778, -0.9439236773793778, 0.33016373405114063, 224.8226090295848, 80.65325565041452)"/>
|
|
195
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.14282527191820213, 0.9897479182607517, -0.9897479182607517, 0.14282527191820213, 228.9756509328724, 98.09655133190984)"/>
|
|
196
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.142825271918202, 0.9897479182607517, -0.9897479182607517, -0.142825271918202, 228.9756509328724, 133.90344866809002)"/>
|
|
197
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.3301637340511431, 0.9439236773793769, -0.9439236773793769, -0.3301637340511431, 224.82260902958487, 151.34674434958532)"/>
|
|
198
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.42099055842640104, 0.907065019563552, -0.907065019563552, -0.42099055842640104, 217.98514557618913, 167.9855293542912)"/>
|
|
199
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.5923308088049023, 0.8056948634194774, -0.8056948634194774, -0.5923308088049023, 208.532427135373, 183.22217164868198)"/>
|
|
200
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.6705466226192057, -0.7418673917176685, 0.7418673917176685, -0.6705466226192057, 35.42458755526469, 196.64673321383373)"/>
|
|
201
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 1.9999999999999984, 115.99999999999999)"/>
|
|
202
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.7071067811865474, -0.7071067811865477, 0.7071067811865477, 0.7071067811865474, 35.38982694473356, 35.38982694473357)"/>
|
|
203
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 115.99999999999996, 2.000000000000001)"/>
|
|
204
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.7071067811865472, 0.7071067811865477, -0.7071067811865477, 0.7071067811865472, 196.61017305526636, 35.38982694473353)"/>
|
|
205
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 229.99999999999994, 115.99999999999993)"/>
|
|
206
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.6705466226192015, 0.7418673917176722, -0.7418673917176722, -0.6705466226192015, 196.57541244473526, 196.64673321383378)"/>
|
|
207
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 51.46739029154192, 165.35023342228106)">0</text>
|
|
208
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 20.057296752929688, 104.14935226440429)">10</text>
|
|
209
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 44.95322035207313, 44.045275863547744)">20</text>
|
|
210
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 105.05729675292964, 19.149352264404296)">30</text>
|
|
211
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 165.16137315378617, 44.045275863547694)">40</text>
|
|
212
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 190.05729675292963, 104.14935226440423)">50</text>
|
|
213
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 164.11855483785246, 165.35023342228124)">60</text>
|
|
214
|
+
</g>
|
|
215
|
+
<path d="M 109,6 L 115,0 L 230,6 L 115,12 z" fill="red" stroke="none" transform="matrix(-0.8660254037844387, 0.49999999999999994, -0.49999999999999994, -0.8660254037844387, 218.59292143521043, 63.69615242270664)"/>
|
|
216
|
+
</g>
|
|
217
|
+
</g>
|
|
218
|
+
<g transform="matrix(1, 0, 0, 1, 1, 1)"><g transform="matrix(1, 0, 0, 1, 700, 260)" data-model="{"id":-7,"category":"BarGraph","variableName":"32位有","direction":0,"min":0,"max":100,"useAlarmLimit":true,"masterDivisionNumber":100,"subDivisionNumber":100}"><g transform="matrix(1, 0, 0, 1, 0, 0)"><g transform="matrix(1, 0, 0, 1, 0, 0)" clip-path="url(#CLIP1512)"><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 8.2099609375, 200)">0</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 180)">10</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 160)">20</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 140)">30</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 120)">40</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 100)">50</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 80)">60</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 60)">70</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 40)">80</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 20)">90</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 0, 0)">100</text><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.81494140625, 198.891162109375)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.81494140625, 178.891162109375)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.81494140625, 158.891162109375)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.81494140625, 138.891162109375)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.81494140625, 118.891162109375)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.81494140625, 98.89116210937499)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.81494140625, 78.891162109375)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.81494140625, 58.891162109375)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.81494140625, 38.891162109375)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.81494140625, 18.891162109375003)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.31494140625, 208.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.31494140625, 188.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.31494140625, 168.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.31494140625, 148.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.31494140625, 128.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.31494140625, 108.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.31494140625, 88.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.31494140625, 68.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.31494140625, 48.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.31494140625, 28.891162109375003)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.31494140625, 8.891162109375001)"></path></g><g transform="matrix(1, 0, 0, 1, 42.31494140625, 8.391162109375017)"><path d="M 0,0 L 50,0 L 50,200 L 0,200 z" fill="transparent" stroke="none" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"></path><path d="M 0,0 L 50,0 L 50,200 L 0,200 z" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"></path><rect xmlns="http://www.w3.org/1999/xhtml" fill="#6fd149" height="4.4" width="50.5" transform="translate(0,195.6)"></rect></g></g></g><g transform="matrix(0, 1, -1, 0, 680, 420)" data-model="{"id":-2,"category":"BarGraph","variableName":"32位有","direction":2,"min":0,"max":100,"useAlarmLimit":true,"masterDivisionNumber":100,"subDivisionNumber":100}"><g transform="matrix(1, 0, 0, 1, 0, 0)"><g transform="matrix(1, 0, 0, 1, 0, 0)"><path d="M 0,0 L 50,0 L 50,200 L 0,200 z" fill="transparent" stroke="none" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"></path><path d="M 0,0 L 50,0 L 50,200 L 0,200 z" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"></path><rect xmlns="http://www.w3.org/1999/xhtml" fill="#6fd149" height="4.4" width="50.5" transform="translate(0,195.6)"></rect></g></g></g><g transform="matrix(0, 1, -1, 0, 540, 0)" data-model="{"id":-3,"category":"BarGraph","variableName":"32位有","direction":3,"min":0,"max":100,"useAlarmLimit":true,"masterDivisionNumber":100,"subDivisionNumber":100}"><g transform="matrix(1, 0, 0, 1, 0, 0)"><g transform="matrix(1, 0, 0, 1, 0, 0)" clip-path="url(#CLIP1513)"><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 8.2099609375, 0)">0</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 20)">10</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 40)">20</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 60)">30</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 80)">40</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 100)">50</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 120)">60</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 140)">70</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 160)">80</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 4.10498046875, 180)">90</text><text x="0" y="13.3367431640625" style="font: 14px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 0, 200)">100</text><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.81494140625, 18.891162109375003)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.81494140625, 38.891162109375)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.81494140625, 58.891162109375)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.81494140625, 78.891162109375)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.81494140625, 98.891162109375)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.81494140625, 118.89116210937502)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.81494140625, 138.891162109375)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.81494140625, 158.891162109375)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.81494140625, 178.891162109375)"></path><path d="M 0,0 L 0,5" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.81494140625, 198.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.31494140625, 8.891162109375001)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.31494140625, 28.891162109375003)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.31494140625, 48.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.31494140625, 68.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.31494140625, 88.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.31494140625, 108.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.31494140625, 128.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.31494140625, 148.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.31494140625, 168.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.31494140625, 188.891162109375)"></path><path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.31494140625, 208.891162109375)"></path></g><g transform="matrix(1, 0, 0, 1, 42.31494140625, 8.391162109375003)"><path d="M 0,0 L 50,0 L 50,200 L 0,200 z" fill="transparent" stroke="none" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"></path><path d="M 0,0 L 50,0 L 50,200 L 0,200 z" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"></path><rect xmlns="http://www.w3.org/1999/xhtml" fill="#6fd149" height="4.4110000000000005" width="50.5" transform="translate(0,0)"></rect></g></g></g><g transform="matrix(1, 0, 0, 1, 10, 10)" data-model="{"id":-4,"category":"BarGraph","variableName":"32位有","direction":1,"min":0,"max":100,"useAlarmLimit":false}"><g transform="matrix(1, 0, 0, 1, 0, 0)"><g transform="matrix(1, 0, 0, 1, 0, 0)"><path d="M 0,0 L 50,0 L 50,200 L 0,200 z" fill="transparent" stroke="none" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"></path><path d="M 0,0 L 50,0 L 50,200 L 0,200 z" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 0.5, 0.5)"></path><rect xmlns="http://www.w3.org/1999/xhtml" fill="#6fd149" height="4.4110000000000005" width="50.5" transform="translate(0,0)"></rect></g></g></g></g>
|
|
219
|
+
</g>
|
|
220
|
+
</g>
|
|
221
|
+
<clipPath id="mainClip2447">
|
|
222
|
+
<rect x="0" y="0" width="802" height="482"/>
|
|
223
|
+
</clipPath>
|
|
224
|
+
</svg>`;
|
|
225
|
+
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { GuiContext, ConfigStore, VariableCommunicator, PermissionChecker, OperationRecordService, VideoService, SecurityChecker, WeatherService } from '@flexem/fc-gui';
|
|
2
|
+
import { DefaultConfigStore } from './default-config-store';
|
|
3
|
+
import { DefaultVariableCommunicator } from './default-variable-communicator';
|
|
4
|
+
import { DefaultPermissionChecker } from './default-permission-checker';
|
|
5
|
+
import { DefaultOperationRecordService } from './default-operation-record.service';
|
|
6
|
+
|
|
7
|
+
export class DefaultGuiContext implements GuiContext {
|
|
8
|
+
|
|
9
|
+
permissionChecker: PermissionChecker;
|
|
10
|
+
configStore: ConfigStore;
|
|
11
|
+
variableCommunicator: VariableCommunicator;
|
|
12
|
+
operationRecordService: OperationRecordService;
|
|
13
|
+
videoService: VideoService;
|
|
14
|
+
securityChecker: SecurityChecker;
|
|
15
|
+
weatherService: WeatherService;
|
|
16
|
+
|
|
17
|
+
constructor(configStore?: ConfigStore,
|
|
18
|
+
variableCommunicator?: VariableCommunicator, permissionChecker?: PermissionChecker, operationRecordService?: OperationRecordService) {
|
|
19
|
+
if (null != configStore) {
|
|
20
|
+
this.configStore = configStore;
|
|
21
|
+
} else {
|
|
22
|
+
this.configStore = new DefaultConfigStore();
|
|
23
|
+
}
|
|
24
|
+
if (null != variableCommunicator) {
|
|
25
|
+
this.variableCommunicator = variableCommunicator;
|
|
26
|
+
} else {
|
|
27
|
+
this.variableCommunicator = new DefaultVariableCommunicator();
|
|
28
|
+
}
|
|
29
|
+
if (null != permissionChecker) {
|
|
30
|
+
this.permissionChecker = permissionChecker;
|
|
31
|
+
} else {
|
|
32
|
+
this.permissionChecker = new DefaultPermissionChecker(['0', '1']);
|
|
33
|
+
}
|
|
34
|
+
if (null != operationRecordService) {
|
|
35
|
+
this.operationRecordService = operationRecordService;
|
|
36
|
+
} else {
|
|
37
|
+
this.operationRecordService = new DefaultOperationRecordService();
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
dispose(): any {
|
|
42
|
+
if (this.variableCommunicator) {
|
|
43
|
+
this.variableCommunicator.dispose();
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { GetHistoryDataArgs, HistoryDataModel, HistoryDataStore } from '@flexem/fc-gui';
|
|
2
|
+
import { Observable, of } from 'rxjs';
|
|
3
|
+
|
|
4
|
+
export class DefaultHistoryDataStore implements HistoryDataStore {
|
|
5
|
+
getHistoryData(input: GetHistoryDataArgs): Observable<HistoryDataModel> {
|
|
6
|
+
// tslint:disable-next-line:max-line-length
|
|
7
|
+
const result = JSON.parse('[{"time":"2018-06-04T16:00:48.528Z","values":[596,619]},{"time":"2018-06-04T16:01:48.64Z","values":[524,547]},{"time":"2018-06-04T16:02:48.784Z","values":[556,579]},{"time":"2018-06-04T16:03:48.912Z","values":[585,608]},{"time":"2018-06-04T16:04:49.056Z","values":[513,536]},{"time":"2018-06-04T16:05:49.2Z","values":[545,568]},{"time":"2018-06-04T16:06:49.376Z","values":[577,600]},{"time":"2018-06-04T16:07:49.52Z","values":[512,535]},{"time":"2018-06-04T16:08:49.632Z","values":[544,567]},{"time":"2018-06-04T16:09:49.76Z","values":[576,599]},{"time":"2018-06-04T16:10:49.888Z","values":[504,527]},{"time":"2018-06-04T16:11:50.016Z","values":[533,556]},{"time":"2018-06-04T16:12:50.16Z","values":[565,588]},{"time":"2018-06-04T16:13:50.304Z","values":[597,620]},{"time":"2018-06-04T16:14:50.432Z","values":[525,548]},{"time":"2018-06-04T16:15:50.592Z","values":[564,587]},{"time":"2018-06-04T16:16:50.752Z","values":[596,619]},{"time":"2018-06-04T16:17:50.896Z","values":[524,547]},{"time":"2018-06-04T16:18:51.04Z","values":[553,576]},{"time":"2018-06-04T16:19:51.168Z","values":[585,608]},{"time":"2018-06-04T16:20:51.328Z","values":[513,536]},{"time":"2018-06-04T16:21:51.456Z","values":[545,568]},{"time":"2018-06-04T16:22:51.584Z","values":[584,607]},{"time":"2018-06-04T16:23:51.728Z","values":[512,535]},{"time":"2018-06-04T16:24:51.872Z","values":[544,567]},{"time":"2018-06-04T16:25:52.016Z","values":[573,596]},{"time":"2018-06-04T16:26:52.144Z","values":[501,524]},{"time":"2018-06-04T16:27:52.256Z","values":[533,556]},{"time":"2018-06-04T16:28:52.384Z","values":[565,588]},{"time":"2018-06-04T16:29:52.56Z","values":[500,523]},{"time":"2018-06-04T16:30:52.672Z","values":[532,555]},{"time":"2018-06-04T16:31:52.784Z","values":[564,587]},{"time":"2018-06-04T16:32:52.912Z","values":[596,619]},{"time":"2018-06-04T16:33:53.04Z","values":[524,547]},{"time":"2018-06-04T16:34:53.408Z","values":[553,576]},{"time":"2018-06-04T16:35:53.568Z","values":[585,608]},{"time":"2018-06-04T16:36:53.696Z","values":[513,536]},{"time":"2018-06-04T16:37:53.856Z","values":[552,575]},{"time":"2018-06-04T16:38:53.984Z","values":[584,607]},{"time":"2018-06-04T16:39:54.112Z","values":[512,535]},{"time":"2018-06-04T16:40:54.256Z","values":[544,567]},{"time":"2018-06-04T16:41:54.384Z","values":[573,596]},{"time":"2018-06-04T16:42:54.528Z","values":[501,524]},{"time":"2018-06-04T16:43:54.656Z","values":[533,556]},{"time":"2018-06-04T16:44:54.784Z","values":[565,588]},{"time":"2018-06-04T16:45:54.944Z","values":[500,523]},{"time":"2018-06-04T16:46:55.072Z","values":[532,555]},{"time":"2018-06-04T16:47:55.232Z","values":[564,587]},{"time":"2018-06-04T16:48:55.328Z","values":[596,619]},{"time":"2018-06-04T16:49:55.488Z","values":[521,544]},{"time":"2018-06-04T16:50:55.632Z","values":[553,576]},{"time":"2018-06-04T16:51:55.744Z","values":[585,608]},{"time":"2018-06-04T16:52:55.888Z","values":[513,536]},{"time":"2018-06-04T16:53:56.016Z","values":[552,575]},{"time":"2018-06-04T16:54:56.16Z","values":[584,607]},{"time":"2018-06-04T16:55:56.288Z","values":[512,535]},{"time":"2018-06-04T16:56:56.432Z","values":[544,567]},{"time":"2018-06-04T16:57:56.608Z","values":[573,596]},{"time":"2018-06-04T16:58:56.736Z","values":[501,524]},{"time":"2018-06-04T16:59:56.88Z","values":[533,556]},{"time":"2018-06-04T17:00:57.04Z","values":[572,595]},{"time":"2018-06-04T17:01:57.168Z","values":[500,523]},{"time":"2018-06-04T17:02:57.312Z","values":[532,555]},{"time":"2018-06-04T17:03:57.456Z","values":[564,587]},{"time":"2018-06-04T17:04:57.584Z","values":[593,616]},{"time":"2018-06-04T17:05:57.712Z","values":[521,544]},{"time":"2018-06-04T17:06:57.856Z","values":[553,576]},{"time":"2018-06-04T17:07:58Z","values":[585,608]},{"time":"2018-06-04T17:08:58.144Z","values":[520,543]},{"time":"2018-06-04T17:09:58.288Z","values":[552,575]},{"time":"2018-06-04T17:10:58.432Z","values":[584,607]},{"time":"2018-06-04T17:11:58.544Z","values":[512,535]},{"time":"2018-06-04T17:12:58.688Z","values":[541,564]},{"time":"2018-06-04T17:13:58.816Z","values":[573,596]},{"time":"2018-06-04T17:14:58.96Z","values":[501,524]},{"time":"2018-06-04T17:15:59.12Z","values":[540,563]},{"time":"2018-06-04T17:16:59.472Z","values":[572,595]},{"time":"2018-06-04T17:17:59.616Z","values":[500,523]},{"time":"2018-06-04T17:18:59.744Z","values":[532,555]},{"time":"2018-06-04T17:19:59.872Z","values":[561,584]},{"time":"2018-06-04T17:21:00.016Z","values":[593,616]},{"time":"2018-06-04T17:22:00.16Z","values":[521,544]},{"time":"2018-06-04T17:23:00.288Z","values":[553,576]},{"time":"2018-06-04T17:24:00.416Z","values":[592,615]},{"time":"2018-06-04T17:25:00.56Z","values":[520,543]},{"time":"2018-06-04T17:26:00.72Z","values":[552,575]},{"time":"2018-06-04T17:27:00.88Z","values":[581,604]},{"time":"2018-06-04T17:28:01.04Z","values":[509,532]},{"time":"2018-06-04T17:29:01.28Z","values":[541,564]},{"time":"2018-06-04T17:30:01.36Z","values":[580,603]},{"time":"2018-06-04T17:31:01.44Z","values":[508,531]},{"time":"2018-06-04T17:32:01.536Z","values":[540,563]},{"time":"2018-06-04T17:33:01.504Z","values":[572,595]},{"time":"2018-06-04T17:34:01.584Z","values":[500,523]},{"time":"2018-06-04T17:35:01.664Z","values":[532,555]},{"time":"2018-06-04T17:36:01.744Z","values":[564,587]},{"time":"2018-06-04T17:37:01.808Z","values":[596,619]},{"time":"2018-06-04T17:38:01.888Z","values":[524,547]},{"time":"2018-06-04T17:39:01.952Z","values":[553,576]},{"time":"2018-06-04T17:40:02.128Z","values":[585,608]},{"time":"2018-06-04T17:41:02.208Z","values":[513,536]},{"time":"2018-06-04T17:42:02.272Z","values":[545,568]},{"time":"2018-06-04T17:43:02.352Z","values":[577,600]},{"time":"2018-06-04T17:44:02.432Z","values":[505,528]},{"time":"2018-06-04T17:45:02.4Z","values":[537,560]},{"time":"2018-06-04T17:46:02.48Z","values":[569,592]},{"time":"2018-06-04T17:47:02.56Z","values":[504,527]},{"time":"2018-06-04T17:48:02.64Z","values":[536,559]},{"time":"2018-06-04T17:49:02.72Z","values":[568,591]},{"time":"2018-06-04T17:50:02.8Z","values":[600,623]},{"time":"2018-06-04T17:51:02.88Z","values":[528,551]},{"time":"2018-06-04T17:52:02.96Z","values":[560,583]},{"time":"2018-06-04T17:53:03.136Z","values":[589,612]},{"time":"2018-06-04T17:54:03.2Z","values":[517,540]},{"time":"2018-06-04T17:55:03.28Z","values":[549,572]},{"time":"2018-06-04T17:56:03.36Z","values":[581,604]},{"time":"2018-06-04T17:57:03.424Z","values":[509,532]},{"time":"2018-06-04T17:58:03.408Z","values":[541,564]},{"time":"2018-06-04T17:59:03.696Z","values":[573,596]},{"time":"2018-06-04T18:00:03.776Z","values":[501,524]},{"time":"2018-06-04T18:01:03.856Z","values":[540,563]},{"time":"2018-06-04T18:02:03.92Z","values":[572,595]},{"time":"2018-06-04T18:03:04Z","values":[500,523]},{"time":"2018-06-04T18:04:04.08Z","values":[532,555]},{"time":"2018-06-04T18:05:04.256Z","values":[564,587]},{"time":"2018-06-04T18:06:04.352Z","values":[596,619]},{"time":"2018-06-04T18:07:04.416Z","values":[521,544]},{"time":"2018-06-04T18:08:04.496Z","values":[553,576]},{"time":"2018-06-04T18:09:04.56Z","values":[585,608]},{"time":"2018-06-04T18:10:04.64Z","values":[513,536]},{"time":"2018-06-04T18:11:04.72Z","values":[545,568]},{"time":"2018-06-04T18:12:04.688Z","values":[577,600]},{"time":"2018-06-04T18:13:04.768Z","values":[505,528]},{"time":"2018-06-04T18:14:04.848Z","values":[537,560]},{"time":"2018-06-04T18:15:04.928Z","values":[576,599]},{"time":"2018-06-04T18:16:05.008Z","values":[504,527]},{"time":"2018-06-04T18:17:05.072Z","values":[536,559]},{"time":"2018-06-04T18:18:05.248Z","values":[568,591]},{"time":"2018-06-04T18:19:05.328Z","values":[600,623]},{"time":"2018-06-04T18:20:05.408Z","values":[528,551]},{"time":"2018-06-04T18:21:05.488Z","values":[557,580]},{"time":"2018-06-04T18:22:05.552Z","values":[589,612]},{"time":"2018-06-04T18:23:05.552Z","values":[517,540]},{"time":"2018-06-04T18:24:05.616Z","values":[549,572]},{"time":"2018-06-04T18:25:05.696Z","values":[581,604]},{"time":"2018-06-04T18:26:05.776Z","values":[509,532]},{"time":"2018-06-04T18:27:05.84Z","values":[541,564]},{"time":"2018-06-04T18:28:05.92Z","values":[573,596]},{"time":"2018-06-04T18:29:05.984Z","values":[508,531]},{"time":"2018-06-04T18:30:06.176Z","values":[540,563]},{"time":"2018-06-04T18:31:06.256Z","values":[572,595]},{"time":"2018-06-04T18:32:06.32Z","values":[500,523]},{"time":"2018-06-04T18:33:06.4Z","values":[532,555]},{"time":"2018-06-04T18:34:06.48Z","values":[564,587]},{"time":"2018-06-04T18:35:06.56Z","values":[593,616]},{"time":"2018-06-04T18:36:06.544Z","values":[524,547]},{"time":"2018-06-04T18:37:06.608Z","values":[553,576]},{"time":"2018-06-04T18:38:06.688Z","values":[585,608]},{"time":"2018-06-04T18:39:06.752Z","values":[513,536]},{"time":"2018-06-04T18:40:06.848Z","values":[545,568]},{"time":"2018-06-04T18:41:07.136Z","values":[577,600]},{"time":"2018-06-04T18:42:07.216Z","values":[505,528]},{"time":"2018-06-04T18:43:07.296Z","values":[544,567]},{"time":"2018-06-04T18:44:07.456Z","values":[576,599]},{"time":"2018-06-04T18:45:07.536Z","values":[504,527]},{"time":"2018-06-04T18:46:07.616Z","values":[536,559]},{"time":"2018-06-04T18:47:07.68Z","values":[568,591]},{"time":"2018-06-04T18:48:07.76Z","values":[600,623]},{"time":"2018-06-04T18:49:07.728Z","values":[528,551]},{"time":"2018-06-04T18:50:07.808Z","values":[560,583]},{"time":"2018-06-04T18:51:07.888Z","values":[589,612]},{"time":"2018-06-04T18:52:07.968Z","values":[517,540]},{"time":"2018-06-04T18:53:08.048Z","values":[549,572]},{"time":"2018-06-04T18:54:08.112Z","values":[581,604]},{"time":"2018-06-04T18:55:08.192Z","values":[509,532]},{"time":"2018-06-04T18:56:08.368Z","values":[541,564]},{"time":"2018-06-04T18:57:08.464Z","values":[580,603]},{"time":"2018-06-04T18:58:08.544Z","values":[508,531]},{"time":"2018-06-04T18:59:08.608Z","values":[540,563]},{"time":"2018-06-04T19:00:08.688Z","values":[572,595]},{"time":"2018-06-04T19:01:08.768Z","values":[500,523]},{"time":"2018-06-04T19:02:08.752Z","values":[532,555]},{"time":"2018-06-04T19:03:08.832Z","values":[564,587]},{"time":"2018-06-04T19:04:08.896Z","values":[596,619]},{"time":"2018-06-04T19:05:08.976Z","values":[521,544]},{"time":"2018-06-04T19:06:09.056Z","values":[553,576]},{"time":"2018-06-04T19:07:09.12Z","values":[585,608]},{"time":"2018-06-04T19:08:09.2Z","values":[513,536]},{"time":"2018-06-04T19:09:09.36Z","values":[545,568]},{"time":"2018-06-04T19:10:09.44Z","values":[577,600]},{"time":"2018-06-04T19:11:09.52Z","values":[512,535]},{"time":"2018-06-04T19:12:09.6Z","values":[544,567]},{"time":"2018-06-04T19:13:09.664Z","values":[576,599]},{"time":"2018-06-04T19:14:09.76Z","values":[504,527]},{"time":"2018-06-04T19:15:09.744Z","values":[536,559]},{"time":"2018-06-04T19:16:09.824Z","values":[568,591]},{"time":"2018-06-04T19:17:09.888Z","values":[600,623]},{"time":"2018-06-04T19:18:09.968Z","values":[528,551]},{"time":"2018-06-04T19:19:10.032Z","values":[557,580]},{"time":"2018-06-04T19:20:10.112Z","values":[589,612]},{"time":"2018-06-04T19:21:10.192Z","values":[517,540]},{"time":"2018-06-04T19:22:10.368Z","values":[549,572]},{"time":"2018-06-04T19:23:10.656Z","values":[581,604]},{"time":"2018-06-04T19:24:10.72Z","values":[509,532]},{"time":"2018-06-04T19:25:10.8Z","values":[548,571]},{"time":"2018-06-04T19:26:10.88Z","values":[580,603]},{"time":"2018-06-04T19:27:10.848Z","values":[508,531]},{"time":"2018-06-04T19:28:10.928Z","values":[540,563]},{"time":"2018-06-04T19:29:11.008Z","values":[572,595]},{"time":"2018-06-04T19:30:11.088Z","values":[500,523]},{"time":"2018-06-04T19:31:11.184Z","values":[532,555]},{"time":"2018-06-04T19:32:11.248Z","values":[564,587]},{"time":"2018-06-04T19:33:11.328Z","values":[596,619]},{"time":"2018-06-04T19:34:11.408Z","values":[521,544]},{"time":"2018-06-04T19:35:11.488Z","values":[553,576]},{"time":"2018-06-04T19:36:11.664Z","values":[585,608]},{"time":"2018-06-04T19:37:11.728Z","values":[513,536]},{"time":"2018-06-04T19:38:11.808Z","values":[545,568]},{"time":"2018-06-04T19:39:11.888Z","values":[577,600]},{"time":"2018-06-04T19:40:11.968Z","values":[512,535]},{"time":"2018-06-04T19:41:12.048Z","values":[544,567]},{"time":"2018-06-04T19:42:12.016Z","values":[576,599]},{"time":"2018-06-04T19:43:12.096Z","values":[504,527]},{"time":"2018-06-04T19:44:12.16Z","values":[536,559]},{"time":"2018-06-04T19:45:12.24Z","values":[568,591]},{"time":"2018-06-04T19:46:12.32Z","values":[600,623]},{"time":"2018-06-04T19:47:12.384Z","values":[528,551]},{"time":"2018-06-04T19:48:12.48Z","values":[557,580]},{"time":"2018-06-04T19:49:12.656Z","values":[589,612]},{"time":"2018-06-04T19:50:12.736Z","values":[517,540]},{"time":"2018-06-04T19:51:12.816Z","values":[549,572]},{"time":"2018-06-04T19:52:12.88Z","values":[581,604]},{"time":"2018-06-04T19:53:12.96Z","values":[509,532]},{"time":"2018-06-04T19:54:12.928Z","values":[541,564]},{"time":"2018-06-04T19:55:13.008Z","values":[573,596]},{"time":"2018-06-04T19:56:13.088Z","values":[508,531]},{"time":"2018-06-04T19:57:13.152Z","values":[540,563]},{"time":"2018-06-04T19:58:13.232Z","values":[572,595]},{"time":"2018-06-04T19:59:13.296Z","values":[500,523]},{"time":"2018-06-04T20:00:13.488Z","values":[532,555]},{"time":"2018-06-04T20:01:13.568Z","values":[564,587]},{"time":"2018-06-04T20:02:13.632Z","values":[593,616]},{"time":"2018-06-04T20:03:13.712Z","values":[521,544]},{"time":"2018-06-04T20:04:13.776Z","values":[553,576]},{"time":"2018-06-04T20:05:14.096Z","values":[585,608]},{"time":"2018-06-04T20:06:14.176Z","values":[513,536]},{"time":"2018-06-04T20:07:14.144Z","values":[545,568]},{"time":"2018-06-04T20:08:14.224Z","values":[577,600]},{"time":"2018-06-04T20:09:14.288Z","values":[505,528]},{"time":"2018-06-04T20:10:14.368Z","values":[544,567]},{"time":"2018-06-04T20:11:14.448Z","values":[576,599]},{"time":"2018-06-04T20:12:14.512Z","values":[504,527]},{"time":"2018-06-04T20:13:14.592Z","values":[536,559]},{"time":"2018-06-04T20:14:14.752Z","values":[568,591]},{"time":"2018-06-04T20:15:14.832Z","values":[600,623]},{"time":"2018-06-04T20:16:14.912Z","values":[525,548]},{"time":"2018-06-04T20:17:14.992Z","values":[557,580]},{"time":"2018-06-04T20:18:15.072Z","values":[589,612]},{"time":"2018-06-04T20:19:15.04Z","values":[517,540]},{"time":"2018-06-04T20:20:15.12Z","values":[549,572]},{"time":"2018-06-04T20:21:15.2Z","values":[581,604]},{"time":"2018-06-04T20:22:15.28Z","values":[509,532]},{"time":"2018-06-04T20:23:15.36Z","values":[541,564]},{"time":"2018-06-04T20:24:15.424Z","values":[580,603]},{"time":"2018-06-04T20:25:15.504Z","values":[508,531]},{"time":"2018-06-04T20:26:15.584Z","values":[540,563]},{"time":"2018-06-04T20:27:15.76Z","values":[572,595]},{"time":"2018-06-04T20:28:15.84Z","values":[500,523]},{"time":"2018-06-04T20:29:15.92Z","values":[532,555]},{"time":"2018-06-04T20:30:16Z","values":[561,584]},{"time":"2018-06-04T20:31:16.08Z","values":[593,616]},{"time":"2018-06-04T20:32:16.048Z","values":[521,544]},{"time":"2018-06-04T20:33:16.112Z","values":[553,576]},{"time":"2018-06-04T20:34:16.192Z","values":[585,608]},{"time":"2018-06-04T20:35:16.272Z","values":[513,536]},{"time":"2018-06-04T20:36:16.352Z","values":[545,568]},{"time":"2018-06-04T20:37:16.416Z","values":[577,600]},{"time":"2018-06-04T20:38:16.496Z","values":[512,535]},{"time":"2018-06-04T20:39:16.688Z","values":[544,567]},{"time":"2018-06-04T20:40:16.768Z","values":[576,599]},{"time":"2018-06-04T20:41:16.848Z","values":[504,527]},{"time":"2018-06-04T20:42:16.912Z","values":[536,559]},{"time":"2018-06-04T20:43:16.992Z","values":[568,591]},{"time":"2018-06-04T20:44:16.96Z","values":[600,623]},{"time":"2018-06-04T20:45:17.04Z","values":[528,551]},{"time":"2018-06-04T20:46:17.12Z","values":[557,580]},{"time":"2018-06-04T20:47:17.2Z","values":[589,612]},{"time":"2018-06-04T20:48:17.488Z","values":[517,540]},{"time":"2018-06-04T20:49:17.552Z","values":[549,572]},{"time":"2018-06-04T20:50:17.632Z","values":[581,604]},{"time":"2018-06-04T20:51:17.712Z","values":[509,532]},{"time":"2018-06-04T20:52:17.888Z","values":[548,571]},{"time":"2018-06-04T20:53:17.952Z","values":[580,603]},{"time":"2018-06-04T20:54:18.032Z","values":[508,531]},{"time":"2018-06-04T20:55:18.112Z","values":[540,563]},{"time":"2018-06-04T20:56:18.208Z","values":[572,595]},{"time":"2018-06-04T20:57:18.272Z","values":[500,523]},{"time":"2018-06-04T20:58:18.256Z","values":[532,555]},{"time":"2018-06-04T20:59:18.32Z","values":[564,587]},{"time":"2018-06-04T21:00:18.4Z","values":[593,616]},{"time":"2018-06-04T21:01:18.48Z","values":[521,544]},{"time":"2018-06-04T21:02:18.544Z","values":[553,576]},{"time":"2018-06-04T21:03:18.624Z","values":[585,608]},{"time":"2018-06-04T21:04:18.8Z","values":[513,536]},{"time":"2018-06-04T21:05:18.88Z","values":[545,568]},{"time":"2018-06-04T21:06:18.96Z","values":[584,607]},{"time":"2018-06-04T21:07:19.024Z","values":[512,535]},{"time":"2018-06-04T21:08:19.104Z","values":[544,567]},{"time":"2018-06-04T21:09:19.072Z","values":[576,599]},{"time":"2018-06-04T21:10:19.152Z","values":[504,527]},{"time":"2018-06-04T21:11:19.232Z","values":[536,559]},{"time":"2018-06-04T21:12:19.312Z","values":[568,591]},{"time":"2018-06-04T21:13:19.408Z","values":[600,623]},{"time":"2018-06-04T21:14:19.472Z","values":[525,548]},{"time":"2018-06-04T21:15:19.552Z","values":[557,580]},{"time":"2018-06-04T21:16:19.632Z","values":[589,612]},{"time":"2018-06-04T21:17:19.808Z","values":[517,540]},{"time":"2018-06-04T21:18:19.888Z","values":[549,572]},{"time":"2018-06-04T21:19:19.952Z","values":[581,604]},{"time":"2018-06-04T21:20:20.032Z","values":[516,539]},{"time":"2018-06-04T21:21:20.112Z","values":[548,571]},{"time":"2018-06-04T21:22:20.08Z","values":[580,603]},{"time":"2018-06-04T21:23:20.16Z","values":[508,531]},{"time":"2018-06-04T21:24:20.224Z","values":[540,563]},{"time":"2018-06-04T21:25:20.304Z","values":[572,595]},{"time":"2018-06-04T21:26:20.384Z","values":[500,523]},{"time":"2018-06-04T21:27:20.448Z","values":[532,555]},{"time":"2018-06-04T21:28:20.64Z","values":[561,584]},{"time":"2018-06-04T21:29:20.704Z","values":[593,616]},{"time":"2018-06-04T21:30:21.024Z","values":[521,544]},{"time":"2018-06-04T21:31:21.104Z","values":[553,576]},{"time":"2018-06-04T21:32:21.168Z","values":[585,608]},{"time":"2018-06-04T21:33:21.248Z","values":[513,536]},{"time":"2018-06-04T21:34:21.312Z","values":[552,575]},{"time":"2018-06-04T21:35:21.296Z","values":[577,600]},{"time":"2018-06-04T21:36:21.376Z","values":[512,535]},{"time":"2018-06-04T21:37:21.44Z","values":[544,567]},{"time":"2018-06-04T21:38:21.52Z","values":[576,599]},{"time":"2018-06-04T21:39:21.584Z","values":[504,527]},{"time":"2018-06-04T21:40:21.76Z","values":[536,559]},{"time":"2018-06-04T21:41:21.856Z","values":[568,591]},{"time":"2018-06-04T21:42:21.92Z","values":[597,620]},{"time":"2018-06-04T21:43:22Z","values":[525,548]},{"time":"2018-06-04T21:44:22.064Z","values":[557,null]},{"time":"2018-06-04T21:45:22.144Z","values":[null,612]},{"time":"2018-06-04T21:46:22.224Z","values":[517,540]},{"time":"2018-06-04T21:47:22.32Z","values":[549,572]},{"time":"2018-06-04T21:48:22.304Z","values":[581,604]},{"time":"2018-06-04T21:49:22.368Z","values":[509,532]},{"time":"2018-06-04T21:50:22.448Z","values":[548,571]},{"time":"2018-06-04T21:51:22.528Z","values":[580,603]},{"time":"2018-06-04T21:52:22.592Z","values":[508,531]},{"time":"2018-06-04T21:53:22.672Z","values":[540,563]},{"time":"2018-06-04T21:54:22.848Z","values":[572,595]},{"time":"2018-06-04T21:55:22.928Z","values":[500,523]},{"time":"2018-06-04T21:56:23.008Z","values":[529,552]},{"time":"2018-06-04T21:57:23.072Z","values":[561,584]},{"time":"2018-06-04T21:58:23.152Z","values":[593,616]},{"time":"2018-06-04T21:59:23.12Z","values":[521,544]},{"time":"2018-06-04T22:00:23.2Z","values":[553,576]},{"time":"2018-06-04T22:01:23.28Z","values":[585,608]},{"time":"2018-06-04T22:02:23.344Z","values":[513,536]},{"time":"2018-06-04T22:03:23.424Z","values":[545,568]},{"time":"2018-06-04T22:04:23.52Z","values":[584,607]},{"time":"2018-06-04T22:05:23.584Z","values":[512,535]},{"time":"2018-06-04T22:06:23.664Z","values":[544,567]},{"time":"2018-06-04T22:07:23.84Z","values":[576,599]},{"time":"2018-06-04T22:08:23.92Z","values":[504,527]},{"time":"2018-06-04T22:09:23.984Z","values":[536,559]},{"time":"2018-06-04T22:10:24.064Z","values":[565,588]},{"time":"2018-06-04T22:11:24.144Z","values":[597,620]},{"time":"2018-06-04T22:12:24.336Z","values":[525,548]},{"time":"2018-06-04T22:13:24.4Z","values":[557,580]},{"time":"2018-06-04T22:14:24.48Z","values":[589,612]},{"time":"2018-06-04T22:15:24.56Z","values":[517,540]},{"time":"2018-06-04T22:16:24.64Z","values":[549,572]},{"time":"2018-06-04T22:17:24.704Z","values":[581,604]},{"time":"2018-06-04T22:18:24.784Z","values":[509,532]},{"time":"2018-06-04T22:19:24.96Z","values":[548,571]},{"time":"2018-06-04T22:20:25.04Z","values":[580,603]},{"time":"2018-06-04T22:21:25.136Z","values":[508,531]},{"time":"2018-06-04T22:22:25.2Z","values":[540,563]},{"time":"2018-06-04T22:23:25.28Z","values":[572,595]},{"time":"2018-06-04T22:24:25.36Z","values":[500,523]},{"time":"2018-06-04T22:25:25.44Z","values":[529,552]},{"time":"2018-06-04T22:26:25.408Z","values":[564,587]},{"time":"2018-06-04T22:27:25.488Z","values":[593,616]},{"time":"2018-06-04T22:28:25.568Z","values":[521,544]},{"time":"2018-06-04T22:29:25.632Z","values":[553,576]},{"time":"2018-06-04T22:30:25.712Z","values":[585,608]},{"time":"2018-06-04T22:31:25.792Z","values":[513,536]},{"time":"2018-06-04T22:32:25.968Z","values":[545,568]},{"time":"2018-06-04T22:33:26.032Z","values":[584,607]},{"time":"2018-06-04T22:34:26.112Z","values":[512,535]},{"time":"2018-06-04T22:35:26.192Z","values":[544,567]},{"time":"2018-06-04T22:36:26.272Z","values":[576,599]},{"time":"2018-06-04T22:37:26.24Z","values":[504,527]},{"time":"2018-06-04T22:38:26.432Z","values":[536,559]},{"time":"2018-06-04T22:39:26.4Z","values":[568,591]},{"time":"2018-06-04T22:40:26.48Z","values":[600,623]},{"time":"2018-06-04T22:41:26.56Z","values":[525,548]},{"time":"2018-06-04T22:42:26.64Z","values":[557,580]},{"time":"2018-06-04T22:43:26.704Z","values":[589,612]},{"time":"2018-06-04T22:44:26.784Z","values":[517,540]},{"time":"2018-06-04T22:45:26.96Z","values":[549,572]},{"time":"2018-06-04T22:46:27.04Z","values":[581,604]},{"time":"2018-06-04T22:47:27.104Z","values":[516,539]},{"time":"2018-06-04T22:48:27.184Z","values":[548,571]},{"time":"2018-06-04T22:49:27.264Z","values":[580,603]},{"time":"2018-06-04T22:50:27.232Z","values":[508,531]},{"time":"2018-06-04T22:51:27.312Z","values":[540,563]},{"time":"2018-06-04T22:52:27.376Z","values":[572,595]},{"time":"2018-06-04T22:53:27.456Z","values":[500,523]},{"time":"2018-06-04T22:54:27.744Z","values":[532,555]},{"time":"2018-06-04T22:55:27.84Z","values":[561,584]},{"time":"2018-06-04T22:56:27.92Z","values":[593,616]},{"time":"2018-06-04T22:57:27.984Z","values":[521,544]},{"time":"2018-06-04T22:58:28.064Z","values":[553,576]},{"time":"2018-06-04T22:59:28.24Z","values":[585,608]},{"time":"2018-06-04T23:00:28.32Z","values":[513,536]},{"time":"2018-06-04T23:01:28.4Z","values":[552,575]},{"time":"2018-06-04T23:02:28.48Z","values":[584,607]},{"time":"2018-06-04T23:03:28.544Z","values":[512,535]},{"time":"2018-06-04T23:04:28.512Z","values":[544,567]},{"time":"2018-06-04T23:05:28.592Z","values":[576,599]},{"time":"2018-06-04T23:06:28.672Z","values":[504,527]},{"time":"2018-06-04T23:07:28.752Z","values":[536,559]},{"time":"2018-06-04T23:08:28.816Z","values":[568,591]},{"time":"2018-06-04T23:09:28.896Z","values":[597,620]},{"time":"2018-06-04T23:10:28.976Z","values":[525,548]},{"time":"2018-06-04T23:11:29.056Z","values":[557,580]},{"time":"2018-06-04T23:12:29.248Z","values":[589,612]},{"time":"2018-06-04T23:13:29.328Z","values":[517,540]},{"time":"2018-06-04T23:14:29.392Z","values":[549,572]},{"time":"2018-06-04T23:15:29.472Z","values":[588,611]},{"time":"2018-06-04T23:16:29.552Z","values":[516,539]},{"time":"2018-06-04T23:17:29.52Z","values":[548,571]},{"time":"2018-06-04T23:18:29.6Z","values":[580,603]},{"time":"2018-06-04T23:19:29.664Z","values":[508,531]},{"time":"2018-06-04T23:20:29.744Z","values":[540,563]},{"time":"2018-06-04T23:21:29.824Z","values":[572,595]},{"time":"2018-06-04T23:22:29.904Z","values":[500,523]},{"time":"2018-06-04T23:23:29.984Z","values":[529,552]},{"time":"2018-06-04T23:24:30.144Z","values":[561,584]},{"time":"2018-06-04T23:25:30.224Z","values":[593,616]},{"time":"2018-06-04T23:26:30.304Z","values":[521,544]},{"time":"2018-06-04T23:27:30.384Z","values":[553,576]},{"time":"2018-06-04T23:28:30.464Z","values":[585,608]},{"time":"2018-06-04T23:29:30.544Z","values":[520,543]},{"time":"2018-06-04T23:30:30.624Z","values":[552,575]},{"time":"2018-06-04T23:31:30.608Z","values":[584,607]},{"time":"2018-06-04T23:32:30.672Z","values":[512,535]},{"time":"2018-06-04T23:33:30.752Z","values":[544,567]},{"time":"2018-06-04T23:34:30.832Z","values":[576,599]},{"time":"2018-06-04T23:35:30.912Z","values":[504,527]},{"time":"2018-06-04T23:36:31.2Z","values":[536,559]},{"time":"2018-06-04T23:37:31.28Z","values":[568,591]},{"time":"2018-06-04T23:38:31.376Z","values":[597,620]},{"time":"2018-06-04T23:39:31.472Z","values":[525,548]},{"time":"2018-06-04T23:40:31.584Z","values":[557,580]},{"time":"2018-06-04T23:41:31.68Z","values":[589,612]},{"time":"2018-06-04T23:42:31.776Z","values":[517,540]},{"time":"2018-06-04T23:43:31.888Z","values":[556,579]},{"time":"2018-06-04T23:44:31.968Z","values":[588,611]},{"time":"2018-06-04T23:45:32.064Z","values":[516,539]},{"time":"2018-06-04T23:46:32.192Z","values":[548,571]},{"time":"2018-06-04T23:47:32.272Z","values":[580,603]},{"time":"2018-06-04T23:48:32.368Z","values":[508,531]},{"time":"2018-06-04T23:49:32.448Z","values":[537,560]},{"time":"2018-06-04T23:50:32.544Z","values":[569,592]},{"time":"2018-06-04T23:51:32.656Z","values":[497,520]},{"time":"2018-06-04T23:52:32.752Z","values":[529,552]},{"time":"2018-06-04T23:53:32.848Z","values":[561,584]},{"time":"2018-06-04T23:54:32.928Z","values":[600,623]},{"time":"2018-06-04T23:55:33.04Z","values":[528,551]},{"time":"2018-06-04T23:56:33.136Z","values":[560,583]},{"time":"2018-06-04T23:57:33.216Z","values":[592,615]},{"time":"2018-06-04T23:58:33.312Z","values":[520,543]},{"time":"2018-06-04T23:59:33.408Z","values":[552,575]},{"time":"2018-06-05T00:00:33.504Z","values":[581,604]},{"time":"2018-06-05T00:01:33.616Z","values":[509,532]},{"time":"2018-06-05T00:02:33.696Z","values":[541,564]},{"time":"2018-06-05T00:03:33.824Z","values":[573,596]},{"time":"2018-06-05T00:04:33.904Z","values":[501,524]},{"time":"2018-06-05T00:05:34Z","values":[533,556]},{"time":"2018-06-05T00:06:34.112Z","values":[572,595]},{"time":"2018-06-05T00:07:34.192Z","values":[500,523]},{"time":"2018-06-05T00:08:34.304Z","values":[532,555]},{"time":"2018-06-05T00:09:34.384Z","values":[564,587]},{"time":"2018-06-05T00:10:34.48Z","values":[596,619]},{"time":"2018-06-05T00:11:34.576Z","values":[521,544]},{"time":"2018-06-05T00:12:34.672Z","values":[553,576]},{"time":"2018-06-05T00:13:34.768Z","values":[585,608]},{"time":"2018-06-05T00:14:34.848Z","values":[513,536]},{"time":"2018-06-05T00:15:34.944Z","values":[545,568]},{"time":"2018-06-05T00:16:35.056Z","values":[577,600]},{"time":"2018-06-05T00:17:35.136Z","values":[512,535]},{"time":"2018-06-05T00:18:35.472Z","values":[544,567]},{"time":"2018-06-05T00:19:35.568Z","values":[576,599]},{"time":"2018-06-05T00:20:35.68Z","values":[504,527]}]');
|
|
8
|
+
return of({ error: null, isUnbind: false, values: result });
|
|
9
|
+
}
|
|
10
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { PermissionChecker } from '@flexem/fc-gui';
|
|
2
|
+
|
|
3
|
+
export class DefaultPermissionChecker implements PermissionChecker {
|
|
4
|
+
|
|
5
|
+
constructor(private readonly ownedPermissions: string[]) {
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
isGranted(permissions: string[]): boolean {
|
|
9
|
+
|
|
10
|
+
if (this.ownedPermissions == null || permissions == null) {
|
|
11
|
+
return false;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
for (let i = 0; i < this.ownedPermissions.length; i++) {
|
|
15
|
+
if (permissions.indexOf(this.ownedPermissions[i]) !== -1) {
|
|
16
|
+
return true;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
return false;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { VariableCommunicator, VariableDefinition, VariableValue, VariableState } from '@flexem/fc-gui';
|
|
2
|
+
import * as _ from 'lodash';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { map } from 'rxjs/operators';
|
|
5
|
+
|
|
6
|
+
export class DefaultVariableCommunicator implements VariableCommunicator {
|
|
7
|
+
|
|
8
|
+
openVariables(variableNames: Array<string>): Observable<Array<VariableValue>> {
|
|
9
|
+
return new Observable<VariableValue[]>(observer => {
|
|
10
|
+
const timerId = setInterval(() => {
|
|
11
|
+
observer.next(this.getRandomVariableValues(variableNames));
|
|
12
|
+
}, 1000);
|
|
13
|
+
observer.next(this.getRandomVariableValues(variableNames));
|
|
14
|
+
return () => clearInterval(timerId);
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
openVariable(variableName: string): Observable<VariableValue> {
|
|
19
|
+
return this.openVariables([variableName]).pipe(map<VariableValue[], VariableValue>(values => values[0]));
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
write(variableName: string, value: any): Observable<VariableValue> {
|
|
23
|
+
return new Observable<VariableValue>(observer => {
|
|
24
|
+
setTimeout(() => {
|
|
25
|
+
const variableValue = new VariableValue(variableName, value);
|
|
26
|
+
observer.next(variableValue);
|
|
27
|
+
}, 300);
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
writeWordByBit(variable: string, index: number, value: any): Observable<VariableValue> {
|
|
32
|
+
return new Observable<VariableValue>(observer => {
|
|
33
|
+
setTimeout(() => {
|
|
34
|
+
const variableValue = new VariableValue(variable, value);
|
|
35
|
+
observer.next(variableValue);
|
|
36
|
+
}, 300);
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
subscribeVariableState(variableName: string): Observable<VariableState> {
|
|
41
|
+
return this.subscribeVariableStates([variableName]).pipe(map<VariableValue[], VariableValue>(values => values[0]));
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
subscribeVariableStates(variableNames: Array<string>): Observable<Array<VariableState>> {
|
|
45
|
+
return new Observable<VariableValue[]>(observer => {
|
|
46
|
+
const timerId = setInterval(() => {
|
|
47
|
+
observer.next(this.getRandomVariableStates(variableNames));
|
|
48
|
+
}, 1000);
|
|
49
|
+
observer.next(this.getRandomVariableStates(variableNames));
|
|
50
|
+
return () => clearInterval(timerId);
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
private getRandomVariableValues(variables: Array<string>): VariableValue[] {
|
|
55
|
+
return _.map(variables, t => {
|
|
56
|
+
return new VariableValue(t, 9, Math.floor(Math.random() * 1000));
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
private getRandomVariableStates(variables: Array<string>): VariableState[] {
|
|
61
|
+
return _.map(variables, t => {
|
|
62
|
+
return new VariableState(t, 0);
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
dispose() {
|
|
67
|
+
}
|
|
68
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>Gui</title>
|
|
6
|
+
<base href="/">
|
|
7
|
+
|
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
|
+
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
10
|
+
</head>
|
|
11
|
+
<body>
|
|
12
|
+
<app-root>Loading...</app-root>
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|
package/demo/src/main.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { enableProdMode } from '@angular/core';
|
|
2
|
+
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
3
|
+
|
|
4
|
+
import { AppModule } from './app/app.module';
|
|
5
|
+
import { environment } from './environments/environment';
|
|
6
|
+
|
|
7
|
+
if (environment.production) {
|
|
8
|
+
enableProdMode();
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
platformBrowserDynamic().bootstrapModule(AppModule);
|