Skip to content

Commit 0216add

Browse files
lint
1 parent 5ec7a03 commit 0216add

File tree

36 files changed

+168
-214
lines changed

36 files changed

+168
-214
lines changed

apps/demos/Demos/Calendar/Overview/Angular/app/app.component.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@
1010
[cellTemplate]="cellTemplate"
1111
weekNumberRule="auto"
1212
>
13-
<span
14-
*dxTemplate="let cell of 'custom'"
15-
[class]="getCellCssClass(cell)"
16-
>
13+
<span *dxTemplate="let cell of 'custom'" [class]="getCellCssClass(cell)">
1714
{{ cell.text }}
1815
</span>
1916
</dx-calendar>

apps/demos/Demos/CardView/CardTemplate/Angular/app/app.component.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,7 @@
5050
<dxo-position at="center" my="center" collision="fit"></dxo-position>
5151
<div *dxTemplate="let _ of 'content'">
5252
@if(currentVehicle) {
53-
<license-info
54-
[vehicle]="currentVehicle"
55-
></license-info>
53+
<license-info [vehicle]="currentVehicle"></license-info>
5654
}
5755
</div>
5856
</dx-popup>

apps/demos/Demos/CardView/SimpleArray/Angular/app/app.component.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
[cardMinWidth]="320"
77
>
88
@for (column of columns; track $index) {
9-
<dxi-card-view-column
10-
[dataField]="column"
11-
></dxi-card-view-column>
9+
<dxi-card-view-column [dataField]="column"></dxi-card-view-column>
1210
}
1311
</dx-card-view>

apps/demos/Demos/Charts/CenterLabelCustomization/Angular/app/app.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
<tspan x="100">{{ country }}</tspan>
4848
<!-- display: inline -->
4949
<tspan x="100" dy="20px" style="font-weight: 600">{{
50-
calculateTotal(pieChart)
51-
}}</tspan>
50+
calculateTotal(pieChart)
51+
}}</tspan>
5252
</text>
5353
</svg>
5454
</dx-pie-chart>

apps/demos/Demos/Charts/Crosshair/Angular/app/app.component.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<dx-chart id="chart" [dataSource]="countriesInfo">
22
@for(energy of energySources; track energy.name) {
3-
<dxi-chart-series
4-
[valueField]="energy.value"
5-
[name]="energy.name"
6-
>
3+
<dxi-chart-series [valueField]="energy.value" [name]="energy.name">
74
</dxi-chart-series>
85
}
96
<dxo-chart-common-series-settings argumentField="country" type="spline">

apps/demos/Demos/Charts/CustomAnnotations/Angular/app/app.component.html

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,10 @@
1515
>
1616
</dxo-chart-common-annotation-settings>
1717
@for(data of populationData; track data.name) {
18-
<dxi-chart-annotation
19-
[data]="data"
20-
[argument]="data.name"
21-
>
18+
<dxi-chart-annotation [data]="data" [argument]="data.name">
2219
</dxi-chart-annotation>
2320
}
24-
21+
2522
<dxo-chart-legend [visible]="false"></dxo-chart-legend>
2623
<svg *dxTemplate="let annotation of 'template'" class="annotation">
2724
<image attr.href="{{ getImagePath(annotation) }}" width="60" height="40" />

apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/app/app.component.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@
66
title="The Chemical Composition of the Earth Layers"
77
>
88
@for(item of seriesSource; track item.name) {
9-
<dxi-chart-series
10-
[valueField]="item.valueField"
11-
[name]="item.name"
12-
>
9+
<dxi-chart-series [valueField]="item.valueField" [name]="item.name">
1310
</dxi-chart-series>
1411
}
1512
<dxo-chart-common-series-settings type="bar" [ignoreEmptyPoints]="true">

apps/demos/Demos/Charts/DrillDown/Angular/app/app.component.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
<div id="drill-down-title">
1616
@for(drillInfo of drillInfos; track drillInfo; let isLast = $last) {
1717
<span>
18-
<span
19-
[class.link]="!!drillInfo.node"
20-
(click)="drillInfoClick(drillInfo.node)"
21-
>{{ drillInfo.text }}</span
18+
<span
19+
[class.link]="!!drillInfo.node"
20+
(click)="drillInfoClick(drillInfo.node)"
21+
>{{ drillInfo.text }}</span
2222
>
23-
{{ isLast ? "" : " > " }}
23+
{{ isLast ? "" : " > " }}
2424
</span>
2525
}
2626
</div>

apps/demos/Demos/Charts/Line/Angular/app/app.component.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
<div id="chart-demo">
22
<dx-chart palette="Violet" [dataSource]="countriesInfo">
33
@for(energy of energySources; track energy.name) {
4-
<dxi-chart-series
5-
[valueField]="energy.value"
6-
[name]="energy.name"
7-
>
4+
<dxi-chart-series [valueField]="energy.value" [name]="energy.name">
85
</dxi-chart-series>
96
}
107
<dxo-chart-common-series-settings

apps/demos/Demos/Charts/Palette/Angular/app/app.component.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,7 @@
1212

1313
<div class="palette-container flex-block">
1414
@for(color of baseColors; track color) {
15-
<div
16-
class="palette-item"
17-
[style.background-color]="color"
18-
></div>
15+
<div class="palette-item" [style.background-color]="color"></div>
1916
}
2017
</div>
2118
</div>

0 commit comments

Comments
 (0)