@fewangsit/wangsvue-fats 1.0.0-alpha.156 → 1.0.0-alpha.158
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/components/username/UserName.vue.d.ts +7 -2
- package/package.json +1 -1
- package/stats.html +1 -1
- package/utils/getStatusSeverity.util.d.ts +4 -1
- package/wangsvue-fats.js +5277 -5272
- package/wangsvue-fats.system.js +71 -71
|
@@ -3,6 +3,8 @@ export type FixedAssetStatus =
|
|
|
3
3
|
| 'Active'
|
|
4
4
|
| 'Approved'
|
|
5
5
|
| 'Available'
|
|
6
|
+
| 'Completed'
|
|
7
|
+
| 'Completion Approval'
|
|
6
8
|
| 'Damaged'
|
|
7
9
|
| 'Disposed'
|
|
8
10
|
| 'Expired License'
|
|
@@ -23,8 +25,9 @@ export type FixedAssetStatus =
|
|
|
23
25
|
| 'TAG Reported'
|
|
24
26
|
| 'Unassigned'
|
|
25
27
|
| 'Unmanaged'
|
|
28
|
+
| 'Waiting for Approval'
|
|
26
29
|
| 'Waiting for Handover'
|
|
27
|
-
| 'Waiting for
|
|
30
|
+
| 'Waiting for Verification';
|
|
28
31
|
export default function getStatusSeverity(
|
|
29
32
|
status: FixedAssetStatus,
|
|
30
33
|
): BadgeProps['severity'];
|