Skip to content

pantoken / packages/plugin-kit/src / resolveTokens

Funktion: resolveTokens()

resolveTokens(base, options?): Map<string, string>

Beta

Løs alle tokens værdi mod sættet (se makeResolver), ordnet efter navn.

Parametre

base

skrivbeskyttet Token[]

options?

ResolveOptions

Returnerer

Map<string, string>

Eksempel

Løs en hel IR til et navn → værdi-kort

ts
import { resolveTokens } from "@pantoken/utils";
import type { Token } from "@pantoken/model";

const ir: Token[] = [
  { name: "--instui-leaf", syntax: "<color>", inherits: true, value: "#0374B5" },
  { name: "--instui-brand", syntax: "*", inherits: true, value: "var(--instui-leaf)" },
  { name: "--instui-bg", syntax: "*", inherits: true, value: "light-dark(#fff, #000)" },
];

const byName = resolveTokens(ir, { mode: "dark" });
byName.get("--instui-brand"); // → "#0374B5"
byName.get("--instui-bg");    // → "#000"