@flexem/fc-gui 3.0.0-alpha.1 → 3.0.0-alpha.100
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/CHANGELOG.md +452 -0
- package/bundles/@flexem/fc-gui.umd.js +60678 -85216
- package/bundles/@flexem/fc-gui.umd.js.map +1 -1
- package/bundles/@flexem/fc-gui.umd.min.js +5 -70
- package/bundles/@flexem/fc-gui.umd.min.js.map +1 -1
- package/communication/index.metadata.json +1 -0
- package/communication/variable/index.metadata.json +1 -0
- package/communication/variable/variable-communicator.d.ts +3 -2
- package/communication/variable/variable-communicator.metadata.json +1 -0
- package/communication/variable/variable-definition.metadata.json +1 -0
- package/communication/variable/variable-state-enum.metadata.json +1 -0
- package/communication/variable/variable-state.metadata.json +1 -0
- package/communication/variable/variable-value.metadata.json +1 -0
- package/config/alarm/alarm.store.d.ts +6 -0
- package/config/alarm/alarm.store.js +0 -0
- package/config/alarm/alarm.store.metadata.json +1 -0
- package/config/alarm/get-alarms-args.d.ts +9 -0
- package/config/alarm/get-alarms-args.js +9 -0
- package/config/alarm/get-alarms-args.metadata.json +1 -0
- package/config/alarm/index.d.ts +2 -0
- package/config/alarm/index.js +1 -0
- package/config/alarm/index.metadata.json +1 -0
- package/config/config-store.d.ts +2 -0
- package/config/config-store.metadata.json +1 -0
- package/config/graph/graph-result.metadata.json +1 -0
- package/config/graph/graph-store.metadata.json +1 -0
- package/config/graph/graph-type.metadata.json +1 -0
- package/config/graph/graph.metadata.json +1 -0
- package/config/history-data/get-history-data-args.metadata.json +1 -0
- package/config/history-data/historical-curve.time-range.metadata.json +1 -0
- package/config/history-data/history-data-value.metadata.json +1 -0
- package/config/history-data/history-data.model.metadata.json +1 -0
- package/config/history-data/history-data.store.metadata.json +1 -0
- package/config/history-data/index.metadata.json +1 -0
- package/config/image/image-store.metadata.json +1 -0
- package/config/index.d.ts +1 -0
- package/config/index.js +1 -0
- package/config/index.metadata.json +1 -0
- package/config/variable/get-variable-name-args.metadata.json +1 -0
- package/config/variable/index.metadata.json +1 -0
- package/config/variable/variable-store.metadata.json +1 -0
- package/config/view/view-store.metadata.json +1 -0
- package/config/view/view.model.metadata.json +1 -0
- package/core/index.metadata.json +1 -0
- package/core/stringifying-map.metadata.json +1 -0
- package/core/stringifying-set.metadata.json +1 -0
- package/elements/air-quality/air-quality-element.d.ts +31 -0
- package/elements/air-quality/air-quality-element.js +194 -0
- package/elements/air-quality/air-quality-element.metadata.json +1 -0
- package/elements/alarm/alarm-element.d.ts +44 -0
- package/elements/alarm/alarm-element.js +386 -0
- package/elements/alarm/alarm-element.metadata.json +1 -0
- package/elements/bar-graph-element.d.ts +8 -2
- package/elements/bar-graph-element.js +72 -6
- package/elements/bar-graph-element.metadata.json +1 -0
- package/elements/base/base-element.d.ts +2 -1
- package/elements/base/base-element.js +2 -1
- package/elements/base/base-element.metadata.json +1 -0
- package/elements/base/conditional-control-element.d.ts +1 -1
- package/elements/base/conditional-control-element.js +3 -3
- package/elements/base/conditional-control-element.metadata.json +1 -0
- package/elements/base/conditional-display-element.d.ts +1 -1
- package/elements/base/conditional-display-element.js +4 -4
- package/elements/base/conditional-display-element.metadata.json +1 -0
- package/elements/base/conditional-dynamic-display-element.d.ts +1 -1
- package/elements/base/conditional-dynamic-display-element.js +3 -3
- package/elements/base/conditional-dynamic-display-element.metadata.json +1 -0
- package/elements/base/conditional-enable-element.d.ts +1 -1
- package/elements/base/conditional-enable-element.js +4 -4
- package/elements/base/conditional-enable-element.metadata.json +1 -0
- package/elements/base/index.metadata.json +1 -0
- package/elements/base/readable-element.d.ts +7 -2
- package/elements/base/readable-element.js +33 -4
- package/elements/base/readable-element.metadata.json +1 -0
- package/elements/base/state-control-element.d.ts +1 -1
- package/elements/base/state-control-element.js +2 -2
- package/elements/base/state-control-element.metadata.json +1 -0
- package/elements/character-display/character-display-element.d.ts +2 -2
- package/elements/character-display/character-display-element.js +2 -2
- package/elements/character-display/character-display-element.metadata.json +1 -0
- package/elements/datetime-display/datetime-display-element.d.ts +1 -1
- package/elements/datetime-display/datetime-display-element.js +2 -2
- package/elements/datetime-display/datetime-display-element.metadata.json +1 -0
- package/elements/historical-curve/historical-curve-element-status.metadata.json +1 -0
- package/elements/historical-curve/historical-curve.element.d.ts +4 -1
- package/elements/historical-curve/historical-curve.element.js +202 -20
- package/elements/historical-curve/historical-curve.element.metadata.json +1 -0
- package/elements/historical-curve/historical-curve.element.option.metadata.json +1 -0
- package/elements/historical-curve/historical-curve.time-period.metadata.json +1 -0
- package/elements/main-element.d.ts +3 -2
- package/elements/main-element.js +48 -26
- package/elements/main-element.metadata.json +1 -0
- package/elements/meter-element.d.ts +8 -2
- package/elements/meter-element.js +78 -9
- package/elements/meter-element.metadata.json +1 -0
- package/elements/numerical-display/numerical-display-element.d.ts +10 -3
- package/elements/numerical-display/numerical-display-element.js +66 -13
- package/elements/numerical-display/numerical-display-element.metadata.json +1 -0
- package/elements/per-view-variable-communicator.d.ts +4 -2
- package/elements/per-view-variable-communicator.js +12 -4
- package/elements/per-view-variable-communicator.metadata.json +1 -0
- package/elements/pipe/pipe-element.d.ts +1 -1
- package/elements/pipe/pipe-element.js +2 -2
- package/elements/pipe/pipe-element.metadata.json +1 -0
- package/elements/ring-graph/ring-graph-element.d.ts +11 -2
- package/elements/ring-graph/ring-graph-element.js +108 -5
- package/elements/ring-graph/ring-graph-element.metadata.json +1 -0
- package/elements/shared/graph/graph-state-element.js +0 -3
- package/elements/shared/graph/graph-state-element.metadata.json +1 -0
- package/elements/shared/math-utils.metadata.json +1 -0
- package/elements/shared/text/text-element.js +13 -2
- package/elements/shared/text/text-element.metadata.json +1 -0
- package/elements/shared/text/text-state-element.js +1 -1
- package/elements/shared/text/text-state-element.metadata.json +1 -0
- package/elements/shared/text/text-state.model.metadata.json +1 -0
- package/elements/shared/text/text-utils.metadata.json +1 -0
- package/elements/static-elements/hyperlink-element.d.ts +1 -1
- package/elements/static-elements/hyperlink-element.js +2 -2
- package/elements/static-elements/hyperlink-element.metadata.json +1 -0
- package/elements/static-elements/image-element.d.ts +1 -1
- package/elements/static-elements/image-element.js +2 -2
- package/elements/static-elements/image-element.metadata.json +1 -0
- package/elements/static-elements/text-element.d.ts +1 -1
- package/elements/static-elements/text-element.js +2 -2
- package/elements/static-elements/text-element.metadata.json +1 -0
- package/elements/switch-indicator-light/bit-indicator-light-operator.d.ts +1 -1
- package/elements/switch-indicator-light/bit-indicator-light-operator.js +4 -4
- package/elements/switch-indicator-light/bit-indicator-light-operator.metadata.json +1 -0
- package/elements/switch-indicator-light/bit-switch-operator.d.ts +3 -1
- package/elements/switch-indicator-light/bit-switch-operator.js +22 -2
- package/elements/switch-indicator-light/bit-switch-operator.metadata.json +1 -0
- package/elements/switch-indicator-light/current-stateId-value.metadata.json +1 -0
- package/elements/switch-indicator-light/indicator-light-operator.d.ts +1 -1
- package/elements/switch-indicator-light/indicator-light-operator.metadata.json +1 -0
- package/elements/switch-indicator-light/switch-indicator-light-element.d.ts +10 -2
- package/elements/switch-indicator-light/switch-indicator-light-element.js +98 -28
- package/elements/switch-indicator-light/switch-indicator-light-element.metadata.json +1 -0
- package/elements/switch-indicator-light/switch-operator.d.ts +1 -0
- package/elements/switch-indicator-light/switch-operator.metadata.json +1 -0
- package/elements/switch-indicator-light/word-indicator-light-operator.d.ts +1 -1
- package/elements/switch-indicator-light/word-indicator-light-operator.js +5 -5
- package/elements/switch-indicator-light/word-indicator-light-operator.metadata.json +1 -0
- package/elements/switch-indicator-light/word-switch-operator.d.ts +3 -1
- package/elements/switch-indicator-light/word-switch-operator.js +9 -2
- package/elements/switch-indicator-light/word-switch-operator.metadata.json +1 -0
- package/elements/table/table-element.d.ts +1 -1
- package/elements/table/table-element.js +2 -2
- package/elements/table/table-element.metadata.json +1 -0
- package/elements/vector-graphics/ellipse-element.d.ts +1 -1
- package/elements/vector-graphics/ellipse-element.js +2 -2
- package/elements/vector-graphics/ellipse-element.metadata.json +1 -0
- package/elements/vector-graphics/poly-line-element.d.ts +1 -1
- package/elements/vector-graphics/poly-line-element.js +2 -2
- package/elements/vector-graphics/poly-line-element.metadata.json +1 -0
- package/elements/vector-graphics/polygon-element.d.ts +1 -1
- package/elements/vector-graphics/polygon-element.js +2 -2
- package/elements/vector-graphics/polygon-element.metadata.json +1 -0
- package/elements/vector-graphics/rectangle-element.d.ts +1 -1
- package/elements/vector-graphics/rectangle-element.js +2 -2
- package/elements/vector-graphics/rectangle-element.metadata.json +1 -0
- package/elements/vector-graphics/sector-element.d.ts +1 -1
- package/elements/vector-graphics/sector-element.js +2 -2
- package/elements/vector-graphics/sector-element.metadata.json +1 -0
- package/elements/vector-graphics/straight-line-element.d.ts +1 -1
- package/elements/vector-graphics/straight-line-element.js +2 -2
- package/elements/vector-graphics/straight-line-element.metadata.json +1 -0
- package/elements/video/video-element.d.ts +5 -1
- package/elements/video/video-element.js +76 -22
- package/elements/video/video-element.metadata.json +1 -0
- package/elements/view-operation/view-operation.element.d.ts +2 -2
- package/elements/view-operation/view-operation.element.js +10 -2
- package/elements/view-operation/view-operation.element.metadata.json +1 -0
- package/elements/weather/weater-element.d.ts +1 -1
- package/elements/weather/weater-element.js +2 -3
- package/elements/weather/weater-element.metadata.json +1 -0
- package/gui/gui-context.d.ts +2 -1
- package/gui/gui-context.metadata.json +1 -0
- package/gui/gui-host.d.ts +2 -2
- package/gui/gui-host.js +1 -1
- package/gui/gui-host.metadata.json +1 -0
- package/gui/gui-view.d.ts +2 -1
- package/gui/gui-view.js +3 -2
- package/gui/gui-view.metadata.json +1 -0
- package/gui/gui.component.d.ts +4 -4
- package/gui/gui.component.js +64 -35
- package/gui/gui.component.metadata.json +1 -0
- package/gui/interfaces/gui-options.metadata.json +1 -0
- package/gui.module.d.ts +0 -14
- package/gui.module.js +52 -73
- package/gui.module.metadata.json +1 -0
- package/localization/index.metadata.json +1 -0
- package/localization/localization.service.d.ts +7 -0
- package/localization/localization.service.js +8 -1
- package/localization/localization.service.metadata.json +1 -0
- package/localization/localization.service.zh_CN.js +8 -1
- package/localization/localization.service.zh_CN.metadata.json +1 -0
- package/logger/console-logger.service.metadata.json +1 -0
- package/logger/index.metadata.json +1 -0
- package/logger/logger.service.metadata.json +1 -0
- package/modal/alert/alert-modal.component.d.ts +0 -3
- package/modal/alert/alert-modal.component.js +24 -36
- package/modal/alert/alert-modal.component.metadata.json +1 -0
- package/modal/confirm-operation/confirm-operation-modal.component.d.ts +0 -3
- package/modal/confirm-operation/confirm-operation-modal.component.js +24 -46
- package/modal/confirm-operation/confirm-operation-modal.component.metadata.json +1 -0
- package/modal/verify-password/verify-password-modal.component.d.ts +0 -3
- package/modal/verify-password/verify-password-modal.component.js +24 -73
- package/modal/verify-password/verify-password-modal.component.metadata.json +1 -0
- package/modal/write-character/write-character-modal-args.metadata.json +1 -0
- package/modal/write-character/write-character-modal.component.d.ts +0 -3
- package/modal/write-character/write-character-modal.component.js +29 -89
- package/modal/write-character/write-character-modal.component.metadata.json +1 -0
- package/modal/write-value/write-value-modal-args.d.ts +5 -1
- package/modal/write-value/write-value-modal-args.js +4 -1
- package/modal/write-value/write-value-modal-args.metadata.json +1 -0
- package/modal/write-value/write-value-modal.component.d.ts +10 -10
- package/modal/write-value/write-value-modal.component.html +9 -4
- package/modal/write-value/write-value-modal.component.js +93 -113
- package/modal/write-value/write-value-modal.component.metadata.json +1 -0
- package/modal/write-value/write-value-model-result.metadata.json +1 -0
- package/model/air-quality/air-quality-info.d.ts +23 -0
- package/model/air-quality/air-quality-info.js +4 -0
- package/model/air-quality/air-quality-info.metadata.json +1 -0
- package/model/air-quality/air-quality.model.d.ts +7 -0
- package/model/air-quality/air-quality.model.js +0 -0
- package/model/air-quality/air-quality.model.metadata.json +1 -0
- package/model/alarm/alarm.model.d.ts +13 -0
- package/model/alarm/alarm.model.js +0 -0
- package/model/alarm/alarm.model.metadata.json +1 -0
- package/model/bar-graph/FontStyleData.metadata.json +1 -0
- package/model/bar-graph/bar-graph-direction.metadata.json +1 -0
- package/model/bar-graph/bar-graph.d.ts +4 -0
- package/model/bar-graph/bar-graph.metadata.json +1 -0
- package/model/base/base-element-model.metadata.json +1 -0
- package/model/base/conditional-control-model.metadata.json +1 -0
- package/model/base/conditional-display-model.metadata.json +1 -0
- package/model/base/conditional-dynamic-display-model.metadata.json +1 -0
- package/model/base/conditional-enable-model.metadata.json +1 -0
- package/model/base/font-setting-model.metadata.json +1 -0
- package/model/base/index.metadata.json +1 -0
- package/model/base/readable-model.d.ts +4 -0
- package/model/base/readable-model.metadata.json +1 -0
- package/model/base/security-model.metadata.json +1 -0
- package/model/character-display/character-display.metadata.json +1 -0
- package/model/datetime-display/date-format-type.metadata.json +1 -0
- package/model/datetime-display/datetime-display-settings.metadata.json +1 -0
- package/model/datetime-display/datetime-display.metadata.json +1 -0
- package/model/datetime-display/datetime-separator-type.metadata.json +1 -0
- package/model/datetime-display/time-format-type.metadata.json +1 -0
- package/model/historical-curve/curve-type.metadata.json +1 -0
- package/model/historical-curve/historical-curve-axis-settings.d.ts +10 -0
- package/model/historical-curve/historical-curve-axis-settings.js +5 -0
- package/model/historical-curve/historical-curve-axis-settings.metadata.json +1 -0
- package/model/historical-curve/historical-curve-chanel.model.d.ts +8 -0
- package/model/historical-curve/historical-curve-chanel.model.metadata.json +1 -0
- package/model/historical-curve/historical-curve.data-settings.metadata.json +1 -0
- package/model/historical-curve/historical-curve.display-settings.metadata.json +1 -0
- package/model/historical-curve/historical-curve.model.metadata.json +1 -0
- package/model/historical-curve/index.metadata.json +1 -0
- package/model/hyperlink/hyperlink.model.metadata.json +1 -0
- package/model/image/image-fill-type.metadata.json +1 -0
- package/model/image/image.metadata.json +1 -0
- package/model/index.metadata.json +1 -0
- package/model/meter/meter.d.ts +4 -0
- package/model/meter/meter.metadata.json +1 -0
- package/model/numerical-display/index.metadata.json +1 -0
- package/model/numerical-display/numerical-display.d.ts +2 -0
- package/model/numerical-display/numerical-display.metadata.json +1 -0
- package/model/numerical-display/numerical-operation-settings.metadata.json +1 -0
- package/model/numerical-display/numerical-operation-type.metadata.json +1 -0
- package/model/numerical-display/numerical-operation.metadata.json +1 -0
- package/model/numerical-display/proportional-conversion.metadata.json +1 -0
- package/model/numerical-display/type-settings.metadata.json +1 -0
- package/model/numerical-display/zoom.metadata.json +1 -0
- package/model/pipe/flow-direction-type.metadata.json +1 -0
- package/model/pipe/index.metadata.json +1 -0
- package/model/pipe/pipe.metadata.json +1 -0
- package/model/poly-line/poly-line-model.metadata.json +1 -0
- package/model/polygon/polygon-model.metadata.json +1 -0
- package/model/ring-graph/ring-graph.model.d.ts +8 -0
- package/model/ring-graph/ring-graph.model.metadata.json +1 -0
- package/model/settings/background/view-background-fill-type.metadata.json +1 -0
- package/model/settings/background/view-background.model.metadata.json +1 -0
- package/model/settings/index.metadata.json +1 -0
- package/model/settings/popup/view-popup-backdrop-type.metadata.json +1 -0
- package/model/settings/popup/view-popup-location-type.metadata.json +1 -0
- package/model/settings/popup/view-popup-setting.model.metadata.json +1 -0
- package/model/settings/view-settings.model.metadata.json +1 -0
- package/model/shared/alarm/alarm-range.model.metadata.json +1 -0
- package/model/shared/arc.model.metadata.json +1 -0
- package/model/shared/binary.metadata.json +1 -0
- package/model/shared/condition/bit-condition-item-observer.d.ts +1 -1
- package/model/shared/condition/bit-condition-item-observer.js +4 -4
- package/model/shared/condition/bit-condition-item-observer.metadata.json +1 -0
- package/model/shared/condition/bit-condition-logic.metadata.json +1 -0
- package/model/shared/condition/bit-condition-model.metadata.json +1 -0
- package/model/shared/condition/bit-condition.metadata.json +1 -0
- package/model/shared/condition/condition-control-result-value.metadata.json +1 -0
- package/model/shared/condition/condition-helper.metadata.json +1 -0
- package/model/shared/condition/condition-item-model.metadata.json +1 -0
- package/model/shared/condition/condition-item-observer.metadata.json +1 -0
- package/model/shared/condition/condition-items-observer.metadata.json +1 -0
- package/model/shared/condition/condition-items-result-observer.d.ts +1 -1
- package/model/shared/condition/condition-items-result-observer.js +22 -12
- package/model/shared/condition/condition-items-result-observer.metadata.json +1 -0
- package/model/shared/condition/condition-model.metadata.json +1 -0
- package/model/shared/condition/condition-type.metadata.json +1 -0
- package/model/shared/condition/convert-condition-model.d.ts +5 -0
- package/model/shared/condition/convert-condition-model.js +0 -0
- package/model/shared/condition/convert-condition-model.metadata.json +1 -0
- package/model/shared/condition/index.metadata.json +1 -0
- package/model/shared/condition/relation-condition-result-state.metadata.json +1 -0
- package/model/shared/condition/relation-condition-result.d.ts +2 -1
- package/model/shared/condition/relation-condition-result.js +2 -1
- package/model/shared/condition/relation-condition-result.metadata.json +1 -0
- package/model/shared/condition/relation-type.metadata.json +1 -0
- package/model/shared/condition/relational-operator.metadata.json +1 -0
- package/model/shared/condition/variable-value-logic-model.metadata.json +1 -0
- package/model/shared/condition/variable-value-type.metadata.json +1 -0
- package/model/shared/condition/word-condition-item-observer.d.ts +1 -1
- package/model/shared/condition/word-condition-item-observer.js +11 -11
- package/model/shared/condition/word-condition-item-observer.metadata.json +1 -0
- package/model/shared/condition/word-condition-model.metadata.json +1 -0
- package/model/shared/condition/word-condition.metadata.json +1 -0
- package/model/shared/data-type/display-data-type.metadata.json +1 -0
- package/model/shared/data-type/fbox-data-type.metadata.json +1 -0
- package/model/shared/data-type/fcloud-data-Type.metadata.json +1 -0
- package/model/shared/dynamic-display/dynamic-behavior-type.metadata.json +1 -0
- package/model/shared/dynamic-display/dynamic-display-behavior-model.metadata.json +1 -0
- package/model/shared/dynamic-display/dynamic-display-model.metadata.json +1 -0
- package/model/shared/dynamic-display/dynamic-display-result-model.metadata.json +1 -0
- package/model/shared/dynamic-display/dynamic-display.d.ts +1 -1
- package/model/shared/dynamic-display/dynamic-display.js +4 -4
- package/model/shared/dynamic-display/dynamic-display.metadata.json +1 -0
- package/model/shared/graph/custom-style.metadata.json +1 -0
- package/model/shared/graph/graph-setting.metadata.json +1 -0
- package/model/shared/index.metadata.json +1 -0
- package/model/shared/point.model.metadata.json +1 -0
- package/model/shared/rotation/rotation-behavior-model.metadata.json +1 -0
- package/model/shared/rotation/rotation-behavior.d.ts +1 -1
- package/model/shared/rotation/rotation-behavior.js +2 -2
- package/model/shared/rotation/rotation-behavior.metadata.json +1 -0
- package/model/shared/rotation/rotation-direction-type.metadata.json +1 -0
- package/model/shared/rotation/rotation-model.metadata.json +1 -0
- package/model/shared/rotation/rotation-observer-model.metadata.json +1 -0
- package/model/shared/rotation/rotation-observer.d.ts +2 -1
- package/model/shared/rotation/rotation-observer.js +3 -2
- package/model/shared/rotation/rotation-observer.metadata.json +1 -0
- package/model/shared/scale/scale-mark.model.metadata.json +1 -0
- package/model/shared/scale/scale-model.metadata.json +1 -0
- package/model/shared/size.model.metadata.json +1 -0
- package/model/shared/state/index.metadata.json +1 -0
- package/model/shared/state/state.metadata.json +1 -0
- package/model/shared/text/font.metadata.json +1 -0
- package/model/shared/text/index.metadata.json +1 -0
- package/model/shared/text/text.metadata.json +1 -0
- package/model/shared/translation/translation-behavior-model.metadata.json +1 -0
- package/model/shared/translation/translation-behavior.d.ts +1 -1
- package/model/shared/translation/translation-behavior.js +3 -3
- package/model/shared/translation/translation-behavior.metadata.json +1 -0
- package/model/shared/translation/translation-direction-type.metadata.json +1 -0
- package/model/shared/translation/translation-model.metadata.json +1 -0
- package/model/shared/translation/translation-observer-model.metadata.json +1 -0
- package/model/shared/translation/translation-observer.d.ts +1 -1
- package/model/shared/translation/translation-observer.js +2 -2
- package/model/shared/translation/translation-observer.metadata.json +1 -0
- package/model/shared/variable/variable-identifier.model.metadata.json +1 -0
- package/model/shared/variable/variable-name.model.metadata.json +1 -0
- package/model/straight-line/straight-line-model.metadata.json +1 -0
- package/model/switch-indicator-light/bit-indicator-light-settings.metadata.json +1 -0
- package/model/switch-indicator-light/bit-switch-operation.d.ts +2 -1
- package/model/switch-indicator-light/bit-switch-operation.js +1 -0
- package/model/switch-indicator-light/bit-switch-operation.metadata.json +1 -0
- package/model/switch-indicator-light/bit-switch-settings.metadata.json +1 -0
- package/model/switch-indicator-light/fault-flicker.metadata.json +1 -0
- package/model/switch-indicator-light/flicker.metadata.json +1 -0
- package/model/switch-indicator-light/index.metadata.json +1 -0
- package/model/switch-indicator-light/indicator-light-fault-flicker.metadata.json +1 -0
- package/model/switch-indicator-light/indicator-light-settings.metadata.json +1 -0
- package/model/switch-indicator-light/indicator-light-type.metadata.json +1 -0
- package/model/switch-indicator-light/switch-indicator-light.metadata.json +1 -0
- package/model/switch-indicator-light/switch-indicator-state.metadata.json +1 -0
- package/model/switch-indicator-light/switch-settings.metadata.json +1 -0
- package/model/switch-indicator-light/switch-type.metadata.json +1 -0
- package/model/switch-indicator-light/word-indicator-light-settings.metadata.json +1 -0
- package/model/switch-indicator-light/word-switch-operation.metadata.json +1 -0
- package/model/switch-indicator-light/word-switch-settings.metadata.json +1 -0
- package/model/table/table-model.metadata.json +1 -0
- package/model/text/text.model.metadata.json +1 -0
- package/model/video/video.model.metadata.json +1 -0
- package/model/view-operation/index.metadata.json +1 -0
- package/model/view-operation/view-operation-element.model.metadata.json +1 -0
- package/model/view-operation/view-operation-type.metadata.json +1 -0
- package/model/weather/weather-info.metadata.json +1 -0
- package/model/weather/weather.model.metadata.json +1 -0
- package/package.json +1 -1
- package/public_api.metadata.json +1 -0
- package/remote/communication/variable/remote-variable-communicator.d.ts +7 -2
- package/remote/communication/variable/remote-variable-communicator.js +38 -9
- package/remote/communication/variable/remote-variable-communicator.metadata.json +1 -0
- package/remote/communication/variable/remote-variable-protocol.d.ts +5 -2
- package/remote/communication/variable/remote-variable-protocol.metadata.json +1 -0
- package/remote/config/graph/get-released-graph-state-result.metadata.json +1 -0
- package/remote/config/graph/get-released-graph-states.metadata.json +1 -0
- package/remote/config/graph/graph-state-key.metadata.json +1 -0
- package/remote/config/graph/graph-state-result.metadata.json +1 -0
- package/remote/config/graph/graph-state.metadata.json +1 -0
- package/remote/config/graph/remote-graph-protocol.metadata.json +1 -0
- package/remote/config/graph/remote-graph-store.metadata.json +1 -0
- package/remote/config/image/remote-image-protocol.metadata.json +1 -0
- package/remote/config/image/remote-image-store.metadata.json +1 -0
- package/remote/config/view/remote-view-protocol.metadata.json +1 -0
- package/remote/config/view/remote-view-store.metadata.json +1 -0
- package/remote/config/view/view-result.metadata.json +1 -0
- package/remote/index.metadata.json +1 -0
- package/security/index.metadata.json +1 -0
- package/security/security-checker.metadata.json +1 -0
- package/service/index.d.ts +1 -0
- package/service/index.metadata.json +1 -0
- package/service/operation-record/create-operation-record-args.metadata.json +1 -0
- package/service/operation-record/index.metadata.json +1 -0
- package/service/operation-record/operation-record.service.metadata.json +1 -0
- package/service/operation-record/variable-option.model.metadata.json +1 -0
- package/service/permission-checker.metadata.json +1 -0
- package/service/released-variable/index.d.ts +1 -0
- package/service/released-variable/index.js +0 -0
- package/service/released-variable/index.metadata.json +1 -0
- package/service/released-variable/released-variable.service.d.ts +4 -0
- package/service/released-variable/released-variable.service.js +0 -0
- package/service/released-variable/released-variable.service.metadata.json +1 -0
- package/service/video/index.metadata.json +1 -0
- package/service/video/video-url.metadata.json +1 -0
- package/service/video/video.service.metadata.json +1 -0
- package/service/weather.service.d.ts +1 -0
- package/service/weather.service.metadata.json +1 -0
- package/settings/display-mode.metadata.json +1 -0
- package/settings/global-settings.d.ts +0 -3
- package/settings/global-settings.js +12 -8
- package/settings/global-settings.metadata.json +1 -0
- package/settings/index.metadata.json +1 -0
- package/settings/view-resize-mode.metadata.json +1 -0
- package/shared/config-is-empty-error.metadata.json +1 -0
- package/shared/disposable.metadata.json +1 -0
- package/shared/graph-extended-style.metadata.json +1 -0
- package/shared/gui-consts.d.ts +2 -0
- package/shared/gui-consts.js +2 -0
- package/shared/gui-consts.metadata.json +1 -0
- package/shared/index.metadata.json +1 -0
- package/shared/operation-helper.metadata.json +1 -0
- package/utils/access-permission.metadata.json +1 -0
- package/utils/access-permission.service.d.ts +0 -3
- package/utils/access-permission.service.js +12 -8
- package/utils/access-permission.service.metadata.json +1 -0
- package/utils/auto-focus.directive.d.ts +0 -3
- package/utils/auto-focus.directive.js +18 -11
- package/utils/auto-focus.directive.metadata.json +1 -0
- package/utils/bs-modal-drag.directive.d.ts +0 -3
- package/utils/bs-modal-drag.directive.js +18 -11
- package/utils/bs-modal-drag.directive.metadata.json +1 -0
- package/utils/data-type/data-type.service.d.ts +4 -10
- package/utils/data-type/data-type.service.js +46 -27
- package/utils/data-type/data-type.service.metadata.json +1 -0
- package/utils/data-type/fbox-data-type.service.d.ts +0 -3
- package/utils/data-type/fbox-data-type.service.js +60 -11
- package/utils/data-type/fbox-data-type.service.metadata.json +1 -0
- package/utils/data-type/fcloud-data-type.service.d.ts +0 -3
- package/utils/data-type/fcloud-data-type.service.js +20 -11
- package/utils/data-type/fcloud-data-type.service.metadata.json +1 -0
- package/utils/fraction-digit.service.d.ts +0 -3
- package/utils/fraction-digit.service.js +12 -8
- package/utils/fraction-digit.service.metadata.json +1 -0
- package/utils/graph-util.metadata.json +1 -0
- package/utils/guid.metadata.json +1 -0
- package/utils/index.metadata.json +1 -0
- package/utils/numerical-operation-type.metadata.json +1 -0
- package/utils/numerical-operation.service.d.ts +0 -3
- package/utils/numerical-operation.service.js +18 -11
- package/utils/numerical-operation.service.metadata.json +1 -0
- package/utils/variable-util.metadata.json +1 -0
- package/view/popup-view.service.metadata.json +1 -0
- package/view/view.service.d.ts +0 -3
- package/view/view.service.js +16 -8
- package/view/view.service.metadata.json +1 -0
- package/gui/scripts/config.js +0 -6
- package/gui/scripts/require.js +0 -2145
- package/libs/nvd3/build/nv.d3.min.js +0 -13
|
@@ -1,38 +1,31 @@
|
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
8
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
|
+
};
|
|
10
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
11
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
|
12
|
+
};
|
|
1
13
|
import { Component, Inject, Output } from '@angular/core';
|
|
2
|
-
import { Subject } from 'rxjs';
|
|
3
14
|
import { LOCALIZATION } from '../../localization';
|
|
4
15
|
import { DataTypeService } from '../../utils/data-type/data-type.service';
|
|
5
16
|
import { FractionDigitService } from '../../utils/fraction-digit.service';
|
|
6
17
|
import { NumericalOperationService } from '../../utils/numerical-operation.service';
|
|
7
18
|
import { isNil } from 'lodash';
|
|
8
|
-
import
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import * as i3 from "../../utils/numerical-operation.service";
|
|
12
|
-
import * as i4 from "@angular/forms";
|
|
13
|
-
import * as i5 from "../../utils/bs-modal-drag.directive";
|
|
14
|
-
import * as i6 from "@angular/common";
|
|
15
|
-
import * as i7 from "../../utils/auto-focus.directive";
|
|
16
|
-
function WriteValueModalComponent_span_14_Template(rf, ctx) { if (rf & 1) {
|
|
17
|
-
i0.ɵɵelementStart(0, "span");
|
|
18
|
-
i0.ɵɵtext(1);
|
|
19
|
-
i0.ɵɵelementEnd();
|
|
20
|
-
} if (rf & 2) {
|
|
21
|
-
const ctx_r1 = i0.ɵɵnextContext();
|
|
22
|
-
i0.ɵɵadvance(1);
|
|
23
|
-
i0.ɵɵtextInterpolate1("(", ctx_r1.valueType, ")");
|
|
24
|
-
} }
|
|
25
|
-
export class WriteValueModalComponent {
|
|
26
|
-
constructor(localization, dataTypeService, fractionDigitService, numericalOperationService) {
|
|
19
|
+
import { BsModalRef } from 'ngx-bootstrap/modal';
|
|
20
|
+
let WriteValueModalComponent = class WriteValueModalComponent {
|
|
21
|
+
constructor(localization, dataTypeService, fractionDigitService, numericalOperationService, bsModalRef) {
|
|
27
22
|
this.localization = localization;
|
|
28
23
|
this.dataTypeService = dataTypeService;
|
|
29
24
|
this.fractionDigitService = fractionDigitService;
|
|
30
25
|
this.numericalOperationService = numericalOperationService;
|
|
31
|
-
this.
|
|
26
|
+
this.bsModalRef = bsModalRef;
|
|
32
27
|
this.writeValueRangeText = '';
|
|
33
|
-
|
|
34
|
-
get onClosed() {
|
|
35
|
-
return this._onClosed;
|
|
28
|
+
this.isSubmitting = false;
|
|
36
29
|
}
|
|
37
30
|
get invalidErrorText() {
|
|
38
31
|
return this.localization.loadFailed;
|
|
@@ -44,6 +37,7 @@ export class WriteValueModalComponent {
|
|
|
44
37
|
initData(option) {
|
|
45
38
|
this.variableName = option.variableName;
|
|
46
39
|
this.dataType = option.dataType;
|
|
40
|
+
this.fBoxDataType = option.fBoxDataType;
|
|
47
41
|
this.integerDigits = option.integerDigits ? option.integerDigits : 0;
|
|
48
42
|
this.fractionDigits = option.fractionDigits ? option.fractionDigits : 0;
|
|
49
43
|
this.valueType = this.dataTypeService.getValueType(option.version, option.dataType);
|
|
@@ -52,15 +46,25 @@ export class WriteValueModalComponent {
|
|
|
52
46
|
this.enableNumericalOperation = this.numericalOperation.enableNumericalOperation ?
|
|
53
47
|
this.numericalOperation.enableNumericalOperation : false;
|
|
54
48
|
this.value = '';
|
|
49
|
+
if (this.args.enableDataParsed) {
|
|
50
|
+
this.setValueRangeAccordToDataParsed(option);
|
|
51
|
+
}
|
|
52
|
+
else {
|
|
53
|
+
this.writeMaxValue = this.dataTypeService.getMaxValue(option.version, this.dataType, this.fBoxDataType);
|
|
54
|
+
this.writeMinValue = this.dataTypeService.getMinValue(option.version, this.dataType, this.fBoxDataType);
|
|
55
|
+
}
|
|
56
|
+
this.writeValueRangeText = this.getWriteValueRangeText();
|
|
57
|
+
}
|
|
58
|
+
setValueRangeAccordToDataParsed(option) {
|
|
55
59
|
if (this.dataTypeService.isFloat(option.version, this.dataType) || this.enableNumericalOperation) {
|
|
56
|
-
this.maxValueLimit = this.dataTypeService.getMaxValue(option.version, this.dataType);
|
|
57
|
-
this.minValueLimit = this.dataTypeService.getMinValue(option.version, this.dataType);
|
|
60
|
+
this.maxValueLimit = this.dataTypeService.getMaxValue(option.version, this.dataType, this.fBoxDataType);
|
|
61
|
+
this.minValueLimit = this.dataTypeService.getMinValue(option.version, this.dataType, this.fBoxDataType);
|
|
58
62
|
this.numericalLowerLimit = this.numericalOperation.numericalLowerLimit;
|
|
59
63
|
this.numericalUpperLimit = this.numericalOperation.numericalUpperLimit;
|
|
60
64
|
}
|
|
61
65
|
else {
|
|
62
|
-
this.maxValueLimit = +this.fractionDigitService.movePoint(this.dataTypeService.getMaxValue(option.version, this.dataType), -this.fractionDigits);
|
|
63
|
-
this.minValueLimit = +this.fractionDigitService.movePoint(this.dataTypeService.getMinValue(option.version, this.dataType), -this.fractionDigits);
|
|
66
|
+
this.maxValueLimit = +this.fractionDigitService.movePoint(this.dataTypeService.getMaxValue(option.version, this.dataType, this.fBoxDataType), -this.fractionDigits);
|
|
67
|
+
this.minValueLimit = +this.fractionDigitService.movePoint(this.dataTypeService.getMinValue(option.version, this.dataType, this.fBoxDataType), -this.fractionDigits);
|
|
64
68
|
this.numericalLowerLimit = +this.fractionDigitService.movePoint(this.numericalOperation.numericalLowerLimit, -this.fractionDigits);
|
|
65
69
|
this.numericalUpperLimit = +this.fractionDigitService.movePoint(this.numericalOperation.numericalUpperLimit, -this.fractionDigits);
|
|
66
70
|
}
|
|
@@ -74,7 +78,6 @@ export class WriteValueModalComponent {
|
|
|
74
78
|
const realUpperLimitValue = lowerLimitValue < upperLimitValue ? upperLimitValue : lowerLimitValue;
|
|
75
79
|
this.writeMinValue = realMinValue > realLowerLimitValue ? realMinValue : realLowerLimitValue;
|
|
76
80
|
this.writeMaxValue = realMaxValue < realUpperLimitValue ? realMaxValue : realUpperLimitValue;
|
|
77
|
-
this.writeValueRangeText = this.getWriteValueRangeText();
|
|
78
81
|
}
|
|
79
82
|
getWriteValueRangeText() {
|
|
80
83
|
let minValue = '';
|
|
@@ -84,7 +87,7 @@ export class WriteValueModalComponent {
|
|
|
84
87
|
maxValue = this.writeMaxValue.toString(16);
|
|
85
88
|
}
|
|
86
89
|
else {
|
|
87
|
-
if (this.fractionDigits > 0) {
|
|
90
|
+
if (this.args.enableDataParsed && this.fractionDigits > 0) {
|
|
88
91
|
minValue = this.writeMinValue.toFixed(this.fractionDigits).toString();
|
|
89
92
|
maxValue = this.writeMaxValue.toFixed(this.fractionDigits).toString();
|
|
90
93
|
}
|
|
@@ -96,19 +99,49 @@ export class WriteValueModalComponent {
|
|
|
96
99
|
return minValue + '~' + maxValue;
|
|
97
100
|
}
|
|
98
101
|
save() {
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
102
|
+
this.isSubmitting = true;
|
|
103
|
+
let value = this.value;
|
|
104
|
+
const showValue = this.value;
|
|
105
|
+
if (this.args.enableDataParsed) {
|
|
106
|
+
if (this.enableNumericalOperation) {
|
|
107
|
+
value = this.numericalOperationService.getWriteValue(this.args.version, this.value, this.numericalOperation, this.dataType, this.fractionDigits);
|
|
108
|
+
}
|
|
109
|
+
else {
|
|
110
|
+
value = this.formatWriteValue();
|
|
111
|
+
}
|
|
104
112
|
}
|
|
105
|
-
|
|
113
|
+
if (!this.args.releasedVariableService) {
|
|
114
|
+
this.onClosed({
|
|
115
|
+
value: value,
|
|
116
|
+
showValue: showValue,
|
|
117
|
+
enableNumericalOperation: false,
|
|
118
|
+
isNumericalOperation: this.isNumericalOperation,
|
|
119
|
+
variableRwType: 6
|
|
120
|
+
});
|
|
121
|
+
return;
|
|
122
|
+
}
|
|
123
|
+
this.args.releasedVariableService.getVariableWithValueTransform(this.variableName).subscribe(result => {
|
|
124
|
+
const valueTransform = JSON.parse(result.valueTransform);
|
|
125
|
+
if ((valueTransform === null || valueTransform === void 0 ? void 0 : valueTransform.Type) !== 0) {
|
|
126
|
+
this.isNumericalOperation = true;
|
|
127
|
+
}
|
|
128
|
+
this.onClosed({
|
|
129
|
+
value: value,
|
|
130
|
+
showValue: showValue,
|
|
131
|
+
enableNumericalOperation: this.enableNumericalOperation,
|
|
132
|
+
isNumericalOperation: this.isNumericalOperation,
|
|
133
|
+
variableRwType: result.variableRwType
|
|
134
|
+
});
|
|
135
|
+
});
|
|
106
136
|
}
|
|
107
|
-
close(
|
|
108
|
-
this.
|
|
109
|
-
this._onClosed.complete();
|
|
137
|
+
close() {
|
|
138
|
+
this.bsModalRef.hide();
|
|
110
139
|
}
|
|
111
|
-
validate() {
|
|
140
|
+
validate(event = null) {
|
|
141
|
+
if (event && event.keyCode === 13 && !this.validationError) {
|
|
142
|
+
this.save();
|
|
143
|
+
return;
|
|
144
|
+
}
|
|
112
145
|
// 校验数值必填
|
|
113
146
|
if (null == this.value || '' === this.value.trim()) {
|
|
114
147
|
return this.showValidationErrorInfo(this.localization.numericalValueRequired);
|
|
@@ -130,7 +163,7 @@ export class WriteValueModalComponent {
|
|
|
130
163
|
}
|
|
131
164
|
if (this.dataTypeService.isBinaryType(this.args.version, this.dataType) || this.dataTypeService.isHexType(this.args.version, this.dataType)) {
|
|
132
165
|
// 校验数值最大长度
|
|
133
|
-
const valueMaxLength = this.dataTypeService.getValueMaxLength(this.args.version, this.dataType);
|
|
166
|
+
const valueMaxLength = this.dataTypeService.getValueMaxLength(this.args.version, this.dataType, this.fBoxDataType);
|
|
134
167
|
const maxLength = this.integerDigits ? Math.min(this.integerDigits, valueMaxLength) : valueMaxLength;
|
|
135
168
|
if (this.value.length > maxLength) {
|
|
136
169
|
return this.showValidationErrorInfo(this.localization.numericalValueTooLong);
|
|
@@ -177,75 +210,22 @@ export class WriteValueModalComponent {
|
|
|
177
210
|
}
|
|
178
211
|
return this.value;
|
|
179
212
|
}
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
i0.ɵɵelementEnd();
|
|
200
|
-
i0.ɵɵelementEnd();
|
|
201
|
-
i0.ɵɵelementStart(11, "div", 6);
|
|
202
|
-
i0.ɵɵelementStart(12, "span", 7);
|
|
203
|
-
i0.ɵɵtext(13);
|
|
204
|
-
i0.ɵɵtemplate(14, WriteValueModalComponent_span_14_Template, 2, 1, "span", 8);
|
|
205
|
-
i0.ɵɵelementEnd();
|
|
206
|
-
i0.ɵɵelementStart(15, "input", 9);
|
|
207
|
-
i0.ɵɵlistener("ngModelChange", function WriteValueModalComponent_Template_input_ngModelChange_15_listener($event) { return ctx.value = $event; })("keyup", function WriteValueModalComponent_Template_input_keyup_15_listener() { return ctx.validate(); });
|
|
208
|
-
i0.ɵɵelementEnd();
|
|
209
|
-
i0.ɵɵelementStart(16, "span", 10);
|
|
210
|
-
i0.ɵɵtext(17);
|
|
211
|
-
i0.ɵɵelementEnd();
|
|
212
|
-
i0.ɵɵelementEnd();
|
|
213
|
-
i0.ɵɵelementStart(18, "div", 11);
|
|
214
|
-
i0.ɵɵelementStart(19, "button", 12);
|
|
215
|
-
i0.ɵɵtext(20);
|
|
216
|
-
i0.ɵɵelementEnd();
|
|
217
|
-
i0.ɵɵelementEnd();
|
|
218
|
-
i0.ɵɵelementEnd();
|
|
219
|
-
} if (rf & 2) {
|
|
220
|
-
i0.ɵɵadvance(5);
|
|
221
|
-
i0.ɵɵtextInterpolate(ctx.localization.setting);
|
|
222
|
-
i0.ɵɵadvance(2);
|
|
223
|
-
i0.ɵɵtextInterpolate(ctx.variableName);
|
|
224
|
-
i0.ɵɵadvance(6);
|
|
225
|
-
i0.ɵɵtextInterpolate2("", ctx.localization.writeValueRange, "\uFF1A\u00A0", ctx.writeValueRangeText, " ");
|
|
226
|
-
i0.ɵɵadvance(1);
|
|
227
|
-
i0.ɵɵproperty("ngIf", ctx.valueType);
|
|
228
|
-
i0.ɵɵadvance(1);
|
|
229
|
-
i0.ɵɵproperty("ngModel", ctx.value);
|
|
230
|
-
i0.ɵɵadvance(1);
|
|
231
|
-
i0.ɵɵproperty("hidden", !ctx.validationError);
|
|
232
|
-
i0.ɵɵadvance(1);
|
|
233
|
-
i0.ɵɵtextInterpolate(ctx.validationErrorText);
|
|
234
|
-
i0.ɵɵadvance(2);
|
|
235
|
-
i0.ɵɵproperty("disabled", ctx.validationError);
|
|
236
|
-
i0.ɵɵadvance(1);
|
|
237
|
-
i0.ɵɵtextInterpolate(ctx.localization.submit);
|
|
238
|
-
} }, directives: [i4.ɵangular_packages_forms_forms_y, i4.NgControlStatusGroup, i4.NgForm, i5.BsModalDragDirective, i6.NgIf, i4.DefaultValueAccessor, i7.AutoFocusDirective, i4.NgControlStatus, i4.NgModel], styles: [".modal-header[_ngcontent-%COMP%] { padding: 10px; border-color: transparent; } .modal-body[_ngcontent-%COMP%] { position: relative; padding: 0px 5px !important; padding-top: 10px !important; } .modal-title[_ngcontent-%COMP%] { display: unset; margin-left: -6px; font-size: 16px !important; } .form-control[_ngcontent-%COMP%] { margin: 0 5%; float: none; width: 90%; } .modal-footer[_ngcontent-%COMP%] { padding: 10px 4px 20px 5px !important; text-align: right; border-color: transparent; } .text-danger[_ngcontent-%COMP%] { display: block; color: #ed6b75; font-size: 14px; margin: 5px 0px 0px 15px; } .btn-primary[_ngcontent-%COMP%] { background-color: #3B97FC; border-color: #3B97FC; padding: 5px 30px; width: 90%; margin: 0 5%; height: 32px; } .write-value-range[_ngcontent-%COMP%] { color: #7f939e; font-size: 14px; margin-left: 15px; } .write-value[_ngcontent-%COMP%] { padding-left: 8px; margin-left: 16px; height: 32px; }"] });
|
|
239
|
-
/*@__PURE__*/ (function () { i0.ɵsetClassMetadata(WriteValueModalComponent, [{
|
|
240
|
-
type: Component,
|
|
241
|
-
args: [{
|
|
242
|
-
selector: 'writeValueModal',
|
|
243
|
-
template: "<form #writeValueForm=\"ngForm\" novalidate (ngSubmit)=\"save()\" bs-modal-drag> <div class=\"modal-header\"> <h4 class=\"modal-title\"> <span>{{localization.setting}}</span> <span>{{variableName}}</span> </h4> <button type=\"button\" class=\"close pull-right\" aria-label=\"Close\" (click)=\"close()\"> <span aria-hidden=\"true\">×</span> </button> </div> <div class=\"modal-body\"> <span class=\"write-value-range\">{{localization.writeValueRange}}: {{writeValueRangeText}} <span *ngIf=\"valueType\">({{valueType}})</span> </span> <input type=\"text\" name=\"valueInput\" autoFocus class=\"form-control write-value\" [(ngModel)]=\"value\" (keyup)=\"validate()\" autocomplete=\"off\"> <span class=\"help-block text-danger\" [hidden]=\"!validationError\">{{validationErrorText}}</span> </div> <div class=\"modal-footer\"> <button type=\"submit\" class=\"btn md-skip btn-primary btn-block\" [disabled]=\"validationError\">{{localization.submit}}</button> </div> </form> ",
|
|
244
|
-
styles: [".modal-header { padding: 10px; border-color: transparent; } .modal-body { position: relative; padding: 0px 5px !important; padding-top: 10px !important; } .modal-title { display: unset; margin-left: -6px; font-size: 16px !important; } .form-control { margin: 0 5%; float: none; width: 90%; } .modal-footer { padding: 10px 4px 20px 5px !important; text-align: right; border-color: transparent; } .text-danger { display: block; color: #ed6b75; font-size: 14px; margin: 5px 0px 0px 15px; } .btn-primary { background-color: #3B97FC; border-color: #3B97FC; padding: 5px 30px; width: 90%; margin: 0 5%; height: 32px; } .write-value-range { color: #7f939e; font-size: 14px; margin-left: 15px; } .write-value { padding-left: 8px; margin-left: 16px; height: 32px; } "]
|
|
245
|
-
}]
|
|
246
|
-
}], function () { return [{ type: undefined, decorators: [{
|
|
247
|
-
type: Inject,
|
|
248
|
-
args: [LOCALIZATION]
|
|
249
|
-
}] }, { type: i1.DataTypeService }, { type: i2.FractionDigitService }, { type: i3.NumericalOperationService }]; }, { invalidErrorText: [{
|
|
250
|
-
type: Output
|
|
251
|
-
}] }); })();
|
|
213
|
+
};
|
|
214
|
+
__decorate([
|
|
215
|
+
Output(),
|
|
216
|
+
__metadata("design:type", String),
|
|
217
|
+
__metadata("design:paramtypes", [])
|
|
218
|
+
], WriteValueModalComponent.prototype, "invalidErrorText", null);
|
|
219
|
+
WriteValueModalComponent = __decorate([
|
|
220
|
+
Component({
|
|
221
|
+
selector: 'writeValueModal',
|
|
222
|
+
template: "<form #writeValueForm=\"ngForm\" novalidate (ngSubmit)=\"save()\" bs-modal-drag> <div class=\"modal-header\"> <h4 class=\"modal-title\"> <span>{{localization.setting}}</span> <span>{{variableName}}</span> </h4> <button type=\"button\" class=\"close pull-right\" aria-label=\"Close\" (click)=\"close()\"> <span aria-hidden=\"true\">×</span> </button> </div> <div class=\"modal-body\"> <span class=\"write-value-range\">{{localization.writeValueRange}}:</span> <div class=\"write-value-range\"> {{writeValueRangeText}} <span *ngIf=\"valueType\">({{valueType}})</span> </div> <input type=\"text\" name=\"valueInput\" autoFocus class=\"form-control write-value\" [(ngModel)]=\"value\" (keyup)=\"validate($event)\" autocomplete=\"off\"> <span class=\"help-block text-danger\" [hidden]=\"!validationError\">{{validationErrorText}}</span> </div> <div class=\"modal-footer\"> <button type=\"submit\" class=\"btn md-skip btn-primary btn-block\" [disabled]=\"validationError || isSubmitting\"> <ng-container *ngIf=\"!isSubmitting\">{{localization.submit}}</ng-container> <ng-container *ngIf=\"isSubmitting\">{{localization.submitting}}</ng-container> </button> </div> </form> ",
|
|
223
|
+
styles: [".modal-header { padding: 10px; border-color: transparent; } .modal-body { position: relative; padding: 0px 5px !important; padding-top: 10px !important; } .modal-title { display: unset; margin-left: -6px; font-size: 16px !important; } .form-control { margin: 0 5%; float: none; width: 90%; } .modal-footer { padding: 10px 4px 20px 5px !important; text-align: right; border-color: transparent; } .text-danger { display: block; color: #ed6b75; font-size: 14px; margin: 5px 0px 0px 15px; } .btn-primary { background-color: #3B97FC; border-color: #3B97FC; padding: 5px 30px; width: 90%; margin: 0 5%; height: 32px; } .write-value-range { color: #7f939e; font-size: 14px; margin-left: 15px; } .write-value { padding-left: 8px; margin-left: 16px; height: 32px; } "]
|
|
224
|
+
}),
|
|
225
|
+
__param(0, Inject(LOCALIZATION)),
|
|
226
|
+
__metadata("design:paramtypes", [Object, DataTypeService,
|
|
227
|
+
FractionDigitService,
|
|
228
|
+
NumericalOperationService,
|
|
229
|
+
BsModalRef])
|
|
230
|
+
], WriteValueModalComponent);
|
|
231
|
+
export { WriteValueModalComponent };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"WriteValueModalComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":10,"character":1},"arguments":[{"selector":"writeValueModal","template":"<form #writeValueForm=\"ngForm\" novalidate (ngSubmit)=\"save()\" bs-modal-drag> <div class=\"modal-header\"> <h4 class=\"modal-title\"> <span>{{localization.setting}}</span> <span>{{variableName}}</span> </h4> <button type=\"button\" class=\"close pull-right\" aria-label=\"Close\" (click)=\"close()\"> <span aria-hidden=\"true\">×</span> </button> </div> <div class=\"modal-body\"> <span class=\"write-value-range\">{{localization.writeValueRange}}:</span> <div class=\"write-value-range\"> {{writeValueRangeText}} <span *ngIf=\"valueType\">({{valueType}})</span> </div> <input type=\"text\" name=\"valueInput\" autoFocus class=\"form-control write-value\" [(ngModel)]=\"value\" (keyup)=\"validate($event)\" autocomplete=\"off\"> <span class=\"help-block text-danger\" [hidden]=\"!validationError\">{{validationErrorText}}</span> </div> <div class=\"modal-footer\"> <button type=\"submit\" class=\"btn md-skip btn-primary btn-block\" [disabled]=\"validationError || isSubmitting\"> <ng-container *ngIf=\"!isSubmitting\">{{localization.submit}}</ng-container> <ng-container *ngIf=\"isSubmitting\">{{localization.submitting}}</ng-container> </button> </div> </form> ","styles":[".modal-header { padding: 10px; border-color: transparent; } .modal-body { position: relative; padding: 0px 5px !important; padding-top: 10px !important; } .modal-title { display: unset; margin-left: -6px; font-size: 16px !important; } .form-control { margin: 0 5%; float: none; width: 90%; } .modal-footer { padding: 10px 4px 20px 5px !important; text-align: right; border-color: transparent; } .text-danger { display: block; color: #ed6b75; font-size: 14px; margin: 5px 0px 0px 15px; } .btn-primary { background-color: #3B97FC; border-color: #3B97FC; padding: 5px 30px; width: 90%; margin: 0 5%; height: 32px; } .write-value-range { color: #7f939e; font-size: 14px; margin-left: 15px; } .write-value { padding-left: 8px; margin-left: 16px; height: 32px; } "]}]}],"members":{"invalidErrorText":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":44,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":50,"character":9},"arguments":[{"__symbolic":"reference","module":"../../localization","name":"LOCALIZATION","line":50,"character":16}]}],null,null,null,null],"parameters":[{"__symbolic":"reference","module":"../../localization","name":"Localization","line":50,"character":51},{"__symbolic":"reference","module":"../../utils/data-type/data-type.service","name":"DataTypeService","line":51,"character":42},{"__symbolic":"reference","module":"../../utils/fraction-digit.service","name":"FractionDigitService","line":52,"character":47},{"__symbolic":"reference","module":"../../utils/numerical-operation.service","name":"NumericalOperationService","line":53,"character":52},{"__symbolic":"reference","module":"ngx-bootstrap/modal","name":"BsModalRef","line":54,"character":37}]}],"ngOnInit":[{"__symbolic":"method"}],"initData":[{"__symbolic":"method"}],"setValueRangeAccordToDataParsed":[{"__symbolic":"method"}],"getWriteValueRangeText":[{"__symbolic":"method"}],"save":[{"__symbolic":"method"}],"close":[{"__symbolic":"method"}],"validate":[{"__symbolic":"method"}],"showValidationErrorInfo":[{"__symbolic":"method"}],"hideValidationErrorInfo":[{"__symbolic":"method"}],"getFractionDigits":[{"__symbolic":"method"}],"formatWriteValue":[{"__symbolic":"method"}]}}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"WriteValueModelResult":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as moment from 'moment';
|
|
2
|
+
export declare class AirQualityInfo {
|
|
3
|
+
/** 有无地址 */
|
|
4
|
+
hasAddress: boolean | undefined;
|
|
5
|
+
/** 是否获取地址中 */
|
|
6
|
+
gettingAddress: boolean | undefined;
|
|
7
|
+
/** 是否支持 */
|
|
8
|
+
supported: boolean | undefined;
|
|
9
|
+
airQuality: AirQuality | undefined;
|
|
10
|
+
}
|
|
11
|
+
export declare class AirQuality {
|
|
12
|
+
city: string | undefined;
|
|
13
|
+
aqi: string | undefined;
|
|
14
|
+
level: number | undefined;
|
|
15
|
+
category: string | undefined;
|
|
16
|
+
pm10: string | undefined;
|
|
17
|
+
pm25: string | undefined;
|
|
18
|
+
no2: string | undefined;
|
|
19
|
+
so2: string | undefined;
|
|
20
|
+
co: string | undefined;
|
|
21
|
+
o3: string | undefined;
|
|
22
|
+
reportTime: moment.Moment | undefined;
|
|
23
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"AirQualityInfo":{"__symbolic":"class"},"AirQuality":{"__symbolic":"class"}}}]
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"AirQualityModel":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ConditionalDisplayModel } from '../base/conditional-display-model';
|
|
2
|
+
import { Point, Size } from '../shared';
|
|
3
|
+
export interface AlarmModel extends ConditionalDisplayModel {
|
|
4
|
+
readonly version: number;
|
|
5
|
+
readonly size: Size;
|
|
6
|
+
readonly location: Point;
|
|
7
|
+
readonly generalSetting?: any;
|
|
8
|
+
readonly filterSetting?: any;
|
|
9
|
+
readonly widths: number[];
|
|
10
|
+
readonly heights: number[];
|
|
11
|
+
readonly columLabels: string[];
|
|
12
|
+
readonly levelText: string[];
|
|
13
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"AlarmModel":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"FontStyleData":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"BarGraphDirection":{"DownToUp":0,"UpToDown":1,"LeftToRight":2,"RightToLeft":3}}}]
|
|
@@ -19,4 +19,8 @@ export interface BarGraph extends ReadableModel {
|
|
|
19
19
|
readonly upperLimitColor?: string;
|
|
20
20
|
readonly lowerLimitColor?: string;
|
|
21
21
|
readonly percentageFont?: FontStyleData;
|
|
22
|
+
readonly masterDivisionNumber: number;
|
|
23
|
+
readonly subDivisionNumber: number;
|
|
24
|
+
readonly integerDigits: number;
|
|
25
|
+
readonly fractionDigits: number;
|
|
22
26
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"BarGraph":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"BaseElementModel":{"__symbolic":"class"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"ConditionalControlModel":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"ConditionalDisplayModel":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"ConditionalDynamicDisplayModel":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"ConditionalEnableModel":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"FontSettingModel":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{},"exports":[{"from":"./base-element-model","export":["BaseElementModel"]},{"from":"./readable-model","export":["ReadableModel"]},{"from":"./conditional-display-model","export":["ConditionalDisplayModel"]},{"from":"./conditional-enable-model","export":["ConditionalEnableModel"]},{"from":"./conditional-control-model","export":["ConditionalControlModel"]},{"from":"./conditional-dynamic-display-model","export":["ConditionalDynamicDisplayModel"]},{"from":"./security-model","export":["SecurityModel"]}]}]
|
|
@@ -7,4 +7,8 @@ export interface ReadableModel extends ConditionalEnableModel {
|
|
|
7
7
|
readonly version?: number;
|
|
8
8
|
readonly variableName?: string;
|
|
9
9
|
readonly readVariable?: VariableDefinition;
|
|
10
|
+
readonly minVariable?: any;
|
|
11
|
+
readonly maxVariable?: any;
|
|
12
|
+
readonly minValueType?: any;
|
|
13
|
+
readonly maxValueType?: any;
|
|
10
14
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"ReadableModel":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"SecurityModel":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"CharacterDisplay":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"DateFormatType":{"YYMMDD":0,"MMDDYY":1,"DDMMYY":2}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"DatetimeDisplaySettings":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"DatetimeDisplay":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"DatetimeSeparatorType":{"Dot":0,"Line":1,"Slash":2,"CHS":3}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"TimeFormatType":{"HHMM":0,"HHMMSS":1}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"CurveType":{"Line":0,"BarGroup":1,"BarStack":2}}}]
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
import { Font } from '../shared/text/font';
|
|
2
2
|
export interface HistoricalCurveAxisSettings {
|
|
3
|
+
readonly yAxisRangeType: AxisRangeType;
|
|
4
|
+
readonly yAxisMax?: number;
|
|
5
|
+
readonly yAxisMin?: number;
|
|
3
6
|
readonly axisColor: string;
|
|
4
7
|
readonly showAxisLabel: boolean;
|
|
5
8
|
readonly axisLabelFont: Font;
|
|
9
|
+
readonly showTick?: boolean;
|
|
10
|
+
readonly xAxisTickColor?: string;
|
|
11
|
+
readonly yAxisTickColor?: string;
|
|
12
|
+
}
|
|
13
|
+
export declare enum AxisRangeType {
|
|
14
|
+
Auto = 0,
|
|
15
|
+
Custom = 1
|
|
6
16
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"HistoricalCurveAxisSettings":{"__symbolic":"interface"},"AxisRangeType":{"Auto":0,"Custom":1}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"HistroicalCurveChannelModel":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"HistoricalCurveDataSettings":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"HistoricalCurveDisplaySettings":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"HistoricalCurveModel":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{},"exports":[{"from":"./historical-curve.model","export":["HistoricalCurveModel"]},{"from":"./historical-curve.display-settings","export":["HistoricalCurveDisplaySettings"]},{"from":"./historical-curve.data-settings","export":["HistoricalCurveDataSettings"]},{"from":"./historical-curve-chanel.model","export":["HistroicalCurveChannelModel"]}]}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"HyperlinkModel":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"ImageFillType":{"Image":0,"Graph":1}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"Image":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{},"exports":[{"from":"./base"},{"from":"./image/image"},{"from":"./shared"},{"from":"./switch-indicator-light"},{"from":"./bar-graph/bar-graph"},{"from":"./bar-graph/bar-graph-direction"},{"from":"./character-display/character-display"},{"from":"./pipe"},{"from":"./view-operation"},{"from":"./meter/meter"},{"from":"./numerical-display"},{"from":"./historical-curve"},{"from":"./text/text.model"},{"from":"./ring-graph/ring-graph.model"},{"from":"./settings"}]}]
|
package/model/meter/meter.d.ts
CHANGED
|
@@ -10,4 +10,8 @@ export interface Meter extends ReadableModel {
|
|
|
10
10
|
readonly radius: number;
|
|
11
11
|
readonly min: number;
|
|
12
12
|
readonly max: number;
|
|
13
|
+
readonly masterDivisionNumber: number;
|
|
14
|
+
readonly subDivisionNumber: number;
|
|
15
|
+
readonly integerDigits: number;
|
|
16
|
+
readonly fractionDigits: number;
|
|
13
17
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"Meter":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{},"exports":[{"from":"./numerical-display","export":["NumericalDisplay"]},{"from":"./numerical-operation-settings","export":["NumericalOperationSettings"]},{"from":"./numerical-operation-type","export":["NumericalOperationType"]},{"from":"./numerical-operation","export":["NumericalOperation"]},{"from":"./proportional-conversion","export":["ProportionalConversion"]},{"from":"./type-settings","export":["TypeSettings"]},{"from":"./zoom","export":["Zoom"]},{"from":"../shared/data-type/display-data-type","export":["DisplayDataType"]}]}]
|
|
@@ -12,6 +12,7 @@ export interface NumericalDisplay extends ReadableModel, SecurityModel {
|
|
|
12
12
|
readonly textAlign: string;
|
|
13
13
|
readonly accessPermission: any;
|
|
14
14
|
dataType: number;
|
|
15
|
+
fBoxDataType: number;
|
|
15
16
|
readonly integerDigits: number;
|
|
16
17
|
readonly fractionDigits: number;
|
|
17
18
|
readonly enableNumericalOperation: boolean;
|
|
@@ -24,4 +25,5 @@ export interface NumericalDisplay extends ReadableModel, SecurityModel {
|
|
|
24
25
|
readonly showVariableText?: boolean;
|
|
25
26
|
readonly variableText?: any;
|
|
26
27
|
readonly displayDataType?: DisplayDataType;
|
|
28
|
+
readonly enableDataParsed?: boolean;
|
|
27
29
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"NumericalDisplay":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"NumericalOperationSettings":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"NumericalOperationType":{"ProportionalConversion":2,"Zoom":4}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"NumericalOperation":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"ProportionalConversion":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"TypeSettings":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"Zoom":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"FlowDirectionType":{"Positive":0,"Negative":1}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{},"exports":[{"from":"./flow-direction-type","export":["FlowDirectionType"]},{"from":"./pipe","export":["Pipe"]}]}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"Pipe":{"__symbolic":"interface"}}}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":4,"metadata":{"PolyLineModel":{"__symbolic":"interface"}}}]
|