@fewangsit/wangsvue-fats 1.0.0-alpha.146 → 1.0.0-alpha.147
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 +1 -1
- package/stats.html +1 -1
- package/utils/getStatusSeverity.util.d.ts +2 -0
- package/wangsvue-fats.js +2 -0
- package/wangsvue-fats.system.js +49 -49
|
@@ -5,6 +5,7 @@ export type FixedAssetStatus =
|
|
|
5
5
|
| 'Available'
|
|
6
6
|
| 'Damaged'
|
|
7
7
|
| 'Disposed'
|
|
8
|
+
| 'Expired License'
|
|
8
9
|
| 'Finished Approval'
|
|
9
10
|
| 'Managed'
|
|
10
11
|
| 'Missing'
|
|
@@ -17,6 +18,7 @@ export type FixedAssetStatus =
|
|
|
17
18
|
| 'Reported Disposal'
|
|
18
19
|
| 'Reported Missing'
|
|
19
20
|
| 'Reported Damaged'
|
|
21
|
+
| 'TAG Not Set'
|
|
20
22
|
| 'TAG Reported'
|
|
21
23
|
| 'Unassigned'
|
|
22
24
|
| 'Unmanaged'
|
package/wangsvue-fats.js
CHANGED
|
@@ -1555,6 +1555,7 @@ function rC(t) {
|
|
|
1555
1555
|
case "Reported Damaged":
|
|
1556
1556
|
case "TAG Reported":
|
|
1557
1557
|
case "Not Paired Yet":
|
|
1558
|
+
case "Expired License":
|
|
1558
1559
|
return "danger";
|
|
1559
1560
|
case "Unassigned":
|
|
1560
1561
|
case "Reported Disposal":
|
|
@@ -1565,6 +1566,7 @@ function rC(t) {
|
|
|
1565
1566
|
case "Waiting for Handover":
|
|
1566
1567
|
case "Waiting for Approval":
|
|
1567
1568
|
case "Need Approval":
|
|
1569
|
+
case "TAG Not Set":
|
|
1568
1570
|
return "warning";
|
|
1569
1571
|
default:
|
|
1570
1572
|
return "primary";
|