chore: generate
This commit is contained in:
parent
605ae48c6f
commit
9211ef7e95
3 changed files with 14 additions and 10 deletions
|
|
@ -13,12 +13,8 @@ export function mapV2Foreground(
|
||||||
})
|
})
|
||||||
|
|
||||||
return {
|
return {
|
||||||
"v2-text-text-base": isDark
|
"v2-text-text-base": isDark ? blend("#ffffff", body, 0.9) : shift(body, { l: -0.07, c: 1.04 }),
|
||||||
? blend("#ffffff", body, 0.9)
|
"v2-text-text-muted": overrides["text-weak"] ?? shift(body, { l: isDark ? -0.11 : 0.11, c: 0.9 }),
|
||||||
: shift(body, { l: -0.07, c: 1.04 }),
|
|
||||||
"v2-text-text-muted":
|
|
||||||
overrides["text-weak"] ??
|
|
||||||
shift(body, { l: isDark ? -0.11 : 0.11, c: 0.9 }),
|
|
||||||
"v2-text-text-faint": shift(body, { l: isDark ? -0.2 : 0.21, c: isDark ? 0.78 : 0.72 }),
|
"v2-text-text-faint": shift(body, { l: isDark ? -0.2 : 0.21, c: isDark ? 0.78 : 0.72 }),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -143,8 +143,6 @@ export function mapV2Semantics(isDark: boolean): Record<string, V2ColorValue> {
|
||||||
return isDark ? dark : light
|
return isDark ? dark : light
|
||||||
}
|
}
|
||||||
|
|
||||||
export function mergeV2Tokens(
|
export function mergeV2Tokens(...layers: Record<string, V2ColorValue>[]): Record<string, V2ColorValue> {
|
||||||
...layers: Record<string, V2ColorValue>[]
|
|
||||||
): Record<string, V2ColorValue> {
|
|
||||||
return Object.assign({}, ...layers)
|
return Object.assign({}, ...layers)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,17 @@ export function DialogFooter(props: ParentProps) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function Dialog(props: DialogProps) {
|
export function Dialog(props: DialogProps) {
|
||||||
const [local] = splitProps(props, ["title", "description", "action", "size", "variant", "class", "classList", "fit", "children"])
|
const [local] = splitProps(props, [
|
||||||
|
"title",
|
||||||
|
"description",
|
||||||
|
"action",
|
||||||
|
"size",
|
||||||
|
"variant",
|
||||||
|
"class",
|
||||||
|
"classList",
|
||||||
|
"fit",
|
||||||
|
"children",
|
||||||
|
])
|
||||||
const title = children(() => local.title)
|
const title = children(() => local.title)
|
||||||
const description = children(() => local.description)
|
const description = children(() => local.description)
|
||||||
const action = children(() => local.action)
|
const action = children(() => local.action)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue