@igniteui/angular-templates 17.1.13116 → 17.2.1320-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/igx-ts/custom-templates/awesome-grid/files/src/app/__path__/__filePrefix__.component.html +3 -3
- package/igx-ts/custom-templates/crm-grid/files/src/app/__path__/__filePrefix__.component.html +2 -2
- package/igx-ts/list/default/files/src/app/__path__/__filePrefix__.component.html +1 -1
- package/igx-ts/projects/_base/files/package.json +1 -1
- package/igx-ts/projects/side-nav-auth/files/package.json +1 -1
- package/igx-ts/tooltip/default/files/src/app/__path__/__filePrefix__.component.html +2 -2
- package/igx-ts-legacy/custom-templates/awesome-grid/files/src/app/__path__/__filePrefix__.component.html +3 -3
- package/igx-ts-legacy/custom-templates/crm-grid/files/src/app/__path__/__filePrefix__.component.html +2 -2
- package/igx-ts-legacy/list/default/files/src/app/__path__/__filePrefix__.component.html +1 -1
- package/igx-ts-legacy/projects/_base/files/package.json +1 -1
- package/igx-ts-legacy/projects/side-nav-auth/files/package.json +1 -1
- package/igx-ts-legacy/tooltip/default/files/src/app/__path__/__filePrefix__.component.html +2 -2
- package/package.json +2 -2
package/igx-ts/custom-templates/awesome-grid/files/src/app/__path__/__filePrefix__.component.html
CHANGED
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
<igx-column field="Name" header="Athlete" [width]="athleteColumnWidth" [hasSummary]="true">
|
|
39
39
|
<ng-template igxCell let-cell="cell">
|
|
40
40
|
<div class="cell__inner">
|
|
41
|
-
<igx-avatar [src]="cell.row.data.Avatar" [
|
|
41
|
+
<igx-avatar [src]="cell.row.data.Avatar" [shape]="'square'" size="small"> </igx-avatar><span
|
|
42
42
|
class="athlete_name">{{ cell.value }}</span>
|
|
43
43
|
<igx-badge *ngIf="live" [type]="getBadgeType(cell)" [icon]="getIconType(cell)"></igx-badge>
|
|
44
44
|
</div>
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
</div>
|
|
103
103
|
<div class="s-overlay__players">
|
|
104
104
|
<div class="s-overlay__player" [ngClass]="{'s-overlay__player--winner' : hasWinner}">
|
|
105
|
-
<igx-avatar size="large" [
|
|
105
|
+
<igx-avatar size="large" [shape]="'square'" [src]="winner.Avatar"></igx-avatar>
|
|
106
106
|
<p class="s-overlay__player-name">{{ winner.Name }}</p>
|
|
107
107
|
</div>
|
|
108
108
|
</div>
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
<span>{{i + 1}}</span>
|
|
124
124
|
<img [src]="getTrophyUrl(i)" alt="First place Trophy image" />
|
|
125
125
|
</div>
|
|
126
|
-
<igx-avatar [size]="i === 0 ? 'large': 'medium'" [
|
|
126
|
+
<igx-avatar [size]="i === 0 ? 'large': 'medium'" [shape]="'square'" [src]="player.Avatar"></igx-avatar>
|
|
127
127
|
<p class="s-overlay__player-name">{{ player.Name }}</p>
|
|
128
128
|
</div>
|
|
129
129
|
</ng-container>
|
package/igx-ts/custom-templates/crm-grid/files/src/app/__path__/__filePrefix__.component.html
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
</div>
|
|
33
33
|
<div class="caseSensitiveButton">
|
|
34
34
|
<button igxButton="icon" igxRipple [igxRippleCentered]="true" (click)="updateSearch()"
|
|
35
|
-
|
|
35
|
+
igxButtonBackground="caseSensitive? 'rgb(73, 180, 254)' : 'transparent'">
|
|
36
36
|
<igx-icon class="caseSensitiveIcon" family="material">text_fields</igx-icon>
|
|
37
37
|
</button>
|
|
38
38
|
</div>
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
[filterable]="false">
|
|
67
67
|
<ng-template igxCell let-cell="cell">
|
|
68
68
|
<div class="cell__inner avatar-cell">
|
|
69
|
-
<igx-avatar [src]="cell.row.data.avatar" [
|
|
69
|
+
<igx-avatar [src]="cell.row.data.avatar" [shape]="'square'" size="small"></igx-avatar>
|
|
70
70
|
</div>
|
|
71
71
|
</ng-template>
|
|
72
72
|
</igx-column>
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<igx-list-item #item *ngFor="let contact of contacts | igxFilter: filterContacts;">
|
|
20
20
|
<div class="item-container">
|
|
21
21
|
<div class="contact">
|
|
22
|
-
<igx-avatar [src]="contact.photo" [
|
|
22
|
+
<igx-avatar [src]="contact.photo" [shape]="'square'"></igx-avatar>
|
|
23
23
|
<div class="contact__info">
|
|
24
24
|
<span class="name">{{ contact.name }}</span>
|
|
25
25
|
<span class="phone">{{ contact.phone }}</span>
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
<article class="sample-column">
|
|
10
10
|
<div class="wrapper">
|
|
11
11
|
<igx-avatar class="avatar" #target="tooltipTarget" [igxTooltipTarget]="tooltipRef" src="../assets/1.jpg"
|
|
12
|
-
size="medium" [
|
|
12
|
+
size="medium" [shape]="'square'">
|
|
13
13
|
</igx-avatar>
|
|
14
14
|
|
|
15
15
|
<div #tooltipRef="tooltip" igxTooltip>
|
|
16
16
|
<div class="locationTooltipContent">
|
|
17
|
-
<igx-avatar class="locationIcon" src="../assets/2.png" size="medium" [
|
|
17
|
+
<igx-avatar class="locationIcon" src="../assets/2.png" size="medium" [shape]="'square'"></igx-avatar>
|
|
18
18
|
<div>
|
|
19
19
|
<div>Name: June Osborne</div>
|
|
20
20
|
<div>Address: 2 Commerce Dr, Cranbury, NJ 08512, USA</div>
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
<igx-column field="Name" header="Athlete" [width]="athleteColumnWidth" [hasSummary]="true">
|
|
39
39
|
<ng-template igxCell let-cell="cell">
|
|
40
40
|
<div class="cell__inner">
|
|
41
|
-
<igx-avatar [src]="cell.row.data.Avatar" [
|
|
41
|
+
<igx-avatar [src]="cell.row.data.Avatar" [shape]="'square'" size="small"> </igx-avatar><span
|
|
42
42
|
class="athlete_name">{{ cell.value }}</span>
|
|
43
43
|
<igx-badge *ngIf="live" [type]="getBadgeType(cell)" [icon]="getIconType(cell)"></igx-badge>
|
|
44
44
|
</div>
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
</div>
|
|
103
103
|
<div class="s-overlay__players">
|
|
104
104
|
<div class="s-overlay__player" [ngClass]="{'s-overlay__player--winner' : hasWinner}">
|
|
105
|
-
<igx-avatar size="large" [
|
|
105
|
+
<igx-avatar size="large" [shape]="'square'" [src]="winner.Avatar"></igx-avatar>
|
|
106
106
|
<p class="s-overlay__player-name">{{ winner.Name }}</p>
|
|
107
107
|
</div>
|
|
108
108
|
</div>
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
<span>{{i + 1}}</span>
|
|
124
124
|
<img [src]="getTrophyUrl(i)" alt="First place Trophy image" />
|
|
125
125
|
</div>
|
|
126
|
-
<igx-avatar [size]="i === 0 ? 'large': 'medium'" [
|
|
126
|
+
<igx-avatar [size]="i === 0 ? 'large': 'medium'" [shape]="'square'" [src]="player.Avatar"></igx-avatar>
|
|
127
127
|
<p class="s-overlay__player-name">{{ player.Name }}</p>
|
|
128
128
|
</div>
|
|
129
129
|
</ng-container>
|
package/igx-ts-legacy/custom-templates/crm-grid/files/src/app/__path__/__filePrefix__.component.html
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
</div>
|
|
33
33
|
<div class="caseSensitiveButton">
|
|
34
34
|
<button igxButton="icon" igxRipple [igxRippleCentered]="true" (click)="updateSearch()"
|
|
35
|
-
|
|
35
|
+
igxButtonBackground="caseSensitive? 'rgb(73, 180, 254)' : 'transparent'">
|
|
36
36
|
<igx-icon class="caseSensitiveIcon" family="material">text_fields</igx-icon>
|
|
37
37
|
</button>
|
|
38
38
|
</div>
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
[filterable]="false">
|
|
67
67
|
<ng-template igxCell let-cell="cell">
|
|
68
68
|
<div class="cell__inner avatar-cell">
|
|
69
|
-
<igx-avatar [src]="cell.row.data.avatar" [
|
|
69
|
+
<igx-avatar [src]="cell.row.data.avatar" [shape]="'square'" size="small"></igx-avatar>
|
|
70
70
|
</div>
|
|
71
71
|
</ng-template>
|
|
72
72
|
</igx-column>
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<igx-list-item #item *ngFor="let contact of contacts | igxFilter: filterContacts;">
|
|
20
20
|
<div class="item-container">
|
|
21
21
|
<div class="contact">
|
|
22
|
-
<igx-avatar [src]="contact.photo" [
|
|
22
|
+
<igx-avatar [src]="contact.photo" [shape]="'square'"></igx-avatar>
|
|
23
23
|
<div class="contact__info">
|
|
24
24
|
<span class="name">{{ contact.name }}</span>
|
|
25
25
|
<span class="phone">{{ contact.phone }}</span>
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
<article class="sample-column">
|
|
10
10
|
<div class="wrapper">
|
|
11
11
|
<igx-avatar class="avatar" #target="tooltipTarget" [igxTooltipTarget]="tooltipRef" src="../assets/1.jpg"
|
|
12
|
-
size="medium" [
|
|
12
|
+
size="medium" [shape]="'square'">
|
|
13
13
|
</igx-avatar>
|
|
14
14
|
|
|
15
15
|
<div #tooltipRef="tooltip" igxTooltip>
|
|
16
16
|
<div class="locationTooltipContent">
|
|
17
|
-
<igx-avatar class="locationIcon" src="../assets/2.png" size="medium" [
|
|
17
|
+
<igx-avatar class="locationIcon" src="../assets/2.png" size="medium" [shape]="'square'"></igx-avatar>
|
|
18
18
|
<div>
|
|
19
19
|
<div>Name: June Osborne</div>
|
|
20
20
|
<div>Address: 2 Commerce Dr, Cranbury, NJ 08512, USA</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igniteui/angular-templates",
|
|
3
|
-
"version": "17.
|
|
3
|
+
"version": "17.2.1320-rc.0",
|
|
4
4
|
"description": "Templates for Ignite UI for Angular projects and components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"author": "Infragistics",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@igniteui/cli-core": "~13.
|
|
15
|
+
"@igniteui/cli-core": "~13.2.0-rc.0",
|
|
16
16
|
"typescript": "~5.4.3"
|
|
17
17
|
}
|
|
18
18
|
}
|