{
  "version": 3,
  "sources": ["../../../src/defs.ts", "../../../src/fragments/density.ts", "../../../src/fragments/disabled.ts", "../../../src/fragments/hover.ts", "../../../src/fragments/text.ts", "../../../src/util/elevation.ts", "../../../src/util/hash-styles.ts", "../../../src/util/mx.ts", "../../../src/util/size.ts", "../../../src/util/valence.ts"],
  "sourcesContent": ["//\n// Copyright 2022 DXOS.org\n//\n\nimport { type ChromaticPalette } from '@dxos/ui-types';\n\n/**\n * Translation namespace for OS-level translations.\n */\nexport const osTranslations = 'org.dxos.i18n.os';\n\n/**\n * Available color hues for UI components.\n */\nexport const hues: ChromaticPalette[] = [\n  'red',\n  'orange',\n  'amber',\n  'yellow',\n  'lime',\n  'green',\n  'emerald',\n  'teal',\n  'cyan',\n  'sky',\n  'blue',\n  'indigo',\n  'violet',\n  'purple',\n  'fuchsia',\n  'pink',\n  'rose',\n] as const;\n\nexport const hueShades = [50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950] as const;\n\n// NOTE: These are the JS-side style-API role keys (see ColorStyles in util/hash-styles.ts), kept\n// distinct from the renamed CSS custom-property suffixes (`-bg`/`-fg`).\nexport const roles = ['fill', 'surface', 'foreground', 'text', 'border'] as const;\n\n/**\n * Card size constants (Tailwind spacing units).\n * Cards should be no larger than 320px per WCAG 2.1 SC 1.4.10.\n */\n// TODO(burdon): Replace usage of these with semantic tokens.\nexport const cardMinInlineSize = 18;\nexport const cardDefaultInlineSize = 20; // 320px\nexport const cardMaxInlineSize = 22;\nexport const cardMinBlockSize = 18;\nexport const cardMaxBlockSize = 30;\n", "//\n// Copyright 2023 DXOS.org\n//\n\nimport { type Density } from '@dxos/ui-types';\n\nconst lgBlockSize = 'min-h-[2.5rem]';\nconst mdBlockSize = 'min-h-[2.5rem] pointer-fine:min-h-[2rem]';\nconst smBlockSize = 'min-h-[1.75rem]';\nconst xsBlockSize = 'min-h-[1.5rem]';\n\nconst lgDimensions = `${lgBlockSize} px-3`;\nconst mdDimensions = `${mdBlockSize} px-2`;\nconst smDimensions = `${smBlockSize} px-1.5`;\nconst xsDimensions = `${xsBlockSize} px-1`;\n\nexport const densityDimensions = (density: Density = 'md') => {\n  switch (density) {\n    case 'lg':\n      return lgDimensions;\n    case 'sm':\n      return smDimensions;\n    case 'xs':\n      return xsDimensions;\n    case 'md':\n    default:\n      return mdDimensions;\n  }\n};\n\nexport const densityBlockSize = (density: Density = 'md') => {\n  switch (density) {\n    case 'lg':\n      return lgBlockSize;\n    case 'sm':\n      return smBlockSize;\n    case 'xs':\n      return xsBlockSize;\n    case 'md':\n    default:\n      return mdBlockSize;\n  }\n};\n", "//\n// Copyright 2022 DXOS.org\n//\n\nexport const staticDisabled = 'opacity-40 cursor-not-allowed shadow-none';\nexport const dataDisabled = 'data-[disabled]:opacity-40 data-[disabled]:cursor-not-allowed';\n", "//\n// Copyright 2022 DXOS.org\n//\n\nexport const ghostHover = 'hover:bg-hover-surface';\nexport const ghostFocusWithin = 'focus-within:bg-hover-surface';\n\nexport const hoverableControls =\n  '[--controls-opacity:1] hover-hover:[--controls-opacity:0] hover-hover:hover:[--controls-opacity:1]';\n\nexport const groupHoverControlItemWithTransition = 'transition-opacity duration-200 opacity-0 group-hover:opacity-100';\n\nexport const hoverableFocusedKeyboardControls = 'focus-visible:[--controls-opacity:1]';\nexport const hoverableFocusedWithinControls = 'focus-within:[--controls-opacity:1]';\nexport const hoverableOpenControlItem = 'hover-hover:aria-[expanded=true]:[--controls-opacity:1]';\nexport const hoverableControlItem = 'opacity-(--controls-opacity)';\n", "//\n// Copyright 2022 DXOS.org\n//\n\n// TODO(burdon): Replace with Message component.\nexport const descriptionMessage = 'text-description border border-dashed border-separator rounded-sm p-4';\n", "//\n// Copyright 2023 DXOS.org\n//\n\nimport { type ComponentFragment, type Elevation, type SurfaceLevel } from '@dxos/ui-types';\n\nexport const surfaceShadow: ComponentFragment<{ elevation?: Elevation }> = ({ elevation }) => [\n  elevation === 'positioned'\n    ? 'shadow-sm'\n    : elevation === 'dialog' || elevation === 'toast'\n      ? 'shadow-md'\n      : 'shadow-none',\n];\n\nexport const surfaceZIndex: ComponentFragment<{ level?: SurfaceLevel; elevation?: Elevation }> = ({\n  level,\n  elevation,\n}) => {\n  switch (level) {\n    case 'tooltip':\n      return elevation === 'dialog' ? ['z-[53]'] : elevation === 'toast' ? ['z-[43]'] : ['z-50'];\n    case 'menu':\n      return elevation === 'dialog' ? ['z-[52]'] : elevation === 'toast' ? ['z-[42]'] : ['z-20'];\n    default:\n      return elevation === 'dialog' ? ['z-[51]'] : elevation === 'toast' ? ['z-[41]'] : ['z-[1]'];\n  }\n};\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport { type ChromaticPalette } from '@dxos/ui-types';\n\nexport type Hue = ChromaticPalette | 'neutral';\n\n/**\n * See theme.css\n */\nexport type ColorStyles = {\n  hue: Hue;\n  bg: string;\n  surface: string;\n  fg: string;\n  text: string;\n  border: string;\n};\n\nconst neutral: ColorStyles = {\n  hue: 'neutral',\n  bg: 'bg-neutral-bg',\n  surface: 'bg-neutral-surface',\n  fg: 'text-neutral-fg',\n  text: 'text-neutral-text',\n  border: 'border-neutral-border',\n};\n\n// NOTE: Coordinated with `tag.css`.\n// https://github.com/dxos/dxos/blob/main/packages/ui/react-ui-theme/src/styles/layers/tag.css\nconst styles: ColorStyles[] = [\n  {\n    hue: 'red',\n    bg: 'bg-red-bg',\n    surface: 'bg-red-surface',\n    fg: 'text-red-fg',\n    text: 'text-red-text',\n    border: 'border-red-border',\n  },\n  {\n    hue: 'orange',\n    bg: 'bg-orange-bg',\n    surface: 'bg-orange-surface',\n    fg: 'text-orange-fg',\n    text: 'text-orange-text',\n    border: 'border-orange-border',\n  },\n  {\n    hue: 'amber',\n    bg: 'bg-amber-bg',\n    surface: 'bg-amber-surface',\n    fg: 'text-amber-fg',\n    text: 'text-amber-text',\n    border: 'border-amber-border',\n  },\n  {\n    hue: 'yellow',\n    bg: 'bg-yellow-bg',\n    surface: 'bg-yellow-surface',\n    fg: 'text-yellow-fg',\n    text: 'text-yellow-text',\n    border: 'border-yellow-border',\n  },\n  {\n    hue: 'lime',\n    bg: 'bg-lime-bg',\n    surface: 'bg-lime-surface',\n    fg: 'text-lime-fg',\n    text: 'text-lime-text',\n    border: 'border-lime-border',\n  },\n  {\n    hue: 'green',\n    bg: 'bg-green-bg',\n    surface: 'bg-green-surface',\n    fg: 'text-green-fg',\n    text: 'text-green-text',\n    border: 'border-green-border',\n  },\n  {\n    hue: 'emerald',\n    bg: 'bg-emerald-bg',\n    surface: 'bg-emerald-surface',\n    fg: 'text-emerald-fg',\n    text: 'text-emerald-text',\n    border: 'border-emerald-border',\n  },\n  {\n    hue: 'teal',\n    bg: 'bg-teal-bg',\n    surface: 'bg-teal-surface',\n    fg: 'text-teal-fg',\n    text: 'text-teal-text',\n    border: 'border-teal-border',\n  },\n  {\n    hue: 'cyan',\n    bg: 'bg-cyan-bg',\n    surface: 'bg-cyan-surface',\n    fg: 'text-cyan-fg',\n    text: 'text-cyan-text',\n    border: 'border-cyan-border',\n  },\n  {\n    hue: 'sky',\n    bg: 'bg-sky-bg',\n    surface: 'bg-sky-surface',\n    fg: 'text-sky-fg',\n    text: 'text-sky-text',\n    border: 'border-sky-border',\n  },\n  {\n    hue: 'blue',\n    bg: 'bg-blue-bg',\n    surface: 'bg-blue-surface',\n    fg: 'text-blue-fg',\n    text: 'text-blue-text',\n    border: 'border-blue-border',\n  },\n  {\n    hue: 'indigo',\n    bg: 'bg-indigo-bg',\n    surface: 'bg-indigo-surface',\n    fg: 'text-indigo-fg',\n    text: 'text-indigo-text',\n    border: 'border-indigo-border',\n  },\n  {\n    hue: 'violet',\n    bg: 'bg-violet-bg',\n    surface: 'bg-violet-surface',\n    fg: 'text-violet-fg',\n    text: 'text-violet-text',\n    border: 'border-violet-border',\n  },\n  {\n    hue: 'purple',\n    bg: 'bg-purple-bg',\n    surface: 'bg-purple-surface',\n    fg: 'text-purple-fg',\n    text: 'text-purple-text',\n    border: 'border-purple-border',\n  },\n  {\n    hue: 'fuchsia',\n    bg: 'bg-fuchsia-bg',\n    surface: 'bg-fuchsia-surface',\n    fg: 'text-fuchsia-fg',\n    text: 'text-fuchsia-text',\n    border: 'border-fuchsia-border',\n  },\n  {\n    hue: 'pink',\n    bg: 'bg-pink-bg',\n    surface: 'bg-pink-surface',\n    fg: 'text-pink-fg',\n    text: 'text-pink-text',\n    border: 'border-pink-border',\n  },\n  {\n    hue: 'rose',\n    bg: 'bg-rose-bg',\n    surface: 'bg-rose-surface',\n    fg: 'text-rose-fg',\n    text: 'text-rose-text',\n    border: 'border-rose-border',\n  },\n];\n\nexport const palette = {\n  neutral,\n  hues: styles,\n};\n\nconst validHues: ReadonlySet<Hue> = new Set<Hue>([neutral.hue, ...styles.map((s) => s.hue)]);\n\n/**\n * Normalise an arbitrary string into a known `Hue`, falling back to `'neutral'` when the\n * input doesn't match one of the catalogued palette entries. Useful when accepting hue\n * values from user-authored data (e.g. ECHO objects, plugin settings) that need to be\n * forwarded to a hue-keyed prop like `Tag`'s `palette`.\n */\nexport const toHue = (hue: string | undefined): Hue => (hue && validHues.has(hue as Hue) ? (hue as Hue) : 'neutral');\n\n// TODO(burdon): Rename getClassNames.\nexport const getStyles = (hue: string): ColorStyles => {\n  return styles.find((color) => color.hue === hue) || neutral;\n};\n\n// TODO(thure): Reconcile with `to-fallback.ts` which exports `toHue` which overlaps a lot.\nexport const getHashStyles = (id: string | undefined): ColorStyles => {\n  return getStyles(getHashHue(id));\n};\n\nexport const getHashHue = (id: string | undefined): Hue => {\n  return id ? styles[getHash(id) % styles.length].hue : 'neutral';\n};\n\nconst getHash = (id: string): number => id.split('').reduce((acc, char) => acc + char.charCodeAt(0), 0);\n", "//\n// Copyright 2022 DXOS.org\n//\n\nimport { extendTailwindMerge, validators } from 'tailwind-merge';\n\ntype AdditionalClassGroups = 'density' | 'dx-focus-ring';\n\nexport const mx = extendTailwindMerge<AdditionalClassGroups>({\n  extend: {\n    classGroups: {\n      'font-family': ['font-body', 'font-mono'],\n      'font-weight': [\n        // App weights\n        'font-thin',\n        'font-extralight',\n        'font-light',\n        'font-normal',\n        'font-medium',\n        'font-semibold',\n        'font-bold',\n        'font-extrabold',\n        'font-black',\n        // Arbitrary numbers\n        validators.isArbitraryNumber,\n      ],\n\n      density: ['dx-density-sm', 'dx-density-md', 'dx-density-lg'],\n\n      'dx-focus-ring': [\n        'dx-focus-ring',\n        'dx-focus-ring-inset',\n        'dx-focus-ring-always',\n        'dx-focus-ring-inset-always',\n        'dx-focus-ring-group',\n        'dx-focus-ring-group-x',\n        'dx-focus-ring-group-y',\n        'dx-focus-ring-group-always',\n        'dx-focus-ring-group-x-always',\n        'dx-focus-ring-group-y-always',\n        'dx-focus-ring-inset-over-all',\n        'dx-focus-ring-inset-over-all-always',\n        'dx-focus-ring-main',\n        'dx-focus-ring-main-always',\n      ],\n    },\n  },\n});\n", "//\n// Copyright 2022 DXOS.org\n//\n\nimport { type CSSProperties } from 'react';\n\nimport { type Size } from '@dxos/ui-types';\n\nimport { mx } from '../util';\n\n// NOTE: Class names must be fully-specified string literals so Tailwind's static scanner can detect them.\nconst sizeMap: Record<string, { w: string; h: string }> = {\n  0: { w: 'w-0', h: 'h-0' },\n  px: { w: 'w-px', h: 'h-px' },\n  0.5: { w: 'w-0.5', h: 'h-0.5' },\n  1: { w: 'w-1', h: 'h-1' },\n  1.5: { w: 'w-1.5', h: 'h-1.5' },\n  2: { w: 'w-2', h: 'h-2' },\n  2.5: { w: 'w-2.5', h: 'h-2.5' },\n  3: { w: 'w-3', h: 'h-3' },\n  3.5: { w: 'w-3.5', h: 'h-3.5' },\n  4: { w: 'w-4', h: 'h-4' },\n  5: { w: 'w-5', h: 'h-5' },\n  6: { w: 'w-6', h: 'h-6' },\n  7: { w: 'w-7', h: 'h-7' },\n  8: { w: 'w-8', h: 'h-8' },\n  9: { w: 'w-9', h: 'h-9' },\n  10: { w: 'w-10', h: 'h-10' },\n  11: { w: 'w-11', h: 'h-11' },\n  12: { w: 'w-12', h: 'h-12' },\n  14: { w: 'w-14', h: 'h-14' },\n  16: { w: 'w-16', h: 'h-16' },\n  20: { w: 'w-20', h: 'h-20' },\n  24: { w: 'w-24', h: 'h-24' },\n  28: { w: 'w-28', h: 'h-28' },\n  32: { w: 'w-32', h: 'h-32' },\n  36: { w: 'w-36', h: 'h-36' },\n  40: { w: 'w-40', h: 'h-40' },\n  44: { w: 'w-44', h: 'h-44' },\n  48: { w: 'w-48', h: 'h-48' },\n  52: { w: 'w-52', h: 'h-52' },\n  56: { w: 'w-56', h: 'h-56' },\n  60: { w: 'w-60', h: 'h-60' },\n  64: { w: 'w-64', h: 'h-64' },\n  72: { w: 'w-72', h: 'h-72' },\n  80: { w: 'w-80', h: 'h-80' },\n  96: { w: 'w-96', h: 'h-96' },\n};\n\nconst SIZE_VALUES: Size[] = Object.keys(sizeMap).map((key) => (key === 'px' ? 'px' : (Number(key) as Size)));\n\nexport const getHeight = (size: Size) => sizeMap[size]?.h;\nexport const getWidth = (size: Size) => sizeMap[size]?.w;\nexport const getSize = (size: Size) => mx(getHeight(size), getWidth(size));\n\nexport const sizeValue = (size: Size): number => (size === 'px' ? 1 : size);\nexport const sizeToRem = (size: Size): string => (size === 'px' ? '1px' : `${(size as number) * 0.25}rem`);\n\nexport const iconSize = (size: Size | null): CSSProperties =>\n  ({ '--icon-size': size ? sizeToRem(size) : 'initial' }) as CSSProperties;\n\n/**\n * Snaps an arbitrary numeric value to the nearest valid Tailwind size token.\n *\n * The function tries progressively coarser series in order until a match is found:\n * 1. Exact match — returns the value as-is if it is already a valid `Size`.\n * 2. Zero or negative — clamps to `0`.\n * 3. Sub-half values (`< 0.5`) — maps to the `'px'` token (1 px).\n * 4. Half-step series (0.5 increments, e.g. 1.5, 2.5 …).\n * 5. Whole-number series (1, 2, 3 …).\n * 6. Double series (even numbers: 2, 4, 6 …).\n * 7. Quadruple series (multiples of 4: 4, 8, 12 …).\n * 8. Falls back to `defaultSize` if no series matches.\n *\n * @param value - Numeric size to snap (in Tailwind spacing units, where 1 unit = 0.25 rem).\n * @param defaultSize - Fallback `Size` token used when no series produces a valid match.\n * @returns The nearest valid `Size` token.\n */\nexport const snapSize = (value: number, defaultSize: Size): Size => {\n  if (SIZE_VALUES.includes(value as Size)) {\n    return value as Size;\n  } else if (value <= 0) {\n    return 0;\n  } else if (value < 0.5) {\n    return 'px';\n  } else {\n    const wholeSeries = Math.floor(value);\n    const halfSeries = Math.floor(value * 2) / 2;\n    const doubleSeries = Math.floor(value / 2) * 2;\n    const quadrupleSeries = Math.floor(value / 4) * 4;\n    if (SIZE_VALUES.includes(halfSeries as Size)) {\n      return halfSeries as Size;\n    } else if (SIZE_VALUES.includes(wholeSeries as Size)) {\n      return wholeSeries as Size;\n    } else if (SIZE_VALUES.includes(doubleSeries as Size)) {\n      return doubleSeries as Size;\n    } else if (SIZE_VALUES.includes(quadrupleSeries as Size)) {\n      return quadrupleSeries as Size;\n    } else {\n      return defaultSize;\n    }\n  }\n};\n", "//\n// Copyright 2022 DXOS.org\n//\n\nimport { type MessageValence } from '@dxos/ui-types';\n\nexport const textValence = (valence?: MessageValence) => {\n  switch (valence) {\n    case 'success':\n      return 'font-medium text-success-text';\n    case 'info':\n      return 'font-medium text-info-text';\n    case 'warning':\n      return 'font-medium text-warning-text';\n    case 'error':\n      return 'font-medium text-error-text';\n    default:\n      return 'font-medium';\n  }\n};\n\nexport const messageValence = (valence?: MessageValence) => {\n  switch (valence) {\n    case 'success':\n      return 'font-medium border-success-text text-success-fg bg-success-surface';\n    case 'info':\n      return 'font-medium border-info-text text-info-fg bg-info-surface';\n    case 'warning':\n      return 'font-medium border-warning-text text-warning-fg bg-warning-surface';\n    case 'error':\n      return 'font-medium border-error-text text-error-fg bg-error-surface';\n    default:\n      return 'font-medium border-neutral-text text-neutral-fg bg-neutral-surface';\n  }\n};\n\n/**\n * Classes for a Button rendered inside a Message.Root that should inherit the message's valence color.\n * Message.Root sets --dx-valence-bg / --dx-valence-bg-hover / --dx-valence-text on its DOM node.\n * Pass variant='valence' to the Button so button.css reads those variables.\n */\nexport const buttonValence = (_valence?: MessageValence): string =>\n  'text-(--dx-valence-text) bg-(--dx-valence-bg) hover:bg-(--dx-valence-bg-hover)';\n"],
  "mappings": "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",
  "names": ["osTranslations", "hues", "hueShades", "roles", "cardMinInlineSize", "cardDefaultInlineSize", "cardMaxInlineSize", "cardMinBlockSize", "cardMaxBlockSize", "lgBlockSize", "mdBlockSize", "smBlockSize", "xsBlockSize", "lgDimensions", "mdDimensions", "smDimensions", "xsDimensions", "densityDimensions", "density", "densityBlockSize", "staticDisabled", "dataDisabled", "ghostHover", "ghostFocusWithin", "hoverableControls", "groupHoverControlItemWithTransition", "hoverableFocusedKeyboardControls", "hoverableFocusedWithinControls", "hoverableOpenControlItem", "hoverableControlItem", "descriptionMessage", "surfaceShadow", "elevation", "surfaceZIndex", "level", "neutral", "hue", "bg", "surface", "fg", "text", "border", "styles", "palette", "hues", "validHues", "Set", "map", "s", "toHue", "has", "getStyles", "find", "color", "getHashStyles", "id", "getHashHue", "getHash", "length", "split", "reduce", "acc", "char", "charCodeAt", "extendTailwindMerge", "validators", "mx", "extend", "classGroups", "isArbitraryNumber", "density", "sizeMap", "w", "h", "px", "SIZE_VALUES", "Object", "keys", "map", "key", "Number", "getHeight", "size", "getWidth", "getSize", "mx", "sizeValue", "sizeToRem", "iconSize", "snapSize", "value", "defaultSize", "includes", "wholeSeries", "Math", "floor", "halfSeries", "doubleSeries", "quadrupleSeries", "textValence", "valence", "messageValence", "buttonValence", "_valence"]
}
