Skip to content

Commit 9a67115

Browse files
committed
Merge branch 'bundle-test-extended' of https://github.com/IgniteUI/igniteui-angular into utils-i18n-refactor
2 parents 93418ed + 2022580 commit 9a67115

10 files changed

+46
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { NgModule } from '@angular/core';
2+
import { RouterModule, Routes } from '@angular/router';
3+
import { ChipComponent } from './chip/chip.component';
4+
5+
const routes: Routes = [
6+
{ path: '', component: ChipComponent },
7+
{ path: 'chip', component: ChipComponent },
8+
{ path: 'stepper', loadComponent: () => import('./stepper/stepper.component').then(m => m.StepperComponent) }
9+
];
10+
11+
@NgModule({
12+
imports: [RouterModule.forChild(routes)],
13+
exports: [RouterModule]
14+
})
15+
export class AppRoutingModule { }
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- Toolbar -->
22
<div role="banner">
3-
<igx-chip [resourceStrings]="chipStrings">Chip</igx-chip>
3+
<router-outlet></router-outlet>
44
</div>
55

Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
import { Component } from '@angular/core';
2-
import { ChipResourceStringsBG } from 'igniteui-angular-i18n';
32

43
@Component({
54
selector: 'app-root',
65
templateUrl: './app.component.html',
76
styleUrls: ['./app.component.scss']
87
})
98
export class AppComponent {
10-
protected chipStrings = ChipResourceStringsBG;
119
}

projects/bundle-test/src/app/app.module.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ import { NgModule } from '@angular/core';
22
import { BrowserModule } from '@angular/platform-browser';
33

44
import { AppComponent } from './app.component';
5-
import { IgxChipsModule } from 'igniteui-angular';
5+
import { AppRoutingModule } from './app-routing.module';
66

77
@NgModule({
88
declarations: [
99
AppComponent
1010
],
1111
imports: [
1212
BrowserModule,
13-
IgxChipsModule
13+
AppRoutingModule
1414
],
1515
providers: [],
1616
bootstrap: [AppComponent]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<igx-chip [resourceStrings]="chipStrings">Chip</igx-chip>

projects/bundle-test/src/app/chip/chip.component.scss

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { Component } from '@angular/core';
2+
import { ChipResourceStringsBG } from 'igniteui-angular-i18n';
3+
import { IgxChipComponent } from 'igniteui-angular';
4+
5+
@Component({
6+
selector: 'app-chip',
7+
standalone: true,
8+
imports: [IgxChipComponent],
9+
templateUrl: './chip.component.html',
10+
styleUrls: ['./chip.component.scss']
11+
})
12+
export class ChipComponent {
13+
protected chipStrings = ChipResourceStringsBG;
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<igx-stepper></igx-stepper>

projects/bundle-test/src/app/stepper/stepper.component.scss

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { Component } from '@angular/core';
2+
import { IgxStepperComponent } from 'igniteui-angular';
3+
4+
@Component({
5+
selector: 'app-grid',
6+
standalone: true,
7+
imports: [IgxStepperComponent],
8+
templateUrl: './stepper.component.html',
9+
styleUrls: ['./stepper.component.scss']
10+
})
11+
export class StepperComponent {
12+
}

0 commit comments

Comments
 (0)