Skip to content

Commit 511d95d

Browse files
committed
Merge branch 'temp-master-changes' into hhristov/update-angular-templates
2 parents 329bb6c + 04007ad commit 511d95d

46 files changed

Lines changed: 46 additions & 92 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

packages/igx-templates/igx-ts/accordion/default/files/src/app/__path__/__filePrefix__.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ import {
1212
@Component({
1313
selector: 'app-<%=filePrefix%>',
1414
templateUrl: './<%=filePrefix%>.component.html',
15-
styleUrls: ['./<%=filePrefix%>.component.scss'],
16-
standalone: true,
15+
styleUrl: './<%=filePrefix%>.component.scss',
1716
imports: [
1817
IgxSwitchComponent,
1918
ReactiveFormsModule,

packages/igx-templates/igx-ts/autocomplete/autocomplete-custom/files/src/app/__path__/__filePrefix__.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ import {
1414
@Component({
1515
selector: 'app-<%=filePrefix%>',
1616
templateUrl: './<%=filePrefix%>.component.html',
17-
styleUrls: ['./<%=filePrefix%>.component.scss'],
18-
standalone: true,
17+
styleUrl: './<%=filePrefix%>.component.scss',
1918
imports: [
2019
ReactiveFormsModule,
2120
FormsModule,

packages/igx-templates/igx-ts/autocomplete/autocomplete-extended/files/src/app/__path__/__filePrefix__.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ import { ReactiveFormsModule, FormsModule } from '@angular/forms';
2020
@Component({
2121
selector: 'app-<%=filePrefix%>',
2222
templateUrl: './<%=filePrefix%>.component.html',
23-
styleUrls: ['./<%=filePrefix%>.component.scss'],
24-
standalone: true,
23+
styleUrl: './<%=filePrefix%>.component.scss',
2524
imports: [
2625
IgxInputGroupComponent,
2726
IgxLabelDirective,

packages/igx-templates/igx-ts/bullet-graph/default/files/src/app/__path__/__filePrefix__.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ import {
1414
@Component({
1515
selector: 'app-<%=filePrefix%>',
1616
templateUrl: './<%=filePrefix%>.component.html',
17-
styleUrls: ['./<%=filePrefix%>.component.scss'],
17+
styleUrl: './<%=filePrefix%>.component.scss',
1818
encapsulation: ViewEncapsulation.None,
19-
standalone: true,
2019
imports: [IgxLayoutDirective, IgxButtonDirective, IgxBulletGraphCoreModule]
2120
})
2221
export class <%=ClassName%>Component implements AfterViewInit {

packages/igx-templates/igx-ts/calendar/default/files/src/app/__path__/__filePrefix__.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ import { IgxLayoutDirective, IgxCalendarComponent } from '<%=igxPackage%>';
44
@Component({
55
selector: 'app-<%=filePrefix%>',
66
templateUrl: './<%=filePrefix%>.component.html',
7-
styleUrls: ['./<%=filePrefix%>.component.scss'],
7+
styleUrl: './<%=filePrefix%>.component.scss',
88
encapsulation: ViewEncapsulation.None,
9-
standalone: true,
109
imports: [IgxLayoutDirective, IgxCalendarComponent]
1110
})
1211
export class <%=ClassName%>Component { }

packages/igx-templates/igx-ts/carousel/default/files/src/app/__path__/__filePrefix__.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ import { IgxCarouselComponent, IgxSlideComponent } from '<%=igxPackage%>';
55
@Component({
66
selector: 'app-<%=filePrefix%>',
77
templateUrl: './<%=filePrefix%>.component.html',
8-
styleUrls: ['./<%=filePrefix%>.component.scss'],
9-
standalone: true,
8+
styleUrl: './<%=filePrefix%>.component.scss',
109
imports: [IgxCarouselComponent, NgFor, IgxSlideComponent]
1110
})
1211
export class <%=ClassName%>Component implements OnInit {

packages/igx-templates/igx-ts/category-chart/default/files/src/app/__path__/__filePrefix__.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ import { FormsModule } from '@angular/forms';
55
@Component({
66
selector: 'app-<%=filePrefix%>',
77
templateUrl: './<%=filePrefix%>.component.html',
8-
styleUrls: ['./<%=filePrefix%>.component.scss'],
9-
standalone: true,
8+
styleUrl: './<%=filePrefix%>.component.scss',
109
imports: [FormsModule, IgxCategoryChartModule]
1110
})
1211
export class <%=ClassName%>Component {

packages/igx-templates/igx-ts/chip/default/files/src/app/__path__/__filePrefix__.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ interface NamedEntry {
2424

2525
@Component({
2626
selector: 'app-<%=filePrefix%>',
27-
styleUrls: ['./<%=filePrefix%>.component.scss'],
2827
templateUrl: './<%=filePrefix%>.component.html',
29-
standalone: true,
28+
styleUrl: './<%=filePrefix%>.component.scss',
3029
imports: [
3130
IgxLayoutDirective,
3231
IgxChipsAreaComponent,

packages/igx-templates/igx-ts/combo/default/files/src/app/__path__/__filePrefix__.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ import {
1010
@Component({
1111
selector: 'app-<%=filePrefix%>',
1212
templateUrl: './<%=filePrefix%>.component.html',
13-
styleUrls: ['./<%=filePrefix%>.component.scss'],
14-
standalone: true,
13+
styleUrl: './<%=filePrefix%>.component.scss',
1514
imports: [
1615
IgxComboComponent,
1716
IgxComboItemDirective,

packages/igx-templates/igx-ts/custom-templates/awesome-grid/files/src/app/__path__/__filePrefix__.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ import { ReactiveFormsModule, FormsModule } from '@angular/forms';
3838
@Component({
3939
selector: 'app-<%=filePrefix%>',
4040
templateUrl: './<%=filePrefix%>.component.html',
41-
styleUrls: ['./<%=filePrefix%>.component.scss'],
42-
standalone: true,
41+
styleUrl: './<%=filePrefix%>.component.scss',
4342
imports: [
4443
IgxSwitchComponent,
4544
ReactiveFormsModule,

0 commit comments

Comments
 (0)