Skip to content

Commit

Permalink
chore: update with [email protected] (#1247)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lipata authored Apr 29, 2024
1 parent cb7dd42 commit 7d22629
Show file tree
Hide file tree
Showing 16 changed files with 29 additions and 29 deletions.
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "igniteui-cli",
"version": "13.1.16",
"version": "13.2.0-rc.0",
"description": "CLI tool for creating Ignite UI projects",
"keywords": [
"CLI",
Expand Down Expand Up @@ -78,8 +78,8 @@
"all": true
},
"dependencies": {
"@igniteui/angular-templates": "~17.1.13116",
"@igniteui/cli-core": "~13.1.16",
"@igniteui/angular-templates": "~17.2.1320-rc.0",
"@igniteui/cli-core": "~13.2.0-rc.0",
"chalk": "^2.3.2",
"fs-extra": "^3.0.1",
"glob": "^7.1.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igniteui/cli-core",
"version": "13.1.16",
"version": "13.2.0-rc.0",
"description": "Base types and functionality for Ignite UI CLI",
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ <h5 class="switch-sample__title">Boston Marathon 2020</h5>
<igx-column field="Name" header="Athlete" [width]="athleteColumnWidth" [hasSummary]="true">
<ng-template igxCell let-cell="cell">
<div class="cell__inner">
<igx-avatar [src]="cell.row.data.Avatar" [roundShape]="true" size="small"> </igx-avatar><span
<igx-avatar [src]="cell.row.data.Avatar" [shape]="'square'" size="small"> </igx-avatar><span
class="athlete_name">{{ cell.value }}</span>
<igx-badge *ngIf="live" [type]="getBadgeType(cell)" [icon]="getIconType(cell)"></igx-badge>
</div>
Expand Down Expand Up @@ -102,7 +102,7 @@ <h5 class="switch-sample__title">Boston Marathon 2020</h5>
</div>
<div class="s-overlay__players">
<div class="s-overlay__player" [ngClass]="{'s-overlay__player--winner' : hasWinner}">
<igx-avatar size="large" [roundShape]="true" [src]="winner.Avatar"></igx-avatar>
<igx-avatar size="large" [shape]="'square'" [src]="winner.Avatar"></igx-avatar>
<p class="s-overlay__player-name">{{ winner.Name }}</p>
</div>
</div>
Expand All @@ -123,7 +123,7 @@ <h5 class="switch-sample__title">Boston Marathon 2020</h5>
<span>{{i + 1}}</span>
<img [src]="getTrophyUrl(i)" alt="First place Trophy image" />
</div>
<igx-avatar [size]="i === 0 ? 'large': 'medium'" [roundShape]="true" [src]="player.Avatar"></igx-avatar>
<igx-avatar [size]="i === 0 ? 'large': 'medium'" [shape]="'square'" [src]="player.Avatar"></igx-avatar>
<p class="s-overlay__player-name">{{ player.Name }}</p>
</div>
</ng-container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</div>
<div class="caseSensitiveButton">
<button igxButton="icon" igxRipple [igxRippleCentered]="true" (click)="updateSearch()"
[igxButtonBackground]="caseSensitive? 'rgb(73, 180, 254)' : 'transparent'">
igxButtonBackground="caseSensitive? 'rgb(73, 180, 254)' : 'transparent'">
<igx-icon class="caseSensitiveIcon" family="material">text_fields</igx-icon>
</button>
</div>
Expand Down Expand Up @@ -66,7 +66,7 @@
[filterable]="false">
<ng-template igxCell let-cell="cell">
<div class="cell__inner avatar-cell">
<igx-avatar [src]="cell.row.data.avatar" [roundShape]="true" size="small"></igx-avatar>
<igx-avatar [src]="cell.row.data.avatar" [shape]="'square'" size="small"></igx-avatar>
</div>
</ng-template>
</igx-column>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<igx-list-item #item *ngFor="let contact of contacts | igxFilter: filterContacts;">
<div class="item-container">
<div class="contact">
<igx-avatar [src]="contact.photo" [roundShape]="true"></igx-avatar>
<igx-avatar [src]="contact.photo" [shape]="'square'"></igx-avatar>
<div class="contact__info">
<span class="name">{{ contact.name }}</span>
<span class="phone">{{ contact.phone }}</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@angular/platform-browser-dynamic": "~17.2.0",
"@angular/router": "~17.2.0",
"hammerjs": "^2.0.8",
"igniteui-angular": "~17.1.0",
"igniteui-angular": "~17.2.0-rc.1",
"minireset.css": "~0.0.7",
"rxjs": "~7.8.0",
"tslib": "~2.3.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@angular/router": "~17.2.0",
"angular-auth-oidc-client": "~15.0.4",
"hammerjs": "~2.0.8",
"igniteui-angular": "~17.1.0",
"igniteui-angular": "~17.2.0-rc.1",
"minireset.css": "~0.0.7",
"rxjs": "~7.8.0",
"tslib": "~2.3.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
<article class="sample-column">
<div class="wrapper">
<igx-avatar class="avatar" #target="tooltipTarget" [igxTooltipTarget]="tooltipRef" src="../assets/1.jpg"
size="medium" [roundShape]="true">
size="medium" [shape]="'square'">
</igx-avatar>

<div #tooltipRef="tooltip" igxTooltip>
<div class="locationTooltipContent">
<igx-avatar class="locationIcon" src="../assets/2.png" size="medium" [roundShape]="false"></igx-avatar>
<igx-avatar class="locationIcon" src="../assets/2.png" size="medium" [shape]="'square'"></igx-avatar>
<div>
<div>Name: June Osborne</div>
<div>Address: 2 Commerce Dr, Cranbury, NJ 08512, USA</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ <h5 class="switch-sample__title">Boston Marathon 2020</h5>
<igx-column field="Name" header="Athlete" [width]="athleteColumnWidth" [hasSummary]="true">
<ng-template igxCell let-cell="cell">
<div class="cell__inner">
<igx-avatar [src]="cell.row.data.Avatar" [roundShape]="true" size="small"> </igx-avatar><span
<igx-avatar [src]="cell.row.data.Avatar" [shape]="'square'" size="small"> </igx-avatar><span
class="athlete_name">{{ cell.value }}</span>
<igx-badge *ngIf="live" [type]="getBadgeType(cell)" [icon]="getIconType(cell)"></igx-badge>
</div>
Expand Down Expand Up @@ -102,7 +102,7 @@ <h5 class="switch-sample__title">Boston Marathon 2020</h5>
</div>
<div class="s-overlay__players">
<div class="s-overlay__player" [ngClass]="{'s-overlay__player--winner' : hasWinner}">
<igx-avatar size="large" [roundShape]="true" [src]="winner.Avatar"></igx-avatar>
<igx-avatar size="large" [shape]="'square'" [src]="winner.Avatar"></igx-avatar>
<p class="s-overlay__player-name">{{ winner.Name }}</p>
</div>
</div>
Expand All @@ -123,7 +123,7 @@ <h5 class="switch-sample__title">Boston Marathon 2020</h5>
<span>{{i + 1}}</span>
<img [src]="getTrophyUrl(i)" alt="First place Trophy image" />
</div>
<igx-avatar [size]="i === 0 ? 'large': 'medium'" [roundShape]="true" [src]="player.Avatar"></igx-avatar>
<igx-avatar [size]="i === 0 ? 'large': 'medium'" [shape]="'square'" [src]="player.Avatar"></igx-avatar>
<p class="s-overlay__player-name">{{ player.Name }}</p>
</div>
</ng-container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</div>
<div class="caseSensitiveButton">
<button igxButton="icon" igxRipple [igxRippleCentered]="true" (click)="updateSearch()"
[igxButtonBackground]="caseSensitive? 'rgb(73, 180, 254)' : 'transparent'">
igxButtonBackground="caseSensitive? 'rgb(73, 180, 254)' : 'transparent'">
<igx-icon class="caseSensitiveIcon" family="material">text_fields</igx-icon>
</button>
</div>
Expand Down Expand Up @@ -66,7 +66,7 @@
[filterable]="false">
<ng-template igxCell let-cell="cell">
<div class="cell__inner avatar-cell">
<igx-avatar [src]="cell.row.data.avatar" [roundShape]="true" size="small"></igx-avatar>
<igx-avatar [src]="cell.row.data.avatar" [shape]="'square'" size="small"></igx-avatar>
</div>
</ng-template>
</igx-column>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<igx-list-item #item *ngFor="let contact of contacts | igxFilter: filterContacts;">
<div class="item-container">
<div class="contact">
<igx-avatar [src]="contact.photo" [roundShape]="true"></igx-avatar>
<igx-avatar [src]="contact.photo" [shape]="'square'"></igx-avatar>
<div class="contact__info">
<span class="name">{{ contact.name }}</span>
<span class="phone">{{ contact.phone }}</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@angular/platform-browser-dynamic": "~17.2.0",
"@angular/router": "~17.2.0",
"hammerjs": "~2.0.8",
"igniteui-angular": "~17.1.0",
"igniteui-angular": "~17.2.0-rc.1",
"minireset.css": "~0.0.7",
"rxjs": "~7.8.0",
"tslib": "~2.3.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@angular/router": "~17.2.0",
"angular-auth-oidc-client": "~15.0.4",
"hammerjs": "~2.0.8",
"igniteui-angular": "~17.1.0",
"igniteui-angular": "~17.2.0-rc.1",
"minireset.css": "~0.0.7",
"rxjs": "~7.8.0",
"tslib": "~2.3.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
<article class="sample-column">
<div class="wrapper">
<igx-avatar class="avatar" #target="tooltipTarget" [igxTooltipTarget]="tooltipRef" src="../assets/1.jpg"
size="medium" [roundShape]="true">
size="medium" [shape]="'square'">
</igx-avatar>

<div #tooltipRef="tooltip" igxTooltip>
<div class="locationTooltipContent">
<igx-avatar class="locationIcon" src="../assets/2.png" size="medium" [roundShape]="false"></igx-avatar>
<igx-avatar class="locationIcon" src="../assets/2.png" size="medium" [shape]="'square'"></igx-avatar>
<div>
<div>Name: June Osborne</div>
<div>Address: 2 Commerce Dr, Cranbury, NJ 08512, USA</div>
Expand Down
4 changes: 2 additions & 2 deletions packages/igx-templates/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igniteui/angular-templates",
"version": "17.1.13116",
"version": "17.2.1320-rc.0",
"description": "Templates for Ignite UI for Angular projects and components",
"repository": {
"type": "git",
Expand All @@ -12,7 +12,7 @@
"author": "Infragistics",
"license": "MIT",
"dependencies": {
"@igniteui/cli-core": "~13.1.16",
"@igniteui/cli-core": "~13.2.0-rc.0",
"typescript": "~5.4.3"
}
}
6 changes: 3 additions & 3 deletions packages/ng-schematics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igniteui/angular-schematics",
"version": "17.1.13116",
"version": "17.2.1320-rc.0",
"description": "Ignite UI for Angular Schematics for ng new and ng generate",
"repository": {
"type": "git",
Expand All @@ -20,8 +20,8 @@
"dependencies": {
"@angular-devkit/core": "~14.0.0",
"@angular-devkit/schematics": "~14.0.0",
"@igniteui/angular-templates": "~17.1.13116",
"@igniteui/cli-core": "~13.1.16",
"@igniteui/angular-templates": "~17.2.1320-rc.0",
"@igniteui/cli-core": "~13.2.0-rc.0",
"@schematics/angular": "~14.0.0",
"rxjs": "^6.6.3"
},
Expand Down

0 comments on commit 7d22629

Please sign in to comment.