vesant-sdk 1.7.1-dev.ec505dc → 1.7.1-dev.f42297f

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/dist/react.mjs CHANGED
@@ -2126,6 +2126,7 @@ function isValidFileSize(file, maxSizeBytes = 10 * 1024 * 1024) {
2126
2126
  }
2127
2127
  function formatKycStatus(status) {
2128
2128
  const statusMap = {
2129
+ awaiting_kyc: "Awaiting KYC",
2129
2130
  pending: "Pending Review",
2130
2131
  accepted: "Approved",
2131
2132
  declined: "Rejected",
@@ -2136,6 +2137,8 @@ function formatKycStatus(status) {
2136
2137
  }
2137
2138
  function getStatusColor(status) {
2138
2139
  const colorMap = {
2140
+ awaiting_kyc: "#94a3b8",
2141
+ // slate — not started
2139
2142
  pending: "#f59e0b",
2140
2143
  // amber
2141
2144
  accepted: "#10b981",