Skip to content

Commit

Permalink
feat(core): bump version to 18.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
pavankjadda committed May 30, 2024
1 parent 00b680f commit bfa3569
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-kit",
"version": "18.0.4",
"version": "18.0.5",
"scripts": {
"ng": "ng",
"start": "ng serve --watch --hmr --port=4300",
Expand Down
2 changes: 1 addition & 1 deletion projects/ng-kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@js-smart/ng-kit",
"version": "18.0.4",
"version": "18.0.5",
"license": "MIT",
"author": "Pavan Kumar Jadda",
"private": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { NgStyle } from '@angular/common';
(blur)="onBlur.emit($event)"
[disabled]="disabled()"
[type]="type()"
[ngStyle]="style()"
[style]="style()"
[attr.data-cy]="'edit-link-button'"
mat-button>
<mat-icon>{{ icon() }}</mat-icon>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { NgStyle } from '@angular/common';
(blur)="onBlur.emit($event)"
[disabled]="disabled() || loading()"
[type]="type()"
[ngStyle]="style()"
[style]="style()"
[attr.data-cy]="'delete-button'">
@if (loading()) {
<span aria-hidden="true" class="spinner-border spinner-border-sm" role="status"></span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { BaseButtonComponent } from '../base-button/base-button.component';
(blur)="onBlur.emit($event)"
[disabled]="disabled()"
[type]="type()"
[ngStyle]="style()"
[style]="style()"
[attr.data-cy]="'edit-bs-button'"
mat-button>
<edit-solid-svg></edit-solid-svg>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { BaseButtonComponent } from '../base-button/base-button.component';
(blur)="onBlur.emit($event)"
[disabled]="disabled()"
[type]="type()"
[ngStyle]="style()"
[style]="style()"
[attr.data-cy]="'edit-button'"
mat-raised-button>
<mat-icon>{{ icon() }}</mat-icon>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { NgStyle } from '@angular/common';
(blur)="onBlur.emit($event)"
[disabled]="disabled()"
[type]="type()"
[ngStyle]="style()"
[style]="style()"
[attr.data-cy]="'edit-svg-icon-button'"
mat-raised-button>
<edit-solid-svg></edit-solid-svg>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { BaseButtonComponent } from '../base-button/base-button.component';
(blur)="onBlur.emit($event)"
[disabled]="disabled()"
[type]="type()"
[ngStyle]="style()"
[style]="style()"
[attr.data-cy]="'manage-button'">
<mat-icon>{{ icon() }}</mat-icon>
{{ label() }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { NgStyle } from '@angular/common';
(blur)="onBlur.emit($event)"
[disabled]="disabled() || loading()"
[type]="type()"
[ngStyle]="style()"
[style]="style()"
[attr.data-cy]="'primary-button'">
@if (loading()) {
<span aria-hidden="true" class="spinner-border spinner-border-sm" role="status"></span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { MatButton } from '@angular/material/button';
(blur)="onBlur.emit($event)"
[disabled]="disabled() || loading()"
[type]="type()"
[ngStyle]="style()"
[style]="style()"
[attr.data-cy]="'save-primary-button'">
@if (loading()) {
<span aria-hidden="true" class="spinner-border spinner-border-sm" role="status"></span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { MatIcon } from '@angular/material/icon';
(blur)="onBlur.emit($event)"
[disabled]="disabled() || loading()"
[type]="type()"
[ngStyle]="style()"
[style]="style()"
[attr.data-cy]="'success-button'">
@if (loading()) {
<span aria-hidden="true" class="spinner-border spinner-border-sm" role="status"></span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { BaseButtonComponent } from '../base-button/base-button.component';
(blur)="onBlur.emit($event)"
[disabled]="disabled()"
[type]="type()"
[ngStyle]="style()"
[style]="style()"
[attr.data-cy]="'view-button'">
<mat-icon>{{ icon() }}</mat-icon>
{{ label() }}
Expand Down

0 comments on commit bfa3569

Please sign in to comment.