> ## Documentation Index
> Fetch the complete documentation index at: https://developer.valuechecker.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Upcoming Features

export const LabelPill = ({children, color = "gray"}) => {
  const content = typeof children === "string" ? children.trim() : children;
  const colorPresets = {
    gray: {
      lightBg: "#f3f4f6",
      lightText: "#111827",
      darkBg: "#374151",
      darkText: "#f9fafb"
    },
    green: {
      lightBg: "#d1fae5",
      lightText: "#065f46",
      darkBg: "#064e3b",
      darkText: "#a7f3d0"
    },
    yellow: {
      lightBg: "#fef3c7",
      lightText: "#92400e",
      darkBg: "#78350f",
      darkText: "#fde68a"
    },
    red: {
      lightBg: "#fee2e2",
      lightText: "#991b1b",
      darkBg: "#7f1d1d",
      darkText: "#fecaca"
    },
    blue: {
      lightBg: "#dbeafe",
      lightText: "#1e3a8a",
      darkBg: "#1e40af",
      darkText: "#bfdbfe"
    }
  };
  const {lightBg, lightText, darkBg, darkText} = colorPresets[color] || colorPresets.gray;
  return <div className="inline-block mr-2 align-middle">
<span className="keyword-pill inline-block dark:hidden" style={{
    backgroundColor: lightBg,
    color: lightText
  }}>
{content}
</span>

      <span className="keyword-pill hidden dark:inline-block" style={{
    backgroundColor: darkBg,
    color: darkText
  }}>
        {content}
      </span>
    </div>;
};

<img src="https://mintcdn.com/icssab-963fd89c/lHGGITTH5h_kQyJD/assets/roadmap-mountain.jpg?fit=max&auto=format&n=lHGGITTH5h_kQyJD&q=85&s=87fc2cb1e9699986d640756c48991e79" alt="roadmap" width="5481" height="2297" data-path="assets/roadmap-mountain.jpg" />

<Update label="Q2 2026" description="New capability">
  ## <Icon icon="file-arrow-up" size={24} /> Upload claimed item lists in PDF and other formats

  <LabelPill color="green">Backwards compatible</LabelPill>

  Submit claimed item lists in PDF and other supported formats for processing by the API.
</Update>
