diff --git a/projects/components/src/header/application/application-header.module.ts b/projects/components/src/header/application/application-header.module.ts index 8dd7059b7..b03fd14fb 100644 --- a/projects/components/src/header/application/application-header.module.ts +++ b/projects/components/src/header/application/application-header.module.ts @@ -2,12 +2,11 @@ import { NgModule } from '@angular/core'; import { IconModule } from '../../icon/icon.module'; import { SelectModule } from '../../select/select.module'; import { TimeRangeModule } from '../../time-range/time-range.module'; -import { SpaceSelectorComponent } from '../space-selector/space-selector.component'; import { ApplicationHeaderComponent } from './application-header.component'; @NgModule({ imports: [IconModule, SelectModule, TimeRangeModule], - declarations: [ApplicationHeaderComponent, SpaceSelectorComponent], + declarations: [ApplicationHeaderComponent], exports: [ApplicationHeaderComponent] }) export class ApplicationHeaderModule {} diff --git a/projects/components/src/header/space-selector/space-selector.component.scss b/projects/components/src/header/space-selector/space-selector.component.scss deleted file mode 100644 index bd92b3f64..000000000 --- a/projects/components/src/header/space-selector/space-selector.component.scss +++ /dev/null @@ -1,14 +0,0 @@ -@import 'font'; - -.space-selector-wrapper { - @include body-1-medium(white); - width: 148px; - padding: 0 8px; - display: flex; - flex-direction: column; - justify-content: center; - - .space-selector { - padding: 4px 12px; - } -} diff --git a/projects/components/src/header/space-selector/space-selector.component.ts b/projects/components/src/header/space-selector/space-selector.component.ts deleted file mode 100644 index 88697a120..000000000 --- a/projects/components/src/header/space-selector/space-selector.component.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { ChangeDetectionStrategy, Component } from '@angular/core'; - -@Component({ - selector: 'ht-space-selector', - changeDetection: ChangeDetectionStrategy.OnPush, - styleUrls: ['./space-selector.component.scss'], - template: ` -
- - - -
- ` -}) -export class SpaceSelectorComponent {} diff --git a/projects/components/src/public-api.ts b/projects/components/src/public-api.ts index faad798b1..e75f9523b 100644 --- a/projects/components/src/public-api.ts +++ b/projects/components/src/public-api.ts @@ -109,7 +109,6 @@ export * from './header/application/application-header.component'; export * from './header/application/application-header.module'; export * from './header/page/page-header.component'; export * from './header/page/page-header.module'; -export * from './header/space-selector/space-selector.component'; // Icon export * from './icon/icon-size';