You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2020/03/31 12:52:01 UTC

[incubator-streampipes] branch dev updated (e31e043 -> 2bb4a1c)

This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git.


    from e31e043  Merge branch 'dev' of github.com:apache/incubator-streampipes into dev
     new d7a2aea  Add dialog components of 'time series labeling tool'
     new 88921c1  Add module for 'timeseries labeling tool'
     new 5ad0662  Add labeling tool module to imports in data explorer module
     new 16511c6  Add 'timeseries labeling tool' to linechart component
     new 8915711  Add TODOs related to loading and saving labels to linechart component
     new 350989e  Add mocked label categories and labels
     new 2bb4a1c  Merge pull request #12 from EbiDa/timeseries-labeling-tool

The 5020 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../label-selection/label-selection.component.css} |   1 +
 .../label-selection/label-selection.component.html |  44 ++--
 .../label-selection/label-selection.component.ts   |  61 ++++++
 .../point-selection-info.component.css}            |   1 +
 .../point-selection-info.component.html}           |  19 +-
 .../point-selection-info.component.ts}             |  37 ++--
 .../change-chartmode/change-chartmode.dialog.css}  |  20 +-
 .../change-chartmode/change-chartmode.dialog.html} |  15 +-
 .../change-chartmode/change-chartmode.dialog.ts}   |  28 ++-
 .../dialogs/labeling/labeling.dialog.css}          |  27 ++-
 .../dialogs/labeling/labeling.dialog.html          |  36 ++++
 .../dialogs/labeling/labeling.dialog.ts            |  41 ++--
 .../labeling-tool/labeling-tool.module.ts          |  90 ++++++++
 .../labeling-tool/services/color.service.ts}       |  27 ++-
 .../app/core-ui/linechart/lineChart.component.html |   8 +-
 .../app/core-ui/linechart/lineChart.component.ts   | 233 +++++++++++++++++----
 ui/src/app/data-explorer/data-explorer.module.ts   |  32 +--
 17 files changed, 543 insertions(+), 177 deletions(-)
 copy ui/src/app/{app-container/view/view.component.css => core-ui/linechart/labeling-tool/components/label-selection/label-selection.component.css} (97%)
 copy .gitlab/issue_templates/bug.md => ui/src/app/core-ui/linechart/labeling-tool/components/label-selection/label-selection.component.html (50%)
 create mode 100644 ui/src/app/core-ui/linechart/labeling-tool/components/label-selection/label-selection.component.ts
 copy ui/src/app/{app-container/view/view.component.css => core-ui/linechart/labeling-tool/components/point-selection-info/point-selection-info.component.css} (97%)
 copy ui/src/app/{app-transport-monitoring/components/dashboard-image/dashboard-image.component.html => core-ui/linechart/labeling-tool/components/point-selection-info/point-selection-info.component.html} (70%)
 copy ui/src/app/{app-transport-monitoring/components/dashboard-item/dashboard-item.component.ts => core-ui/linechart/labeling-tool/components/point-selection-info/point-selection-info.component.ts} (53%)
 copy ui/src/app/{dashboard/components/widgets/image/image-widget.component.css => core-ui/linechart/labeling-tool/dialogs/change-chartmode/change-chartmode.dialog.css} (75%)
 copy ui/src/app/{sensors/components/general/advanced-settings.tmpl.html => core-ui/linechart/labeling-tool/dialogs/change-chartmode/change-chartmode.dialog.html} (72%)
 copy ui/src/app/{app-transport-monitoring/components/dashboard-status/dashboard-status.component.ts => core-ui/linechart/labeling-tool/dialogs/change-chartmode/change-chartmode.dialog.ts} (62%)
 copy ui/src/app/{dashboard/components/widgets/image/image-widget.component.css => core-ui/linechart/labeling-tool/dialogs/labeling/labeling.dialog.css} (68%)
 create mode 100644 ui/src/app/core-ui/linechart/labeling-tool/dialogs/labeling/labeling.dialog.html
 copy streampipes-sdk/src/main/java/org/apache/streampipes/sdk/helpers/Groundings.java => ui/src/app/core-ui/linechart/labeling-tool/dialogs/labeling/labeling.dialog.ts (51%)
 create mode 100644 ui/src/app/core-ui/linechart/labeling-tool/labeling-tool.module.ts
 copy ui/{deployment/version.service.mst => src/app/core-ui/linechart/labeling-tool/services/color.service.ts} (60%)