@tuki-io/tuki-widgets 0.0.67 → 0.0.69

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuki-io/tuki-widgets",
3
- "version": "0.0.67",
3
+ "version": "0.0.69",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "start": "ng serve",
@@ -2,10 +2,10 @@
2
2
  <header class="card__header">
3
3
  <h2>{{ title }}</h2>
4
4
  <div class="card__menu-button">
5
- <img width="18" src="/assets/icons/menu_icon.png" alt="Menu Icon">
5
+ <img width="18" src="assets/icons/menu_icon.png" alt="Menu Icon">
6
6
  </div>
7
7
  </header>
8
8
  <div class="card__content">
9
9
  <ng-content select="card-content"></ng-content>
10
10
  </div>
11
- </article>
11
+ </article>
@@ -2,10 +2,10 @@
2
2
  <ng-container ngProjectAs="card-content">
3
3
  <div class="card__content-info">
4
4
  <div class="card__content-wrapper">
5
- <img width="42" [src]="'/assets/icons/' + type + '.png'" alt="" />
5
+ <img width="42" [src]="'assets/icons/' + type + '.png'" alt="" />
6
6
  <div class="card__content-text">
7
7
  <div class="card__content-label">
8
- {{ upgradeStatus === 'ready' ? stats?.totalReady : stats?.totalUpgraded }}
8
+ {{ upgradeStatus === 'ready' ? stats?.totalReady : stats?.totalUpgraded }}
9
9
  {{ type === 'user' ? 'Users' : 'Sites' }}</div>
10
10
  <div class="card__content-description">{{ upgradeStatus === 'ready' ? 'Ready to Upgrade' : 'Already Upgraded' }}</div>
11
11
  </div>
@@ -14,13 +14,13 @@
14
14
  <img
15
15
  *ngIf="upgradeStatus === 'ready'"
16
16
  height="48"
17
- src="/assets/icons/ready_to_upgrade.png"
17
+ src="assets/icons/ready_to_upgrade.png"
18
18
  alt=""
19
19
  />
20
20
  <img
21
21
  *ngIf="upgradeStatus === 'already'"
22
22
  height="48"
23
- src="/assets/icons/already_upgraded.png"
23
+ src="assets/icons/already_upgraded.png"
24
24
  alt=""
25
25
  />
26
26
  </div>
@@ -5,11 +5,11 @@
5
5
  <!-- Search Input with Material Design -->
6
6
  <mat-form-field *ngSwitchCase="'search'" appearance="outline" class="search-field">
7
7
  <mat-label>{{ filter.placeholder }}</mat-label>
8
- <input matInput
8
+ <input matInput
9
9
  [placeholder]="filter.placeholder"
10
10
  (input)="onFilter(filter.columnKey, $event)">
11
11
  <mat-icon matPrefix class="search-icon">
12
- <img src="/assets/icons/search_icon.png" alt="Search" />
12
+ <img src="assets/icons/search_icon.png" alt="Search" />
13
13
  </mat-icon>
14
14
  </mat-form-field>
15
15
 
@@ -25,4 +25,4 @@
25
25
  </ng-container>
26
26
  </div>
27
27
  </ng-container>
28
- </div>
28
+ </div>
@@ -35,7 +35,7 @@
35
35
  </td>
36
36
  </ng-container>
37
37
 
38
- <!-- Upgraded Users Column -->
38
+ <!-- Upgraded Users Column -->
39
39
  <ng-container matColumnDef="upgraded users">
40
40
  <th mat-header-cell *matHeaderCellDef>Upgraded Users</th>
41
41
  <td mat-cell *matCellDef="let element">
@@ -51,8 +51,8 @@
51
51
  <th mat-header-cell *matHeaderCellDef>Location Mapping</th>
52
52
  <td mat-cell *matCellDef="let element">
53
53
  <div class="status-icon-cell">
54
- <img *ngIf="element.locationMapping" src="/assets/icons/check2_icon.png" alt="Location Mapping Enabled"/>
55
- <img *ngIf="!element.locationMapping" src="/assets/icons/issue_icon.png" alt="Location Mapping Disabled"/>
54
+ <img *ngIf="element.locationMapping" src="assets/icons/check2_icon.png" alt="Location Mapping Enabled"/>
55
+ <img *ngIf="!element.locationMapping" src="assets/icons/issue_icon.png" alt="Location Mapping Disabled"/>
56
56
  </div>
57
57
  </td>
58
58
  </ng-container>
@@ -62,8 +62,8 @@
62
62
  <th mat-header-cell *matHeaderCellDef>PSTN Trunk</th>
63
63
  <td mat-cell *matCellDef="let element">
64
64
  <div class="status-icon-cell">
65
- <img *ngIf="element.PSTNTrunk" src="/assets/icons/check2_icon.png" alt="PSTN Trunk Enabled"/>
66
- <img *ngIf="!element.PSTNTrunk" src="/assets/icons/issue_icon.png" alt="PSTN Trunk Disabled"/>
65
+ <img *ngIf="element.PSTNTrunk" src="assets/icons/check2_icon.png" alt="PSTN Trunk Enabled"/>
66
+ <img *ngIf="!element.PSTNTrunk" src="assets/icons/issue_icon.png" alt="PSTN Trunk Disabled"/>
67
67
  </div>
68
68
  </td>
69
69
  </ng-container>
@@ -89,4 +89,4 @@
89
89
  <tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
90
90
  <tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
91
91
  </table>
92
- </div>
92
+ </div>
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuki-io/tuki-widgets",
3
- "version": "0.0.67",
3
+ "version": "0.0.69",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.2.0",
6
6
  "@angular/core": "^14.2.0",