You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2023/04/08 12:34:54 UTC

[streampipes] branch move-split-section created (now 20c735a2e)

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

riemer pushed a change to branch move-split-section
in repository https://gitbox.apache.org/repos/asf/streampipes.git


      at 20c735a2e [hotfix] Move sp-split-section to shared-ui module

This branch includes the following new commits:

     new 20c735a2e [hotfix] Move sp-split-section to shared-ui module

The 1 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.



[streampipes] 01/01: [hotfix] Move sp-split-section to shared-ui module

Posted by ri...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch move-split-section
in repository https://gitbox.apache.org/repos/asf/streampipes.git

commit 20c735a2e61955ef91f5ea2d43cf9bd99bfd2f04
Author: Dominik Riemer <do...@gmail.com>
AuthorDate: Sat Apr 8 14:33:50 2023 +0200

    [hotfix] Move sp-split-section to shared-ui module
---
 .../src/lib/components}/split-section/split-section.component.html     | 0
 .../src/lib/components}/split-section/split-section.component.scss     | 0
 .../src/lib/components}/split-section/split-section.component.ts       | 0
 ui/projects/streampipes/shared-ui/src/lib/shared-ui.module.ts          | 3 +++
 ui/projects/streampipes/shared-ui/src/public-api.ts                    | 1 +
 ui/src/app/core-ui/core-ui.module.ts                                   | 3 ---
 6 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/ui/src/app/core-ui/split-section/split-section.component.html b/ui/projects/streampipes/shared-ui/src/lib/components/split-section/split-section.component.html
similarity index 100%
rename from ui/src/app/core-ui/split-section/split-section.component.html
rename to ui/projects/streampipes/shared-ui/src/lib/components/split-section/split-section.component.html
diff --git a/ui/src/app/core-ui/split-section/split-section.component.scss b/ui/projects/streampipes/shared-ui/src/lib/components/split-section/split-section.component.scss
similarity index 100%
rename from ui/src/app/core-ui/split-section/split-section.component.scss
rename to ui/projects/streampipes/shared-ui/src/lib/components/split-section/split-section.component.scss
diff --git a/ui/src/app/core-ui/split-section/split-section.component.ts b/ui/projects/streampipes/shared-ui/src/lib/components/split-section/split-section.component.ts
similarity index 100%
rename from ui/src/app/core-ui/split-section/split-section.component.ts
rename to ui/projects/streampipes/shared-ui/src/lib/components/split-section/split-section.component.ts
diff --git a/ui/projects/streampipes/shared-ui/src/lib/shared-ui.module.ts b/ui/projects/streampipes/shared-ui/src/lib/shared-ui.module.ts
index 7142b5005..e24af25c4 100644
--- a/ui/projects/streampipes/shared-ui/src/lib/shared-ui.module.ts
+++ b/ui/projects/streampipes/shared-ui/src/lib/shared-ui.module.ts
@@ -35,6 +35,7 @@ import { SpBasicHeaderTitleComponent } from './components/basic-header-title/hea
 import { SpExceptionMessageComponent } from './components/sp-exception-message/sp-exception-message.component';
 import { SpExceptionDetailsDialogComponent } from './components/sp-exception-message/exception-details-dialog/exception-details-dialog.component';
 import { MatDividerModule } from '@angular/material/divider';
+import { SplitSectionComponent } from './components/split-section/split-section.component';
 
 @NgModule({
     declarations: [
@@ -47,6 +48,7 @@ import { MatDividerModule } from '@angular/material/divider';
         SpBasicNavTabsComponent,
         SpExceptionMessageComponent,
         SpExceptionDetailsDialogComponent,
+        SplitSectionComponent,
     ],
     imports: [
         CommonModule,
@@ -69,6 +71,7 @@ import { MatDividerModule } from '@angular/material/divider';
         SpBasicNavTabsComponent,
         SpExceptionMessageComponent,
         SpExceptionDetailsDialogComponent,
+        SplitSectionComponent,
     ],
 })
 export class SharedUiModule {}
diff --git a/ui/projects/streampipes/shared-ui/src/public-api.ts b/ui/projects/streampipes/shared-ui/src/public-api.ts
index f6de0d7ec..b102e851b 100644
--- a/ui/projects/streampipes/shared-ui/src/public-api.ts
+++ b/ui/projects/streampipes/shared-ui/src/public-api.ts
@@ -30,6 +30,7 @@ export * from './lib/components/basic-header-title/header-title.component';
 export * from './lib/components/basic-inner-panel/basic-inner-panel.component';
 export * from './lib/components/basic-view/basic-view.component';
 export * from './lib/components/basic-nav-tabs/basic-nav-tabs.component';
+export * from './lib/components/split-section/split-section.component';
 export * from './lib/components/sp-exception-message/sp-exception-message.component';
 export * from './lib/components/sp-exception-message/exception-details-dialog/exception-details-dialog.component';
 
diff --git a/ui/src/app/core-ui/core-ui.module.ts b/ui/src/app/core-ui/core-ui.module.ts
index a41b83afa..2a7458aa4 100644
--- a/ui/src/app/core-ui/core-ui.module.ts
+++ b/ui/src/app/core-ui/core-ui.module.ts
@@ -73,7 +73,6 @@ import { NgxChartsModule } from '@swimlane/ngx-charts';
 import { ErrorHintComponent } from './error-hint/error-hint.component';
 import { AddToCollectionComponent } from './static-properties/static-collection/add-to-collection/add-to-collection.component';
 import { PipelineStartedStatusComponent } from './pipeline/pipeline-started-status/pipeline-started-status.component';
-import { SplitSectionComponent } from './split-section/split-section.component';
 import { ObjectPermissionDialogComponent } from './object-permission-dialog/object-permission-dialog.component';
 import { StaticSlideToggleComponent } from './static-properties/static-slide-toggle/static-slide-toggle.component';
 import { MatSlideToggleModule } from '@angular/material/slide-toggle';
@@ -143,7 +142,6 @@ import { SpSimpleLogsComponent } from './monitoring/simple-logs/simple-logs.comp
         ObjectPermissionDialogComponent,
         PipelineElementTemplateConfigComponent,
         PipelineElementTemplatePipe,
-        SplitSectionComponent,
         StaticAnyInputComponent,
         StaticPropertyComponent,
         StaticFreeInputComponent,
@@ -211,7 +209,6 @@ import { SpSimpleLogsComponent } from './monitoring/simple-logs/simple-logs.comp
         ImageViewerComponent,
         ErrorHintComponent,
         PipelineStartedStatusComponent,
-        SplitSectionComponent,
         SpSimpleLogsComponent,
         SpSimpleMetricsComponent,
         StatusWidgetComponent,