pixelize-design-library 2.4.2-beta.2 → 2.4.2-beta.21

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 (195) hide show
  1. package/dist/Components/Accordion/Accordion.js +2 -2
  2. package/dist/Components/Button/Button.d.ts +2 -2
  3. package/dist/Components/Button/Button.js +3 -3
  4. package/dist/Components/Button/Button.styles.js +4 -3
  5. package/dist/Components/Button/ButtonProps.d.ts +6 -1
  6. package/dist/Components/ButtonGroupIcon/ButtonGroupIcon.js +6 -6
  7. package/dist/Components/Card/Card.d.ts +1 -1
  8. package/dist/Components/Card/Card.js +2 -2
  9. package/dist/Components/Card/CardProps.d.ts +0 -1
  10. package/dist/Components/Checkbox/Checkbox.js +1 -1
  11. package/dist/Components/Checkbox/Checkbox.styles.js +2 -0
  12. package/dist/Components/Common/fieldStyles.js +1 -1
  13. package/dist/Components/CopyButton/CopyButton.js +1 -1
  14. package/dist/Components/CustomModulesTable/EditModuleModal.js +1 -1
  15. package/dist/Components/DatePicker/CalendarPanel.js +1 -1
  16. package/dist/Components/DatePicker/RangeDatePicker.js +2 -2
  17. package/dist/Components/DatePicker/SingleDatePicker.js +2 -2
  18. package/dist/Components/DatePicker/TimeOnlyPicker.js +1 -1
  19. package/dist/Components/Dropdown/DropDown.js +3 -13
  20. package/dist/Components/EmailCards/VerifyEmailOtp/VerifyEmailOtp.js +1 -1
  21. package/dist/Components/FilePreview/FilePreview.js +1 -1
  22. package/dist/Components/FileUpload/FileUpload.js +3 -2
  23. package/dist/Components/FileUpload/FileUploadProps.d.ts +2 -1
  24. package/dist/Components/FileUpload/constants.js +1 -0
  25. package/dist/Components/FilterSidebar/FilterSidebar.js +4 -4
  26. package/dist/Components/Form/FormWrapper.js +1 -1
  27. package/dist/Components/Input/TextInput.styles.js +6 -4
  28. package/dist/Components/InputTextArea/InputTextArea.style.js +5 -4
  29. package/dist/Components/KanbanBoard/KanbanBoard.js +5 -45
  30. package/dist/Components/LimitReachedModal/LimitReachedModal.js +4 -5
  31. package/dist/Components/MultiSelect/MultiSelect.js +1 -1
  32. package/dist/Components/NavigationBar/NavigationBar.js +3 -3
  33. package/dist/Components/NoteTextArea/NoteTextArea.js +5 -3
  34. package/dist/Components/NumberInput/NumberInput.styles.js +5 -4
  35. package/dist/Components/OrgSwitcher/OrgSwitcher.js +2 -2
  36. package/dist/Components/PinInput/PinInput.js +1 -1
  37. package/dist/Components/PlanPill/PlanPill.js +5 -5
  38. package/dist/Components/PlanPill/planPillGradient.d.ts +2 -14
  39. package/dist/Components/PlanPill/planPillGradient.js +3 -15
  40. package/dist/Components/Primitives/Primitives.d.ts +6 -0
  41. package/dist/Components/Primitives/Primitives.js +113 -0
  42. package/dist/Components/ProductCard/ProductPrice.js +1 -1
  43. package/dist/Components/ProfileCard/ProfileCard.js +1 -1
  44. package/dist/Components/ProfilePhotoViewer/ProfilePhotoViewer.js +1 -1
  45. package/dist/Components/RadioButton/RadioButton.js +1 -1
  46. package/dist/Components/Reorder/Reorder.js +1 -1
  47. package/dist/Components/ScrollbarBox/ScrollbarBox.d.ts +13 -0
  48. package/dist/Components/ScrollbarBox/ScrollbarBox.js +11 -0
  49. package/dist/Components/SearchSelect/SearchSelect.js +5 -4
  50. package/dist/Components/Select/Select.styles.js +3 -2
  51. package/dist/Components/SelectSearch/SelectSearch.js +3 -3
  52. package/dist/Components/SelectV2/SelectV2.js +5 -11
  53. package/dist/Components/SideBar/SecondaryBar.js +1 -1
  54. package/dist/Components/StageProgress/StageProgress.js +2 -9
  55. package/dist/Components/Table/Table.d.ts +1 -1
  56. package/dist/Components/Table/Table.js +17 -24
  57. package/dist/Components/Table/TableProps.d.ts +4 -0
  58. package/dist/Components/Table/components/TableActions.js +2 -2
  59. package/dist/Components/Table/components/TableBody.js +41 -12
  60. package/dist/Components/Table/components/TableGroupRow.js +1 -1
  61. package/dist/Components/Table/components/TableHeader.js +21 -8
  62. package/dist/Components/Table/components/TableSearch.js +1 -1
  63. package/dist/Components/Table/filters/ActiveFilters.js +2 -18
  64. package/dist/Components/Table/settings/ManageColumns.js +3 -17
  65. package/dist/Components/Table/settings/TableSettings.js +5 -11
  66. package/dist/Components/Table/variants/TableVariantContext.d.ts +4 -0
  67. package/dist/Components/Table/variants/TableVariantContext.js +17 -0
  68. package/dist/Components/Table/variants/classic.d.ts +6 -0
  69. package/dist/Components/Table/variants/classic.js +47 -0
  70. package/dist/Components/Table/variants/index.d.ts +7 -0
  71. package/dist/Components/Table/variants/index.js +27 -0
  72. package/dist/Components/Table/variants/pillInk.d.ts +6 -0
  73. package/dist/Components/Table/variants/pillInk.js +21 -0
  74. package/dist/Components/Table/variants/studio.d.ts +6 -0
  75. package/dist/Components/Table/variants/studio.js +50 -0
  76. package/dist/Components/Table/variants/tokens.d.ts +49 -0
  77. package/dist/Components/Table/variants/tokens.js +2 -0
  78. package/dist/Components/Timeline/Timeline.js +2 -2
  79. package/dist/Components/Toaster/Toaster.js +1 -1
  80. package/dist/Components/Trail/TrailWorks.js +1 -1
  81. package/dist/Components/UpgradeButton/UpgradeButton.js +3 -3
  82. package/dist/Constants/Sidebar.js +3 -2
  83. package/dist/Theme/chakra/Menu.styles.d.ts +9 -6
  84. package/dist/Theme/chakra/Menu.styles.js +11 -5
  85. package/dist/Theme/chakra/Popover.styles.d.ts +6 -3
  86. package/dist/Theme/chakra/Popover.styles.js +11 -6
  87. package/dist/Theme/chakra/Switch.styles.d.ts +1 -1
  88. package/dist/Theme/chakra/Switch.styles.js +7 -9
  89. package/dist/Theme/chakra/componentStyles.d.ts +15 -9
  90. package/dist/Theme/chakra/createBrandTheme.js +3 -16
  91. package/dist/Theme/provider/PixelizeThemeProvider.js +18 -20
  92. package/dist/Theme/provider/ThemeSwitcher.js +13 -20
  93. package/dist/Theme/tokens/brands/lavender/palette.light.js +2 -6
  94. package/dist/Theme/tokens/brands/slate/palette.light.js +1 -5
  95. package/dist/Theme/tokens/builders/chartColorsFromTheme.js +1 -1
  96. package/dist/Theme/tokens/builders/gradientInk.d.ts +22 -0
  97. package/dist/Theme/tokens/builders/gradientInk.js +28 -0
  98. package/dist/Theme/tokens/builders/index.d.ts +3 -0
  99. package/dist/Theme/tokens/builders/index.js +3 -0
  100. package/dist/Theme/tokens/builders/outlineRung.d.ts +32 -3
  101. package/dist/Theme/tokens/builders/outlineRung.js +74 -5
  102. package/dist/Theme/tokens/builders/placeholderInk.d.ts +19 -0
  103. package/dist/Theme/tokens/builders/placeholderInk.js +35 -0
  104. package/dist/Theme/tokens/builders/resolvedRungs.d.ts +5 -1
  105. package/dist/Theme/tokens/builders/resolvedRungs.js +7 -2
  106. package/dist/Theme/tokens/builders/scrollbar.d.ts +12 -0
  107. package/dist/Theme/tokens/builders/scrollbar.js +57 -0
  108. package/dist/Theme/tokens/builders/surfaceRungs.d.ts +5 -0
  109. package/dist/Theme/tokens/builders/surfaceRungs.js +20 -5
  110. package/dist/esm/Components/Accordion/Accordion.js +2 -2
  111. package/dist/esm/Components/Button/Button.js +4 -4
  112. package/dist/esm/Components/Button/Button.styles.js +5 -4
  113. package/dist/esm/Components/ButtonGroupIcon/ButtonGroupIcon.js +6 -6
  114. package/dist/esm/Components/Card/Card.js +2 -2
  115. package/dist/esm/Components/Checkbox/Checkbox.js +1 -1
  116. package/dist/esm/Components/Checkbox/Checkbox.styles.js +2 -0
  117. package/dist/esm/Components/Common/fieldStyles.js +1 -1
  118. package/dist/esm/Components/CopyButton/CopyButton.js +1 -1
  119. package/dist/esm/Components/CustomModulesTable/EditModuleModal.js +1 -1
  120. package/dist/esm/Components/DatePicker/CalendarPanel.js +1 -1
  121. package/dist/esm/Components/DatePicker/RangeDatePicker.js +2 -2
  122. package/dist/esm/Components/DatePicker/SingleDatePicker.js +2 -2
  123. package/dist/esm/Components/DatePicker/TimeOnlyPicker.js +1 -1
  124. package/dist/esm/Components/Dropdown/DropDown.js +3 -13
  125. package/dist/esm/Components/EmailCards/VerifyEmailOtp/VerifyEmailOtp.js +1 -1
  126. package/dist/esm/Components/FilePreview/FilePreview.js +1 -1
  127. package/dist/esm/Components/FileUpload/FileUpload.js +4 -3
  128. package/dist/esm/Components/FileUpload/constants.js +1 -0
  129. package/dist/esm/Components/FilterSidebar/FilterSidebar.js +4 -4
  130. package/dist/esm/Components/Form/FormWrapper.js +1 -1
  131. package/dist/esm/Components/Input/TextInput.styles.js +6 -4
  132. package/dist/esm/Components/InputTextArea/InputTextArea.style.js +5 -4
  133. package/dist/esm/Components/KanbanBoard/KanbanBoard.js +5 -45
  134. package/dist/esm/Components/LimitReachedModal/LimitReachedModal.js +4 -5
  135. package/dist/esm/Components/MultiSelect/MultiSelect.js +1 -1
  136. package/dist/esm/Components/NavigationBar/NavigationBar.js +3 -3
  137. package/dist/esm/Components/NoteTextArea/NoteTextArea.js +5 -3
  138. package/dist/esm/Components/NumberInput/NumberInput.styles.js +5 -4
  139. package/dist/esm/Components/OrgSwitcher/OrgSwitcher.js +2 -2
  140. package/dist/esm/Components/PinInput/PinInput.js +1 -1
  141. package/dist/esm/Components/PlanPill/PlanPill.js +6 -6
  142. package/dist/esm/Components/PlanPill/planPillGradient.js +3 -15
  143. package/dist/esm/Components/Primitives/Primitives.js +6 -0
  144. package/dist/esm/Components/ProductCard/ProductPrice.js +1 -1
  145. package/dist/esm/Components/ProfileCard/ProfileCard.js +1 -1
  146. package/dist/esm/Components/ProfilePhotoViewer/ProfilePhotoViewer.js +1 -1
  147. package/dist/esm/Components/RadioButton/RadioButton.js +1 -1
  148. package/dist/esm/Components/Reorder/Reorder.js +1 -1
  149. package/dist/esm/Components/ScrollbarBox/ScrollbarBox.js +9 -0
  150. package/dist/esm/Components/SearchSelect/SearchSelect.js +5 -4
  151. package/dist/esm/Components/Select/Select.styles.js +3 -2
  152. package/dist/esm/Components/SelectSearch/SelectSearch.js +3 -3
  153. package/dist/esm/Components/SelectV2/SelectV2.js +5 -11
  154. package/dist/esm/Components/SideBar/SecondaryBar.js +1 -1
  155. package/dist/esm/Components/StageProgress/StageProgress.js +2 -9
  156. package/dist/esm/Components/Table/Table.js +17 -24
  157. package/dist/esm/Components/Table/components/TableActions.js +2 -2
  158. package/dist/esm/Components/Table/components/TableBody.js +42 -13
  159. package/dist/esm/Components/Table/components/TableGroupRow.js +1 -1
  160. package/dist/esm/Components/Table/components/TableHeader.js +21 -8
  161. package/dist/esm/Components/Table/components/TableSearch.js +1 -1
  162. package/dist/esm/Components/Table/filters/ActiveFilters.js +2 -18
  163. package/dist/esm/Components/Table/settings/ManageColumns.js +3 -17
  164. package/dist/esm/Components/Table/settings/TableSettings.js +5 -11
  165. package/dist/esm/Components/Table/variants/TableVariantContext.js +13 -0
  166. package/dist/esm/Components/Table/variants/classic.js +43 -0
  167. package/dist/esm/Components/Table/variants/index.js +9 -0
  168. package/dist/esm/Components/Table/variants/pillInk.js +18 -0
  169. package/dist/esm/Components/Table/variants/studio.js +46 -0
  170. package/dist/esm/Components/Table/variants/tokens.js +1 -0
  171. package/dist/esm/Components/Timeline/Timeline.js +2 -2
  172. package/dist/esm/Components/Toaster/Toaster.js +1 -1
  173. package/dist/esm/Components/Trail/TrailWorks.js +1 -1
  174. package/dist/esm/Components/UpgradeButton/UpgradeButton.js +3 -3
  175. package/dist/esm/Constants/Sidebar.js +3 -2
  176. package/dist/esm/Theme/chakra/Menu.styles.js +11 -5
  177. package/dist/esm/Theme/chakra/Popover.styles.js +11 -6
  178. package/dist/esm/Theme/chakra/Switch.styles.js +7 -9
  179. package/dist/esm/Theme/chakra/createBrandTheme.js +3 -16
  180. package/dist/esm/Theme/provider/PixelizeThemeProvider.js +18 -20
  181. package/dist/esm/Theme/provider/ThemeSwitcher.js +13 -20
  182. package/dist/esm/Theme/tokens/brands/lavender/palette.light.js +2 -6
  183. package/dist/esm/Theme/tokens/brands/slate/palette.light.js +1 -5
  184. package/dist/esm/Theme/tokens/builders/chartColorsFromTheme.js +1 -1
  185. package/dist/esm/Theme/tokens/builders/gradientInk.js +22 -0
  186. package/dist/esm/Theme/tokens/builders/index.js +3 -0
  187. package/dist/esm/Theme/tokens/builders/outlineRung.js +70 -4
  188. package/dist/esm/Theme/tokens/builders/placeholderInk.js +29 -0
  189. package/dist/esm/Theme/tokens/builders/resolvedRungs.js +7 -2
  190. package/dist/esm/Theme/tokens/builders/scrollbar.js +52 -0
  191. package/dist/esm/Theme/tokens/builders/surfaceRungs.js +20 -5
  192. package/dist/esm/index.js +6 -1
  193. package/dist/index.d.ts +11 -2
  194. package/dist/index.js +21 -3
  195. package/package.json +4 -2
@@ -25,26 +25,29 @@ declare const $itemBg: {
25
25
  export declare const Menu: {
26
26
  baseStyle?: (({ theme }: StyleFunctionProps) => {
27
27
  list: {
28
- [$bg.variable]: any;
28
+ [$bg.variable]: string;
29
29
  bg: string;
30
- color: any;
30
+ color: string;
31
+ borderWidth: string;
32
+ borderStyle: string;
33
+ borderColor: string;
31
34
  };
32
35
  item: {
33
36
  bg: string;
34
37
  _focus: {
35
- [$itemBg.variable]: any;
38
+ [$itemBg.variable]: string;
36
39
  bg: string;
37
40
  };
38
41
  _hover: {
39
- [$itemBg.variable]: any;
42
+ [$itemBg.variable]: string;
40
43
  bg: string;
41
44
  };
42
45
  _active: {
43
- [$itemBg.variable]: any;
46
+ [$itemBg.variable]: string;
44
47
  bg: string;
45
48
  };
46
49
  _expanded: {
47
- [$itemBg.variable]: any;
50
+ [$itemBg.variable]: string;
48
51
  bg: string;
49
52
  };
50
53
  };
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Menu = void 0;
4
4
  const react_1 = require("@chakra-ui/react");
5
5
  const anatomy_1 = require("@chakra-ui/anatomy");
6
+ const paletteFromTheme_1 = require("./paletteFromTheme");
6
7
  const { defineMultiStyleConfig, definePartsStyle } = (0, react_1.createMultiStyleConfigHelpers)(anatomy_1.menuAnatomy.keys);
7
8
  const $bg = (0, react_1.cssVar)("menu-bg");
8
9
  /**
@@ -22,14 +23,19 @@ const $bg = (0, react_1.cssVar)("menu-bg");
22
23
  */
23
24
  const $itemBg = (0, react_1.cssVar)("menu-item-bg");
24
25
  const baseStyle = definePartsStyle(({ theme }) => {
25
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y;
26
- const hoverBg = (_g = (_d = (_c = (_b = (_a = theme.colors) === null || _a === void 0 ? void 0 : _a.primary) === null || _b === void 0 ? void 0 : _b.opacity) === null || _c === void 0 ? void 0 : _c[8]) !== null && _d !== void 0 ? _d : (_f = (_e = theme.colors) === null || _e === void 0 ? void 0 : _e.gray) === null || _f === void 0 ? void 0 : _f[100]) !== null && _g !== void 0 ? _g : "#f7fafc";
27
- const activeBg = (_p = (_l = (_k = (_j = (_h = theme.colors) === null || _h === void 0 ? void 0 : _h.primary) === null || _j === void 0 ? void 0 : _j.opacity) === null || _k === void 0 ? void 0 : _k[16]) !== null && _l !== void 0 ? _l : (_o = (_m = theme.colors) === null || _m === void 0 ? void 0 : _m.gray) === null || _o === void 0 ? void 0 : _o[200]) !== null && _p !== void 0 ? _p : "#edf2f7";
26
+ const colors = (0, paletteFromTheme_1.paletteOf)(theme);
27
+ const hoverBg = colors.primary.opacity[8];
28
+ const activeBg = colors.primary.opacity[16];
28
29
  return {
29
30
  list: {
30
- [$bg.variable]: (_v = (_s = (_r = (_q = theme.colors) === null || _q === void 0 ? void 0 : _q.backgroundColor) === null || _r === void 0 ? void 0 : _r.light) !== null && _s !== void 0 ? _s : (_u = (_t = theme.colors) === null || _t === void 0 ? void 0 : _t.background) === null || _u === void 0 ? void 0 : _u[50]) !== null && _v !== void 0 ? _v : "#fff",
31
+ [$bg.variable]: colors.backgroundColor.light,
31
32
  bg: $bg.reference,
32
- color: (_y = (_x = (_w = theme.colors) === null || _w === void 0 ? void 0 : _w.text) === null || _x === void 0 ? void 0 : _x[900]) !== null && _y !== void 0 ? _y : "inherit",
33
+ color: colors.text[900],
34
+ // A rule at CHROME_RULE weight, not Chakra's gray.200: that default read as a hard edge,
35
+ // which is why this shipped borderless. At 1.31:1 the edge defines the surface instead.
36
+ borderWidth: "1px",
37
+ borderStyle: "solid",
38
+ borderColor: colors.boxborder[200],
33
39
  },
34
40
  // Own CSS var (`--menu-item-bg`), NOT the list's `--menu-bg` — Chakra's stock item
35
41
  // baseStyle rewrites `--menu-bg` itself on hover/focus, so reusing that same var name
@@ -10,10 +10,13 @@ declare const $arrowShadowColor: {
10
10
  export declare const Popover: {
11
11
  baseStyle?: (({ theme }: StyleFunctionProps) => {
12
12
  content: {
13
- [$popperBg.variable]: any;
14
- [$arrowShadowColor.variable]: any;
13
+ [$popperBg.variable]: string;
14
+ [$arrowShadowColor.variable]: string;
15
15
  bg: string;
16
- color: any;
16
+ color: string;
17
+ borderWidth: string;
18
+ borderStyle: string;
19
+ borderColor: string;
17
20
  };
18
21
  }) | undefined;
19
22
  sizes?: {
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Popover = void 0;
4
4
  const react_1 = require("@chakra-ui/react");
5
5
  const anatomy_1 = require("@chakra-ui/anatomy");
6
+ const paletteFromTheme_1 = require("./paletteFromTheme");
6
7
  const { defineMultiStyleConfig, definePartsStyle } = (0, react_1.createMultiStyleConfigHelpers)(anatomy_1.popoverAnatomy.keys);
7
8
  const $popperBg = (0, react_1.cssVar)("popper-bg");
8
9
  const $arrowShadowColor = (0, react_1.cssVar)("popper-arrow-shadow-color");
@@ -15,15 +16,19 @@ const $arrowShadowColor = (0, react_1.cssVar)("popper-arrow-shadow-color");
15
16
  * fixing `$popperBg` here fixes the arrow fill too.
16
17
  */
17
18
  const baseStyle = definePartsStyle(({ theme }) => {
18
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
19
- return ({
19
+ const colors = (0, paletteFromTheme_1.paletteOf)(theme);
20
+ return {
20
21
  content: {
21
- [$popperBg.variable]: (_f = (_c = (_b = (_a = theme.colors) === null || _a === void 0 ? void 0 : _a.backgroundColor) === null || _b === void 0 ? void 0 : _b.light) !== null && _c !== void 0 ? _c : (_e = (_d = theme.colors) === null || _d === void 0 ? void 0 : _d.background) === null || _e === void 0 ? void 0 : _e[50]) !== null && _f !== void 0 ? _f : "#fff",
22
+ [$popperBg.variable]: colors.backgroundColor.light,
22
23
  bg: $popperBg.reference,
23
- [$arrowShadowColor.variable]: (_m = (_j = (_h = (_g = theme.colors) === null || _g === void 0 ? void 0 : _g.border) === null || _h === void 0 ? void 0 : _h[200]) !== null && _j !== void 0 ? _j : (_l = (_k = theme.colors) === null || _k === void 0 ? void 0 : _k.gray) === null || _l === void 0 ? void 0 : _l[200]) !== null && _m !== void 0 ? _m : "#e2e8f0",
24
- color: (_q = (_p = (_o = theme.colors) === null || _o === void 0 ? void 0 : _o.text) === null || _p === void 0 ? void 0 : _p[900]) !== null && _q !== void 0 ? _q : "inherit",
24
+ [$arrowShadowColor.variable]: colors.boxborder[200],
25
+ color: colors.text[900],
26
+ // Matches Menu: a CHROME_RULE-weight edge, not Chakra's gray.200 hard edge.
27
+ borderWidth: "1px",
28
+ borderStyle: "solid",
29
+ borderColor: colors.boxborder[200],
25
30
  },
26
- });
31
+ };
27
32
  });
28
33
  exports.Popover = defineMultiStyleConfig({
29
34
  baseStyle,
@@ -6,7 +6,7 @@ declare const $thumbBg: {
6
6
  export declare const Switch: {
7
7
  baseStyle?: (({ theme }: StyleFunctionProps) => {
8
8
  thumb: {
9
- [$thumbBg.variable]: any;
9
+ [$thumbBg.variable]: string;
10
10
  bg: string;
11
11
  };
12
12
  }) | undefined;
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Switch = void 0;
4
4
  const react_1 = require("@chakra-ui/react");
5
5
  const anatomy_1 = require("@chakra-ui/anatomy");
6
+ const paletteFromTheme_1 = require("./paletteFromTheme");
6
7
  const { defineMultiStyleConfig, definePartsStyle } = (0, react_1.createMultiStyleConfigHelpers)(anatomy_1.switchAnatomy.keys);
7
8
  const $thumbBg = (0, react_1.cssVar)("switch-thumb-bg");
8
9
  /**
@@ -10,15 +11,12 @@ const $thumbBg = (0, react_1.cssVar)("switch-thumb-bg");
10
11
  * `_dark` gate at all, so every bare `<Switch>` renders a literal white knob on the dark canvas
11
12
  * regardless of mode.
12
13
  */
13
- const baseStyle = definePartsStyle(({ theme }) => {
14
- var _a, _b, _c, _d, _e, _f;
15
- return ({
16
- thumb: {
17
- [$thumbBg.variable]: (_f = (_c = (_b = (_a = theme.colors) === null || _a === void 0 ? void 0 : _a.backgroundColor) === null || _b === void 0 ? void 0 : _b.light) !== null && _c !== void 0 ? _c : (_e = (_d = theme.colors) === null || _d === void 0 ? void 0 : _d.background) === null || _e === void 0 ? void 0 : _e[50]) !== null && _f !== void 0 ? _f : "#fff",
18
- bg: $thumbBg.reference,
19
- },
20
- });
21
- });
14
+ const baseStyle = definePartsStyle(({ theme }) => ({
15
+ thumb: {
16
+ [$thumbBg.variable]: (0, paletteFromTheme_1.paletteOf)(theme).backgroundColor.light,
17
+ bg: $thumbBg.reference,
18
+ },
19
+ }));
22
20
  exports.Switch = defineMultiStyleConfig({
23
21
  baseStyle,
24
22
  });
@@ -70,26 +70,29 @@ export declare const componentStyles: {
70
70
  Menu: {
71
71
  baseStyle?: (({ theme }: StyleFunctionProps) => {
72
72
  list: {
73
- [x: string]: any;
73
+ [x: string]: string;
74
74
  bg: string;
75
- color: any;
75
+ color: string;
76
+ borderWidth: string;
77
+ borderStyle: string;
78
+ borderColor: string;
76
79
  };
77
80
  item: {
78
81
  bg: string;
79
82
  _focus: {
80
- [x: string]: any;
83
+ [x: string]: string;
81
84
  bg: string;
82
85
  };
83
86
  _hover: {
84
- [x: string]: any;
87
+ [x: string]: string;
85
88
  bg: string;
86
89
  };
87
90
  _active: {
88
- [x: string]: any;
91
+ [x: string]: string;
89
92
  bg: string;
90
93
  };
91
94
  _expanded: {
92
- [x: string]: any;
95
+ [x: string]: string;
93
96
  bg: string;
94
97
  };
95
98
  };
@@ -139,9 +142,12 @@ export declare const componentStyles: {
139
142
  Popover: {
140
143
  baseStyle?: (({ theme }: StyleFunctionProps) => {
141
144
  content: {
142
- [x: string]: any;
145
+ [x: string]: string;
143
146
  bg: string;
144
- color: any;
147
+ color: string;
148
+ borderWidth: string;
149
+ borderStyle: string;
150
+ borderColor: string;
145
151
  };
146
152
  }) | undefined;
147
153
  sizes?: {
@@ -188,7 +194,7 @@ export declare const componentStyles: {
188
194
  Switch: {
189
195
  baseStyle?: (({ theme }: StyleFunctionProps) => {
190
196
  thumb: {
191
- [x: string]: any;
197
+ [x: string]: string;
192
198
  bg: string;
193
199
  };
194
200
  }) | undefined;
@@ -9,6 +9,7 @@ const common_web_1 = __importDefault(require("./common.web"));
9
9
  const fonts_web_1 = __importDefault(require("./fonts.web"));
10
10
  const componentStyles_1 = require("./componentStyles");
11
11
  const accentText_1 = require("../tokens/builders/accentText");
12
+ const scrollbar_1 = require("../tokens/builders/scrollbar");
12
13
  /**
13
14
  * Builds a Chakra theme from a pure brand palette.
14
15
  *
@@ -89,22 +90,8 @@ const createBrandTheme = (palette, options = {}) => {
89
90
  color: (0, accentText_1.onFilled)(palette.primary[500], palette.white, palette.black),
90
91
  },
91
92
  // `color-scheme: dark` gives WebKit/Blink a dark scrollbar by default, but it's the
92
- // OS's generic dark gray, not brand-aware — style it explicitly so it matches the
93
- // canvas instead of floating as a mismatched gray bar.
94
- "::-webkit-scrollbar": {
95
- width: "10px",
96
- height: "10px",
97
- },
98
- "::-webkit-scrollbar-track": {
99
- background: palette.backgroundColor.main,
100
- },
101
- "::-webkit-scrollbar-thumb": {
102
- background: palette.gray[600],
103
- borderRadius: "6px",
104
- },
105
- "::-webkit-scrollbar-thumb:hover": {
106
- background: palette.gray[500],
107
- },
93
+ // OS's generic dark gray, not brand-aware.
94
+ ...(0, scrollbar_1.globalScrollbarStyles)(palette),
108
95
  // Chrome/Edge autofill paints its own opaque yellow/white fill behind the input
109
96
  // text via `-webkit-box-shadow` (not `background`), so a plain `bg` override never
110
97
  // reaches it — a bright light box survives on every dark autofilled field unless
@@ -165,42 +165,40 @@ const PixelizeThemeProvider = ({ children, brand: brandProp = DEFAULT_BRAND, onB
165
165
  * `data-mode` for consumers that want to hook their own dark CSS.
166
166
  */
167
167
  (0, react_1.useLayoutEffect)(() => {
168
- var _a, _b, _c, _d, _e, _f, _g;
169
168
  const root = document.documentElement;
170
169
  root.dataset.mode = resolvedMode;
171
- const colors = resolvedTheme.colors;
172
- const sem = (_a = colors.semantic) !== null && _a !== void 0 ? _a : {};
173
- const gray = colors.gray;
170
+ const { colors } = resolvedTheme;
171
+ const { gray, semantic } = colors;
174
172
  const HUE_SCALES = [
175
173
  "primary", "gray", "red", "orange", "yellow",
176
174
  "green", "teal", "blue", "cyan", "purple", "pink",
177
175
  ];
178
- const SEMANTIC_SCALES = ["success", "error", "warning", "info"]; // nested under colors.semantic
176
+ const SEMANTIC_SCALES = ["success", "error", "warning", "info"];
179
177
  const RUNGS = [50, 100, 200, 300, 400, 500, 600, 700, 800, 900];
180
- // Single-value semantic vars → palette scale+rung. The dark gray ramp runs dark(50) → light(900),
181
- // so low rungs read as surfaces and high rungs as text — correct in dark, cleared in light.
178
+ // The dark gray ramp runs dark(50) → light(900), so low rungs read as surfaces
179
+ // and high rungs as text — correct in dark, cleared in light.
182
180
  const SEMANTIC_VARS = {
183
- "text-heading": gray === null || gray === void 0 ? void 0 : gray[900], "text-body": gray === null || gray === void 0 ? void 0 : gray[700],
184
- "text-subtle": gray === null || gray === void 0 ? void 0 : gray[500], "text-input": gray === null || gray === void 0 ? void 0 : gray[500],
185
- "bg-main": gray === null || gray === void 0 ? void 0 : gray[50], "bg-secondary": gray === null || gray === void 0 ? void 0 : gray[100], "bg-tertiary": gray === null || gray === void 0 ? void 0 : gray[100],
186
- "bg-quaternary": gray === null || gray === void 0 ? void 0 : gray[200], "bg-light": gray === null || gray === void 0 ? void 0 : gray[50], "bg-medium": gray === null || gray === void 0 ? void 0 : gray[100],
187
- "bg-accent": gray === null || gray === void 0 ? void 0 : gray[200], "bg-subtle": gray === null || gray === void 0 ? void 0 : gray[100], "bg-muted": gray === null || gray === void 0 ? void 0 : gray[200],
188
- "bg-neutral": gray === null || gray === void 0 ? void 0 : gray[100], "bg-base": gray === null || gray === void 0 ? void 0 : gray[50], "bg-table-header": gray === null || gray === void 0 ? void 0 : gray[100],
189
- "border-default": gray === null || gray === void 0 ? void 0 : gray[200], "border-light": gray === null || gray === void 0 ? void 0 : gray[100],
190
- "border-dark": gray === null || gray === void 0 ? void 0 : gray[300], "border-input": gray === null || gray === void 0 ? void 0 : gray[300],
191
- "border-error": (_b = sem.error) === null || _b === void 0 ? void 0 : _b[500], "border-success": (_c = sem.success) === null || _c === void 0 ? void 0 : _c[500],
192
- "border-warning": (_d = sem.warning) === null || _d === void 0 ? void 0 : _d[500], "border-info": (_e = sem.info) === null || _e === void 0 ? void 0 : _e[500],
181
+ "text-heading": gray[900], "text-body": gray[700],
182
+ "text-subtle": gray[500], "text-input": gray[500],
183
+ "bg-main": gray[50], "bg-secondary": gray[100], "bg-tertiary": gray[100],
184
+ "bg-quaternary": gray[200], "bg-light": gray[50], "bg-medium": gray[100],
185
+ "bg-accent": gray[200], "bg-subtle": gray[100], "bg-muted": gray[200],
186
+ "bg-neutral": gray[100], "bg-base": gray[50], "bg-table-header": gray[100],
187
+ "border-default": gray[200], "border-light": gray[100],
188
+ "border-dark": gray[300], "border-input": gray[300],
189
+ "border-error": semantic.error[500], "border-success": semantic.success[500],
190
+ "border-warning": semantic.warning[500], "border-info": semantic.info[500],
193
191
  };
194
- const set = (name, val) => val && root.style.setProperty(`--color-${name}`, val);
192
+ const set = (name, val) => root.style.setProperty(`--color-${name}`, val);
195
193
  const clear = (name) => root.style.removeProperty(`--color-${name}`);
196
194
  const allRampNames = [...HUE_SCALES, ...SEMANTIC_SCALES].flatMap((s) => RUNGS.map((r) => `${s}-${r}`));
197
195
  if (resolvedMode === "dark") {
198
196
  for (const s of HUE_SCALES)
199
197
  for (const r of RUNGS)
200
- set(`${s}-${r}`, (_f = colors[s]) === null || _f === void 0 ? void 0 : _f[r]);
198
+ set(`${s}-${r}`, colors[s][r]);
201
199
  for (const s of SEMANTIC_SCALES)
202
200
  for (const r of RUNGS)
203
- set(`${s}-${r}`, (_g = sem[s]) === null || _g === void 0 ? void 0 : _g[r]);
201
+ set(`${s}-${r}`, semantic[s][r]);
204
202
  for (const [name, val] of Object.entries(SEMANTIC_VARS))
205
203
  set(name, val);
206
204
  }
@@ -25,33 +25,26 @@ const toBrandLabel = (brand) => brand.charAt(0).toUpperCase() + brand.slice(1);
25
25
  * the dot always matches what selecting that brand actually looks like,
26
26
  * regardless of which brand/mode is currently active.
27
27
  */
28
- const brandSwatchColor = (brand) => {
29
- var _a, _b, _c, _d, _e;
30
- return (_e = (_d = (_c = (_b = (_a = index_1.brandThemes[brand]) === null || _a === void 0 ? void 0 : _a.light) === null || _b === void 0 ? void 0 : _b.colors) === null || _c === void 0 ? void 0 : _c.primary) === null || _d === void 0 ? void 0 : _d[500]) !== null && _e !== void 0 ? _e : "gray.400";
28
+ const brandSwatchColor = (brand) => index_1.brandThemes[brand].light.colors.primary[500];
29
+ const BrandSwatch = ({ brand }) => {
30
+ const { colors } = (0, useCustomTheme_1.useCustomTheme)();
31
+ return ((0, jsx_runtime_1.jsx)(react_2.Box, { as: "span", display: "inline-block", w: "0.625rem", h: "0.625rem", borderRadius: "full", bg: brandSwatchColor(brand), border: "1px solid", borderColor: colors.boxborder[200], flexShrink: 0 }));
31
32
  };
32
- const BrandSwatch = ({ brand }) => ((0, jsx_runtime_1.jsx)(react_2.Box, { as: "span", display: "inline-block", w: "0.625rem", h: "0.625rem", borderRadius: "full", bg: brandSwatchColor(brand), border: "1px solid", borderColor: "whiteAlpha.300", flexShrink: 0 }));
33
33
  /**
34
34
  * Palette values already differ per color mode (`brandThemes[brand].light|dark`), so tokens
35
35
  * are read straight from the active theme — no `useColorModeValue` pairing needed here.
36
- * Fallbacks are Chakra token names, never literal colors, for themes without a brand palette.
37
36
  */
38
37
  const useSwitcherColors = () => {
39
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0;
40
- const colors = (0, useCustomTheme_1.useCustomTheme)().colors;
38
+ const { colors } = (0, useCustomTheme_1.useCustomTheme)();
41
39
  return {
42
- trackBg: (_d = (_b = (_a = colors === null || colors === void 0 ? void 0 : colors.backgroundColor) === null || _a === void 0 ? void 0 : _a.secondary) !== null && _b !== void 0 ? _b : (_c = colors === null || colors === void 0 ? void 0 : colors.gray) === null || _c === void 0 ? void 0 : _c[100]) !== null && _d !== void 0 ? _d : "gray.100",
43
- activeBg: (_g = (_f = (_e = colors === null || colors === void 0 ? void 0 : colors.backgroundColor) === null || _e === void 0 ? void 0 : _e.main) !== null && _f !== void 0 ? _f : colors === null || colors === void 0 ? void 0 : colors.white) !== null && _g !== void 0 ? _g : "white",
44
- activeColor: (_l = (_j = (_h = colors === null || colors === void 0 ? void 0 : colors.primary) === null || _h === void 0 ? void 0 : _h[500]) !== null && _j !== void 0 ? _j : (_k = colors === null || colors === void 0 ? void 0 : colors.text) === null || _k === void 0 ? void 0 : _k[900]) !== null && _l !== void 0 ? _l : "inherit",
45
- mutedColor: (_q = (_o = (_m = colors === null || colors === void 0 ? void 0 : colors.text) === null || _m === void 0 ? void 0 : _m[600]) !== null && _o !== void 0 ? _o : (_p = colors === null || colors === void 0 ? void 0 : colors.gray) === null || _p === void 0 ? void 0 : _p[600]) !== null && _q !== void 0 ? _q : "gray.600",
46
- hoverBg: (_s = (_r = colors === null || colors === void 0 ? void 0 : colors.gray) === null || _r === void 0 ? void 0 : _r[100]) !== null && _s !== void 0 ? _s : "gray.100",
47
- borderColor: (_w = (_u = (_t = colors === null || colors === void 0 ? void 0 : colors.border) === null || _t === void 0 ? void 0 : _t[200]) !== null && _u !== void 0 ? _u : (_v = colors === null || colors === void 0 ? void 0 : colors.gray) === null || _v === void 0 ? void 0 : _v[200]) !== null && _w !== void 0 ? _w : "gray.200",
48
- // `--menu-bg` (and its hover/focus/active states) is now fixed centrally in the theme's
49
- // Menu component style (Theme/chakra/Menu.styles.ts) — every MenuList gets it from there.
50
- // Re-deriving it here too and pushing it back via `sx` on every render caused a redundant
51
- // Emotion style recompute per render, which showed up as flicker while hovering/scrolling
52
- // this list. Keep menuColor (Menu.styles.ts doesn't set list `color` per this component's
53
- // needs) but stop duplicating menuBg.
54
- menuColor: (_0 = (_y = (_x = colors === null || colors === void 0 ? void 0 : colors.text) === null || _x === void 0 ? void 0 : _x[900]) !== null && _y !== void 0 ? _y : (_z = colors === null || colors === void 0 ? void 0 : colors.gray) === null || _z === void 0 ? void 0 : _z[900]) !== null && _0 !== void 0 ? _0 : "gray.900",
40
+ trackBg: colors.backgroundColor.secondary,
41
+ activeBg: colors.backgroundColor.main,
42
+ activeColor: colors.primary[500],
43
+ mutedColor: colors.text[600],
44
+ hoverBg: colors.gray[100],
45
+ borderColor: colors.boxborder[200],
46
+ // NOTE: menuBg lives in Menu.styles.ts re-pushing it via `sx` flickers on every render.
47
+ menuColor: colors.text[900],
55
48
  };
56
49
  };
57
50
  const BrandMenu = ({ size }) => {
@@ -188,12 +188,8 @@ const disabled = {
188
188
  800: "#625d75",
189
189
  900: "#4b4759",
190
190
  };
191
- // Two-tone brand gradient (violet pink). Each theme overrides with its own pair.
192
- // `to` stop retuned so white gradient-button text (onGradient, accentText.ts) clears AA — the
193
- // original let white drop to 3.53 there (`from` already passed at 5.76, unchanged).
194
- // Nudged one step further (4.511 -> 4.609): the first pass cleared AA by <0.02, too thin a
195
- // margin to trust against rounding/rendering variance.
196
- const gradient = { from: "#8B3FC8", to: "#df187a" };
191
+ // Single-hue gradient: white clears AA by margin, not by hundredths. See gradientTone.test.ts.
192
+ const gradient = { from: "#8b3fc8", to: "#762d9d" };
197
193
  const palette = {
198
194
  gradient,
199
195
  primary,
@@ -20,11 +20,7 @@ const primary = {
20
20
  const palette = {
21
21
  ...neutrals_1.neutralTokens,
22
22
  ...(0, brandInk_1.buildBrandInk)(PRIMARY_500),
23
- // `to` stop retuned so white gradient-button text (onGradient, accentText.ts) clears AA — the
24
- // original let white drop to 2.98 there (`from` already passed at 4.83, unchanged).
25
- // Nudged one step further (4.520 -> 4.608): the first pass cleared AA by <0.02, too thin a
26
- // margin to trust against rounding/rendering variance.
27
- gradient: { from: "#6b7280", to: "#5664f6" }, // slate gray → indigo
23
+ gradient: { from: "#666d7a", to: "#4a4e59" },
28
24
  primary,
29
25
  tertiary: { ...primary },
30
26
  gray: {
@@ -34,7 +34,7 @@ function chartInk(colors) {
34
34
  surface,
35
35
  text: colors.text[900],
36
36
  muted: colors.text[500],
37
- grid: colors.border[500],
37
+ grid: colors.boxborder[200],
38
38
  axis: colors.text[500],
39
39
  tooltipBg: colors.backgroundColor.secondary,
40
40
  };
@@ -0,0 +1,22 @@
1
+ export type Gradient = {
2
+ from: string;
3
+ to: string;
4
+ };
5
+ /** A gradient already safe to paint, plus the ink that is guaranteed legible on it. */
6
+ export type ResolvedGradient = Gradient & {
7
+ ink: string;
8
+ };
9
+ /**
10
+ * Sinks both stops until WHITE ink clears AA, keeping each stop's hue. Any mid-tone gradient
11
+ * otherwise flips `onGradient` to black ink, so the same element reads white-on-colour in one
12
+ * brand and black-on-pastel in the next.
13
+ */
14
+ export declare const inkSafeGradient: (gradient: Gradient) => Gradient;
15
+ /**
16
+ * The only correct way to paint text on a gradient: returns the stops to draw AND the ink for
17
+ * them. Calling `onGradient` on raw stops is the black-text bug — it picks ink for a backdrop
18
+ * that is then painted differently.
19
+ */
20
+ export declare const resolveGradient: (gradient: Gradient, white: string, black: string) => ResolvedGradient;
21
+ /** `linear-gradient(...)` for a resolved pair — one spelling of the CSS everywhere. */
22
+ export declare const gradientCss: (g: Gradient, angle?: string) => string;
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.gradientCss = exports.resolveGradient = exports.inkSafeGradient = void 0;
4
+ const accentText_1 = require("./accentText");
5
+ const statusTone_1 = require("./statusTone");
6
+ /**
7
+ * Sinks both stops until WHITE ink clears AA, keeping each stop's hue. Any mid-tone gradient
8
+ * otherwise flips `onGradient` to black ink, so the same element reads white-on-colour in one
9
+ * brand and black-on-pastel in the next.
10
+ */
11
+ const inkSafeGradient = (gradient) => ({
12
+ from: (0, statusTone_1.resolveAvatarFill)(gradient.from),
13
+ to: (0, statusTone_1.resolveAvatarFill)(gradient.to),
14
+ });
15
+ exports.inkSafeGradient = inkSafeGradient;
16
+ /**
17
+ * The only correct way to paint text on a gradient: returns the stops to draw AND the ink for
18
+ * them. Calling `onGradient` on raw stops is the black-text bug — it picks ink for a backdrop
19
+ * that is then painted differently.
20
+ */
21
+ const resolveGradient = (gradient, white, black) => {
22
+ const { from, to } = (0, exports.inkSafeGradient)(gradient);
23
+ return { from, to, ink: (0, accentText_1.onGradient)(from, to, white, black) };
24
+ };
25
+ exports.resolveGradient = resolveGradient;
26
+ /** `linear-gradient(...)` for a resolved pair — one spelling of the CSS everywhere. */
27
+ const gradientCss = (g, angle = "135deg") => `linear-gradient(${angle}, ${g.from} 0%, ${g.to} 100%)`;
28
+ exports.gradientCss = gradientCss;
@@ -3,3 +3,6 @@ export * from "./buildBrandTokens";
3
3
  export * from "./buildDarkPalette";
4
4
  export * from "./chartColorsFromTheme";
5
5
  export * from "./color";
6
+ export * from "./scrollbar";
7
+ export * from "./gradientInk";
8
+ export * from "./placeholderInk";
@@ -19,3 +19,6 @@ __exportStar(require("./buildBrandTokens"), exports);
19
19
  __exportStar(require("./buildDarkPalette"), exports);
20
20
  __exportStar(require("./chartColorsFromTheme"), exports);
21
21
  __exportStar(require("./color"), exports);
22
+ __exportStar(require("./scrollbar"), exports);
23
+ __exportStar(require("./gradientInk"), exports);
24
+ __exportStar(require("./placeholderInk"), exports);
@@ -7,6 +7,22 @@ import type { PaletteProps } from "../types";
7
7
  export declare const MIN_PERCEPTIBLE_STEP = 1.15;
8
8
  /** WCAG 1.4.11 — a control outline is a UI component boundary, held to 3:1. */
9
9
  export declare const AA_NON_TEXT = 3;
10
+ /**
11
+ * Resting chrome — card, popover and field outlines — settles here, not at `AA_NON_TEXT`.
12
+ * At 3:1 a container border is text-weight and the UI reads as a wireframe; every mainstream
13
+ * system draws this line far lighter (Tailwind gray-200 1.24, Chakra gray.200 1.30, Material
14
+ * outline-variant 1.61). 1.4.11 asks that a control be identifiable, not that its resting
15
+ * border carry the whole job: the fill, the label and the focus ring do that, and the focus
16
+ * ring is still held to `AA_NON_TEXT`.
17
+ */
18
+ export declare const CHROME_BORDER = 1.5;
19
+ export declare const CHROME_RULE = 1.31;
20
+ /**
21
+ * A rule is decorative, so it has a ceiling and no floor: soften it until the surface it reads
22
+ * hardest against sits at `target`, and leave a already-fainter rung alone. Never `settleAcross`
23
+ * here — that clears a floor on EVERY surface, so one tinted surface drags the rule darker.
24
+ */
25
+ export declare function ruleInk(hex: string, surfaces: readonly string[], target: number): string;
10
26
  /**
11
27
  * Walks a hex toward `target` contrast against `backdrop`, keeping hue and saturation.
12
28
  * Direction is DERIVED from the backdrop, never passed: a mode argument here was redundant
@@ -14,11 +30,17 @@ export declare const AA_NON_TEXT = 3;
14
30
  * Tries the far side first, falls back to the near side, and stops at the first passing step.
15
31
  */
16
32
  export declare function liftToContrast(hex: string, backdrop: string, target?: number): string;
33
+ /**
34
+ * Mirror of `liftToContrast`: walks ink TOWARD the backdrop, stopping at the last step that
35
+ * still clears `target`. For ink that must stay legible without reading as body copy.
36
+ */
37
+ export declare function softenToContrast(hex: string, backdrop: string, target: number): string;
17
38
  /**
18
39
  * `boxborder[500]` is the rung every control outline reads (Checkbox, SearchSelect, the date
19
- * pickers, the editor's inputs). It was authored as a decorative value measured 1.30-2.56:1
20
- * across brands, so those controls rendered effectively borderless in BOTH modes. Resolved here
21
- * rather than hand-pinned per brand: a copied hex goes stale the moment a canvas moves.
40
+ * pickers, the editor's inputs). Settled onto `CHROME_BORDER` lifted when a brand authored it
41
+ * invisibly pale, softened when it overshoots. It was previously lifted to `AA_NON_TEXT`, which
42
+ * shipped 3.85-4.95:1 outlines: a text-weight box around every card and popover.
43
+ * Resolved here rather than hand-pinned per brand: a copied hex goes stale the moment a canvas moves.
22
44
  *
23
45
  * `border[*]` is deliberately untouched — that ramp draws table gridlines, which are decorative
24
46
  * and outside 1.4.11.
@@ -33,3 +55,10 @@ export declare function withOutlineRung(palette: PaletteProps): PaletteProps;
33
55
  * its OWN list background, not necessarily the page canvas.
34
56
  */
35
57
  export declare function resolveHoverTint(seed: string, restSurface: string): string;
58
+ /**
59
+ * Settles ink into `target` against EVERY surface at once. Softening one step can change which
60
+ * surface is hardest, so resolving against a single pre-computed "hardest" one lands under the
61
+ * floor on another — that is how radiant and rosewood ended up with an invisible outline on
62
+ * their muted surface.
63
+ */
64
+ export declare function settleAcross(hex: string, surfaces: readonly string[], target: number): string;