@dxos/ui-theme 0.8.4-main.bc674ce → 0.8.4-main.ef1bc66f44

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.
Files changed (91) hide show
  1. package/dist/lib/browser/index.mjs +298 -203
  2. package/dist/lib/browser/index.mjs.map +4 -4
  3. package/dist/lib/browser/meta.json +1 -1
  4. package/dist/lib/node-esm/index.mjs +298 -203
  5. package/dist/lib/node-esm/index.mjs.map +4 -4
  6. package/dist/lib/node-esm/meta.json +1 -1
  7. package/dist/plugin/node-cjs/{chunk-ZVALPM6U.cjs → chunk-YBWOZKXY.cjs} +41 -26
  8. package/dist/plugin/node-cjs/chunk-YBWOZKXY.cjs.map +7 -0
  9. package/dist/plugin/node-cjs/config/tailwind.cjs +2 -2
  10. package/dist/plugin/node-cjs/config/tailwind.cjs.map +1 -1
  11. package/dist/plugin/node-cjs/meta.json +1 -1
  12. package/dist/plugin/node-cjs/plugins/esbuild-plugin.cjs +2 -2
  13. package/dist/plugin/node-cjs/plugins/plugin.cjs +3 -3
  14. package/dist/plugin/node-cjs/theme.css +38 -78
  15. package/dist/plugin/node-cjs/theme.css.map +3 -3
  16. package/dist/plugin/node-esm/{chunk-HJE6EZWE.mjs → chunk-LTGUAP22.mjs} +42 -27
  17. package/dist/plugin/node-esm/chunk-LTGUAP22.mjs.map +7 -0
  18. package/dist/plugin/node-esm/config/tailwind.mjs +1 -1
  19. package/dist/plugin/node-esm/meta.json +1 -1
  20. package/dist/plugin/node-esm/plugins/esbuild-plugin.mjs +1 -1
  21. package/dist/plugin/node-esm/plugins/plugin.mjs +1 -1
  22. package/dist/plugin/node-esm/theme.css +38 -78
  23. package/dist/plugin/node-esm/theme.css.map +3 -3
  24. package/dist/types/src/config/tailwind.d.ts.map +1 -1
  25. package/dist/types/src/config/tokens/index.d.ts +1 -484
  26. package/dist/types/src/config/tokens/index.d.ts.map +1 -1
  27. package/dist/types/src/config/tokens/lengths.d.ts +12 -9
  28. package/dist/types/src/config/tokens/lengths.d.ts.map +1 -1
  29. package/dist/types/src/config/tokens/semantic-colors.d.ts +5 -0
  30. package/dist/types/src/config/tokens/semantic-colors.d.ts.map +1 -1
  31. package/dist/types/src/config/tokens/sememes-system.d.ts +5 -0
  32. package/dist/types/src/config/tokens/sememes-system.d.ts.map +1 -1
  33. package/dist/types/src/config/tokens/sizes.d.ts +2 -0
  34. package/dist/types/src/config/tokens/sizes.d.ts.map +1 -1
  35. package/dist/types/src/config/tokens/tokens.d.ts +498 -0
  36. package/dist/types/src/config/tokens/tokens.d.ts.map +1 -0
  37. package/dist/types/src/index.d.ts +3 -2
  38. package/dist/types/src/index.d.ts.map +1 -1
  39. package/dist/types/src/styles/components/dialog.d.ts +2 -0
  40. package/dist/types/src/styles/components/dialog.d.ts.map +1 -1
  41. package/dist/types/src/styles/components/index.d.ts +1 -0
  42. package/dist/types/src/styles/components/index.d.ts.map +1 -1
  43. package/dist/types/src/styles/components/main.d.ts +0 -5
  44. package/dist/types/src/styles/components/main.d.ts.map +1 -1
  45. package/dist/types/src/styles/components/menu.d.ts.map +1 -1
  46. package/dist/types/src/styles/components/scroll-area.d.ts +12 -5
  47. package/dist/types/src/styles/components/scroll-area.d.ts.map +1 -1
  48. package/dist/types/src/styles/components/skeleton.d.ts +7 -0
  49. package/dist/types/src/styles/components/skeleton.d.ts.map +1 -0
  50. package/dist/types/src/styles/components/toolbar.d.ts +4 -4
  51. package/dist/types/src/styles/components/toolbar.d.ts.map +1 -1
  52. package/dist/types/src/styles/index.d.ts +2 -1
  53. package/dist/types/src/styles/index.d.ts.map +1 -1
  54. package/dist/types/src/styles/primitives/container.d.ts +15 -0
  55. package/dist/types/src/styles/primitives/container.d.ts.map +1 -0
  56. package/dist/types/src/styles/primitives/index.d.ts +2 -0
  57. package/dist/types/src/styles/primitives/index.d.ts.map +1 -0
  58. package/dist/types/src/styles/theme.d.ts +3 -3
  59. package/dist/types/src/styles/theme.d.ts.map +1 -1
  60. package/dist/types/tsconfig.tsbuildinfo +1 -1
  61. package/package.json +5 -5
  62. package/src/Tokens.stories.tsx +2 -2
  63. package/src/config/tailwind.ts +4 -3
  64. package/src/config/tokens/index.ts +2 -88
  65. package/src/config/tokens/lengths.ts +14 -5
  66. package/src/config/tokens/sememes-system.ts +6 -1
  67. package/src/config/tokens/sizes.ts +2 -0
  68. package/src/config/tokens/tokens.ts +90 -0
  69. package/src/index.ts +3 -2
  70. package/src/styles/components/dialog.ts +9 -1
  71. package/src/styles/components/index.ts +1 -0
  72. package/src/styles/components/main.ts +0 -4
  73. package/src/styles/components/menu.ts +2 -10
  74. package/src/styles/components/popover.ts +3 -3
  75. package/src/styles/components/scroll-area.ts +70 -23
  76. package/src/styles/components/skeleton.ts +23 -0
  77. package/src/styles/components/toolbar.ts +16 -9
  78. package/src/styles/components/tooltip.ts +2 -2
  79. package/src/styles/fragments/size.ts +2 -2
  80. package/src/styles/index.ts +2 -1
  81. package/src/styles/layers/dialog.css +1 -5
  82. package/src/styles/layers/index.css +1 -0
  83. package/src/styles/layers/main.css +29 -73
  84. package/src/styles/layers/scrollbar.css +10 -0
  85. package/src/styles/layers/size.css +17 -19
  86. package/src/styles/layers/tokens.css +2 -1
  87. package/src/styles/primitives/container.ts +33 -0
  88. package/src/styles/primitives/index.ts +5 -0
  89. package/src/styles/theme.ts +29 -5
  90. package/dist/plugin/node-cjs/chunk-ZVALPM6U.cjs.map +0 -7
  91. package/dist/plugin/node-esm/chunk-HJE6EZWE.mjs.map +0 -7
@@ -1 +1 @@
1
- {"inputs":{"src/config/tokens/physical-colors.ts":{"bytes":12623,"imports":[],"format":"esm"},"src/config/tokens/sememes-hue.ts":{"bytes":6263,"imports":[{"path":"src/config/tokens/physical-colors.ts","kind":"import-statement","original":"./physical-colors"}],"format":"esm"},"src/config/tokens/sememes-sheet.ts":{"bytes":6787,"imports":[],"format":"esm"},"src/config/tokens/sememes-system.ts":{"bytes":27652,"imports":[],"format":"esm"},"src/config/tokens/alias-colors.ts":{"bytes":4192,"imports":[{"path":"src/config/tokens/sememes-hue.ts","kind":"import-statement","original":"./sememes-hue"},{"path":"src/config/tokens/sememes-sheet.ts","kind":"import-statement","original":"./sememes-sheet"},{"path":"src/config/tokens/sememes-system.ts","kind":"import-statement","original":"./sememes-system"}],"format":"esm"},"src/config/tokens/sizes.ts":{"bytes":1065,"imports":[],"format":"esm"},"src/config/tokens/lengths.ts":{"bytes":12611,"imports":[{"path":"src/config/tokens/sizes.ts","kind":"import-statement","original":"./sizes"}],"format":"esm"},"src/config/tokens/sememes-calls.ts":{"bytes":1537,"imports":[],"format":"esm"},"src/config/tokens/sememes-codemirror.ts":{"bytes":5062,"imports":[],"format":"esm"},"src/config/tokens/semantic-colors.ts":{"bytes":2635,"imports":[{"path":"src/config/tokens/sememes-calls.ts","kind":"import-statement","original":"./sememes-calls"},{"path":"src/config/tokens/sememes-codemirror.ts","kind":"import-statement","original":"./sememes-codemirror"},{"path":"src/config/tokens/sememes-hue.ts","kind":"import-statement","original":"./sememes-hue"},{"path":"src/config/tokens/sememes-sheet.ts","kind":"import-statement","original":"./sememes-sheet"},{"path":"src/config/tokens/sememes-system.ts","kind":"import-statement","original":"./sememes-system"}],"format":"esm"},"src/config/tokens/index.ts":{"bytes":8347,"imports":[{"path":"@ch-ui/tailwind-tokens","kind":"import-statement","external":true},{"path":"src/config/tokens/alias-colors.ts","kind":"import-statement","original":"./alias-colors"},{"path":"src/config/tokens/lengths.ts","kind":"import-statement","original":"./lengths"},{"path":"src/config/tokens/physical-colors.ts","kind":"import-statement","original":"./physical-colors"},{"path":"src/config/tokens/semantic-colors.ts","kind":"import-statement","original":"./semantic-colors"},{"path":"src/config/tokens/sememes-system.ts","kind":"import-statement","original":"./sememes-system"},{"path":"src/config/tokens/sizes.ts","kind":"import-statement","original":"./sizes"}],"format":"esm"},"src/config/tailwind.ts":{"bytes":32244,"imports":[{"path":"@tailwindcss/container-queries","kind":"import-statement","external":true},{"path":"@tailwindcss/forms","kind":"import-statement","external":true},{"path":"lodash.merge","kind":"import-statement","external":true},{"path":"tailwind-scrollbar","kind":"import-statement","external":true},{"path":"tailwindcss/stubs/config.full.js","kind":"import-statement","external":true},{"path":"tailwindcss-logical","kind":"import-statement","external":true},{"path":"tailwindcss-radix","kind":"import-statement","external":true},{"path":"src/config/tokens/index.ts","kind":"import-statement","original":"./tokens"}],"format":"esm"},"src/config/index.ts":{"bytes":540,"imports":[{"path":"src/config/tailwind.ts","kind":"import-statement","original":"./tailwind"},{"path":"src/config/tokens/index.ts","kind":"import-statement","original":"./tokens"}],"format":"esm"},"src/styles/fragments/density.ts":{"bytes":3081,"imports":[],"format":"esm"},"src/styles/fragments/disabled.ts":{"bytes":899,"imports":[],"format":"esm"},"src/styles/fragments/dimension.ts":{"bytes":769,"imports":[],"format":"esm"},"src/styles/fragments/elevation.ts":{"bytes":3557,"imports":[],"format":"esm"},"src/styles/fragments/focus.ts":{"bytes":2067,"imports":[],"format":"esm"},"src/styles/fragments/group.ts":{"bytes":1244,"imports":[{"path":"src/styles/fragments/elevation.ts","kind":"import-statement","original":"./elevation"}],"format":"esm"},"src/styles/fragments/hover.ts":{"bytes":3961,"imports":[],"format":"esm"},"src/styles/fragments/layout.ts":{"bytes":931,"imports":[],"format":"esm"},"src/styles/fragments/motion.ts":{"bytes":1013,"imports":[],"format":"esm"},"src/styles/fragments/ornament.ts":{"bytes":1335,"imports":[],"format":"esm"},"src/styles/fragments/selected.ts":{"bytes":6012,"imports":[{"path":"src/styles/fragments/hover.ts","kind":"import-statement","original":"./hover"}],"format":"esm"},"src/styles/fragments/shimmer.ts":{"bytes":1612,"imports":[],"format":"esm"},"src/styles/fragments/surface.ts":{"bytes":3731,"imports":[],"format":"esm"},"src/util/hash-styles.ts":{"bytes":12444,"imports":[],"format":"esm"},"src/util/withLogical.ts":{"bytes":21629,"imports":[{"path":"tailwind-merge","kind":"import-statement","external":true}],"format":"esm"},"src/util/mx.ts":{"bytes":4500,"imports":[{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"src/util/withLogical.ts","kind":"import-statement","original":"./withLogical"}],"format":"esm"},"src/util/index.ts":{"bytes":537,"imports":[{"path":"src/util/hash-styles.ts","kind":"import-statement","original":"./hash-styles"},{"path":"src/util/mx.ts","kind":"import-statement","original":"./mx"}],"format":"esm"},"src/styles/fragments/size.ts":{"bytes":11454,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/fragments/text.ts":{"bytes":1912,"imports":[],"format":"esm"},"src/styles/fragments/valence.ts":{"bytes":4704,"imports":[],"format":"esm"},"src/styles/fragments/index.ts":{"bytes":1733,"imports":[{"path":"src/styles/fragments/density.ts","kind":"import-statement","original":"./density"},{"path":"src/styles/fragments/disabled.ts","kind":"import-statement","original":"./disabled"},{"path":"src/styles/fragments/dimension.ts","kind":"import-statement","original":"./dimension"},{"path":"src/styles/fragments/elevation.ts","kind":"import-statement","original":"./elevation"},{"path":"src/styles/fragments/focus.ts","kind":"import-statement","original":"./focus"},{"path":"src/styles/fragments/group.ts","kind":"import-statement","original":"./group"},{"path":"src/styles/fragments/hover.ts","kind":"import-statement","original":"./hover"},{"path":"src/styles/fragments/layout.ts","kind":"import-statement","original":"./layout"},{"path":"src/styles/fragments/motion.ts","kind":"import-statement","original":"./motion"},{"path":"src/styles/fragments/ornament.ts","kind":"import-statement","original":"./ornament"},{"path":"src/styles/fragments/selected.ts","kind":"import-statement","original":"./selected"},{"path":"src/styles/fragments/shimmer.ts","kind":"import-statement","original":"./shimmer"},{"path":"src/styles/fragments/surface.ts","kind":"import-statement","original":"./surface"},{"path":"src/styles/fragments/size.ts","kind":"import-statement","original":"./size"},{"path":"src/styles/fragments/text.ts","kind":"import-statement","original":"./text"},{"path":"src/styles/fragments/valence.ts","kind":"import-statement","original":"./valence"}],"format":"esm"},"src/styles/components/anchored-overflow.ts":{"bytes":1995,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/components/avatar.ts":{"bytes":9811,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/breadcrumb.ts":{"bytes":3128,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/components/button.ts":{"bytes":4819,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/dialog.ts":{"bytes":5015,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/icon.ts":{"bytes":1604,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/icon-button.ts":{"bytes":1773,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/components/input.ts":{"bytes":18673,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/link.ts":{"bytes":2188,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/list.ts":{"bytes":5323,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/main.ts":{"bytes":4414,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/components/menu.ts":{"bytes":5349,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/message.ts":{"bytes":3123,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/popover.ts":{"bytes":3860,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/scroll-area.ts":{"bytes":4946,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/components/select.ts":{"bytes":6021,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/separator.ts":{"bytes":2302,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/status.ts":{"bytes":2740,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/components/tag.ts":{"bytes":1447,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/components/toast.ts":{"bytes":6210,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/toolbar.ts":{"bytes":3265,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/tooltip.ts":{"bytes":2882,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/treegrid.ts":{"bytes":3958,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/components/index.ts":{"bytes":2346,"imports":[{"path":"src/styles/components/anchored-overflow.ts","kind":"import-statement","original":"./anchored-overflow"},{"path":"src/styles/components/avatar.ts","kind":"import-statement","original":"./avatar"},{"path":"src/styles/components/breadcrumb.ts","kind":"import-statement","original":"./breadcrumb"},{"path":"src/styles/components/button.ts","kind":"import-statement","original":"./button"},{"path":"src/styles/components/dialog.ts","kind":"import-statement","original":"./dialog"},{"path":"src/styles/components/icon.ts","kind":"import-statement","original":"./icon"},{"path":"src/styles/components/icon-button.ts","kind":"import-statement","original":"./icon-button"},{"path":"src/styles/components/input.ts","kind":"import-statement","original":"./input"},{"path":"src/styles/components/link.ts","kind":"import-statement","original":"./link"},{"path":"src/styles/components/list.ts","kind":"import-statement","original":"./list"},{"path":"src/styles/components/main.ts","kind":"import-statement","original":"./main"},{"path":"src/styles/components/menu.ts","kind":"import-statement","original":"./menu"},{"path":"src/styles/components/message.ts","kind":"import-statement","original":"./message"},{"path":"src/styles/components/popover.ts","kind":"import-statement","original":"./popover"},{"path":"src/styles/components/scroll-area.ts","kind":"import-statement","original":"./scroll-area"},{"path":"src/styles/components/select.ts","kind":"import-statement","original":"./select"},{"path":"src/styles/components/separator.ts","kind":"import-statement","original":"./separator"},{"path":"src/styles/components/status.ts","kind":"import-statement","original":"./status"},{"path":"src/styles/components/tag.ts","kind":"import-statement","original":"./tag"},{"path":"src/styles/components/toast.ts","kind":"import-statement","original":"./toast"},{"path":"src/styles/components/toolbar.ts","kind":"import-statement","original":"./toolbar"},{"path":"src/styles/components/tooltip.ts","kind":"import-statement","original":"./tooltip"},{"path":"src/styles/components/treegrid.ts","kind":"import-statement","original":"./treegrid"}],"format":"esm"},"src/styles/theme.ts":{"bytes":5968,"imports":[{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/styles/components/index.ts","kind":"import-statement","original":"./components"}],"format":"esm"},"src/styles/index.ts":{"bytes":630,"imports":[{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"./fragments"},{"path":"src/styles/components/index.ts","kind":"import-statement","original":"./components"},{"path":"src/styles/theme.ts","kind":"import-statement","original":"./theme"}],"format":"esm"},"src/types.ts":{"bytes":551,"imports":[],"format":"esm"},"src/index.ts":{"bytes":1922,"imports":[{"path":"src/config/index.ts","kind":"import-statement","original":"./config"},{"path":"src/config/index.ts","kind":"import-statement","original":"./config"},{"path":"src/styles/index.ts","kind":"import-statement","original":"./styles"},{"path":"src/types.ts","kind":"import-statement","original":"./types"},{"path":"src/util/index.ts","kind":"import-statement","original":"./util"}],"format":"esm"}},"outputs":{"dist/lib/node-esm/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":148919},"dist/lib/node-esm/index.mjs":{"imports":[{"path":"@tailwindcss/container-queries","kind":"import-statement","external":true},{"path":"@tailwindcss/forms","kind":"import-statement","external":true},{"path":"lodash.merge","kind":"import-statement","external":true},{"path":"tailwind-scrollbar","kind":"import-statement","external":true},{"path":"tailwindcss/stubs/config.full.js","kind":"import-statement","external":true},{"path":"tailwindcss-logical","kind":"import-statement","external":true},{"path":"tailwindcss-radix","kind":"import-statement","external":true},{"path":"@ch-ui/tailwind-tokens","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["accentSurface","activeSurface","anchoredOverflowAnchor","anchoredOverflowRoot","anchoredOverflowTheme","attentionSurface","avatarDescription","avatarFallbackText","avatarFrame","avatarGroup","avatarGroupDescription","avatarGroupLabel","avatarLabel","avatarRing","avatarRoot","avatarStatusIcon","avatarTheme","baseSurface","bindTheme","blockSeparator","bottombarBlockPaddingEnd","bounceLayout","breadcrumbCurrent","breadcrumbList","breadcrumbListItem","breadcrumbRoot","breadcrumbSeparator","breadcrumbTheme","buttonGroup","buttonRoot","buttonTheme","cardDefaultInlineSize","cardMaxInlineSize","cardMinInlineSize","chromeText","coarseBlockSize","coarseButtonDimensions","coarseButtonPadding","coarseDimensions","coarseTextPadding","computeSize","contentShadow","dataDisabled","defaultButtonColors","defaultTheme","defaultTx","densityBlockSize","descriptionMessage","descriptionText","descriptionTextPrimary","dialogContent","dialogDescription","dialogHeader","dialogOverlay","dialogTheme","dialogTitle","dropRing","dropRingInner","errorInputValence","errorMessageColors","errorText","fineBlockSize","fineButtonDimensions","fineButtonPadding","fineDimensions","fineTextPadding","fixedInsetFlexLayout","focusRing","getHashHue","getHashStyles","getSize","getSizeHeight","getSizeWidth","getStyles","ghostButtonColors","ghostFocusWithin","ghostHighlighted","ghostHover","ghostSelected","ghostSelectedContainerMd","ghostSelectedCurrent","ghostSelectedTrackingInterFromNormal","group","groupBorder","groupHoverControlItemWithTransition","hoverColors","hoverableControlItem","hoverableControlItemTransition","hoverableControls","hoverableFocusedControls","hoverableFocusedKeyboardControls","hoverableFocusedWithinControls","hoverableOpenControlItem","hues","iconButtonRoot","iconButtonTheme","iconRoot","iconTheme","infoInputValence","infoMessageColors","infoText","inlineSeparator","inputCheckbox","inputCheckboxIndicator","inputDescription","inputDescriptionAndValidation","inputInput","inputLabel","inputSwitch","inputSwitchThumb","inputTextLabel","inputTheme","inputValence","inputValidation","inputWithSegmentsInput","linkRoot","linkTheme","listItem","listItemDragHandleIcon","listItemEndcap","listItemHeading","listItemOpenTrigger","listItemOpenTriggerIcon","listRoot","listTheme","mainContent","mainDrawer","mainIntrinsicSize","mainOverlay","mainPadding","mainPaddingTransitions","mainSidebar","mainTheme","menuArrow","menuContent","menuGroupLabel","menuItem","menuSeparator","menuTheme","menuViewport","messageContent","messageIcon","messageRoot","messageTheme","messageTitle","messageValence","modalSurface","mx","neutralInputValence","neutralMessageColors","osTranslations","placeholderText","popoverArrow","popoverContent","popoverTheme","popoverViewport","popperMotion","primaryButtonColors","scrollAreaCorner","scrollAreaRoot","scrollAreaScrollbar","scrollAreaTheme","scrollAreaThumb","scrollAreaViewport","selectArrow","selectContent","selectItem","selectItemIndicator","selectScrollButton","selectSeparator","selectTheme","selectViewport","separatorBorderColor","separatorRoot","separatorTheme","shimmer","sidebarBorder","sidebarSurface","sizeHeightMap","sizeValue","sizeWidthMap","staticDefaultButtonColors","staticDisabled","staticFocusRing","staticGhostSelected","staticGhostSelectedCurrent","staticHoverableControls","staticPlaceholderText","statusBar","statusRoot","statusTheme","strongShimmer","styles","subduedFocus","subduedSeparatorBorderColor","subtleHover","successInputValence","successMessageColors","successText","surfaceShadow","surfaceZIndex","tagRoot","tagTheme","textBlockWidth","toastActions","toastBody","toastDescription","toastRoot","toastTheme","toastTitle","toastViewport","tokens","toolbarInactive","toolbarInner","toolbarLayout","toolbarRoot","toolbarTheme","tooltipArrow","tooltipContent","tooltipTheme","topbarBlockPaddingStart","treegridCell","treegridRoot","treegridRow","treegridTheme","userDefaultTokenSet","valenceColorText","warningInputValence","warningMessageColors","warningText"],"entryPoint":"src/index.ts","inputs":{"src/config/tailwind.ts":{"bytesInOutput":9225},"src/config/tokens/index.ts":{"bytesInOutput":1754},"src/config/tokens/physical-colors.ts":{"bytesInOutput":2365},"src/config/tokens/sememes-hue.ts":{"bytesInOutput":1444},"src/config/tokens/sememes-sheet.ts":{"bytesInOutput":1874},"src/config/tokens/sememes-system.ts":{"bytesInOutput":7155},"src/config/tokens/alias-colors.ts":{"bytesInOutput":867},"src/config/tokens/sizes.ts":{"bytesInOutput":88},"src/config/tokens/lengths.ts":{"bytesInOutput":3617},"src/config/tokens/sememes-calls.ts":{"bytesInOutput":246},"src/config/tokens/sememes-codemirror.ts":{"bytesInOutput":1379},"src/config/tokens/semantic-colors.ts":{"bytesInOutput":309},"src/index.ts":{"bytesInOutput":80},"src/styles/fragments/density.ts":{"bytesInOutput":610},"src/styles/fragments/disabled.ts":{"bytesInOutput":150},"src/styles/fragments/dimension.ts":{"bytesInOutput":65},"src/styles/fragments/elevation.ts":{"bytesInOutput":775},"src/styles/fragments/focus.ts":{"bytesInOutput":542},"src/styles/fragments/group.ts":{"bytesInOutput":144},"src/styles/fragments/hover.ts":{"bytesInOutput":965},"src/styles/fragments/layout.ts":{"bytesInOutput":160},"src/styles/fragments/motion.ts":{"bytesInOutput":235},"src/styles/fragments/ornament.ts":{"bytesInOutput":215},"src/styles/fragments/selected.ts":{"bytesInOutput":1666},"src/styles/fragments/shimmer.ts":{"bytesInOutput":456},"src/styles/fragments/surface.ts":{"bytesInOutput":387},"src/util/hash-styles.ts":{"bytesInOutput":3246},"src/util/mx.ts":{"bytesInOutput":1177},"src/util/withLogical.ts":{"bytesInOutput":6730},"src/styles/fragments/size.ts":{"bytesInOutput":3091},"src/styles/fragments/text.ts":{"bytesInOutput":419},"src/styles/fragments/valence.ts":{"bytesInOutput":1172},"src/styles/components/anchored-overflow.ts":{"bytesInOutput":282},"src/styles/components/avatar.ts":{"bytesInOutput":2161},"src/styles/components/breadcrumb.ts":{"bytesInOutput":515},"src/styles/components/button.ts":{"bytesInOutput":1150},"src/styles/components/dialog.ts":{"bytesInOutput":974},"src/styles/components/icon.ts":{"bytesInOutput":173},"src/styles/components/icon-button.ts":{"bytesInOutput":176},"src/styles/components/input.ts":{"bytesInOutput":4436},"src/styles/components/link.ts":{"bytesInOutput":383},"src/styles/components/list.ts":{"bytesInOutput":971},"src/styles/components/main.ts":{"bytesInOutput":855},"src/styles/components/menu.ts":{"bytesInOutput":981},"src/styles/components/message.ts":{"bytesInOutput":471},"src/styles/components/popover.ts":{"bytesInOutput":660},"src/styles/components/scroll-area.ts":{"bytesInOutput":1236},"src/styles/components/select.ts":{"bytesInOutput":1189},"src/styles/components/separator.ts":{"bytesInOutput":243},"src/styles/components/status.ts":{"bytesInOutput":514},"src/styles/components/tag.ts":{"bytesInOutput":109},"src/styles/components/toast.ts":{"bytesInOutput":1465},"src/styles/components/toolbar.ts":{"bytesInOutput":548},"src/styles/components/tooltip.ts":{"bytesInOutput":434},"src/styles/components/treegrid.ts":{"bytesInOutput":839},"src/styles/theme.ts":{"bytesInOutput":919}},"bytes":80734}}}
1
+ {"inputs":{"src/config/tokens/sizes.ts":{"bytes":1365,"imports":[],"format":"esm"},"src/config/tokens/physical-colors.ts":{"bytes":12623,"imports":[],"format":"esm"},"src/config/tokens/sememes-hue.ts":{"bytes":6263,"imports":[{"path":"src/config/tokens/physical-colors.ts","kind":"import-statement","original":"./physical-colors"}],"format":"esm"},"src/config/tokens/sememes-sheet.ts":{"bytes":6787,"imports":[],"format":"esm"},"src/config/tokens/sememes-system.ts":{"bytes":28534,"imports":[],"format":"esm"},"src/config/tokens/alias-colors.ts":{"bytes":4192,"imports":[{"path":"src/config/tokens/sememes-hue.ts","kind":"import-statement","original":"./sememes-hue"},{"path":"src/config/tokens/sememes-sheet.ts","kind":"import-statement","original":"./sememes-sheet"},{"path":"src/config/tokens/sememes-system.ts","kind":"import-statement","original":"./sememes-system"}],"format":"esm"},"src/config/tokens/lengths.ts":{"bytes":13144,"imports":[{"path":"src/config/tokens/sizes.ts","kind":"import-statement","original":"./sizes"}],"format":"esm"},"src/config/tokens/sememes-calls.ts":{"bytes":1537,"imports":[],"format":"esm"},"src/config/tokens/sememes-codemirror.ts":{"bytes":5062,"imports":[],"format":"esm"},"src/config/tokens/semantic-colors.ts":{"bytes":2635,"imports":[{"path":"src/config/tokens/sememes-calls.ts","kind":"import-statement","original":"./sememes-calls"},{"path":"src/config/tokens/sememes-codemirror.ts","kind":"import-statement","original":"./sememes-codemirror"},{"path":"src/config/tokens/sememes-hue.ts","kind":"import-statement","original":"./sememes-hue"},{"path":"src/config/tokens/sememes-sheet.ts","kind":"import-statement","original":"./sememes-sheet"},{"path":"src/config/tokens/sememes-system.ts","kind":"import-statement","original":"./sememes-system"}],"format":"esm"},"src/config/tokens/tokens.ts":{"bytes":8267,"imports":[{"path":"@ch-ui/tailwind-tokens","kind":"import-statement","external":true},{"path":"src/config/tokens/alias-colors.ts","kind":"import-statement","original":"./alias-colors"},{"path":"src/config/tokens/lengths.ts","kind":"import-statement","original":"./lengths"},{"path":"src/config/tokens/physical-colors.ts","kind":"import-statement","original":"./physical-colors"},{"path":"src/config/tokens/semantic-colors.ts","kind":"import-statement","original":"./semantic-colors"},{"path":"src/config/tokens/sememes-system.ts","kind":"import-statement","original":"./sememes-system"}],"format":"esm"},"src/config/tokens/index.ts":{"bytes":540,"imports":[{"path":"src/config/tokens/sizes.ts","kind":"import-statement","original":"./sizes"},{"path":"src/config/tokens/tokens.ts","kind":"import-statement","original":"./tokens"}],"format":"esm"},"src/config/tailwind.ts":{"bytes":32400,"imports":[{"path":"@tailwindcss/container-queries","kind":"import-statement","external":true},{"path":"@tailwindcss/forms","kind":"import-statement","external":true},{"path":"lodash.merge","kind":"import-statement","external":true},{"path":"tailwind-scrollbar","kind":"import-statement","external":true},{"path":"tailwindcss/stubs/config.full.js","kind":"import-statement","external":true},{"path":"tailwindcss-logical","kind":"import-statement","external":true},{"path":"tailwindcss-radix","kind":"import-statement","external":true},{"path":"src/config/tokens/index.ts","kind":"import-statement","original":"./tokens"}],"format":"esm"},"src/config/index.ts":{"bytes":540,"imports":[{"path":"src/config/tailwind.ts","kind":"import-statement","original":"./tailwind"},{"path":"src/config/tokens/index.ts","kind":"import-statement","original":"./tokens"}],"format":"esm"},"src/util/hash-styles.ts":{"bytes":12444,"imports":[],"format":"esm"},"src/util/withLogical.ts":{"bytes":21629,"imports":[{"path":"tailwind-merge","kind":"import-statement","external":true}],"format":"esm"},"src/util/mx.ts":{"bytes":4500,"imports":[{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"src/util/withLogical.ts","kind":"import-statement","original":"./withLogical"}],"format":"esm"},"src/util/index.ts":{"bytes":537,"imports":[{"path":"src/util/hash-styles.ts","kind":"import-statement","original":"./hash-styles"},{"path":"src/util/mx.ts","kind":"import-statement","original":"./mx"}],"format":"esm"},"src/styles/components/anchored-overflow.ts":{"bytes":1995,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/fragments/density.ts":{"bytes":3081,"imports":[],"format":"esm"},"src/styles/fragments/disabled.ts":{"bytes":899,"imports":[],"format":"esm"},"src/styles/fragments/dimension.ts":{"bytes":769,"imports":[],"format":"esm"},"src/styles/fragments/elevation.ts":{"bytes":3557,"imports":[],"format":"esm"},"src/styles/fragments/focus.ts":{"bytes":2067,"imports":[],"format":"esm"},"src/styles/fragments/group.ts":{"bytes":1244,"imports":[{"path":"src/styles/fragments/elevation.ts","kind":"import-statement","original":"./elevation"}],"format":"esm"},"src/styles/fragments/hover.ts":{"bytes":3961,"imports":[],"format":"esm"},"src/styles/fragments/layout.ts":{"bytes":931,"imports":[],"format":"esm"},"src/styles/fragments/motion.ts":{"bytes":1013,"imports":[],"format":"esm"},"src/styles/fragments/ornament.ts":{"bytes":1335,"imports":[],"format":"esm"},"src/styles/fragments/selected.ts":{"bytes":6012,"imports":[{"path":"src/styles/fragments/hover.ts","kind":"import-statement","original":"./hover"}],"format":"esm"},"src/styles/fragments/shimmer.ts":{"bytes":1612,"imports":[],"format":"esm"},"src/styles/fragments/surface.ts":{"bytes":3731,"imports":[],"format":"esm"},"src/styles/fragments/size.ts":{"bytes":11474,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/fragments/text.ts":{"bytes":1912,"imports":[],"format":"esm"},"src/styles/fragments/valence.ts":{"bytes":4704,"imports":[],"format":"esm"},"src/styles/fragments/index.ts":{"bytes":1733,"imports":[{"path":"src/styles/fragments/density.ts","kind":"import-statement","original":"./density"},{"path":"src/styles/fragments/disabled.ts","kind":"import-statement","original":"./disabled"},{"path":"src/styles/fragments/dimension.ts","kind":"import-statement","original":"./dimension"},{"path":"src/styles/fragments/elevation.ts","kind":"import-statement","original":"./elevation"},{"path":"src/styles/fragments/focus.ts","kind":"import-statement","original":"./focus"},{"path":"src/styles/fragments/group.ts","kind":"import-statement","original":"./group"},{"path":"src/styles/fragments/hover.ts","kind":"import-statement","original":"./hover"},{"path":"src/styles/fragments/layout.ts","kind":"import-statement","original":"./layout"},{"path":"src/styles/fragments/motion.ts","kind":"import-statement","original":"./motion"},{"path":"src/styles/fragments/ornament.ts","kind":"import-statement","original":"./ornament"},{"path":"src/styles/fragments/selected.ts","kind":"import-statement","original":"./selected"},{"path":"src/styles/fragments/shimmer.ts","kind":"import-statement","original":"./shimmer"},{"path":"src/styles/fragments/surface.ts","kind":"import-statement","original":"./surface"},{"path":"src/styles/fragments/size.ts","kind":"import-statement","original":"./size"},{"path":"src/styles/fragments/text.ts","kind":"import-statement","original":"./text"},{"path":"src/styles/fragments/valence.ts","kind":"import-statement","original":"./valence"}],"format":"esm"},"src/styles/components/avatar.ts":{"bytes":9811,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/breadcrumb.ts":{"bytes":3128,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/components/button.ts":{"bytes":4819,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/dialog.ts":{"bytes":6090,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/icon.ts":{"bytes":1604,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/icon-button.ts":{"bytes":1773,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/components/input.ts":{"bytes":18673,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/link.ts":{"bytes":2188,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/list.ts":{"bytes":5323,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/main.ts":{"bytes":3925,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/components/menu.ts":{"bytes":5270,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/message.ts":{"bytes":3123,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/popover.ts":{"bytes":3894,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/scroll-area.ts":{"bytes":8549,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/components/select.ts":{"bytes":6021,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/separator.ts":{"bytes":2302,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/skeleton.ts":{"bytes":1765,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/components/status.ts":{"bytes":2740,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/components/tag.ts":{"bytes":1447,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/components/toast.ts":{"bytes":6210,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/toolbar.ts":{"bytes":3219,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/tooltip.ts":{"bytes":2835,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"../fragments"}],"format":"esm"},"src/styles/components/treegrid.ts":{"bytes":3958,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/components/index.ts":{"bytes":2434,"imports":[{"path":"src/styles/components/anchored-overflow.ts","kind":"import-statement","original":"./anchored-overflow"},{"path":"src/styles/components/avatar.ts","kind":"import-statement","original":"./avatar"},{"path":"src/styles/components/breadcrumb.ts","kind":"import-statement","original":"./breadcrumb"},{"path":"src/styles/components/button.ts","kind":"import-statement","original":"./button"},{"path":"src/styles/components/dialog.ts","kind":"import-statement","original":"./dialog"},{"path":"src/styles/components/icon.ts","kind":"import-statement","original":"./icon"},{"path":"src/styles/components/icon-button.ts","kind":"import-statement","original":"./icon-button"},{"path":"src/styles/components/input.ts","kind":"import-statement","original":"./input"},{"path":"src/styles/components/link.ts","kind":"import-statement","original":"./link"},{"path":"src/styles/components/list.ts","kind":"import-statement","original":"./list"},{"path":"src/styles/components/main.ts","kind":"import-statement","original":"./main"},{"path":"src/styles/components/menu.ts","kind":"import-statement","original":"./menu"},{"path":"src/styles/components/message.ts","kind":"import-statement","original":"./message"},{"path":"src/styles/components/popover.ts","kind":"import-statement","original":"./popover"},{"path":"src/styles/components/scroll-area.ts","kind":"import-statement","original":"./scroll-area"},{"path":"src/styles/components/select.ts","kind":"import-statement","original":"./select"},{"path":"src/styles/components/separator.ts","kind":"import-statement","original":"./separator"},{"path":"src/styles/components/skeleton.ts","kind":"import-statement","original":"./skeleton"},{"path":"src/styles/components/status.ts","kind":"import-statement","original":"./status"},{"path":"src/styles/components/tag.ts","kind":"import-statement","original":"./tag"},{"path":"src/styles/components/toast.ts","kind":"import-statement","original":"./toast"},{"path":"src/styles/components/toolbar.ts","kind":"import-statement","original":"./toolbar"},{"path":"src/styles/components/tooltip.ts","kind":"import-statement","original":"./tooltip"},{"path":"src/styles/components/treegrid.ts","kind":"import-statement","original":"./treegrid"}],"format":"esm"},"src/styles/primitives/container.ts":{"bytes":2097,"imports":[{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/styles/primitives/index.ts":{"bytes":470,"imports":[{"path":"src/styles/primitives/container.ts","kind":"import-statement","original":"./container"}],"format":"esm"},"src/styles/theme.ts":{"bytes":7785,"imports":[{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/styles/components/index.ts","kind":"import-statement","original":"./components"},{"path":"src/styles/primitives/index.ts","kind":"import-statement","original":"./primitives"}],"format":"esm"},"src/styles/index.ts":{"bytes":724,"imports":[{"path":"src/styles/components/index.ts","kind":"import-statement","original":"./components"},{"path":"src/styles/fragments/index.ts","kind":"import-statement","original":"./fragments"},{"path":"src/styles/primitives/index.ts","kind":"import-statement","original":"./primitives"},{"path":"src/styles/theme.ts","kind":"import-statement","original":"./theme"}],"format":"esm"},"src/types.ts":{"bytes":551,"imports":[],"format":"esm"},"src/index.ts":{"bytes":2021,"imports":[{"path":"src/config/index.ts","kind":"import-statement","original":"./config"},{"path":"src/config/index.ts","kind":"import-statement","original":"./config"},{"path":"src/styles/index.ts","kind":"import-statement","original":"./styles"},{"path":"src/types.ts","kind":"import-statement","original":"./types"},{"path":"src/util/index.ts","kind":"import-statement","original":"./util"}],"format":"esm"}},"outputs":{"dist/lib/node-esm/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":154555},"dist/lib/node-esm/index.mjs":{"imports":[{"path":"@tailwindcss/container-queries","kind":"import-statement","external":true},{"path":"@tailwindcss/forms","kind":"import-statement","external":true},{"path":"lodash.merge","kind":"import-statement","external":true},{"path":"tailwind-scrollbar","kind":"import-statement","external":true},{"path":"tailwindcss/stubs/config.full.js","kind":"import-statement","external":true},{"path":"tailwindcss-logical","kind":"import-statement","external":true},{"path":"tailwindcss-radix","kind":"import-statement","external":true},{"path":"@ch-ui/tailwind-tokens","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["accentSurface","activeSurface","anchoredOverflowAnchor","anchoredOverflowRoot","anchoredOverflowTheme","attentionSurface","avatarDescription","avatarFallbackText","avatarFrame","avatarGroup","avatarGroupDescription","avatarGroupLabel","avatarLabel","avatarRing","avatarRoot","avatarStatusIcon","avatarTheme","baseSurface","bindTheme","blockSeparator","bottombarBlockPaddingEnd","bounceLayout","breadcrumbCurrent","breadcrumbList","breadcrumbListItem","breadcrumbRoot","breadcrumbSeparator","breadcrumbTheme","buttonGroup","buttonRoot","buttonTheme","cardDefaultInlineSize","cardMaxInlineSize","cardMinInlineSize","chromeText","coarseBlockSize","coarseButtonDimensions","coarseButtonPadding","coarseDimensions","coarseTextPadding","computeSize","containerTheme","contentShadow","dataDisabled","defaultButtonColors","defaultTheme","defaultTx","densityBlockSize","descriptionMessage","descriptionText","descriptionTextPrimary","dialogActionBar","dialogBody","dialogContent","dialogDescription","dialogHeader","dialogOverlay","dialogTheme","dialogTitle","dropRing","dropRingInner","errorInputValence","errorMessageColors","errorText","fineBlockSize","fineButtonDimensions","fineButtonPadding","fineDimensions","fineTextPadding","fixedInsetFlexLayout","focusRing","getHashHue","getHashStyles","getSize","getSizeHeight","getSizeWidth","getStyles","ghostButtonColors","ghostFocusWithin","ghostHighlighted","ghostHover","ghostSelected","ghostSelectedContainerMd","ghostSelectedCurrent","ghostSelectedTrackingInterFromNormal","group","groupBorder","groupHoverControlItemWithTransition","hoverColors","hoverableControlItem","hoverableControlItemTransition","hoverableControls","hoverableFocusedControls","hoverableFocusedKeyboardControls","hoverableFocusedWithinControls","hoverableOpenControlItem","hues","iconButtonRoot","iconButtonTheme","iconRoot","iconTheme","infoInputValence","infoMessageColors","infoText","inlineSeparator","inputCheckbox","inputCheckboxIndicator","inputDescription","inputDescriptionAndValidation","inputInput","inputLabel","inputSwitch","inputSwitchThumb","inputTextLabel","inputTheme","inputValence","inputValidation","inputWithSegmentsInput","linkRoot","linkTheme","listItem","listItemDragHandleIcon","listItemEndcap","listItemHeading","listItemOpenTrigger","listItemOpenTriggerIcon","listRoot","listTheme","mainContent","mainIntrinsicSize","mainOverlay","mainPadding","mainPaddingTransitions","mainSidebar","mainTheme","menuArrow","menuContent","menuGroupLabel","menuItem","menuSeparator","menuTheme","menuViewport","messageContent","messageIcon","messageRoot","messageTheme","messageTitle","messageValence","modalSurface","mx","neutralInputValence","neutralMessageColors","osTranslations","placeholderText","popoverArrow","popoverContent","popoverTheme","popoverViewport","popperMotion","primaryButtonColors","scrollAreaRoot","scrollAreaTheme","scrollAreaViewport","selectArrow","selectContent","selectItem","selectItemIndicator","selectScrollButton","selectSeparator","selectTheme","selectViewport","separatorBorderColor","separatorRoot","separatorTheme","shimmer","sidebarBorder","sidebarSurface","sizeHeightMap","sizeValue","sizeWidthMap","skeletonRoot","skeletonTheme","staticDefaultButtonColors","staticDisabled","staticFocusRing","staticGhostSelected","staticGhostSelectedCurrent","staticHoverableControls","staticPlaceholderText","statusBar","statusRoot","statusTheme","strongShimmer","styles","subduedFocus","subduedSeparatorBorderColor","subtleHover","successInputValence","successMessageColors","successText","surfaceShadow","surfaceZIndex","tagRoot","tagTheme","textBlockWidth","toastActions","toastBody","toastDescription","toastRoot","toastTheme","toastTitle","toastViewport","tokens","toolbarInner","toolbarLayout","toolbarRoot","toolbarTheme","tooltipArrow","tooltipContent","tooltipTheme","topbarBlockPaddingStart","treegridCell","treegridRoot","treegridRow","treegridTheme","userDefaultTokenSet","valenceColorText","warningInputValence","warningMessageColors","warningText"],"entryPoint":"src/index.ts","inputs":{"src/config/tailwind.ts":{"bytesInOutput":9277},"src/config/tokens/sizes.ts":{"bytesInOutput":142},"src/config/tokens/tokens.ts":{"bytesInOutput":1754},"src/config/tokens/physical-colors.ts":{"bytesInOutput":2365},"src/config/tokens/sememes-hue.ts":{"bytesInOutput":1444},"src/config/tokens/sememes-sheet.ts":{"bytesInOutput":1874},"src/config/tokens/sememes-system.ts":{"bytesInOutput":7387},"src/config/tokens/alias-colors.ts":{"bytesInOutput":867},"src/config/tokens/lengths.ts":{"bytesInOutput":3748},"src/config/tokens/sememes-calls.ts":{"bytesInOutput":246},"src/config/tokens/sememes-codemirror.ts":{"bytesInOutput":1379},"src/config/tokens/semantic-colors.ts":{"bytesInOutput":309},"src/index.ts":{"bytesInOutput":85},"src/util/hash-styles.ts":{"bytesInOutput":3246},"src/util/mx.ts":{"bytesInOutput":1177},"src/util/withLogical.ts":{"bytesInOutput":6730},"src/styles/components/anchored-overflow.ts":{"bytesInOutput":282},"src/styles/fragments/density.ts":{"bytesInOutput":610},"src/styles/fragments/disabled.ts":{"bytesInOutput":150},"src/styles/fragments/dimension.ts":{"bytesInOutput":65},"src/styles/fragments/elevation.ts":{"bytesInOutput":775},"src/styles/fragments/focus.ts":{"bytesInOutput":542},"src/styles/fragments/group.ts":{"bytesInOutput":144},"src/styles/fragments/hover.ts":{"bytesInOutput":965},"src/styles/fragments/layout.ts":{"bytesInOutput":160},"src/styles/fragments/motion.ts":{"bytesInOutput":235},"src/styles/fragments/ornament.ts":{"bytesInOutput":215},"src/styles/fragments/selected.ts":{"bytesInOutput":1666},"src/styles/fragments/shimmer.ts":{"bytesInOutput":456},"src/styles/fragments/surface.ts":{"bytesInOutput":387},"src/styles/fragments/size.ts":{"bytesInOutput":3091},"src/styles/fragments/text.ts":{"bytesInOutput":419},"src/styles/fragments/valence.ts":{"bytesInOutput":1172},"src/styles/components/avatar.ts":{"bytesInOutput":2161},"src/styles/components/breadcrumb.ts":{"bytesInOutput":515},"src/styles/components/button.ts":{"bytesInOutput":1150},"src/styles/components/dialog.ts":{"bytesInOutput":1247},"src/styles/components/icon.ts":{"bytesInOutput":173},"src/styles/components/icon-button.ts":{"bytesInOutput":176},"src/styles/components/input.ts":{"bytesInOutput":4436},"src/styles/components/link.ts":{"bytesInOutput":383},"src/styles/components/list.ts":{"bytesInOutput":971},"src/styles/components/main.ts":{"bytesInOutput":739},"src/styles/components/menu.ts":{"bytesInOutput":989},"src/styles/components/message.ts":{"bytesInOutput":471},"src/styles/components/popover.ts":{"bytesInOutput":674},"src/styles/components/scroll-area.ts":{"bytesInOutput":2377},"src/styles/components/select.ts":{"bytesInOutput":1189},"src/styles/components/separator.ts":{"bytesInOutput":243},"src/styles/components/skeleton.ts":{"bytesInOutput":250},"src/styles/components/status.ts":{"bytesInOutput":514},"src/styles/components/tag.ts":{"bytesInOutput":109},"src/styles/components/toast.ts":{"bytesInOutput":1465},"src/styles/components/toolbar.ts":{"bytesInOutput":574},"src/styles/components/tooltip.ts":{"bytesInOutput":461},"src/styles/components/treegrid.ts":{"bytesInOutput":839},"src/styles/primitives/container.ts":{"bytesInOutput":203},"src/styles/theme.ts":{"bytesInOutput":1196}},"bytes":83379}}}
@@ -26,12 +26,12 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
26
26
  mod
27
27
  ));
28
28
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
- var chunk_ZVALPM6U_exports = {};
30
- __export(chunk_ZVALPM6U_exports, {
29
+ var chunk_YBWOZKXY_exports = {};
30
+ __export(chunk_YBWOZKXY_exports, {
31
31
  tailwindConfig: () => tailwindConfig,
32
32
  tokenSet: () => tokenSet
33
33
  });
34
- module.exports = __toCommonJS(chunk_ZVALPM6U_exports);
34
+ module.exports = __toCommonJS(chunk_YBWOZKXY_exports);
35
35
  var import_container_queries = __toESM(require("@tailwindcss/container-queries"));
36
36
  var import_forms = __toESM(require("@tailwindcss/forms"));
37
37
  var import_lodash = __toESM(require("lodash.merge"));
@@ -40,6 +40,11 @@ var import_config_full = __toESM(require("tailwindcss/stubs/config.full.js"));
40
40
  var import_tailwindcss_logical = __toESM(require("tailwindcss-logical"));
41
41
  var import_tailwindcss_radix = __toESM(require("tailwindcss-radix"));
42
42
  var import_tailwind_tokens = __toESM(require("@ch-ui/tailwind-tokens"));
43
+ var cardMinInlineSize = 18;
44
+ var cardDefaultInlineSize = 20;
45
+ var cardMaxInlineSize = 22;
46
+ var cardMinBlockSize = 18;
47
+ var cardMaxBlockSize = 30;
43
48
  var reflectiveRelation = {
44
49
  initial: 1e3,
45
50
  slope: -1e3,
@@ -495,6 +500,11 @@ var systemSememes = {
495
500
  separatorGroup: contrastCadence(3, 2.5),
496
501
  separatorModal: contrastCadence(3, 3),
497
502
  subduedSeparator: contrastCadence(3, 1),
503
+ scrollbarTrack: contrastCadence(0),
504
+ scrollbarThumbSubdued: contrastCadence(1, 1),
505
+ scrollbarThumb: contrastCadence(2.5, 2.5),
506
+ scrollbarThumbHover: contrastCadence(3.5, 3.5),
507
+ scrollbarThumbActive: contrastCadence(4.5, 4.5),
498
508
  unAccent: {
499
509
  light: [
500
510
  "neutral",
@@ -807,9 +817,6 @@ var aliasColors = {
807
817
  },
808
818
  namespace: "dx-"
809
819
  };
810
- var cardMinInlineSize = 18;
811
- var cardDefaultInlineSize = 20;
812
- var cardMaxInlineSize = 22;
813
820
  var lengthsFacet = {
814
821
  physical: {
815
822
  namespace: "dx-",
@@ -939,6 +946,16 @@ var lengthsFacet = {
939
946
  "gridFocusIndicatorWidth"
940
947
  ]
941
948
  },
949
+ inputFine: {
950
+ fine: [
951
+ "iconButtonPadding"
952
+ ]
953
+ },
954
+ inputCoarse: {
955
+ coarse: [
956
+ "iconButtonPadding"
957
+ ]
958
+ },
942
959
  trimXs: {
943
960
  fine: [
944
961
  "cardSpacingChrome",
@@ -946,6 +963,7 @@ var lengthsFacet = {
946
963
  "inputSpacingBlock"
947
964
  ]
948
965
  },
966
+ // TODO(burdon): Remove?
949
967
  trimSm: {
950
968
  fine: [
951
969
  "cardSpacingInline",
@@ -959,16 +977,6 @@ var lengthsFacet = {
959
977
  "cardSpacingBlock",
960
978
  "cardSpacingGap"
961
979
  ]
962
- },
963
- inputFine: {
964
- fine: [
965
- "iconButtonPadding"
966
- ]
967
- },
968
- inputCoarse: {
969
- coarse: [
970
- "iconButtonPadding"
971
- ]
972
980
  }
973
981
  }
974
982
  }
@@ -1011,12 +1019,6 @@ var maxSizesFacet = {
1011
1019
  50
1012
1020
  ]
1013
1021
  },
1014
- "popover-max-width": {
1015
- root: [
1016
- "size",
1017
- cardDefaultInlineSize
1018
- ]
1019
- },
1020
1022
  "card-default-width": {
1021
1023
  root: [
1022
1024
  "size",
@@ -1034,6 +1036,18 @@ var maxSizesFacet = {
1034
1036
  "size",
1035
1037
  cardMaxInlineSize
1036
1038
  ]
1039
+ },
1040
+ "card-min-height": {
1041
+ root: [
1042
+ "size",
1043
+ cardMinBlockSize
1044
+ ]
1045
+ },
1046
+ "card-max-height": {
1047
+ root: [
1048
+ "size",
1049
+ cardMaxBlockSize
1050
+ ]
1037
1051
  }
1038
1052
  }
1039
1053
  }
@@ -1273,12 +1287,13 @@ var tailwindConfig = ({ env = "production", content = [], extensions = [] }) =>
1273
1287
  extend: (0, import_lodash.default)({
1274
1288
  // Generates is-card-default-width, is-card-min-width, etc.
1275
1289
  spacing: {
1290
+ "prose-max-width": "var(--dx-prose-max-width)",
1291
+ "container-max-width": "var(--dx-container-max-width)",
1276
1292
  "card-default-width": "var(--dx-card-default-width)",
1277
1293
  "card-min-width": "var(--dx-card-min-width)",
1278
1294
  "card-max-width": "var(--dx-card-max-width)",
1279
- "container-max-width": "var(--dx-container-max-width)",
1280
- "popover-max-width": "var(--dx-popover-max-width)",
1281
- "prose-max-width": "var(--dx-prose-max-width)"
1295
+ "card-min-height": "var(--dx-card-min-height)",
1296
+ "card-max-height": "var(--dx-card-max-height)"
1282
1297
  },
1283
1298
  backgroundImage: {
1284
1299
  "gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
@@ -1616,4 +1631,4 @@ var tailwindConfig = ({ env = "production", content = [], extensions = [] }) =>
1616
1631
  tailwindConfig,
1617
1632
  tokenSet
1618
1633
  });
1619
- //# sourceMappingURL=chunk-ZVALPM6U.cjs.map
1634
+ //# sourceMappingURL=chunk-YBWOZKXY.cjs.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/config/tailwind.ts", "../../../src/config/tokens/sizes.ts", "../../../src/config/tokens/tokens.ts", "../../../src/config/tokens/physical-colors.ts", "../../../src/config/tokens/sememes-hue.ts", "../../../src/config/tokens/sememes-sheet.ts", "../../../src/config/tokens/sememes-system.ts", "../../../src/config/tokens/alias-colors.ts", "../../../src/config/tokens/lengths.ts", "../../../src/config/tokens/sememes-calls.ts", "../../../src/config/tokens/sememes-codemirror.ts", "../../../src/config/tokens/semantic-colors.ts"],
4
+ "sourcesContent": ["//\n// Copyright 2022 DXOS.org\n//\n\nimport tailwindcssContainerQueries from '@tailwindcss/container-queries';\nimport tailwindcssForms from '@tailwindcss/forms';\nimport merge from 'lodash.merge';\nimport tailwindScrollbar from 'tailwind-scrollbar';\nimport defaultConfig from 'tailwindcss/stubs/config.full.js';\nimport { type Config, type ThemeConfig } from 'tailwindcss/types/config';\nimport tailwindcssLogical from 'tailwindcss-logical';\nimport tailwindcssRadix from 'tailwindcss-radix';\n\nimport { tokensTailwindConfig } from './tokens';\n\nexport type TailwindConfig = Config;\nexport type TailwindThemeConfig = ThemeConfig;\n\nconst { extend: extendTokens, ...overrideTokens } = tokensTailwindConfig;\n\nexport const tailwindConfig = ({\n env = 'production',\n content = [],\n extensions = [],\n}: {\n env?: string;\n content?: string[];\n extensions?: Partial<TailwindThemeConfig>[];\n}): TailwindConfig => ({\n darkMode: 'class',\n theme: {\n // Configure fonts in theme.css and package.json.\n fontFamily: {\n body: ['Inter Variable', ...defaultConfig.theme.fontFamily.sans],\n mono: ['JetBrains Mono Variable', ...defaultConfig.theme.fontFamily.mono],\n },\n extend: merge(\n {\n // Generates is-card-default-width, is-card-min-width, etc.\n spacing: {\n 'prose-max-width': 'var(--dx-prose-max-width)',\n 'container-max-width': 'var(--dx-container-max-width)',\n 'card-default-width': 'var(--dx-card-default-width)',\n 'card-min-width': 'var(--dx-card-min-width)',\n 'card-max-width': 'var(--dx-card-max-width)',\n 'card-min-height': 'var(--dx-card-min-height)',\n 'card-max-height': 'var(--dx-card-max-height)',\n },\n backgroundImage: {\n 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',\n 'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',\n },\n borderRadius: {\n none: '0',\n sm: '0.25rem',\n DEFAULT: '0.5rem',\n md: '0.75rem',\n lg: '1rem',\n },\n screens: {\n 'pointer-fine': { raw: '(pointer: fine)' },\n 'hover-hover': { raw: '(hover: hover)' },\n 'md': '768px',\n 'lg': '1024px',\n },\n fontSize: {\n // Base size 16px\n // Scale 1.125\n 'xs': ['0.790rem', { lineHeight: '1rem' }],\n 'sm': ['0.889rem', { lineHeight: '1.25rem' }],\n 'base': ['1rem', { lineHeight: '1.5rem' }],\n 'lg': ['1.125rem', { lineHeight: '1.75rem' }],\n 'xl': ['1.266rem', { lineHeight: '1.75rem' }],\n '2xl': ['1.424rem', { lineHeight: '2rem' }],\n '3xl': ['1.602rem', { lineHeight: '2.25rem' }],\n '4xl': ['1.802rem', { lineHeight: '2.5rem' }],\n '5xl': ['2.027rem', { lineHeight: '2.5rem' }],\n '6xl': ['2.281rem', { lineHeight: '2.5rem' }],\n '7xl': ['2.566rem', { lineHeight: '2.75rem' }],\n '8xl': ['2.887rem', { lineHeight: '3rem' }],\n '9xl': ['3.247rem', { lineHeight: '3.25rem' }],\n },\n boxShadow: {\n 'slider': '0 0 0 5px rgba(0, 0, 0, 0.3)',\n },\n transitionProperty: {\n 'max-height': 'max-height',\n },\n transitionTimingFunction: {\n 'in-out-symmetric': 'cubic-bezier(0.5, 0, 0.5, 1)',\n },\n keyframes: {\n // Fade\n 'fade-in': {\n from: { opacity: 0 },\n to: { opacity: 1 },\n },\n 'fade-out': {\n from: { opacity: 1 },\n to: { opacity: 0 },\n },\n\n // Popper chrome\n 'slide-down-and-fade': {\n from: { opacity: 1, transform: 'translateY(0)' },\n to: { opacity: 0, transform: 'translateY(16px)' },\n },\n 'slide-left-and-fade': {\n from: { opacity: 0, transform: 'translateX(-16px)' },\n to: { opacity: 1, transform: 'translateX(0)' },\n },\n 'slide-up-and-fade': {\n from: { opacity: 0, transform: 'translateY(16px)' },\n to: { opacity: 1, transform: 'translateY(0)' },\n },\n 'slide-right-and-fade': {\n from: { opacity: 0, transform: 'translateX(16px)' },\n to: { opacity: 1, transform: 'translateX(0)' },\n },\n\n // Toast\n 'toast-hide': {\n '0%': { opacity: '1' },\n '100%': { opacity: '0' },\n },\n 'toast-slide-in-right': {\n '0%': { transform: 'translateX(calc(100% + 1rem))' },\n '100%': { transform: 'translateX(0)' },\n },\n 'toast-slide-in-bottom': {\n '0%': { transform: 'translateY(calc(100% + 1rem))' },\n '100%': { transform: 'translateY(0)' },\n },\n 'toast-swipe-out': {\n '0%': {\n transform: 'translateX(var(--radix-toast-swipe-end-x))',\n },\n '100%': {\n transform: 'translateX(calc(100% + 1rem))',\n },\n },\n\n // Accordion\n 'slide-down': {\n from: { height: '0px' },\n to: { height: 'var(--radix-accordion-content-height)' },\n },\n 'slide-up': {\n from: { height: 'var(--radix-accordion-content-height)' },\n to: { height: '0px' },\n },\n\n // Shimmer\n 'shimmer-loop': {\n '100%': {\n transform: 'translateX(100%)',\n },\n },\n\n // HALO\n 'halo-pulse': {\n '0%': {\n opacity: 0.3,\n },\n '5%': {\n opacity: 1,\n },\n '100%': {\n opacity: 0.3,\n },\n },\n\n // Progress\n 'progress-indeterminate': {\n '0%': {\n left: 0,\n width: '0%',\n },\n '25%': {\n left: '25%',\n width: '50%',\n },\n '75%': {\n left: '50%',\n width: '100%',\n },\n '100%': {\n left: '100%',\n width: '0%',\n },\n },\n\n // Border trail effect\n 'trail': {\n to: { 'offset-distance': '100%' },\n },\n 'trail-offset': {\n '0%': { 'offset-distance': '50%' },\n '100%': { 'offset-distance': '150%' },\n },\n },\n animation: {\n // Fade\n 'fade-in': 'fade-in 200ms ease-out',\n 'fade-out': 'fade-out 400ms ease-out',\n\n // Popper chrome\n 'slide-down-and-fade': 'slide-down-and-fade 400ms cubic-bezier(0.16, 1, 0.3, 1)',\n 'slide-left-and-fade': 'slide-left-and-fade 400ms cubic-bezier(0.16, 1, 0.3, 1)',\n 'slide-up-and-fade': 'slide-up-and-fade 400ms cubic-bezier(0.16, 1, 0.3, 1)',\n 'slide-right-and-fade': 'slide-right-and-fade 400ms cubic-bezier(0.16, 1, 0.3, 1)',\n\n // Toast\n 'toast-hide': 'toast-hide 100ms ease-in forwards',\n 'toast-slide-in-right': 'toast-slide-in-right 150ms cubic-bezier(0.16, 1, 0.3, 1)',\n 'toast-slide-in-bottom': 'toast-slide-in-bottom 150ms cubic-bezier(0.16, 1, 0.3, 1)',\n 'toast-swipe-out': 'toast-swipe-out 100ms ease-out forwards',\n\n // Accordion\n 'slide-down': 'slide-down 300ms cubic-bezier(0.87, 0, 0.13, 1)',\n 'slide-up': 'slide-up 300ms cubic-bezier(0.87, 0, 0.13, 1)',\n\n // Border trail effect\n 'trail': 'trail 6s linear infinite',\n 'trail-offset': 'trail-offset 6s linear infinite',\n\n // Progress effects\n 'spin': 'spin 1.5s linear infinite',\n 'spin-slow': 'spin 3s linear infinite',\n 'shimmer': 'shimmer-loop 2s infinite',\n 'halo-pulse': 'halo-pulse 2s ease-out infinite',\n 'progress-indeterminate': 'progress-indeterminate 2s ease-out infinite',\n 'progress-linear': 'progress-linear 2s ease-out infinite',\n },\n },\n extendTokens,\n ...extensions,\n ),\n ...overrideTokens,\n colors: {\n ...overrideTokens.colors,\n inherit: 'inherit',\n current: 'currentColor',\n transparent: 'transparent',\n black: 'black',\n white: 'white',\n },\n },\n plugins: [\n tailwindcssContainerQueries,\n tailwindcssForms,\n tailwindcssLogical,\n tailwindcssRadix(),\n // https://adoxography.github.io/tailwind-scrollbar/utilities\n tailwindScrollbar({\n nocompatible: true,\n preferredStrategy: 'pseudoelements',\n }),\n ],\n ...(env === 'development' && { mode: 'jit' }),\n content,\n future: {\n hoverOnlyWhenSupported: true,\n },\n});\n", "//\n// Copyright 2025 DXOS.org\n//\n\n/**\n * Cards should be no larger than 320px per WCAG 2.1 SC 1.4.10.\n */\nexport const cardMinInlineSize = 18;\nexport const cardDefaultInlineSize = 20; // 320px\nexport const cardMaxInlineSize = 22;\nexport const cardMinBlockSize = 18;\nexport const cardMaxBlockSize = 30;\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport { type TailwindAdapterConfig } from '@ch-ui/tailwind-tokens';\nimport adapter from '@ch-ui/tailwind-tokens';\nimport { type TokenSet } from '@ch-ui/tokens';\n\nimport { aliasColors } from './alias-colors';\nimport { lengthsFacet, maxSizesFacet } from './lengths';\nimport { huePalettes, physicalColors } from './physical-colors';\nimport { semanticColors } from './semantic-colors';\nimport { systemAliases, systemSememes } from './sememes-system';\n\nexport const hues = Object.keys(huePalettes);\n\nexport const tokenSet = {\n colors: {\n physical: physicalColors,\n semantic: semanticColors,\n alias: aliasColors,\n },\n lengths: lengthsFacet,\n maxSizes: maxSizesFacet,\n} satisfies TokenSet;\n\nconst adapterConfig: TailwindAdapterConfig = {\n colors: {\n facet: 'colors',\n disposition: 'overwrite',\n tokenization: 'recursive',\n },\n borderWidth: {\n facet: 'lengths',\n disposition: 'extend',\n tokenization: 'omit-series',\n },\n ringWidth: {\n facet: 'lengths',\n disposition: 'extend',\n tokenization: 'omit-series',\n },\n ringOffsetWidth: {\n facet: 'lengths',\n disposition: 'extend',\n tokenization: 'omit-series',\n },\n outlineWidth: {\n facet: 'lengths',\n disposition: 'extend',\n tokenization: 'omit-series',\n },\n spacing: {\n facet: 'lengths',\n disposition: 'extend',\n tokenization: 'keep-series',\n },\n};\n\nexport const userDefaultTokenSet = {\n colors: {\n physical: {\n definitions: {\n series: {\n neutral: physicalColors.definitions!.series!.neutral,\n primary: physicalColors.definitions!.series!.primary,\n },\n accompanyingSeries: physicalColors.definitions!.accompanyingSeries,\n },\n conditions: physicalColors.conditions,\n series: {\n neutral: physicalColors.series.neutral,\n primary: physicalColors.series.primary,\n },\n namespace: physicalColors.namespace,\n },\n semantic: {\n conditions: semanticColors.conditions,\n sememes: systemSememes,\n namespace: semanticColors.namespace,\n },\n alias: {\n conditions: aliasColors.conditions,\n aliases: systemAliases,\n namespace: aliasColors.namespace,\n },\n },\n} satisfies TokenSet;\n\nexport const tokensTailwindConfig = adapter(tokenSet, adapterConfig);\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport type { AccompanyingSeries, ColorsPhysicalLayer, Gamut, HelicalArcSeries, PhysicalSeries } from '@ch-ui/tokens';\n\nimport { type PhysicalPalette } from './types';\n\nconst reflectiveRelation = {\n initial: 1_000,\n slope: -1_000,\n method: 'floor',\n} satisfies AccompanyingSeries;\n\nconst gamuts: (Gamut & string)[] = ['srgb', 'p3', 'rec2020'];\n\nconst DEG_RAD = Math.PI / 180;\n\n/**\n * Creates a color palette configuration for a given hue value.\n *\n * @param hue - A number from 0-16 representing different hue angles\n * @returns A PhysicalPalette configuration with:\n * - keyPoint: [lightness, chroma, hue] in LCH color space\n * - lightness: Fixed at 0.5 (50%)\n * - chroma: Varies sinusoidally around 0.13 based on hue angle\n * - hue: Calculated by mapping input 0-16 to 26-386 degrees\n * - Control points and torsion for color interpolation\n */\nconst hueKeyPoint = (hue: number): PhysicalPalette => {\n const hueDeg = (360 * (hue / 17) + 26) % 360;\n return {\n keyPoint: [0.5, 0.13 + 0.024 * Math.sin((hueDeg - 15) * DEG_RAD), hueDeg],\n lowerCp: 1,\n upperCp: 1,\n torsion: 0,\n };\n};\n\nexport const huePalettes = {\n red: hueKeyPoint(0),\n orange: hueKeyPoint(1),\n amber: hueKeyPoint(2),\n yellow: hueKeyPoint(3),\n lime: hueKeyPoint(4),\n green: hueKeyPoint(5),\n emerald: hueKeyPoint(6),\n teal: hueKeyPoint(7),\n cyan: hueKeyPoint(8),\n sky: hueKeyPoint(9),\n blue: hueKeyPoint(10),\n indigo: hueKeyPoint(11),\n violet: hueKeyPoint(12),\n purple: hueKeyPoint(13),\n fuchsia: hueKeyPoint(14),\n pink: hueKeyPoint(15),\n rose: hueKeyPoint(16),\n};\n\n/**\n * The keyPoint represents the LCH value:\n * - Lightness: 0-1, should usually set the keyPoint at or near 0.5\n * - Chroma: min 0, max 0.08–0.5 depending on hue and gamut, theme will clamp final value to within gamut’s range\n * - Hue: 0-360 (~26 “red”, ~141 “green”, ~262 “blue”)\n *\n * NOTE: Rebuild the theme and restart the dev server to see changes.\n *\n * Theme references:\n * https://oklch.com\n * https://colorsublime.github.io\n * https://github.com/microsoft/vscode-docs/blob/main/api/extension-guides/color-theme.md#create-a-new-color-theme\n * https://raw.githubusercontent.com/microsoft/vscode/main/src/vs/workbench/services/themes/common/colorThemeSchema.ts\n * https://tailwindcss.com/docs/colors\n */\nconst systemPalettes = {\n neutral: {\n keyPoint: [0.5, 0.001, 260],\n lowerCp: 0,\n upperCp: 0,\n torsion: 0,\n // Values used directly.\n // TODO(burdon): Audit.\n values: [25, 50, 75, 100, 150, 200, 250, 300, 400, 500, 600, 700, 750, 800, 850, 900],\n } satisfies PhysicalPalette,\n\n // https://oklch.com/#0.5,0.2,260,100 (#0559d2)\n primary: {\n keyPoint: [0.5, 0.2, 260],\n lowerCp: 0.86,\n upperCp: 1,\n torsion: -30,\n // Values used directly.\n // TODO(burdon): Audit.\n values: [100, 150, 200, 350, 400, 450, 500, 750, 800, 850],\n } satisfies PhysicalPalette,\n};\n\nconst physicalSeries = {\n ...huePalettes,\n ...systemPalettes,\n};\n\nexport const physicalColors: ColorsPhysicalLayer = {\n namespace: 'dx-',\n definitions: {\n // @ts-ignore\n series: physicalSeries,\n accompanyingSeries: { reflectiveRelation },\n },\n conditions: {\n srgb: [':root, .dark'],\n p3: ['@media (color-gamut: p3)', ':root, .dark'],\n rec2020: ['@media (color-gamut: rec2020)', ':root, .dark'],\n },\n series: Object.entries(physicalSeries).reduce((acc: ColorsPhysicalLayer['series'], [id]) => {\n acc[id] = gamuts.reduce((acc: PhysicalSeries<Gamut & string, HelicalArcSeries>, gamut) => {\n acc[gamut] = {\n extends: id,\n physicalValueRelation: { extends: 'reflectiveRelation' },\n };\n return acc;\n }, {});\n return acc;\n }, {}),\n};\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport { huePalettes } from './physical-colors';\nimport { type ColorAliases, type ColorSememes } from './types';\n\nexport const hueSememes: ColorSememes = [...Object.keys(huePalettes), 'neutral', 'primary'].reduce(\n (acc: ColorSememes, palette) => {\n acc[`${palette}Cursor`] = {\n light: [palette, 400],\n dark: [palette, 300],\n };\n acc[`${palette}Text`] = {\n light: [palette, 550],\n dark: [palette, 300],\n };\n acc[`${palette}Fill`] = {\n light: [palette, 500],\n dark: [palette, 500],\n };\n acc[`${palette}Surface`] = {\n light: [palette, 200],\n dark: [palette, 700],\n };\n acc[`${palette}SurfaceText`] = {\n light: [palette, 700],\n dark: [palette, 200],\n };\n acc[`${palette}Screen`] = {\n light: [palette, 100],\n dark: [palette, 800],\n };\n return acc;\n },\n {},\n);\n\nconst valenceAliasSememeStems = ['Text', 'Surface', 'SurfaceText', 'Fill', 'Cursor'];\nconst valenceMapping = {\n emerald: ['success'],\n cyan: ['info'],\n amber: ['warning'],\n rose: ['error'],\n primary: ['current'],\n fuchsia: ['internal'],\n};\n\nexport const valenceAliases: ColorAliases = valenceAliasSememeStems.reduce((acc: ColorAliases, stem) => {\n return Object.entries(valenceMapping).reduce((acc: ColorAliases, [hue, valences]) => {\n acc[`${hue}${stem}`] = { root: valences.map((valence) => `${valence}${stem}`) };\n return acc;\n }, acc);\n}, {});\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport type { ColorAliases, ColorSememes } from './types';\n\nexport const sheetSememes = {\n // NOTE: background styles for the main content area must have transparency otherwise they will mask the selection.\n axisSurface: {\n light: ['neutral', 50],\n dark: ['neutral', 800],\n },\n axisText: {\n light: ['neutral', 800],\n dark: ['neutral', 200],\n },\n axisSelectedSurface: {\n light: ['neutral', 100],\n dark: ['neutral', 900],\n },\n axisSelectedText: {\n light: ['neutral', 100],\n dark: ['neutral', 900],\n },\n gridCell: {\n // TODO(thure): Why override only dark?\n light: ['neutral', '50/0'],\n dark: ['neutral', 850],\n },\n gridCellSelected: {\n // TODO(thure): Can this not just use `attention`?\n light: ['neutral', 50],\n dark: ['neutral', 800],\n },\n gridOverlay: {\n light: ['primary', '500/.5'],\n dark: ['primary', '500/.5'],\n },\n gridSelectionOverlay: {\n light: ['primary', '500/.2'],\n dark: ['primary', '500/.2'],\n },\n gridHighlight: {\n light: ['emerald', '500/.5'],\n dark: ['emerald', '500/.5'],\n },\n // TODO(burdon): Factor out def (in common with editor).\n gridCommented: {\n light: ['green', 200],\n dark: ['green', 600],\n },\n gridCommentedActive: {\n light: ['green', '200/.5'],\n dark: ['green', '600/.5'],\n },\n} satisfies ColorSememes;\n\nexport const sheetAliases = {\n activeSurface: { root: ['gridLine'] },\n accentFocusIndicator: { root: ['gridFocusIndicatorColor'] },\n neutralFocusIndicator: { gridFocusStack: ['gridFocusIndicatorColor'] },\n} satisfies ColorAliases;\n", "//\n// Copyright 2024 DXOS.org\n//\n\n// TODO(thure): TS2742\n/* eslint-disable unused-imports/no-unused-imports */\nimport * as _colors from '@ch-ui/colors';\n\nimport { type ColorAliases, type ColorSememes } from './types';\n\n// TODO(burdon): Move to util.\nconst getMapValue = <T>(map: Record<string, T>, key: string, defaultValue: () => T): T => {\n let value = map[key];\n if (!value) {\n value = defaultValue();\n map[key] = value;\n }\n return value;\n};\n\ntype Sememe = ColorSememes[string];\n\nconst applyAlpha = (sememe: Sememe, alpha: number): Sememe => {\n if (alpha >= 1) {\n return sememe;\n } else {\n return {\n light: [sememe.light![0], `${sememe.light![1]}/${alpha}`],\n dark: [sememe.dark![0], `${sememe.dark![1]}/${alpha}`],\n };\n }\n};\n\n// Luminosity extrema and key points.\n\n// Both elevation cadences go from darker to lighter from “elevation” 0 to `ELEVATION_SCALE`,\n// whereas both contrast cadences go from highest contrast at 0 to lowest contrast at `CONTRAST_SCALE`.\n\nconst DARK_ELEVATION_MIN = 855;\nconst DARK_ELEVATION_MAX = 731;\n\nconst DARK_CONTRAST_MIN = 750;\nconst DARK_CONTRAST_MAX = 665;\n\nconst LIGHT_ELEVATION_MIN = 0;\nconst LIGHT_ELEVATION_MAX = 0;\n\nconst LIGHT_CONTRAST_MIN = 82;\nconst LIGHT_CONTRAST_MAX = 24;\n\nconst ELEVATION_SCALE = 2;\nconst CONTRAST_SCALE = 3;\n\nconst darkElevationCadence = (depth: number) =>\n Math.round(\n DARK_ELEVATION_MAX + (DARK_ELEVATION_MIN - DARK_ELEVATION_MAX) * ((ELEVATION_SCALE - depth) / ELEVATION_SCALE),\n );\nconst darkContrastCadence = (depth: number) =>\n Math.round(\n DARK_CONTRAST_MAX + (DARK_CONTRAST_MIN - DARK_CONTRAST_MAX) * ((ELEVATION_SCALE - depth) / ELEVATION_SCALE),\n );\n\nconst lightElevationCadence = (depth: number) =>\n Math.round(\n LIGHT_ELEVATION_MIN + (LIGHT_ELEVATION_MAX - LIGHT_ELEVATION_MIN) * ((CONTRAST_SCALE - depth) / CONTRAST_SCALE),\n );\nconst lightContrastCadence = (depth: number) =>\n Math.round(LIGHT_CONTRAST_MAX + (LIGHT_CONTRAST_MIN - LIGHT_CONTRAST_MAX) * (depth / CONTRAST_SCALE));\n\nconst elevationCadence = (lightDepth: number, darkDepth: number = lightDepth, alpha: number = 1): Sememe =>\n applyAlpha(\n {\n light: ['neutral', lightElevationCadence(lightDepth)],\n dark: ['neutral', darkElevationCadence(darkDepth)],\n },\n alpha,\n );\n\nconst contrastCadence = (lightDepth: number, darkDepth: number = lightDepth, alpha: number = 1): Sememe =>\n applyAlpha(\n {\n light: ['neutral', lightContrastCadence(lightDepth)],\n dark: ['neutral', darkContrastCadence(darkDepth)],\n },\n alpha,\n );\n\nexport const systemSememes = {\n //\n // Elevation cadence tokens\n //\n\n baseSurface: elevationCadence(0),\n groupSurface: elevationCadence(1),\n modalSurface: elevationCadence(2, 1.7),\n\n //\n // Contrast cadence tokens\n //\n\n textInputSurfaceBase: contrastCadence(0, 0),\n textInputSurfaceGroup: contrastCadence(0, 0.5),\n textInputSurfaceModal: contrastCadence(0, 1),\n\n inputSurfaceBase: contrastCadence(0.8, 0.33),\n inputSurfaceGroup: contrastCadence(0.8, 0.66),\n inputSurfaceModal: contrastCadence(0.8, 1),\n\n hoverSurfaceBase: contrastCadence(2, 1.5),\n hoverSurfaceGroup: contrastCadence(2, 2),\n hoverSurfaceModal: contrastCadence(2, 2.5),\n\n separatorBase: contrastCadence(3, 2),\n separatorGroup: contrastCadence(3, 2.5),\n separatorModal: contrastCadence(3, 3),\n subduedSeparator: contrastCadence(3, 1),\n\n scrollbarTrack: contrastCadence(0),\n scrollbarThumbSubdued: contrastCadence(1, 1),\n scrollbarThumb: contrastCadence(2.5, 2.5),\n scrollbarThumbHover: contrastCadence(3.5, 3.5),\n scrollbarThumbActive: contrastCadence(4.5, 4.5),\n\n unAccent: {\n light: ['neutral', 400],\n dark: ['neutral', 400],\n },\n unAccentHover: {\n light: ['neutral', 450],\n dark: ['neutral', 450],\n },\n hoverOverlay: {\n light: ['neutral', '450/.1'],\n dark: ['neutral', '450/.1'],\n },\n\n //\n // Special surfaces.\n //\n\n // Screen overlay for modal dialogs.\n scrimSurface: applyAlpha(\n {\n light: ['neutral', LIGHT_CONTRAST_MAX],\n dark: ['neutral', DARK_ELEVATION_MIN],\n },\n 0.65,\n ),\n\n // High contrast for focused interactive elements. (Technically this is part of the surface cadence, but the contrast cadence is on the opposite side of the elevation cadence as this point.)\n focusSurface: {\n light: ['neutral', 0],\n dark: ['neutral', 1000],\n },\n\n deckSurface: {\n light: ['neutral', 50],\n dark: ['neutral', 950],\n },\n\n // For tooltips only; the highest elevation from the opposite theme\n inverseSurface: {\n light: ['neutral', DARK_ELEVATION_MIN],\n dark: ['neutral', LIGHT_ELEVATION_MIN],\n },\n\n //\n // Accent surfaces\n //\n\n accentSurfaceRelated: {\n light: ['primary', '300/.1'],\n dark: ['primary', '400/.1'],\n },\n accentSurfaceHover: {\n light: ['primary', 600],\n dark: ['primary', 475],\n },\n accentSurface: {\n light: ['primary', 500],\n dark: ['primary', 500],\n },\n\n //\n // Text (text-) and other foregrounds\n // TODO(thure): Establish contrast-order cadence for text.\n //\n\n baseText: {\n light: ['neutral', 1000],\n dark: ['neutral', 50],\n },\n inverseSurfaceText: {\n light: ['neutral', 50],\n dark: ['neutral', 1000],\n },\n description: {\n light: ['neutral', 550],\n dark: ['neutral', 350],\n },\n subdued: {\n light: ['neutral', 700],\n dark: ['neutral', 300],\n },\n placeholder: {\n light: ['neutral', 500],\n dark: ['neutral', 500],\n },\n accentText: {\n light: ['primary', 550],\n dark: ['primary', 400],\n },\n accentSurfaceText: {\n light: ['neutral', 0],\n dark: ['neutral', 0],\n },\n accentTextHover: {\n light: ['primary', 500],\n dark: ['primary', 350],\n },\n accentFocusIndicator: {\n light: ['primary', 300],\n dark: ['primary', 450],\n },\n neutralFocusIndicator: {\n light: ['neutral', 300],\n dark: ['neutral', 550],\n },\n} satisfies ColorSememes;\n\ntype SememeName = keyof typeof systemSememes;\ntype SememeKey = 'root' | 'group' | 'modal';\n\n/**\n * Alias map.\n */\nconst aliasDefs: Record<string, Partial<Record<SememeKey, SememeName>>> = {\n // Selected items, current items, other surfaces needing special contrast against baseSurface.\n activeSurface: {\n root: 'inputSurfaceBase',\n },\n\n // Main sidebar panel.\n sidebarSurface: {\n root: 'groupSurface',\n },\n\n // Plank header.\n headerSurface: {\n root: 'groupSurface',\n },\n\n // Toolbars, table/sheet headers, etc.\n toolbarSurface: {\n root: 'groupSurface',\n },\n\n // Forms, cards, etc.\n cardSurface: {\n root: 'groupSurface',\n },\n\n // Secondary aliases.\n textInputSurface: {\n root: 'textInputSurfaceBase',\n group: 'textInputSurfaceGroup',\n modal: 'textInputSurfaceModal',\n },\n inputSurface: {\n root: 'inputSurfaceBase',\n group: 'inputSurfaceGroup',\n modal: 'inputSurfaceModal',\n },\n hoverSurface: {\n root: 'hoverSurfaceBase',\n group: 'hoverSurfaceGroup',\n modal: 'hoverSurfaceModal',\n },\n\n // TODO(thure): Rename uses of this token to `focusSurface` and remove this alias.\n attention: {\n root: 'focusSurface',\n },\n\n // In “master-detail” patterns, the background of the item in the list which is enumerated in the adjacent view.\n // TODO(burdon): Review tokens.\n currentRelated: {\n root: 'modalSurface',\n },\n\n // Borders and dividers.\n separator: {\n root: 'separatorBase',\n group: 'separatorGroup',\n modal: 'separatorModal',\n },\n};\n\nexport const systemAliases: ColorAliases = Object.entries(aliasDefs).reduce((aliases, [alias, values]) => {\n Object.entries(values).forEach(([key, sememe]) => {\n const record = getMapValue(aliases, sememe, () => ({}));\n const list = getMapValue<string[]>(record, key, () => []);\n list.push(alias);\n });\n\n return aliases;\n}, {} as ColorAliases);\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport { type AliasLayer } from '@ch-ui/tokens';\n\nimport { valenceAliases } from './sememes-hue';\nimport { sheetAliases } from './sememes-sheet';\nimport { systemAliases } from './sememes-system';\n\nconst groupAliases = ['groupSurface', ...(systemAliases.groupSurface?.root ?? [])];\nconst modalAliases = ['modalSurface', ...(systemAliases.modalSurface?.root ?? [])];\n\nexport const aliasColors = {\n conditions: {\n root: [':root, .dark'],\n group: [\n [\n '.sidebar-surface, .dark .sidebar-surface',\n ...groupAliases.map((alias) => `.bg-${alias}, .dark .bg-${alias}`),\n ].join(', '),\n ],\n modal: [\n [\n '.modal-surface, .dark .modal-surface',\n ...modalAliases.map((alias) => `.bg-${alias}, .dark .bg-${alias}`),\n //\n ].join(', '),\n ],\n gridFocusStack: ['[data-grid-focus-indicator-variant=\"stack\"]'],\n },\n aliases: {\n // TODO(thure): Aliases should be merged more elegantly, this causes overwrites.\n ...sheetAliases,\n ...systemAliases,\n ...valenceAliases,\n },\n namespace: 'dx-',\n} satisfies AliasLayer<string>;\n", "//\n\n// Copyright 2025 DXOS.org\n//\n\nimport { type Facet, type LinearPhysicalLayer } from '@ch-ui/tokens';\n\nimport {\n cardDefaultInlineSize,\n cardMaxBlockSize,\n cardMaxInlineSize,\n cardMinBlockSize,\n cardMinInlineSize,\n} from './sizes';\n\nexport const lengthsFacet = {\n physical: {\n namespace: 'dx-',\n conditions: { root: [':root'] },\n series: {\n line: {\n root: {\n unit: 'px',\n initial: 0,\n slope: 1,\n },\n },\n // \"gap\"\n lacuna: {\n root: {\n unit: 'rem',\n initial: 0,\n slope: 0.125,\n },\n },\n },\n } satisfies LinearPhysicalLayer,\n\n semantic: {\n namespace: 'dx-',\n conditions: { root: [':root'] },\n sememes: {\n noLine: { root: ['line', 0] },\n hairLine: { root: ['line', 1] },\n thickLine: { root: ['line', 2] },\n trimXs: { root: ['lacuna', 3] },\n trimSm: { root: ['lacuna', 4] },\n trimMd: { root: ['lacuna', 6] },\n trimLg: { root: ['lacuna', 12] },\n inputFine: { root: ['lacuna', 3] },\n inputCoarse: { root: ['lacuna', 4] },\n },\n },\n\n alias: {\n namespace: 'dx-',\n conditions: {\n fine: [':root, .density-fine'],\n coarse: ['.density-coarse'],\n flush: ['.density-flush'],\n gridFocusStack: ['[data-grid-focus-indicator-variant=\"stack\"]'],\n },\n aliases: {\n noLine: { fine: ['focusOffset'] },\n hairLine: { fine: ['modalLine', 'landmarkLine', 'positionedLine', 'gridGap', 'gridFocusIndicatorWidth'] },\n thickLine: { fine: ['focusLine'], gridFocusStack: ['gridFocusIndicatorWidth'] },\n inputFine: { fine: ['iconButtonPadding'] },\n inputCoarse: { coarse: ['iconButtonPadding'] },\n\n trimXs: { fine: ['cardSpacingChrome', 'labelSpacingBlock', 'inputSpacingBlock'] },\n // TODO(burdon): Remove?\n trimSm: { fine: ['cardSpacingInline', 'cardSpacingBlock', 'cardSpacingGap'] },\n trimMd: { coarse: ['cardSpacingInline', 'cardSpacingBlock', 'cardSpacingGap'] },\n },\n },\n} satisfies Facet;\n\nexport const maxSizesFacet = {\n physical: {\n namespace: 'dx-',\n conditions: { root: [':root'] },\n series: {\n size: {\n root: {\n unit: 'rem',\n initial: 0,\n slope: 1,\n },\n },\n },\n } satisfies LinearPhysicalLayer,\n\n semantic: {\n namespace: 'dx-',\n conditions: { root: [':root'] },\n sememes: {\n 'prose-max-width': { root: ['size', 50] },\n 'container-max-width': { root: ['size', 50] },\n 'card-default-width': { root: ['size', cardDefaultInlineSize] },\n 'card-min-width': { root: ['size', cardMinInlineSize] },\n 'card-max-width': { root: ['size', cardMaxInlineSize] },\n 'card-min-height': { root: ['size', cardMinBlockSize] },\n 'card-max-height': { root: ['size', cardMaxBlockSize] },\n },\n },\n} satisfies Facet;\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport { type ColorSememes } from './types';\n\n// TODO(burdon): This should be broader than just calls.\nexport const callsSememes: ColorSememes = {\n callActive: {\n light: ['green', '500'],\n dark: ['green', '500'],\n },\n callAlert: {\n light: ['rose', '500'],\n dark: ['rose', '500'],\n },\n};\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport { type ColorSememes } from './types';\n\nexport const codemirrorSememes = {\n // NOTE: background styles for the main content area must have transparency otherwise they will mask the selection.\n cmCodeblock: {\n light: ['neutral', '500/.1'],\n dark: ['neutral', '500/.1'],\n },\n cmActiveLine: {\n light: ['neutral', '200/.5'],\n dark: ['neutral', '800/.5'],\n },\n cmSeparator: {\n light: ['primary', 500],\n dark: ['primary', 500],\n },\n cmCursor: {\n light: ['neutral', 900],\n dark: ['neutral', 100],\n },\n cmSelection: {\n light: ['primary', '400/.5'],\n dark: ['primary', '600/.5'],\n },\n cmFocusedSelection: {\n light: ['primary', 400],\n dark: ['primary', 600],\n },\n cmHighlight: {\n light: ['neutral', 950],\n dark: ['neutral', 50],\n },\n cmHighlightSurface: {\n light: ['sky', 200],\n dark: ['cyan', 600],\n },\n // TODO(burdon): Factor out defs in common with sheet.\n cmCommentText: {\n light: ['neutral', 50],\n dark: ['neutral', 950],\n },\n cmCommentSurface: {\n light: ['amber', 700],\n dark: ['amber', 200],\n },\n} satisfies ColorSememes;\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport type { HelicalArcValue, SemanticLayer } from '@ch-ui/tokens';\n\nimport { callsSememes } from './sememes-calls';\nimport { codemirrorSememes } from './sememes-codemirror';\nimport { hueSememes } from './sememes-hue';\nimport { sheetSememes } from './sememes-sheet';\nimport { systemSememes } from './sememes-system';\n\nexport const semanticColors = {\n conditions: {\n light: [':root'],\n dark: ['.dark'],\n },\n sememes: {\n // Define each set of sememes in its own file.\n ...callsSememes,\n ...codemirrorSememes,\n ...hueSememes,\n ...sheetSememes,\n ...systemSememes,\n },\n namespace: 'dx-',\n} satisfies SemanticLayer<string, string, HelicalArcValue>;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,+BAAwC;AACxC,mBAA6B;AAC7B,oBAAkB;AAClB,gCAA8B;AAC9B,yBAA0B;AAE1B,iCAA+B;AAC/B,+BAA6B;AEN7B,6BAAoB;ADEb,IAAMA,oBAAoB;AAC1B,IAAMC,wBAAwB;AAC9B,IAAMC,oBAAoB;AAC1B,IAAMC,mBAAmB;AACzB,IAAMC,mBAAmB;AEHhC,IAAMC,qBAAqB;EACzBC,SAAS;EACTC,OAAO;EACPC,QAAQ;AACV;AAEA,IAAMC,SAA6B;EAAC;EAAQ;EAAM;;AAElD,IAAMC,UAAUC,KAAKC,KAAK;AAa1B,IAAMC,cAAc,CAACC,QAAAA;AACnB,QAAMC,UAAU,OAAOD,MAAM,MAAM,MAAM;AACzC,SAAO;IACLE,UAAU;MAAC;MAAK,OAAO,QAAQL,KAAKM,KAAKF,SAAS,MAAML,OAAAA;MAAUK;;IAClEG,SAAS;IACTC,SAAS;IACTC,SAAS;EACX;AACF;AAEO,IAAMC,cAAc;EACzBC,KAAKT,YAAY,CAAA;EACjBU,QAAQV,YAAY,CAAA;EACpBW,OAAOX,YAAY,CAAA;EACnBY,QAAQZ,YAAY,CAAA;EACpBa,MAAMb,YAAY,CAAA;EAClBc,OAAOd,YAAY,CAAA;EACnBe,SAASf,YAAY,CAAA;EACrBgB,MAAMhB,YAAY,CAAA;EAClBiB,MAAMjB,YAAY,CAAA;EAClBkB,KAAKlB,YAAY,CAAA;EACjBmB,MAAMnB,YAAY,EAAA;EAClBoB,QAAQpB,YAAY,EAAA;EACpBqB,QAAQrB,YAAY,EAAA;EACpBsB,QAAQtB,YAAY,EAAA;EACpBuB,SAASvB,YAAY,EAAA;EACrBwB,MAAMxB,YAAY,EAAA;EAClByB,MAAMzB,YAAY,EAAA;AACpB;AAiBA,IAAM0B,iBAAiB;EACrBC,SAAS;IACPxB,UAAU;MAAC;MAAK;MAAO;;IACvBE,SAAS;IACTC,SAAS;IACTC,SAAS;;;IAGTqB,QAAQ;MAAC;MAAI;MAAI;MAAI;MAAK;MAAK;MAAK;MAAK;MAAK;MAAK;MAAK;MAAK;MAAK;MAAK;MAAK;MAAK;;EACnF;;EAGAC,SAAS;IACP1B,UAAU;MAAC;MAAK;MAAK;;IACrBE,SAAS;IACTC,SAAS;IACTC,SAAS;;;IAGTqB,QAAQ;MAAC;MAAK;MAAK;MAAK;MAAK;MAAK;MAAK;MAAK;MAAK;MAAK;;EACxD;AACF;AAEA,IAAME,iBAAiB;EACrB,GAAGtB;EACH,GAAGkB;AACL;AAEO,IAAMK,iBAAsC;EACjDC,WAAW;EACXC,aAAa;;IAEXC,QAAQJ;IACRK,oBAAoB;MAAE3C;IAAmB;EAC3C;EACA4C,YAAY;IACVC,MAAM;MAAC;;IACPC,IAAI;MAAC;MAA4B;;IACjCC,SAAS;MAAC;MAAiC;;EAC7C;EACAL,QAAQM,OAAOC,QAAQX,cAAAA,EAAgBY,OAAO,CAACC,KAAoC,CAACC,EAAAA,MAAG;AACrFD,QAAIC,EAAAA,IAAMhD,OAAO8C,OAAO,CAACC,MAAuDE,UAAAA;AAC9EF,WAAIE,KAAAA,IAAS;QACXC,SAASF;QACTG,uBAAuB;UAAED,SAAS;QAAqB;MACzD;AACA,aAAOH;IACT,GAAG,CAAC,CAAA;AACJ,WAAOA;EACT,GAAG,CAAC,CAAA;AACN;ACrHO,IAAMK,aAA2B;KAAIR,OAAOS,KAAKzC,WAAAA;EAAc;EAAW;EAAWkC,OAC1F,CAACC,KAAmBO,YAAAA;AAClBP,MAAI,GAAGO,OAAAA,QAAe,IAAI;IACxBC,OAAO;MAACD;MAAS;;IACjBE,MAAM;MAACF;MAAS;;EAClB;AACAP,MAAI,GAAGO,OAAAA,MAAa,IAAI;IACtBC,OAAO;MAACD;MAAS;;IACjBE,MAAM;MAACF;MAAS;;EAClB;AACAP,MAAI,GAAGO,OAAAA,MAAa,IAAI;IACtBC,OAAO;MAACD;MAAS;;IACjBE,MAAM;MAACF;MAAS;;EAClB;AACAP,MAAI,GAAGO,OAAAA,SAAgB,IAAI;IACzBC,OAAO;MAACD;MAAS;;IACjBE,MAAM;MAACF;MAAS;;EAClB;AACAP,MAAI,GAAGO,OAAAA,aAAoB,IAAI;IAC7BC,OAAO;MAACD;MAAS;;IACjBE,MAAM;MAACF;MAAS;;EAClB;AACAP,MAAI,GAAGO,OAAAA,QAAe,IAAI;IACxBC,OAAO;MAACD;MAAS;;IACjBE,MAAM;MAACF;MAAS;;EAClB;AACA,SAAOP;AACT,GACA,CAAC,CAAA;AAGH,IAAMU,0BAA0B;EAAC;EAAQ;EAAW;EAAe;EAAQ;;AAC3E,IAAMC,iBAAiB;EACrBvC,SAAS;IAAC;;EACVE,MAAM;IAAC;;EACPN,OAAO;IAAC;;EACRc,MAAM;IAAC;;EACPI,SAAS;IAAC;;EACVN,SAAS;IAAC;;AACZ;AAEO,IAAMgC,iBAA+BF,wBAAwBX,OAAO,CAACC,KAAmBa,SAAAA;AAC7F,SAAOhB,OAAOC,QAAQa,cAAAA,EAAgBZ,OAAO,CAACC,MAAmB,CAAC1C,KAAKwD,QAAAA,MAAS;AAC9Ed,SAAI,GAAG1C,GAAAA,GAAMuD,IAAAA,EAAM,IAAI;MAAEE,MAAMD,SAASE,IAAI,CAACC,YAAY,GAAGA,OAAAA,GAAUJ,IAAAA,EAAM;IAAE;AAC9E,WAAOb;EACT,GAAGA,GAAAA;AACL,GAAG,CAAC,CAAA;AC/CG,IAAMkB,eAAe;;EAE1BC,aAAa;IACXX,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAW,UAAU;IACRZ,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAY,qBAAqB;IACnBb,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAa,kBAAkB;IAChBd,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAc,UAAU;;IAERf,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAe,kBAAkB;;IAEhBhB,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAgB,aAAa;IACXjB,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAiB,sBAAsB;IACpBlB,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAkB,eAAe;IACbnB,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;;EAEAmB,eAAe;IACbpB,OAAO;MAAC;MAAS;;IACjBC,MAAM;MAAC;MAAS;;EAClB;EACAoB,qBAAqB;IACnBrB,OAAO;MAAC;MAAS;;IACjBC,MAAM;MAAC;MAAS;;EAClB;AACF;AAEO,IAAMqB,eAAe;EAC1BC,eAAe;IAAEhB,MAAM;MAAC;;EAAY;EACpCiB,sBAAsB;IAAEjB,MAAM;MAAC;;EAA2B;EAC1DkB,uBAAuB;IAAEC,gBAAgB;MAAC;;EAA2B;AACvE;AClDA,IAAMC,cAAc,CAAInB,KAAwBoB,KAAaC,iBAAAA;AAC3D,MAAIC,QAAQtB,IAAIoB,GAAAA;AAChB,MAAI,CAACE,OAAO;AACVA,YAAQD,aAAAA;AACRrB,QAAIoB,GAAAA,IAAOE;EACb;AACA,SAAOA;AACT;AAIA,IAAMC,aAAa,CAACC,QAAgBC,UAAAA;AAClC,MAAIA,SAAS,GAAG;AACd,WAAOD;EACT,OAAO;AACL,WAAO;MACLhC,OAAO;QAACgC,OAAOhC,MAAO,CAAA;QAAI,GAAGgC,OAAOhC,MAAO,CAAA,CAAE,IAAIiC,KAAAA;;MACjDhC,MAAM;QAAC+B,OAAO/B,KAAM,CAAA;QAAI,GAAG+B,OAAO/B,KAAM,CAAA,CAAE,IAAIgC,KAAAA;;IAChD;EACF;AACF;AAOA,IAAMC,qBAAqB;AAC3B,IAAMC,qBAAqB;AAE3B,IAAMC,oBAAoB;AAC1B,IAAMC,oBAAoB;AAE1B,IAAMC,sBAAsB;AAC5B,IAAMC,sBAAsB;AAE5B,IAAMC,qBAAqB;AAC3B,IAAMC,qBAAqB;AAE3B,IAAMC,kBAAkB;AACxB,IAAMC,iBAAiB;AAEvB,IAAMC,uBAAuB,CAACC,UAC5BlG,KAAKmG,MACHX,sBAAsBD,qBAAqBC,wBAAwBO,kBAAkBG,SAASH,gBAAc;AAEhH,IAAMK,sBAAsB,CAACF,UAC3BlG,KAAKmG,MACHT,qBAAqBD,oBAAoBC,uBAAuBK,kBAAkBG,SAASH,gBAAc;AAG7G,IAAMM,wBAAwB,CAACH,UAC7BlG,KAAKmG,MACHR,uBAAuBC,sBAAsBD,yBAAyBK,iBAAiBE,SAASF,eAAa;AAEjH,IAAMM,uBAAuB,CAACJ,UAC5BlG,KAAKmG,MAAML,sBAAsBD,qBAAqBC,uBAAuBI,QAAQF,eAAa;AAEpG,IAAMO,mBAAmB,CAACC,YAAoBC,YAAoBD,YAAYlB,QAAgB,MAC5FF,WACE;EACE/B,OAAO;IAAC;IAAWgD,sBAAsBG,UAAAA;;EACzClD,MAAM;IAAC;IAAW2C,qBAAqBQ,SAAAA;;AACzC,GACAnB,KAAAA;AAGJ,IAAMoB,kBAAkB,CAACF,YAAoBC,YAAoBD,YAAYlB,QAAgB,MAC3FF,WACE;EACE/B,OAAO;IAAC;IAAWiD,qBAAqBE,UAAAA;;EACxClD,MAAM;IAAC;IAAW8C,oBAAoBK,SAAAA;;AACxC,GACAnB,KAAAA;AAGG,IAAMqB,gBAAgB;;;;EAK3BC,aAAaL,iBAAiB,CAAA;EAC9BM,cAAcN,iBAAiB,CAAA;EAC/BO,cAAcP,iBAAiB,GAAG,GAAA;;;;EAMlCQ,sBAAsBL,gBAAgB,GAAG,CAAA;EACzCM,uBAAuBN,gBAAgB,GAAG,GAAA;EAC1CO,uBAAuBP,gBAAgB,GAAG,CAAA;EAE1CQ,kBAAkBR,gBAAgB,KAAK,IAAA;EACvCS,mBAAmBT,gBAAgB,KAAK,IAAA;EACxCU,mBAAmBV,gBAAgB,KAAK,CAAA;EAExCW,kBAAkBX,gBAAgB,GAAG,GAAA;EACrCY,mBAAmBZ,gBAAgB,GAAG,CAAA;EACtCa,mBAAmBb,gBAAgB,GAAG,GAAA;EAEtCc,eAAed,gBAAgB,GAAG,CAAA;EAClCe,gBAAgBf,gBAAgB,GAAG,GAAA;EACnCgB,gBAAgBhB,gBAAgB,GAAG,CAAA;EACnCiB,kBAAkBjB,gBAAgB,GAAG,CAAA;EAErCkB,gBAAgBlB,gBAAgB,CAAA;EAChCmB,uBAAuBnB,gBAAgB,GAAG,CAAA;EAC1CoB,gBAAgBpB,gBAAgB,KAAK,GAAA;EACrCqB,qBAAqBrB,gBAAgB,KAAK,GAAA;EAC1CsB,sBAAsBtB,gBAAgB,KAAK,GAAA;EAE3CuB,UAAU;IACR5E,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACA4E,eAAe;IACb7E,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACA6E,cAAc;IACZ9E,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;;;;;EAOA8E,cAAchD,WACZ;IACE/B,OAAO;MAAC;MAAWyC;;IACnBxC,MAAM;MAAC;MAAWiC;;EACpB,GACA,IAAA;;EAIF8C,cAAc;IACZhF,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EAEAgF,aAAa;IACXjF,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;;EAGAiF,gBAAgB;IACdlF,OAAO;MAAC;MAAWkC;;IACnBjC,MAAM;MAAC;MAAWqC;;EACpB;;;;EAMA6C,sBAAsB;IACpBnF,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAmF,oBAAoB;IAClBpF,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAoF,eAAe;IACbrF,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;;;;;EAOAqF,UAAU;IACRtF,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAsF,oBAAoB;IAClBvF,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAuF,aAAa;IACXxF,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAwF,SAAS;IACPzF,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAyF,aAAa;IACX1F,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACA0F,YAAY;IACV3F,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACA2F,mBAAmB;IACjB5F,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACA4F,iBAAiB;IACf7F,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAuB,sBAAsB;IACpBxB,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAwB,uBAAuB;IACrBzB,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;AACF;AAQA,IAAM6F,YAAoE;;EAExEvE,eAAe;IACbhB,MAAM;EACR;;EAGAwF,gBAAgB;IACdxF,MAAM;EACR;;EAGAyF,eAAe;IACbzF,MAAM;EACR;;EAGA0F,gBAAgB;IACd1F,MAAM;EACR;;EAGA2F,aAAa;IACX3F,MAAM;EACR;;EAGA4F,kBAAkB;IAChB5F,MAAM;IACN6F,OAAO;IACPC,OAAO;EACT;EACAC,cAAc;IACZ/F,MAAM;IACN6F,OAAO;IACPC,OAAO;EACT;EACAE,cAAc;IACZhG,MAAM;IACN6F,OAAO;IACPC,OAAO;EACT;;EAGAG,WAAW;IACTjG,MAAM;EACR;;;EAIAkG,gBAAgB;IACdlG,MAAM;EACR;;EAGAmG,WAAW;IACTnG,MAAM;IACN6F,OAAO;IACPC,OAAO;EACT;AACF;AAEO,IAAMM,gBAA8BtH,OAAOC,QAAQwG,SAAAA,EAAWvG,OAAO,CAACqH,SAAS,CAACC,OAAOpI,MAAAA,MAAO;AACnGY,SAAOC,QAAQb,MAAAA,EAAQqI,QAAQ,CAAC,CAAClF,KAAKI,MAAAA,MAAO;AAC3C,UAAM+E,SAASpF,YAAYiF,SAAS5E,QAAQ,OAAO,CAAC,EAAA;AACpD,UAAMgF,OAAOrF,YAAsBoF,QAAQnF,KAAK,MAAM,CAAA,CAAE;AACxDoF,SAAKC,KAAKJ,KAAAA;EACZ,CAAA;AAEA,SAAOD;AACT,GAAG,CAAC,CAAA;ACxSJ,IAAMM,eAAe;EAAC;KAAoBP,cAAcnD,cAAcjD,QAAQ,CAAA;;AAC9E,IAAM4G,eAAe;EAAC;KAAoBR,cAAclD,cAAclD,QAAQ,CAAA;;AAEvE,IAAM6G,cAAc;EACzBnI,YAAY;IACVsB,MAAM;MAAC;;IACP6F,OAAO;MACL;QACE;WACGc,aAAa1G,IAAI,CAACqG,UAAU,OAAOA,KAAAA,eAAoBA,KAAAA,EAAO;QACjEQ,KAAK,IAAA;;IAEThB,OAAO;MACL;QACE;WACGc,aAAa3G,IAAI,CAACqG,UAAU,OAAOA,KAAAA,eAAoBA,KAAAA,EAAO;QAEjEQ,KAAK,IAAA;;IAET3F,gBAAgB;MAAC;;EACnB;EACAkF,SAAS;;IAEP,GAAGtF;IACH,GAAGqF;IACH,GAAGvG;EACL;EACAvB,WAAW;AACb;ACvBO,IAAMyI,eAAe;EAC1BC,UAAU;IACR1I,WAAW;IACXI,YAAY;MAAEsB,MAAM;QAAC;;IAAS;IAC9BxB,QAAQ;MACNyI,MAAM;QACJjH,MAAM;UACJkH,MAAM;UACNnL,SAAS;UACTC,OAAO;QACT;MACF;;MAEAmL,QAAQ;QACNnH,MAAM;UACJkH,MAAM;UACNnL,SAAS;UACTC,OAAO;QACT;MACF;IACF;EACF;EAEAoL,UAAU;IACR9I,WAAW;IACXI,YAAY;MAAEsB,MAAM;QAAC;;IAAS;IAC9BqH,SAAS;MACPC,QAAQ;QAAEtH,MAAM;UAAC;UAAQ;;MAAG;MAC5BuH,UAAU;QAAEvH,MAAM;UAAC;UAAQ;;MAAG;MAC9BwH,WAAW;QAAExH,MAAM;UAAC;UAAQ;;MAAG;MAC/ByH,QAAQ;QAAEzH,MAAM;UAAC;UAAU;;MAAG;MAC9B0H,QAAQ;QAAE1H,MAAM;UAAC;UAAU;;MAAG;MAC9B2H,QAAQ;QAAE3H,MAAM;UAAC;UAAU;;MAAG;MAC9B4H,QAAQ;QAAE5H,MAAM;UAAC;UAAU;;MAAI;MAC/B6H,WAAW;QAAE7H,MAAM;UAAC;UAAU;;MAAG;MACjC8H,aAAa;QAAE9H,MAAM;UAAC;UAAU;;MAAG;IACrC;EACF;EAEAsG,OAAO;IACLhI,WAAW;IACXI,YAAY;MACVqJ,MAAM;QAAC;;MACPC,QAAQ;QAAC;;MACTC,OAAO;QAAC;;MACR9G,gBAAgB;QAAC;;IACnB;IACAkF,SAAS;MACPiB,QAAQ;QAAES,MAAM;UAAC;;MAAe;MAChCR,UAAU;QAAEQ,MAAM;UAAC;UAAa;UAAgB;UAAkB;UAAW;;MAA2B;MACxGP,WAAW;QAAEO,MAAM;UAAC;;QAAc5G,gBAAgB;UAAC;;MAA2B;MAC9E0G,WAAW;QAAEE,MAAM;UAAC;;MAAqB;MACzCD,aAAa;QAAEE,QAAQ;UAAC;;MAAqB;MAE7CP,QAAQ;QAAEM,MAAM;UAAC;UAAqB;UAAqB;;MAAqB;;MAEhFL,QAAQ;QAAEK,MAAM;UAAC;UAAqB;UAAoB;;MAAkB;MAC5EJ,QAAQ;QAAEK,QAAQ;UAAC;UAAqB;UAAoB;;MAAkB;IAChF;EACF;AACF;AAEO,IAAME,gBAAgB;EAC3BlB,UAAU;IACR1I,WAAW;IACXI,YAAY;MAAEsB,MAAM;QAAC;;IAAS;IAC9BxB,QAAQ;MACN2J,MAAM;QACJnI,MAAM;UACJkH,MAAM;UACNnL,SAAS;UACTC,OAAO;QACT;MACF;IACF;EACF;EAEAoL,UAAU;IACR9I,WAAW;IACXI,YAAY;MAAEsB,MAAM;QAAC;;IAAS;IAC9BqH,SAAS;MACP,mBAAmB;QAAErH,MAAM;UAAC;UAAQ;;MAAI;MACxC,uBAAuB;QAAEA,MAAM;UAAC;UAAQ;;MAAI;MAC5C,sBAAsB;QAAEA,MAAM;UAAC;UAAQtE;;MAAuB;MAC9D,kBAAkB;QAAEsE,MAAM;UAAC;UAAQvE;;MAAmB;MACtD,kBAAkB;QAAEuE,MAAM;UAAC;UAAQrE;;MAAmB;MACtD,mBAAmB;QAAEqE,MAAM;UAAC;UAAQpE;;MAAkB;MACtD,mBAAmB;QAAEoE,MAAM;UAAC;UAAQnE;;MAAkB;IACxD;EACF;AACF;AClGO,IAAMuM,eAA6B;EACxCC,YAAY;IACV5I,OAAO;MAAC;MAAS;;IACjBC,MAAM;MAAC;MAAS;;EAClB;EACA4I,WAAW;IACT7I,OAAO;MAAC;MAAQ;;IAChBC,MAAM;MAAC;MAAQ;;EACjB;AACF;ACVO,IAAM6I,oBAAoB;;EAE/BC,aAAa;IACX/I,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACA+I,cAAc;IACZhJ,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAgJ,aAAa;IACXjJ,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAiJ,UAAU;IACRlJ,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAkJ,aAAa;IACXnJ,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAmJ,oBAAoB;IAClBpJ,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAoJ,aAAa;IACXrJ,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAqJ,oBAAoB;IAClBtJ,OAAO;MAAC;MAAO;;IACfC,MAAM;MAAC;MAAQ;;EACjB;;EAEAsJ,eAAe;IACbvJ,OAAO;MAAC;MAAW;;IACnBC,MAAM;MAAC;MAAW;;EACpB;EACAuJ,kBAAkB;IAChBxJ,OAAO;MAAC;MAAS;;IACjBC,MAAM;MAAC;MAAS;;EAClB;AACF;ACrCO,IAAMwJ,iBAAiB;EAC5BxK,YAAY;IACVe,OAAO;MAAC;;IACRC,MAAM;MAAC;;EACT;EACA2H,SAAS;;IAEP,GAAGe;IACH,GAAGG;IACH,GAAGjJ;IACH,GAAGa;IACH,GAAG4C;EACL;EACAzE,WAAW;AACb;ATZO,IAAM6K,OAAOrK,OAAOS,KAAKzC,WAAAA;AAEzB,IAAMsM,WAAW;EACtBC,QAAQ;IACNrC,UAAU3I;IACV+I,UAAU8B;IACV5C,OAAOO;EACT;EACAyC,SAASvC;EACTwC,UAAUrB;AACZ;AAEA,IAAMsB,gBAAuC;EAC3CH,QAAQ;IACNI,OAAO;IACPC,aAAa;IACbC,cAAc;EAChB;EACAC,aAAa;IACXH,OAAO;IACPC,aAAa;IACbC,cAAc;EAChB;EACAE,WAAW;IACTJ,OAAO;IACPC,aAAa;IACbC,cAAc;EAChB;EACAG,iBAAiB;IACfL,OAAO;IACPC,aAAa;IACbC,cAAc;EAChB;EACAI,cAAc;IACZN,OAAO;IACPC,aAAa;IACbC,cAAc;EAChB;EACAK,SAAS;IACPP,OAAO;IACPC,aAAa;IACbC,cAAc;EAChB;AACF;AAEO,IAAMM,sBAAsB;EACjCZ,QAAQ;IACNrC,UAAU;MACRzI,aAAa;QACXC,QAAQ;UACNP,SAASI,eAAeE,YAAaC,OAAQP;UAC7CE,SAASE,eAAeE,YAAaC,OAAQL;QAC/C;QACAM,oBAAoBJ,eAAeE,YAAaE;MAClD;MACAC,YAAYL,eAAeK;MAC3BF,QAAQ;QACNP,SAASI,eAAeG,OAAOP;QAC/BE,SAASE,eAAeG,OAAOL;MACjC;MACAG,WAAWD,eAAeC;IAC5B;IACA8I,UAAU;MACR1I,YAAYwK,eAAexK;MAC3B2I,SAAStE;MACTzE,WAAW4K,eAAe5K;IAC5B;IACAgI,OAAO;MACL5H,YAAYmI,YAAYnI;MACxB2H,SAASD;MACT9H,WAAWuI,YAAYvI;IACzB;EACF;AACF;AAEO,IAAM4L,2BAAuBC,uBAAAA,SAAQf,UAAUI,aAAAA;AFvEtD,IAAM,EAAEY,QAAQC,cAAc,GAAGC,eAAAA,IAAmBJ;AAE7C,IAAMK,iBAAiB,CAAC,EAC7BC,MAAM,cACNC,UAAU,CAAA,GACVC,aAAa,CAAA,EAAE,OAKM;EACrBC,UAAU;EACVC,OAAO;;IAELC,YAAY;MACVC,MAAM;QAAC;WAAqBC,mBAAAA,QAAcH,MAAMC,WAAWG;;MAC3DC,MAAM;QAAC;WAA8BF,mBAAAA,QAAcH,MAAMC,WAAWI;;IACtE;IACAb,YAAQc,cAAAA,SACN;;MAEElB,SAAS;QACP,mBAAmB;QACnB,uBAAuB;QACvB,sBAAsB;QACtB,kBAAkB;QAClB,kBAAkB;QAClB,mBAAmB;QACnB,mBAAmB;MACrB;MACAmB,iBAAiB;QACf,mBAAmB;QACnB,kBAAkB;MACpB;MACAC,cAAc;QACZC,MAAM;QACNC,IAAI;QACJC,SAAS;QACTC,IAAI;QACJC,IAAI;MACN;MACAC,SAAS;QACP,gBAAgB;UAAEC,KAAK;QAAkB;QACzC,eAAe;UAAEA,KAAK;QAAiB;QACvC,MAAM;QACN,MAAM;MACR;MACAC,UAAU;;;QAGR,MAAM;UAAC;UAAY;YAAEC,YAAY;UAAO;;QACxC,MAAM;UAAC;UAAY;YAAEA,YAAY;UAAU;;QAC3C,QAAQ;UAAC;UAAQ;YAAEA,YAAY;UAAS;;QACxC,MAAM;UAAC;UAAY;YAAEA,YAAY;UAAU;;QAC3C,MAAM;UAAC;UAAY;YAAEA,YAAY;UAAU;;QAC3C,OAAO;UAAC;UAAY;YAAEA,YAAY;UAAO;;QACzC,OAAO;UAAC;UAAY;YAAEA,YAAY;UAAU;;QAC5C,OAAO;UAAC;UAAY;YAAEA,YAAY;UAAS;;QAC3C,OAAO;UAAC;UAAY;YAAEA,YAAY;UAAS;;QAC3C,OAAO;UAAC;UAAY;YAAEA,YAAY;UAAS;;QAC3C,OAAO;UAAC;UAAY;YAAEA,YAAY;UAAU;;QAC5C,OAAO;UAAC;UAAY;YAAEA,YAAY;UAAO;;QACzC,OAAO;UAAC;UAAY;YAAEA,YAAY;UAAU;;MAC9C;MACAC,WAAW;QACT,UAAU;MACZ;MACAC,oBAAoB;QAClB,cAAc;MAChB;MACAC,0BAA0B;QACxB,oBAAoB;MACtB;MACAC,WAAW;;QAET,WAAW;UACTC,MAAM;YAAEC,SAAS;UAAE;UACnBC,IAAI;YAAED,SAAS;UAAE;QACnB;QACA,YAAY;UACVD,MAAM;YAAEC,SAAS;UAAE;UACnBC,IAAI;YAAED,SAAS;UAAE;QACnB;;QAGA,uBAAuB;UACrBD,MAAM;YAAEC,SAAS;YAAGE,WAAW;UAAgB;UAC/CD,IAAI;YAAED,SAAS;YAAGE,WAAW;UAAmB;QAClD;QACA,uBAAuB;UACrBH,MAAM;YAAEC,SAAS;YAAGE,WAAW;UAAoB;UACnDD,IAAI;YAAED,SAAS;YAAGE,WAAW;UAAgB;QAC/C;QACA,qBAAqB;UACnBH,MAAM;YAAEC,SAAS;YAAGE,WAAW;UAAmB;UAClDD,IAAI;YAAED,SAAS;YAAGE,WAAW;UAAgB;QAC/C;QACA,wBAAwB;UACtBH,MAAM;YAAEC,SAAS;YAAGE,WAAW;UAAmB;UAClDD,IAAI;YAAED,SAAS;YAAGE,WAAW;UAAgB;QAC/C;;QAGA,cAAc;UACZ,MAAM;YAAEF,SAAS;UAAI;UACrB,QAAQ;YAAEA,SAAS;UAAI;QACzB;QACA,wBAAwB;UACtB,MAAM;YAAEE,WAAW;UAAgC;UACnD,QAAQ;YAAEA,WAAW;UAAgB;QACvC;QACA,yBAAyB;UACvB,MAAM;YAAEA,WAAW;UAAgC;UACnD,QAAQ;YAAEA,WAAW;UAAgB;QACvC;QACA,mBAAmB;UACjB,MAAM;YACJA,WAAW;UACb;UACA,QAAQ;YACNA,WAAW;UACb;QACF;;QAGA,cAAc;UACZH,MAAM;YAAEI,QAAQ;UAAM;UACtBF,IAAI;YAAEE,QAAQ;UAAwC;QACxD;QACA,YAAY;UACVJ,MAAM;YAAEI,QAAQ;UAAwC;UACxDF,IAAI;YAAEE,QAAQ;UAAM;QACtB;;QAGA,gBAAgB;UACd,QAAQ;YACND,WAAW;UACb;QACF;;QAGA,cAAc;UACZ,MAAM;YACJF,SAAS;UACX;UACA,MAAM;YACJA,SAAS;UACX;UACA,QAAQ;YACNA,SAAS;UACX;QACF;;QAGA,0BAA0B;UACxB,MAAM;YACJI,MAAM;YACNC,OAAO;UACT;UACA,OAAO;YACLD,MAAM;YACNC,OAAO;UACT;UACA,OAAO;YACLD,MAAM;YACNC,OAAO;UACT;UACA,QAAQ;YACND,MAAM;YACNC,OAAO;UACT;QACF;;QAGA,SAAS;UACPJ,IAAI;YAAE,mBAAmB;UAAO;QAClC;QACA,gBAAgB;UACd,MAAM;YAAE,mBAAmB;UAAM;UACjC,QAAQ;YAAE,mBAAmB;UAAO;QACtC;MACF;MACAK,WAAW;;QAET,WAAW;QACX,YAAY;;QAGZ,uBAAuB;QACvB,uBAAuB;QACvB,qBAAqB;QACrB,wBAAwB;;QAGxB,cAAc;QACd,wBAAwB;QACxB,yBAAyB;QACzB,mBAAmB;;QAGnB,cAAc;QACd,YAAY;;QAGZ,SAAS;QACT,gBAAgB;;QAGhB,QAAQ;QACR,aAAa;QACb,WAAW;QACX,cAAc;QACd,0BAA0B;QAC1B,mBAAmB;MACrB;IACF,GACApC,cAAAA,GACGK,UAAAA;IAEL,GAAGJ;IACHjB,QAAQ;MACN,GAAGiB,eAAejB;MAClBqD,SAAS;MACTC,SAAS;MACTC,aAAa;MACbC,OAAO;MACPC,OAAO;IACT;EACF;EACAC,SAAS;IACPC,yBAAAA;IACAC,aAAAA;IACAC,2BAAAA;QACAC,yBAAAA,SAAAA;;QAEAC,0BAAAA,SAAkB;MAChBC,cAAc;MACdC,mBAAmB;IACrB,CAAA;;EAEF,GAAI9C,QAAQ,iBAAiB;IAAE+C,MAAM;EAAM;EAC3C9C;EACA+C,QAAQ;IACNC,wBAAwB;EAC1B;AACF;",
6
+ "names": ["cardMinInlineSize", "cardDefaultInlineSize", "cardMaxInlineSize", "cardMinBlockSize", "cardMaxBlockSize", "reflectiveRelation", "initial", "slope", "method", "gamuts", "DEG_RAD", "Math", "PI", "hueKeyPoint", "hue", "hueDeg", "keyPoint", "sin", "lowerCp", "upperCp", "torsion", "huePalettes", "red", "orange", "amber", "yellow", "lime", "green", "emerald", "teal", "cyan", "sky", "blue", "indigo", "violet", "purple", "fuchsia", "pink", "rose", "systemPalettes", "neutral", "values", "primary", "physicalSeries", "physicalColors", "namespace", "definitions", "series", "accompanyingSeries", "conditions", "srgb", "p3", "rec2020", "Object", "entries", "reduce", "acc", "id", "gamut", "extends", "physicalValueRelation", "hueSememes", "keys", "palette", "light", "dark", "valenceAliasSememeStems", "valenceMapping", "valenceAliases", "stem", "valences", "root", "map", "valence", "sheetSememes", "axisSurface", "axisText", "axisSelectedSurface", "axisSelectedText", "gridCell", "gridCellSelected", "gridOverlay", "gridSelectionOverlay", "gridHighlight", "gridCommented", "gridCommentedActive", "sheetAliases", "activeSurface", "accentFocusIndicator", "neutralFocusIndicator", "gridFocusStack", "getMapValue", "key", "defaultValue", "value", "applyAlpha", "sememe", "alpha", "DARK_ELEVATION_MIN", "DARK_ELEVATION_MAX", "DARK_CONTRAST_MIN", "DARK_CONTRAST_MAX", "LIGHT_ELEVATION_MIN", "LIGHT_ELEVATION_MAX", "LIGHT_CONTRAST_MIN", "LIGHT_CONTRAST_MAX", "ELEVATION_SCALE", "CONTRAST_SCALE", "darkElevationCadence", "depth", "round", "darkContrastCadence", "lightElevationCadence", "lightContrastCadence", "elevationCadence", "lightDepth", "darkDepth", "contrastCadence", "systemSememes", "baseSurface", "groupSurface", "modalSurface", "textInputSurfaceBase", "textInputSurfaceGroup", "textInputSurfaceModal", "inputSurfaceBase", "inputSurfaceGroup", "inputSurfaceModal", "hoverSurfaceBase", "hoverSurfaceGroup", "hoverSurfaceModal", "separatorBase", "separatorGroup", "separatorModal", "subduedSeparator", "scrollbarTrack", "scrollbarThumbSubdued", "scrollbarThumb", "scrollbarThumbHover", "scrollbarThumbActive", "unAccent", "unAccentHover", "hoverOverlay", "scrimSurface", "focusSurface", "deckSurface", "inverseSurface", "accentSurfaceRelated", "accentSurfaceHover", "accentSurface", "baseText", "inverseSurfaceText", "description", "subdued", "placeholder", "accentText", "accentSurfaceText", "accentTextHover", "aliasDefs", "sidebarSurface", "headerSurface", "toolbarSurface", "cardSurface", "textInputSurface", "group", "modal", "inputSurface", "hoverSurface", "attention", "currentRelated", "separator", "systemAliases", "aliases", "alias", "forEach", "record", "list", "push", "groupAliases", "modalAliases", "aliasColors", "join", "lengthsFacet", "physical", "line", "unit", "lacuna", "semantic", "sememes", "noLine", "hairLine", "thickLine", "trimXs", "trimSm", "trimMd", "trimLg", "inputFine", "inputCoarse", "fine", "coarse", "flush", "maxSizesFacet", "size", "callsSememes", "callActive", "callAlert", "codemirrorSememes", "cmCodeblock", "cmActiveLine", "cmSeparator", "cmCursor", "cmSelection", "cmFocusedSelection", "cmHighlight", "cmHighlightSurface", "cmCommentText", "cmCommentSurface", "semanticColors", "hues", "tokenSet", "colors", "lengths", "maxSizes", "adapterConfig", "facet", "disposition", "tokenization", "borderWidth", "ringWidth", "ringOffsetWidth", "outlineWidth", "spacing", "userDefaultTokenSet", "tokensTailwindConfig", "adapter", "extend", "extendTokens", "overrideTokens", "tailwindConfig", "env", "content", "extensions", "darkMode", "theme", "fontFamily", "body", "defaultConfig", "sans", "mono", "merge", "backgroundImage", "borderRadius", "none", "sm", "DEFAULT", "md", "lg", "screens", "raw", "fontSize", "lineHeight", "boxShadow", "transitionProperty", "transitionTimingFunction", "keyframes", "from", "opacity", "to", "transform", "height", "left", "width", "animation", "inherit", "current", "transparent", "black", "white", "plugins", "tailwindcssContainerQueries", "tailwindcssForms", "tailwindcssLogical", "tailwindcssRadix", "tailwindScrollbar", "nocompatible", "preferredStrategy", "mode", "future", "hoverOnlyWhenSupported"]
7
+ }
@@ -18,10 +18,10 @@ var __copyProps = (to, from, except, desc) => {
18
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
19
  var tailwind_exports = {};
20
20
  __export(tailwind_exports, {
21
- tailwindConfig: () => import_chunk_ZVALPM6U.tailwindConfig
21
+ tailwindConfig: () => import_chunk_YBWOZKXY.tailwindConfig
22
22
  });
23
23
  module.exports = __toCommonJS(tailwind_exports);
24
- var import_chunk_ZVALPM6U = require("../chunk-ZVALPM6U.cjs");
24
+ var import_chunk_YBWOZKXY = require("../chunk-YBWOZKXY.cjs");
25
25
  // Annotate the CommonJS export names for ESM import in node:
26
26
  0 && (module.exports = {
27
27
  tailwindConfig
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["tailwind.cjs"],
4
- "sourcesContent": ["import {\n tailwindConfig\n} from \"../chunk-ZVALPM6U.cjs\";\nexport {\n tailwindConfig\n};\n//# sourceMappingURL=tailwind.cjs.map\n"],
4
+ "sourcesContent": ["import {\n tailwindConfig\n} from \"../chunk-YBWOZKXY.cjs\";\nexport {\n tailwindConfig\n};\n//# sourceMappingURL=tailwind.cjs.map\n"],
5
5
  "mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,4BAEO;",
6
6
  "names": []
7
7
  }