@shisyamo4131/air-guard-v2-schemas 2.4.2-dev.85 → 2.4.2-dev.86

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": "@shisyamo4131/air-guard-v2-schemas",
3
- "version": "2.4.2-dev.85",
3
+ "version": "2.4.2-dev.86",
4
4
  "description": "Schemas for AirGuard V2",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -38,6 +38,8 @@ export const VALUES = Object.freeze({
38
38
  disabled: (currentStatus) => {
39
39
  return true;
40
40
  },
41
+ text: "未確認配置です。",
42
+ icon: "mdi-alert-circle-outline",
41
43
  next: { status: "CONFIRMED", text: "配置了解" },
42
44
  prev: null,
43
45
  },
@@ -57,6 +59,8 @@ export const VALUES = Object.freeze({
57
59
  disabled: (currentStatus) => {
58
60
  return !(currentStatus === "ARRANGED" || currentStatus === "ARRIVED");
59
61
  },
62
+ text: "確認済みの配置です。",
63
+ icon: "mdi-check-circle-outline",
60
64
  next: { status: "ARRIVED", text: "上番する" },
61
65
  prev: { status: "ARRANGED", text: "配置を差し戻す" },
62
66
  },
@@ -75,6 +79,8 @@ export const VALUES = Object.freeze({
75
79
  disabled: (currentStatus) => {
76
80
  return !(currentStatus === "CONFIRMED" || currentStatus === "LEAVED");
77
81
  },
82
+ text: "上番済みの配置です。",
83
+ icon: "mdi-account-check-outline",
78
84
  next: { status: "LEAVED", text: "下番する" },
79
85
  prev: { status: "CONFIRMED", text: "上番を取り消す" },
80
86
  },
@@ -94,6 +100,8 @@ export const VALUES = Object.freeze({
94
100
  disabled: (currentStatus) => {
95
101
  return !(currentStatus === "ARRIVED" || currentStatus === "LEAVED");
96
102
  },
103
+ text: "下番済みの配置です。",
104
+ icon: "mdi-account-off-outline",
97
105
  next: null,
98
106
  prev: { status: "ARRIVED", text: "下番を取り消す" },
99
107
  },