Skip to content

Commit f3a7e69

Browse files
committed
fix:Removed boiler from selectors
1 parent 8721ef5 commit f3a7e69

19 files changed

+49
-51
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# ARC ANGULAR BOILERPLATE
2-
[![Version][(https://img.shields.io/badge/@angular/core-v14-brightgreen)](https://www.npmjs.com/package/@angular/cli/v/14.0.0)
2+
[![Version](https://img.shields.io/badge/@angular/core-v14-brightgreen)](https://www.npmjs.com/package/@angular/cli/v/14.0.0)
3+
4+
35

46
<!-- DOCUMENTATION -->
57

projects/arc-lib/src/lib/components/auth/auth.component.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
import { Location } from '@angular/common';
2-
import { Component } from '@angular/core';
3-
import { NbAuthComponent, NbAuthService } from '@nebular/auth';
1+
import {Location} from '@angular/common';
2+
import {Component} from '@angular/core';
3+
import {NbAuthComponent, NbAuthService} from '@nebular/auth';
44

55
@Component({
6-
selector: 'boiler-auth',
6+
selector: 'auth',
77
templateUrl: './auth.component.html',
88
styleUrls: ['./auth.component.scss'],
99
})
1010
export class AuthComponent extends NbAuthComponent {
1111
constructor(
1212
override readonly auth: NbAuthService,
13-
override readonly location: Location
13+
override readonly location: Location,
1414
) {
1515
super(auth, location);
1616
}

projects/arc-lib/src/lib/components/auth/login/login.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {AuthService} from '@project-lib/core/auth';
55
import {RouteComponentBaseDirective} from '@project-lib/core/route-component-base';
66

77
@Component({
8-
selector: 'boiler-login',
8+
selector: 'login',
99
templateUrl: './login.component.html',
1010
styleUrls: ['./login.component.scss'],
1111
})

projects/arc-lib/src/lib/components/gantt/components/bb-gantt.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import {GanttBarsComponent} from './gantt-bars/gantt-bars.component';
3333
import {GanttColumnComponent} from './gantt-column/gantt-column.component';
3434

3535
@Component({
36-
selector: 'boiler-gantt',
36+
selector: 'gantt',
3737
templateUrl: './bb-gantt.component.html',
3838
styleUrls: ['./bb-gantt.component.scss'],
3939
})

projects/arc-lib/src/lib/components/gantt/components/gantt-bars/gantt-bars.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
} from '../../types';
1111

1212
@Component({
13-
selector: 'boiler-gantt-bars',
13+
selector: 'gantt-bars',
1414
templateUrl: './gantt-bars.component.html',
1515
styleUrls: ['./gantt-bars.component.scss'],
1616
})

projects/arc-lib/src/lib/components/gantt/components/gantt-column/gantt-column.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {NbMenuItem} from '@nebular/theme';
44
import {ContextItemFilter, GanttTaskValue} from '../../types';
55

66
@Component({
7-
selector: 'boiler-gantt-column',
7+
selector: 'gantt-column',
88
templateUrl: './gantt-column.component.html',
99
styleUrls: ['./gantt-column.component.scss'],
1010
})

projects/arc-lib/src/lib/components/gantt/components/gantt-header/gantt-header.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { Component, Input } from '@angular/core';
1+
import {Component, Input} from '@angular/core';
22

33
@Component({
4-
selector: 'boiler-gantt-header',
4+
selector: 'gantt-header',
55
templateUrl: './gantt-header.component.html',
66
styleUrls: ['./gantt-header.component.scss'],
77
})

projects/arc-lib/src/lib/components/gantt/components/gantt-tooltip/gantt-tooltip.component.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
import { ComponentFixture, TestBed } from '@angular/core/testing';
2-
import { TranslationService } from '@boiler/core/localization';
1+
import {ComponentFixture, TestBed} from '@angular/core/testing';
2+
import {TranslationService} from '@project-lib/core/localization';
33
import {
44
TranslateFakeLoader,
55
TranslateLoader,
66
TranslateModule,
77
TranslateService,
88
} from '@ngx-translate/core';
99

10-
import { GanttTooltipComponent } from './gantt-tooltip.component';
10+
import {GanttTooltipComponent} from './gantt-tooltip.component';
1111

1212
describe('GanttTooltipComponent', () => {
1313
let component: GanttTooltipComponent;

projects/arc-lib/src/lib/components/gantt/components/gantt-tooltip/gantt-tooltip.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {TranslateService} from '@ngx-translate/core';
44
import {SubAllocation} from '../../types';
55

66
@Component({
7-
selector: 'boiler-gantt-tooltip',
7+
selector: 'gantt-tooltip',
88
templateUrl: './gantt-tooltip.component.html',
99
styleUrls: ['./gantt-tooltip.component.scss'],
1010
})

projects/arc-lib/src/lib/components/gantt/const.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import {Gantt} from 'dhtmlx-gantt/codebase/dhtmlxgantt';
33
import {GanttService} from './services';
44
import {GanttLib, GanttScaleService} from './types';
55

6-
export const GANTT = new InjectionToken<GanttLib>('boiler.gantt.lib');
6+
export const GANTT = new InjectionToken<GanttLib>('gantt.lib');
77

88
export const GANTT_SCALES = new InjectionToken<GanttScaleService>(
9-
'boiler.gantt.scales',
9+
'gantt.scales',
1010
);
1111

1212
export const GanttProviders = [

0 commit comments

Comments
 (0)