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
@@ -7,6 +7,7 @@ import { accentTextOnCanvas } from "../../../Theme/tokens/builders/accentText.js
7
7
  import TableFilters from "../filters/TableFilters.js";
8
8
  import { ChevronDown, ChevronsUpDown, ChevronUp } from "lucide-react";
9
9
  import CheckBox from "../../Checkbox/Checkbox.js";
10
+ import { useTableVariant } from "../variants/TableVariantContext.js";
10
11
  const TableHeader = ({ columns, isCheckbox, handleSort, headerRefs, columnWidths, columnsSort, headerBgColor, freezedBgColor, freezedTextColor, noBorders, handleCheckbox, checked, isLoading, isContent, isLink, isActionFreeze, setColumnsSearch, columnsSearch, isSelecting, }) => {
11
12
  const [openFilterId, setOpenFilterId] = useState(null);
12
13
  return (_jsxs(Tr, { pr: 0, "aria-rowindex": 1, children: [isContent && _jsx(ContentSpacerCell, { noBorders: noBorders }), isCheckbox && (_jsx(SelectAllCell, { freezedTextColor: freezedTextColor, noBorders: noBorders, isSelecting: isSelecting, isLoading: isLoading, checked: checked, handleCheckbox: handleCheckbox })), columns.map((header, index) => {
@@ -18,30 +19,33 @@ const TableHeader = ({ columns, isCheckbox, handleSort, headerRefs, columnWidths
18
19
  export default memo(TableHeader);
19
20
  const SelectAllCell = memo(({ freezedTextColor, noBorders, isSelecting, isLoading, checked, handleCheckbox, }) => {
20
21
  const theme = useCustomTheme();
21
- return (_jsx(Th, { scope: "col", w: 6, fontSize: 14, fontWeight: 600, color: freezedTextColor, textTransform: "capitalize", backgroundColor: theme.colors.table.hover[200], position: "sticky", className: `columns sticky-columns`, left: "0px", zIndex: 9, borderBottom: noBorders ? "none" : `0.063rem solid ${theme.colors.border[500]}`, children: isSelecting ? (_jsx(Spinner, { size: "sm", color: theme.colors.accentText })) : (_jsx(CheckBox, { "aria-label": "Select all rows", variant: "outline", onChange: () => handleCheckbox(0), isChecked: isLoading ? false : checked === true, isIndeterminate: checked === "indeterminate" })) }));
22
+ const variant = useTableVariant();
23
+ return (_jsx(Th, { scope: "col", w: variant.slot.width, minW: variant.slot.width, px: variant.slot.centered ? 0 : undefined, textAlign: variant.slot.centered ? "center" : undefined, fontSize: 14, fontWeight: 600, color: freezedTextColor, textTransform: "capitalize", backgroundColor: variant.header.bg, position: "sticky", className: `columns sticky-columns`, left: "0px", zIndex: 9, borderBottom: noBorders ? "none" : `0.063rem solid ${variant.header.ruleColor}`, children: _jsx(Box, { display: "flex", alignItems: "center", justifyContent: variant.slot.centered ? "center" : "flex-start", children: isSelecting ? (_jsx(Spinner, { size: "sm", color: theme.colors.accentText })) : (_jsx(CheckBox, { "aria-label": "Select all rows", variant: "outline", onChange: () => handleCheckbox(0), isChecked: isLoading ? false : checked === true, isIndeterminate: checked === "indeterminate" })) }) }));
22
24
  });
23
25
  const ContentSpacerCell = memo(({ noBorders }) => {
24
- const theme = useCustomTheme();
25
- return (_jsx(Th, { scope: "col", w: 6, minW: "35px", p: 0, backgroundColor: theme.colors.table.hover[200], borderBottom: noBorders ? "none" : `0.063rem solid ${theme.colors.border[500]}`, position: "sticky", className: `columns sticky-columns`, left: "0px", zIndex: 1 }));
26
+ const variant = useTableVariant();
27
+ return (_jsx(Th, { scope: "col", w: 6, minW: "35px", p: 0, backgroundColor: variant.header.bg, borderBottom: noBorders ? "none" : `0.063rem solid ${variant.header.ruleColor}`, position: "sticky", className: `columns sticky-columns`, left: "0px", zIndex: 1 }));
26
28
  });
27
29
  const ViewSpacerCell = memo(({ noBorders, isActionFreeze, }) => {
28
- const theme = useCustomTheme();
29
- return (_jsx(Th, { scope: "col", w: 2, p: 0, minW: "2.065rem", backgroundColor: theme.colors.table.hover[200], borderBottom: noBorders ? "none" : `0.063rem solid ${theme.colors.border[500]}`, position: isActionFreeze ? "sticky" : "relative", className: `columns sticky-columns`, right: "0px", zIndex: 1 }));
30
+ const variant = useTableVariant();
31
+ return (_jsx(Th, { scope: "col", w: 2, p: 0, minW: "2.065rem", backgroundColor: variant.header.bg, borderBottom: noBorders ? "none" : `0.063rem solid ${variant.header.ruleColor}`, position: isActionFreeze ? "sticky" : "relative", className: `columns sticky-columns`, right: "0px", zIndex: 1 }));
30
32
  });
31
33
  const SortingIcon = memo(({ label, sortState, isVisible, handleSortClick, }) => {
32
34
  const theme = useCustomTheme();
35
+ const variant = useTableVariant();
33
36
  return (_jsxs(Box, { as: "button", type: "button", "aria-label": `Sort by ${label}`, display: "inline-flex", alignItems: "center", justifyContent: "center", cursor: "pointer", ml: 2, p: 0, border: "none", bg: "transparent", lineHeight: "1", onClick: handleSortClick, transition: "color 0.2s ease-in-out, opacity 0.2s ease-in-out",
34
37
  // Kept out of view until hover/focus so the header looks exactly as it did,
35
38
  // while staying in the DOM and reachable by Tab.
36
39
  opacity: isVisible ? 1 : 0, _focus: { opacity: 1 }, _focusVisible: { opacity: 1 }, color: theme.colors.textMuted, _hover: {
37
40
  opacity: 1,
38
- color: accentTextOnCanvas(theme.colors.secondary, theme.colors.table.hover[200]),
41
+ color: accentTextOnCanvas(theme.colors.secondary, variant.header.bg),
39
42
  }, children: [sortState === "none" && _jsx(ChevronsUpDown, { size: 14 }), sortState === "asc" && _jsx(ChevronUp, { size: 14 }), sortState === "desc" && _jsx(ChevronDown, { size: 14 })] }));
40
43
  });
41
44
  const ColumnHeader = memo(({ header, index, columnWidths, isCheckbox, noBorders, columnsSort, headerRefs, columnsSearch, setColumnsSearch, handleSort, openFilterId, setOpenFilterId, }) => {
42
45
  var _a;
43
46
  const [isHovered, setIsHovered] = useState(false);
44
47
  const theme = useCustomTheme();
48
+ const variant = useTableVariant();
45
49
  const isFrozen = header.isFreeze;
46
50
  const leftOffset = isFrozen
47
51
  ? calculateLeftOffset(columnWidths, index) + (isCheckbox ? 50 : 0)
@@ -77,7 +81,16 @@ const ColumnHeader = memo(({ header, index, columnWidths, isCheckbox, noBorders,
77
81
  document.addEventListener("mouseup", onMouseUp);
78
82
  };
79
83
  const isSortActive = !!(isSorting === null || isSorting === void 0 ? void 0 : isSorting.direction) && isSorting.direction !== "none";
80
- return (_jsx(Th, { scope: "col", ref: (el) => (headerRefs.current[index] = el), "aria-sort": ariaSort, textTransform: "capitalize", fontSize: 13, fontWeight: 600, position: isFrozen ? "sticky" : undefined, left: isFrozen ? leftOffset : undefined, minWidth: 120, backgroundColor: theme.colors.table.hover[200], maxWidth: 500, zIndex: isFrozen ? 2 : 1, py: 2, pr: 0, overflow: "hidden", borderTop: "none", borderBottom: noBorders ? "none" : `0.063rem solid ${theme.colors.border[500]}`, borderRight: noBorders ? "none" : `0.063rem solid ${theme.colors.boxborder[300]}`, className: `columns ${isFrozen ? "sticky-columns" : "scrollable-columns"}`, height: 45, onMouseEnter: () => setIsHovered(true), onMouseLeave: () => setIsHovered(false), children: _jsxs(Box, { display: "flex", color: accentTextOnCanvas(theme.colors.secondary, theme.colors.table.hover[200]), lineHeight: "1.25rem", justifyContent: "space-between", alignItems: "center", position: "relative", children: [_jsx(Box, { textOverflow: "ellipsis", whiteSpace: "nowrap", display: "inline-block", overflow: "hidden", children: header.label }), _jsxs(Box, { display: "inline-flex", alignItems: "center", children: [header.isSort && (_jsx(SortingIcon, { label: String(header.label), sortState: (_a = isSorting === null || isSorting === void 0 ? void 0 : isSorting.direction) !== null && _a !== void 0 ? _a : "none", isVisible: isHovered || isSortActive, handleSortClick: () => {
84
+ // Studio keeps the kebab out of the resting header nine of them read louder than
85
+ // the labels. A column that is filtering or sorting keeps its control on show.
86
+ const showActions = variant.header.actions === "always" ||
87
+ isHovered ||
88
+ isSortActive ||
89
+ openFilterId === header.id ||
90
+ !!columnsSearch[header.id];
91
+ return (_jsx(Th, { scope: "col", ref: (el) => (headerRefs.current[index] = el), "aria-sort": ariaSort, textTransform: variant.header.textTransform, fontSize: variant.header.fontSize, fontWeight: variant.header.fontWeight, letterSpacing: variant.header.letterSpacing, position: isFrozen ? "sticky" : undefined, left: isFrozen ? leftOffset : undefined, minWidth: 120, backgroundColor: variant.header.bg, maxWidth: 500, zIndex: isFrozen ? 2 : 1, py: 2, pr: 0, overflow: "hidden", borderTop: "none", borderBottom: noBorders ? "none" : `0.063rem solid ${variant.header.ruleColor}`, borderRight: noBorders || !variant.header.showColumnRule
92
+ ? "none"
93
+ : `0.063rem solid ${variant.header.ruleColor}`, className: `columns ${isFrozen ? "sticky-columns" : "scrollable-columns"}`, height: variant.header.height, onMouseEnter: () => setIsHovered(true), onMouseLeave: () => setIsHovered(false), children: _jsxs(Box, { display: "flex", color: variant.header.ink, lineHeight: "1.25rem", justifyContent: "space-between", alignItems: "center", position: "relative", children: [_jsx(Box, { textOverflow: "ellipsis", whiteSpace: "nowrap", display: "inline-block", overflow: "hidden", children: header.label }), _jsxs(Box, { display: "inline-flex", alignItems: "center", opacity: showActions ? 1 : 0, transition: "opacity 0.2s ease-in-out", _focusWithin: { opacity: 1 }, children: [header.isSort && (_jsx(SortingIcon, { label: String(header.label), sortState: (_a = isSorting === null || isSorting === void 0 ? void 0 : isSorting.direction) !== null && _a !== void 0 ? _a : "none", isVisible: isHovered || isSortActive, handleSortClick: () => {
81
94
  let direction = "asc";
82
95
  if ((isSorting === null || isSorting === void 0 ? void 0 : isSorting.direction) === "asc") {
83
96
  direction = "desc";
@@ -86,7 +99,7 @@ const ColumnHeader = memo(({ header, index, columnWidths, isCheckbox, noBorders,
86
99
  direction = "none";
87
100
  }
88
101
  handleSort(header.id, direction);
89
- } })), sortPriority > 0 && (_jsx(Box, { as: "span", ml: 1, fontSize: "0.625rem", fontWeight: 700, lineHeight: "1", borderRadius: "full", px: "0.3rem", py: "0.1rem", bg: theme.colors.primary.opacity[16], color: accentTextOnCanvas(theme.colors.primary, theme.colors.table.hover[200]), children: sortPriority })), _jsx(TableFilters, { header: header, setColumnsSearch: (searchVal) => setColumnsSearch((prev) => ({
102
+ } })), sortPriority > 0 && (_jsx(Box, { as: "span", ml: 1, fontSize: "0.625rem", fontWeight: 700, lineHeight: "1", borderRadius: "full", px: "0.3rem", py: "0.1rem", bg: theme.colors.primary.opacity[16], color: accentTextOnCanvas(theme.colors.primary, variant.header.bg), children: sortPriority })), _jsx(TableFilters, { header: header, setColumnsSearch: (searchVal) => setColumnsSearch((prev) => ({
90
103
  ...prev,
91
104
  [header.id]: searchVal,
92
105
  })), columnsSearch: columnsSearch[header.id] || "", onClose: () => {
@@ -25,6 +25,6 @@ const TableSearch = ({ onSearch }) => {
25
25
  setQuery(value);
26
26
  handleDebounce(value);
27
27
  };
28
- return (_jsxs(Box, { display: "flex", alignItems: "center", gap: "2", children: [!showInput && (_jsx(ToolTip, { label: "Search", placement: "top", children: _jsx(IconButton, { "aria-label": "Search", icon: _jsx(Icon, { as: Search, transform: "scaleX(-1)", boxSize: 5 }), variant: "unstyled", minW: "auto", h: "auto", display: "flex", cursor: "pointer", color: colors.text[500], onClick: handleSearchClick, _hover: { color: colors.accentText } }) })), showInput ? (_jsxs(InputGroup, { maxW: "12.5rem", transition: "all 0.3s ease", children: [_jsx(Input, { placeholder: "Search...", value: query, onChange: handleInputChange, size: "sm", borderRadius: "md", borderColor: colors.border[500], _focus: { borderColor: colors.accentText }, autoFocus: true }), _jsx(InputRightElement, { display: "flex", alignItems: "center", height: "2rem", children: _jsx(IconButton, { "aria-label": "Clear search", icon: _jsx(Icon, { as: X }), variant: "unstyled", minW: "auto", h: "auto", display: "flex", color: colors.text[500], cursor: "pointer", onClick: handleSearchClick }) })] })) : null] }));
28
+ return (_jsxs(Box, { display: "flex", alignItems: "center", gap: "2", children: [!showInput && (_jsx(ToolTip, { label: "Search", placement: "top", children: _jsx(IconButton, { "aria-label": "Search", icon: _jsx(Icon, { as: Search, transform: "scaleX(-1)", boxSize: 5 }), variant: "unstyled", minW: "auto", h: "auto", display: "flex", cursor: "pointer", color: colors.text[500], onClick: handleSearchClick, _hover: { color: colors.accentText } }) })), showInput ? (_jsxs(InputGroup, { maxW: "12.5rem", transition: "all 0.3s ease", children: [_jsx(Input, { placeholder: "Search...", value: query, onChange: handleInputChange, size: "sm", borderRadius: "md", borderColor: colors.boxborder[500], _focus: { borderColor: colors.accentText }, autoFocus: true }), _jsx(InputRightElement, { display: "flex", alignItems: "center", height: "2rem", children: _jsx(IconButton, { "aria-label": "Clear search", icon: _jsx(Icon, { as: X }), variant: "unstyled", minW: "auto", h: "auto", display: "flex", color: colors.text[500], cursor: "pointer", onClick: handleSearchClick }) })] })) : null] }));
29
29
  };
30
30
  export default TableSearch;
@@ -4,6 +4,7 @@ import { Box, Flex, Text, IconButton } from "@chakra-ui/react";
4
4
  import { X } from "lucide-react";
5
5
  import { useCustomTheme } from "../../../Theme/useCustomTheme.js";
6
6
  import { accentTextOnCanvas } from "../../../Theme/tokens/builders/accentText.js";
7
+ import { scrollbarStyles } from "../../../Theme/tokens/builders/scrollbar.js";
7
8
  import VeritcalDivider from "../../Divider/Divider.js";
8
9
  const ActiveFilters = React.memo(({ columns, columnsSearch, setColumnsSearch, }) => {
9
10
  const theme = useCustomTheme();
@@ -34,24 +35,7 @@ const ActiveFilters = React.memo(({ columns, columnsSearch, setColumnsSearch, })
34
35
  if (activeFilters.length === 0) {
35
36
  return null;
36
37
  }
37
- return (_jsx(Box, { px: 2, py: 1, bg: theme.colors.background[100], overflowX: "auto", sx: {
38
- '&::-webkit-scrollbar': {
39
- height: '6px',
40
- },
41
- '&::-webkit-scrollbar-track': {
42
- background: theme.colors.gray[100],
43
- borderRadius: 'base',
44
- },
45
- '&::-webkit-scrollbar-thumb': {
46
- background: theme.colors.gray[400],
47
- borderRadius: 'base',
48
- },
49
- '&::-webkit-scrollbar-thumb:hover': {
50
- background: theme.colors.gray[500],
51
- },
52
- scrollbarWidth: 'thin',
53
- scrollbarColor: `${theme.colors.gray[400]} ${theme.colors.gray[100]}`,
54
- }, children: _jsxs(Box, { display: "flex", alignItems: "center", gap: 2, flexWrap: "nowrap", minW: "max-content", children: [activeFilters.length > 0 && _jsx(VeritcalDivider, {}), activeFilters.map((filter) => (_jsxs(Flex, { alignItems: "center", gap: 1, px: 2, py: 1, bg: theme.colors.blue[50], borderRadius: "md", border: `0.063rem solid ${theme.colors.blue[200]}`, flexShrink: 0, children: [_jsxs(Text, { fontSize: "sm", color: accentTextOnCanvas(theme.colors.blue, theme.colors.blue[50]), whiteSpace: "nowrap", children: [_jsxs(Text, { as: "span", fontWeight: 600, children: [filter.label, ":"] }), " ", filter.value] }), _jsx(IconButton, { "aria-label": `Remove filter for ${filter.label}`, icon: _jsx(X, { size: 14 }), size: "xs", variant: "ghost", onClick: () => handleRemoveFilter(filter.columnId), _hover: {
38
+ return (_jsx(Box, { px: 2, py: 1, bg: theme.colors.background[100], overflowX: "auto", sx: scrollbarStyles(theme.colors), children: _jsxs(Box, { display: "flex", alignItems: "center", gap: 2, flexWrap: "nowrap", minW: "max-content", children: [activeFilters.length > 0 && _jsx(VeritcalDivider, {}), activeFilters.map((filter) => (_jsxs(Flex, { alignItems: "center", gap: 1, px: 2, py: 1, bg: theme.colors.blue[50], borderRadius: "md", border: `0.063rem solid ${theme.colors.blue[200]}`, flexShrink: 0, children: [_jsxs(Text, { fontSize: "sm", color: accentTextOnCanvas(theme.colors.blue, theme.colors.blue[50]), whiteSpace: "nowrap", children: [_jsxs(Text, { as: "span", fontWeight: 600, children: [filter.label, ":"] }), " ", filter.value] }), _jsx(IconButton, { "aria-label": `Remove filter for ${filter.label}`, icon: _jsx(X, { size: 14 }), size: "xs", variant: "ghost", onClick: () => handleRemoveFilter(filter.columnId), _hover: {
55
39
  bg: theme.colors.blue[100],
56
40
  }, minW: "auto", h: "auto", p: 0.5, flexShrink: 0 })] }, filter.columnId))), activeFilters.length > 1 && (_jsx(Text, { as: "p", className: "clear-all-text", "aria-label": "Clear All", fontSize: "sm", color: accentTextOnCanvas(theme.colors.blue, theme.colors.background[100]), cursor: "pointer", fontWeight: 500, onClick: handleClearAll, _hover: {
57
41
  textDecoration: "underline",
@@ -3,6 +3,7 @@ import { useImperativeHandle, useMemo, useState, useEffect } from "react";
3
3
  import { Box, Flex, IconButton, Input, List, ListItem, Text, } from "@chakra-ui/react";
4
4
  import Checkbox from "../../Checkbox/Checkbox.js";
5
5
  import { useCustomTheme } from "../../../Theme/useCustomTheme.js";
6
+ import { scrollbarStyles } from "../../../Theme/tokens/builders/scrollbar.js";
6
7
  import { ChevronDown, ChevronUp, GripVertical } from "lucide-react";
7
8
  const ManageColumns = ({ columns, items, setItems, childInputMethodsRef, }) => {
8
9
  const theme = useCustomTheme();
@@ -69,22 +70,7 @@ const ManageColumns = ({ columns, items, setItems, childInputMethodsRef, }) => {
69
70
  setError(null);
70
71
  }
71
72
  };
72
- return (_jsxs(Box, { mt: 2, children: [error && (_jsx(Box, { mb: 2, px: 3, py: 2, bg: theme.colors.red[50], borderRadius: "md", border: "1px solid", borderColor: theme.colors.red[200], children: _jsx(Text, { color: theme.colors.red[600], fontSize: "xs", fontWeight: 500, children: error }) })), _jsx(Input, { placeholder: "Search columns...", mb: 2, value: searchTerm, onChange: (e) => setSearchTerm(e.target.value), size: "sm", borderRadius: "md" }), !searchTerm.length && (_jsx(Flex, { align: "center", mb: 1, bg: theme.colors.gray[100], px: 2, py: 1, borderRadius: "md", children: _jsx(Checkbox, { label: "Show all columns", isChecked: allChecked, isIndeterminate: someChecked, onChange: handleSelectAll }) })), _jsx(List, { spacing: 0, maxH: "300px", overflowY: "auto", sx: {
73
- "&::-webkit-scrollbar": { width: "3px", height: "3px" },
74
- "&::-webkit-scrollbar-track": {
75
- background: theme.colors.gray[100],
76
- borderRadius: "sm",
77
- },
78
- "&::-webkit-scrollbar-thumb": {
79
- background: theme.colors.gray[400],
80
- borderRadius: "sm",
81
- },
82
- "&::-webkit-scrollbar-thumb:hover": {
83
- background: theme.colors.gray[500],
84
- },
85
- scrollbarWidth: "thin",
86
- scrollbarColor: `${theme.colors.gray[400]} ${theme.colors.gray[100]}`,
87
- }, children: filteredItems.length > 0 ? (filteredItems.map((item, index) => {
73
+ return (_jsxs(Box, { mt: 2, children: [error && (_jsx(Box, { mb: 2, px: 3, py: 2, bg: theme.colors.red[50], borderRadius: "md", border: "1px solid", borderColor: theme.colors.red[200], children: _jsx(Text, { color: theme.colors.red[600], fontSize: "xs", fontWeight: 500, children: error }) })), _jsx(Input, { placeholder: "Search columns...", mb: 2, value: searchTerm, onChange: (e) => setSearchTerm(e.target.value), size: "sm", borderRadius: "md" }), !searchTerm.length && (_jsx(Flex, { align: "center", mb: 1, bg: theme.colors.gray[100], px: 2, py: 1, borderRadius: "md", children: _jsx(Checkbox, { label: "Show all columns", isChecked: allChecked, isIndeterminate: someChecked, onChange: handleSelectAll }) })), _jsx(List, { spacing: 0, maxH: "300px", overflowY: "auto", sx: scrollbarStyles(theme.colors), children: filteredItems.length > 0 ? (filteredItems.map((item, index) => {
88
74
  const isDraggingThisItem = draggedItemIndex === index;
89
75
  const isDropZone = draggedItemIndex !== null && draggedItemIndex !== index;
90
76
  const realIndex = items.findIndex((i) => i.id === item.id);
@@ -96,7 +82,7 @@ const ManageColumns = ({ columns, items, setItems, childInputMethodsRef, }) => {
96
82
  ? theme.colors.primary[400]
97
83
  : "transparent", cursor: "grab", fontSize: "13px", px: 2, py: "3px", mb: "3px", transition: "all 0.15s ease", _hover: {
98
84
  bg: theme.colors.gray[50],
99
- borderColor: theme.colors.border[200],
85
+ borderColor: theme.colors.boxborder[200],
100
86
  }, _active: { cursor: "grabbing" }, children: [_jsx(Box, { as: "span", "aria-hidden": "true", display: "inline-flex", cursor: "grab", mr: 1, _hover: { color: theme.colors.gray[500] }, children: _jsx(GripVertical, { size: 14 }) }), _jsx(Checkbox, { isChecked: !item.isHidden, label: String(item.label), onChange: () => toggleCheckbox(item.id), size: "sm", labelSx: {
101
87
  color: item.isHidden ? theme.colors.gray[500] : theme.colors.gray[700],
102
88
  } }), _jsx(Text, { fontSize: "12px", color: theme.colors.gray[500], ml: 'auto', children: index + 1 }), _jsx(IconButton, { "aria-label": `Move ${item.label} up`, icon: _jsx(ChevronUp, { size: 14 }), variant: "ghost", size: "xs", ml: 1, minW: "auto", h: "auto", p: 0, color: theme.colors.gray[500], isDisabled: realIndex <= 0, onClick: () => moveItem(item.id, -1) }), _jsx(IconButton, { "aria-label": `Move ${item.label} down`, icon: _jsx(ChevronDown, { size: 14 }), variant: "ghost", size: "xs", ml: 1, minW: "auto", h: "auto", p: 0, color: theme.colors.gray[500], isDisabled: realIndex === -1 || realIndex >= items.length - 1, onClick: () => moveItem(item.id, 1) })] }, item.id));
@@ -5,6 +5,7 @@ import { motion } from "framer-motion";
5
5
  import ManageColumns from "./ManageColumns.js";
6
6
  import Button from "../../Button/Button.js";
7
7
  import { useCustomTheme } from "../../../Theme/useCustomTheme.js";
8
+ import { scrollbarStyles } from "../../../Theme/tokens/builders/scrollbar.js";
8
9
  import { Settings, Check } from "lucide-react";
9
10
  import ToolTip from "../../ToolTip/ToolTip.js";
10
11
  const MotionModalContent = motion(ModalContent);
@@ -47,16 +48,9 @@ const TableSettings = ({ columns, onSave, density = "normal", onDensityChange, g
47
48
  return (_jsxs(Box, { children: [_jsx(ToolTip, { label: "Table Settings", placement: "top", children: _jsx(IconButton, { "aria-label": "Table settings", icon: _jsx(Settings, { size: "1.25rem" }), onClick: handleOpen, variant: "unstyled", minW: "auto", h: "auto", display: "flex", justifyContent: "flex-end", cursor: "pointer", transition: "all 0.2s ease", color: theme.colors.text[500], _hover: {
48
49
  transform: "scale(1.1)",
49
50
  color: theme.colors.accentText
50
- } }) }), _jsxs(Modal, { isOpen: settingsOpen, onClose: () => setSettingsOpen(false), size: "md", children: [_jsx(ModalOverlay, {}), _jsxs(MotionModalContent, { mt: "0", top: "0", position: "absolute", borderTopRadius: "none", initial: { y: "-100%", opacity: 0 }, animate: { y: 0, opacity: 1 }, exit: { y: "-100%", opacity: 0 }, transition: { duration: 0.4, ease: "easeOut" }, padding: "0", minW: "620px", minH: "520px", maxH: "90vh", display: "flex", flexDirection: "column", bg: theme.colors.background[50], overflow: "hidden", children: [_jsx(ModalCloseButton, { top: 3, right: 3, zIndex: 2 }), _jsxs(Tabs, { index: selectedIndex, onChange: setSelectedIndex, variant: "unstyled", display: "flex", flexDirection: "column", flex: "1", minH: 0, children: [_jsxs(Box, { pt: 4, px: 4, children: [_jsx(Text, { fontWeight: 600, fontSize: "md", mb: 3, children: "Table Settings" }), _jsxs(TabList, { gap: 0, borderBottom: "1px solid", borderColor: theme.colors.border[200], children: [_jsx(Tab, { ...tabStyle, children: "Density" }), _jsx(Tab, { ...tabStyle, children: "Manage Columns" }), _jsx(Tab, { ...tabStyle, children: "Group" })] })] }), _jsx(ModalBody, { px: 4, py: 3, flex: "1", overflowY: "auto", sx: {
51
- "&::-webkit-scrollbar": { width: "3px", height: "3px" },
52
- "&::-webkit-scrollbar-track": { background: theme.colors.gray[100], borderRadius: "sm" },
53
- "&::-webkit-scrollbar-thumb": { background: theme.colors.gray[400], borderRadius: "sm" },
54
- "&::-webkit-scrollbar-thumb:hover": { background: theme.colors.gray[500] },
55
- scrollbarWidth: "thin",
56
- scrollbarColor: `${theme.colors.gray[400]} ${theme.colors.gray[100]}`,
57
- }, children: _jsxs(TabPanels, { children: [_jsx(TabPanel, { px: 0, py: 1, children: _jsx(Flex, { direction: "column", gap: 2, children: DENSITY_OPTIONS.map((opt) => {
51
+ } }) }), _jsxs(Modal, { isOpen: settingsOpen, onClose: () => setSettingsOpen(false), size: "md", children: [_jsx(ModalOverlay, {}), _jsxs(MotionModalContent, { mt: "0", top: "0", position: "absolute", borderTopRadius: "none", initial: { y: "-100%", opacity: 0 }, animate: { y: 0, opacity: 1 }, exit: { y: "-100%", opacity: 0 }, transition: { duration: 0.4, ease: "easeOut" }, padding: "0", minW: "620px", minH: "520px", maxH: "90vh", display: "flex", flexDirection: "column", bg: theme.colors.background[50], overflow: "hidden", children: [_jsx(ModalCloseButton, { top: 3, right: 3, zIndex: 2 }), _jsxs(Tabs, { index: selectedIndex, onChange: setSelectedIndex, variant: "unstyled", display: "flex", flexDirection: "column", flex: "1", minH: 0, children: [_jsxs(Box, { pt: 4, px: 4, children: [_jsx(Text, { fontWeight: 600, fontSize: "md", mb: 3, children: "Table Settings" }), _jsxs(TabList, { gap: 0, borderBottom: "1px solid", borderColor: theme.colors.boxborder[200], children: [_jsx(Tab, { ...tabStyle, children: "Density" }), _jsx(Tab, { ...tabStyle, children: "Manage Columns" }), _jsx(Tab, { ...tabStyle, children: "Group" })] })] }), _jsx(ModalBody, { px: 4, py: 3, flex: "1", overflowY: "auto", sx: scrollbarStyles(theme.colors), children: _jsxs(TabPanels, { children: [_jsx(TabPanel, { px: 0, py: 1, children: _jsx(Flex, { direction: "column", gap: 2, children: DENSITY_OPTIONS.map((opt) => {
58
52
  const selected = density === opt.value;
59
- return (_jsxs(Flex, { as: "button", type: "button", align: "center", gap: 3, px: 3, py: 2.5, borderRadius: "lg", border: "1px solid", borderColor: selected ? theme.colors.accentText : theme.colors.boxborder[300], bg: selected ? theme.colors.primary.opacity[8] : theme.colors.transparent, transition: "all 0.15s", _hover: { borderColor: theme.colors.accentText }, onClick: () => onDensityChange === null || onDensityChange === void 0 ? void 0 : onDensityChange(opt.value), children: [_jsx(Box, { boxSize: "1.1rem", borderRadius: "full", border: "2px solid", borderColor: selected ? theme.colors.accentText : theme.colors.boxborder[500], display: "flex", alignItems: "center", justifyContent: "center", flexShrink: 0, children: selected && _jsx(Check, { size: 11, color: theme.colors.accentText, strokeWidth: 3 }) }), _jsxs(Box, { textAlign: "left", children: [_jsx(Text, { fontSize: "13px", fontWeight: 600, color: theme.colors.text[700], children: opt.label }), _jsx(Text, { fontSize: "11px", color: theme.colors.textMuted, children: opt.desc })] })] }, opt.value));
53
+ return (_jsxs(Flex, { as: "button", type: "button", align: "center", gap: 3, px: 3, py: 2.5, borderRadius: "lg", border: "1px solid", borderColor: selected ? theme.colors.accentText : theme.colors.boxborder[200], bg: selected ? theme.colors.primary.opacity[8] : theme.colors.transparent, transition: "all 0.15s", _hover: { borderColor: theme.colors.accentText }, onClick: () => onDensityChange === null || onDensityChange === void 0 ? void 0 : onDensityChange(opt.value), children: [_jsx(Box, { boxSize: "1.1rem", borderRadius: "full", border: "2px solid", borderColor: selected ? theme.colors.accentText : theme.colors.boxborder[500], display: "flex", alignItems: "center", justifyContent: "center", flexShrink: 0, children: selected && _jsx(Check, { size: 11, color: theme.colors.accentText, strokeWidth: 3 }) }), _jsxs(Box, { textAlign: "left", children: [_jsx(Text, { fontSize: "13px", fontWeight: 600, color: theme.colors.text[700], children: opt.label }), _jsx(Text, { fontSize: "11px", color: theme.colors.textMuted, children: opt.desc })] })] }, opt.value));
60
54
  }) }) }), _jsx(TabPanel, { px: 0, py: 0, children: _jsx(Box, { sx: {
61
55
  "& [role='listitem'], & > div > div": {
62
56
  py: "4px !important",
@@ -74,7 +68,7 @@ const TableSettings = ({ columns, onSave, density = "normal", onDensityChange, g
74
68
  .map((opt) => {
75
69
  var _a;
76
70
  const selected = selectedGroup === opt.id;
77
- return (_jsxs(Flex, { as: "button", type: "button", align: "center", gap: 3, px: 3, py: 2.5, borderRadius: "lg", border: "1px solid", borderColor: selected ? theme.colors.accentText : theme.colors.boxborder[300], bg: selected ? theme.colors.primary.opacity[8] : theme.colors.transparent, transition: "all 0.15s", _hover: { borderColor: theme.colors.accentText }, onClick: () => setSelectedGroup(opt.id), children: [_jsx(Box, { boxSize: "1.1rem", borderRadius: "full", border: "2px solid", borderColor: selected ? theme.colors.accentText : theme.colors.boxborder[500], display: "flex", alignItems: "center", justifyContent: "center", flexShrink: 0, children: selected && _jsx(Check, { size: 11, color: theme.colors.accentText, strokeWidth: 3 }) }), _jsx(Text, { fontSize: "13px", fontWeight: 600, color: theme.colors.text[700], textAlign: "left", children: opt.label })] }, String((_a = opt.id) !== null && _a !== void 0 ? _a : "__none__")));
78
- }) })] })] }) })] }), _jsxs(ModalFooter, { gap: "0.5rem", borderTop: "1px solid", borderColor: theme.colors.border[200], pt: 3, pb: 3, px: 4, children: [_jsx(Button, { label: "Close", size: "sm", onClick: () => setSettingsOpen(false), variant: "outline", colorScheme: "red" }), _jsx(Button, { label: "Save", size: "sm", onClick: handleSave })] })] })] })] }));
71
+ return (_jsxs(Flex, { as: "button", type: "button", align: "center", gap: 3, px: 3, py: 2.5, borderRadius: "lg", border: "1px solid", borderColor: selected ? theme.colors.accentText : theme.colors.boxborder[200], bg: selected ? theme.colors.primary.opacity[8] : theme.colors.transparent, transition: "all 0.15s", _hover: { borderColor: theme.colors.accentText }, onClick: () => setSelectedGroup(opt.id), children: [_jsx(Box, { boxSize: "1.1rem", borderRadius: "full", border: "2px solid", borderColor: selected ? theme.colors.accentText : theme.colors.boxborder[500], display: "flex", alignItems: "center", justifyContent: "center", flexShrink: 0, children: selected && _jsx(Check, { size: 11, color: theme.colors.accentText, strokeWidth: 3 }) }), _jsx(Text, { fontSize: "13px", fontWeight: 600, color: theme.colors.text[700], textAlign: "left", children: opt.label })] }, String((_a = opt.id) !== null && _a !== void 0 ? _a : "__none__")));
72
+ }) })] })] }) })] }), _jsxs(ModalFooter, { gap: "0.5rem", borderTop: "1px solid", borderColor: theme.colors.boxborder[200], pt: 3, pb: 3, px: 4, children: [_jsx(Button, { label: "Close", size: "sm", onClick: () => setSettingsOpen(false), variant: "outline", colorScheme: "red" }), _jsx(Button, { label: "Save", size: "sm", onClick: handleSave })] })] })] })] }));
79
73
  };
80
74
  export default TableSettings;
@@ -0,0 +1,13 @@
1
+ import { createContext, useContext, useMemo } from "react";
2
+ import { useCustomTheme } from "../../../Theme/useCustomTheme.js";
3
+ import { isDarkCanvas } from "../../../Theme/tokens/builders/accentText.js";
4
+ import { classicPreset } from "./classic.js";
5
+ const TableVariantContext = createContext(null);
6
+ export const TableVariantProvider = TableVariantContext.Provider;
7
+ /** No provider means the table as it always was — the default is a variant, not a gap. */
8
+ export function useTableVariant() {
9
+ const provided = useContext(TableVariantContext);
10
+ const theme = useCustomTheme();
11
+ const isDark = isDarkCanvas(theme.colors.backgroundColor.main);
12
+ return useMemo(() => provided !== null && provided !== void 0 ? provided : classicPreset(theme.colors, isDark), [provided, theme.colors, isDark]);
13
+ }
@@ -0,0 +1,43 @@
1
+ import { accentTextOnCanvas } from "../../../Theme/tokens/builders/accentText.js";
2
+ import { getTableRowHoverStyle } from "../components/tableRowHoverStyle.js";
3
+ /**
4
+ * The table as it shipped. Pinned by snapshot: every value here is read off the
5
+ * live component, so adding a variant cannot move it.
6
+ */
7
+ export const classicPreset = (colors, isDark) => {
8
+ const headerBg = colors.table.hover[200];
9
+ return {
10
+ header: {
11
+ bg: headerBg,
12
+ ink: accentTextOnCanvas(colors.secondary, headerBg),
13
+ fontSize: 13,
14
+ fontWeight: 600,
15
+ textTransform: "capitalize",
16
+ letterSpacing: "normal",
17
+ height: "45px",
18
+ ruleColor: colors.boxborder[200],
19
+ showColumnRule: true,
20
+ actions: "always",
21
+ },
22
+ row: {
23
+ hoverBg: getTableRowHoverStyle(colors, isDark).backgroundColor,
24
+ hoverScope: "cell",
25
+ ruleColor: colors.boxborder[200],
26
+ frozenRuleColor: colors.boxborder[300],
27
+ selectedBg: colors.primary.opacity[16],
28
+ selectedBarColor: colors.primary[500],
29
+ showSelectedBar: false,
30
+ },
31
+ slot: {
32
+ width: "6",
33
+ rest: "checkbox",
34
+ indexInk: colors.textMuted,
35
+ centered: false,
36
+ },
37
+ cells: {
38
+ ink: colors.text[500],
39
+ statusFill: "bleed",
40
+ pillRadius: "0",
41
+ },
42
+ };
43
+ };
@@ -0,0 +1,9 @@
1
+ import { classicPreset } from "./classic.js";
2
+ import { studioPreset } from "./studio.js";
3
+ /** Adding a variant is one file and one union member — no component changes. */
4
+ export const TABLE_VARIANTS = {
5
+ classic: classicPreset,
6
+ studio: studioPreset,
7
+ };
8
+ export * from "./tokens.js";
9
+ export { classicPreset, studioPreset };
@@ -0,0 +1,18 @@
1
+ import { AA_NORMAL_TEXT } from "../../../Theme/tokens/builders/accentText.js";
2
+ import { compositeOver } from "../../../Theme/tokens/builders/color.js";
3
+ import { liftToContrast } from "../../../Theme/tokens/builders/outlineRung.js";
4
+ const cache = new Map();
5
+ /**
6
+ * A consumer `statusColors` hex is a FILL, and `pickTableColor` hands it straight back as ink
7
+ * over a 13%-alpha tint of itself — legible reversed out of a solid cell, ~1.9:1 on a pill.
8
+ * The palette path is already resolved by `resolveStatusTone`; this rescues the override path.
9
+ */
10
+ export function resolvePillInk(ink, soft, surface) {
11
+ const key = `${ink}|${soft}|${surface}`;
12
+ const hit = cache.get(key);
13
+ if (hit !== undefined)
14
+ return hit;
15
+ const resolved = liftToContrast(ink, compositeOver(soft, surface), AA_NORMAL_TEXT);
16
+ cache.set(key, resolved);
17
+ return resolved;
18
+ }
@@ -0,0 +1,46 @@
1
+ import { CHROME_RULE, MIN_PERCEPTIBLE_STEP, liftToContrast, } from "../../../Theme/tokens/builders/outlineRung.js";
2
+ import { getTableRowHoverStyle } from "../components/tableRowHoverStyle.js";
3
+ /**
4
+ * Quieter chrome, one rule instead of a grid, and a slot that rests on the row
5
+ * number. Every colour is lifted against the surface it actually sits on.
6
+ */
7
+ export const studioPreset = (colors, isDark) => {
8
+ const surface = colors.background[50];
9
+ // Studio drops the per-column rule, so the one line left has to be visible on
10
+ // every brand — `boxborder[200]` measures as low as 1.09:1 on some of them.
11
+ const rule = liftToContrast(colors.boxborder[200], surface, CHROME_RULE);
12
+ return {
13
+ header: {
14
+ bg: surface,
15
+ ink: colors.text[500],
16
+ fontSize: 11,
17
+ fontWeight: 600,
18
+ textTransform: "uppercase",
19
+ letterSpacing: "0.06em",
20
+ height: "40px",
21
+ ruleColor: rule,
22
+ showColumnRule: false,
23
+ actions: "hover",
24
+ },
25
+ row: {
26
+ hoverBg: getTableRowHoverStyle(colors, isDark).backgroundColor,
27
+ hoverScope: "row",
28
+ ruleColor: rule,
29
+ frozenRuleColor: rule,
30
+ selectedBg: liftToContrast(colors.primary[50], surface, MIN_PERCEPTIBLE_STEP),
31
+ selectedBarColor: colors.primary[500],
32
+ showSelectedBar: true,
33
+ },
34
+ slot: {
35
+ width: "3.5rem",
36
+ rest: "index",
37
+ indexInk: colors.textMuted,
38
+ centered: true,
39
+ },
40
+ cells: {
41
+ ink: colors.text[500],
42
+ statusFill: "pill",
43
+ pillRadius: "0.375rem",
44
+ },
45
+ };
46
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -163,7 +163,7 @@ const EventCard = React.memo(function EventCard({ event, index, accent, colors,
163
163
  const scale = getEventScale(colors, event.title);
164
164
  const changes = useMemo(() => parseChanges(event.changes), [event.changes]);
165
165
  const clickable = typeof onEventClick === "function";
166
- return (_jsxs(Box, { _hover: { ".timeline-add-note": { opacity: 1 } }, _focusWithin: { ".timeline-add-note": { opacity: 1 } }, children: [_jsxs(Box, { as: clickable ? "button" : undefined, type: clickable ? "button" : undefined, display: clickable ? "block" : undefined, w: clickable ? "100%" : undefined, textAlign: clickable ? "start" : undefined, position: "relative", zIndex: 1, bg: colors.background[50], border: `0.063rem solid ${colors.boxborder[300]}`, borderInlineStartWidth: accent === "left" ? "0.1875rem" : undefined, borderInlineEndWidth: accent === "right" ? "0.1875rem" : undefined, borderInlineStartColor: accent === "left" ? scale[400] : undefined, borderInlineEndColor: accent === "right" ? scale[400] : undefined, borderRadius: "xl", px: 3.5, py: 2.5, transition: "all 0.15s ease", cursor: clickable ? "pointer" : "default", onClick: clickable ? () => onEventClick(event, index) : undefined, _hover: {
166
+ return (_jsxs(Box, { _hover: { ".timeline-add-note": { opacity: 1 } }, _focusWithin: { ".timeline-add-note": { opacity: 1 } }, children: [_jsxs(Box, { as: clickable ? "button" : undefined, type: clickable ? "button" : undefined, display: clickable ? "block" : undefined, w: clickable ? "100%" : undefined, textAlign: clickable ? "start" : undefined, position: "relative", zIndex: 1, bg: colors.background[50], border: `0.063rem solid ${colors.boxborder[200]}`, borderInlineStartWidth: accent === "left" ? "0.1875rem" : undefined, borderInlineEndWidth: accent === "right" ? "0.1875rem" : undefined, borderInlineStartColor: accent === "left" ? scale[400] : undefined, borderInlineEndColor: accent === "right" ? scale[400] : undefined, borderRadius: "xl", px: 3.5, py: 2.5, transition: "all 0.15s ease", cursor: clickable ? "pointer" : "default", onClick: clickable ? () => onEventClick(event, index) : undefined, _hover: {
167
167
  borderColor: scale[300],
168
168
  boxShadow: (_a = theme.shadows) === null || _a === void 0 ? void 0 : _a.md,
169
169
  transform: clickable ? "translateY(-1px)" : undefined,
@@ -224,7 +224,7 @@ const Timeline = ({ timelineEvents, onEventClick, onAddNote, onEditNote, onDelet
224
224
  // -------------------------------------------------------------------------
225
225
  return (_jsxs(Box, { position: "relative", maxW: "60rem", mx: "auto", px: 4, py: 2, children: [_jsx(Box, { position: "absolute", left: "50%", top: "0.5rem", bottom: "0.5rem", w: "0.015rem", borderRadius: "full", bg: colors.gray[300], transform: "translateX(-50%)" }), Object.keys(groupedEvents).map((date) => {
226
226
  var _a;
227
- return (_jsxs(Box, { mb: 2, children: [_jsx(Flex, { justify: "center", mb: 5, mt: 3, position: "relative", zIndex: 2, children: _jsx(Text, { fontSize: "0.75rem", fontWeight: 600, textTransform: "uppercase", letterSpacing: "0.02em", color: colors.textMuted, bg: colors.background[50], border: `0.063rem solid ${colors.boxborder[300]}`, boxShadow: (_a = theme.shadows) === null || _a === void 0 ? void 0 : _a.xs, borderRadius: "full", px: 4, py: 1.5, whiteSpace: "nowrap", children: date }) }), groupedEvents[date].map(({ event, globalIndex }, index) => {
227
+ return (_jsxs(Box, { mb: 2, children: [_jsx(Flex, { justify: "center", mb: 5, mt: 3, position: "relative", zIndex: 2, children: _jsx(Text, { fontSize: "0.75rem", fontWeight: 600, textTransform: "uppercase", letterSpacing: "0.02em", color: colors.textMuted, bg: colors.background[50], border: `0.063rem solid ${colors.boxborder[200]}`, boxShadow: (_a = theme.shadows) === null || _a === void 0 ? void 0 : _a.xs, borderRadius: "full", px: 4, py: 1.5, whiteSpace: "nowrap", children: date }) }), groupedEvents[date].map(({ event, globalIndex }, index) => {
228
228
  var _a;
229
229
  const isLeft = index % 2 === 0;
230
230
  const scale = getEventScale(colors, event.title);
@@ -46,7 +46,7 @@ function ToastCard({ onClose, title, description, actions, isClosable, duration,
46
46
  initial: { opacity: 0, x: 24 }, animate: { opacity: 1, x: 0 }, exit: { opacity: 0, x: 24 }, transition: { duration: 0.24, ease: [0.22, 1, 0.36, 1] }, onHoverStart: () => setPaused(true), onHoverEnd: () => setPaused(false), position: "relative",
47
47
  // Surface token, not `colors.white`: `white` is a foreground token and stays
48
48
  // white in dark mode. `background[50]` is #ffffff in light, near-black in dark.
49
- bg: c.background[50], border: `0.063rem solid ${c.boxborder[300]}`, boxShadow: shadowLg !== null && shadowLg !== void 0 ? shadowLg : "lg", borderRadius: "2xl", overflow: "hidden", minW: "22.5rem", maxW: "26rem", willChange: "transform, opacity", sx: {
49
+ bg: c.background[50], border: `0.063rem solid ${c.boxborder[200]}`, boxShadow: shadowLg !== null && shadowLg !== void 0 ? shadowLg : "lg", borderRadius: "2xl", overflow: "hidden", minW: "22.5rem", maxW: "26rem", willChange: "transform, opacity", sx: {
50
50
  transition: "box-shadow 0.18s ease",
51
51
  _hover: { boxShadow: "xl" },
52
52
  }, children: [_jsxs(Flex, { p: 3.5, gap: 3, align: actions ? "flex-start" : "center", children: [_jsx(Flex, { align: "center", justify: "center", boxSize: "2rem", minW: "2rem", borderRadius: "full", bg: tone.bg, color: tone.fg, sx: {
@@ -3,7 +3,7 @@ import { Box, Thead, Table, Tr, Th, Tbody, Td, Checkbox, } from "@chakra-ui/reac
3
3
  import { useCustomTheme } from "../../Theme/useCustomTheme.js";
4
4
  const TrailWorks = () => {
5
5
  const { colors } = useCustomTheme();
6
- const cellBorder = colors.border[500];
6
+ const cellBorder = colors.boxborder[200];
7
7
  const data = [
8
8
  {
9
9
  contact: "John Doe",
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { Box, Flex, Spinner, Text } from "@chakra-ui/react";
3
3
  import { Sparkles } from "lucide-react";
4
4
  import { useCustomTheme } from "../../Theme/useCustomTheme.js";
5
- import { onGradient } from "../../Theme/tokens/builders/accentText.js";
5
+ import { resolveGradient } from "../../Theme/tokens/builders/gradientInk.js";
6
6
  import { contrastRatio } from "../../Theme/tokens/builders/color.js";
7
7
  import { AA_NON_TEXT } from "../../Theme/tokens/builders/outlineRung.js";
8
8
  /** The brand's gold sparkle accent, kept only where it clears 3:1 on the button's own fill. */
@@ -33,10 +33,10 @@ const UpgradeButton = ({ label, mobileLabel, subtitle, icon = Sparkles, iconColo
33
33
  danger: { from: c.semantic.error[400], to: c.semantic.error[600] },
34
34
  info: { from: c.semantic.info[400], to: c.semantic.info[600] },
35
35
  };
36
- const resolved = gradient !== null && gradient !== void 0 ? gradient : variantGradient[variant];
37
36
  // `iconColor`'s gold default fails AA as body text against this gradient (measured ~1.4-3.3
38
37
  // across brands) — the label/subtitle share this computed ink instead.
39
- const ink = onGradient(resolved.from, resolved.to, c.white, c.black);
38
+ const resolved = resolveGradient(gradient !== null && gradient !== void 0 ? gradient : variantGradient[variant], c.white, c.black);
39
+ const ink = resolved.ink;
40
40
  // The gold only clears 1.4.11's 3:1 on a DARK gradient. zinc dark inverts `primary` to a
41
41
  // near-white fill, where gold-on-near-white measures ~1.3:1 and the icon vanishes, so fall
42
42
  // back to the label's ink whenever the gold misses either stop.
@@ -1,7 +1,8 @@
1
+ import { SCROLLBAR_WIDTH } from "../Theme/tokens/builders/scrollbar.js";
1
2
  export const HEADER_HEIGHT = "4.3rem";
2
3
  export const FlexCss = {
3
4
  "&::-webkit-scrollbar": {
4
- width: "0.188rem",
5
+ width: SCROLLBAR_WIDTH,
5
6
  },
6
7
  "&::-webkit-scrollbar-track": {
7
8
  background: "transparent",
@@ -16,7 +17,7 @@ export const FlexCss = {
16
17
  };
17
18
  export const cssForScrollBar = (theme) => ({
18
19
  "&::-webkit-scrollbar": {
19
- width: "0.125rem",
20
+ width: SCROLLBAR_WIDTH,
20
21
  },
21
22
  "&::-webkit-scrollbar-track": {
22
23
  background: theme.colors.sidebar.background[500],
@@ -1,5 +1,6 @@
1
1
  import { createMultiStyleConfigHelpers, cssVar } from "@chakra-ui/react";
2
2
  import { menuAnatomy } from "@chakra-ui/anatomy";
3
+ import { paletteOf } from "./paletteFromTheme.js";
3
4
  const { defineMultiStyleConfig, definePartsStyle } = createMultiStyleConfigHelpers(menuAnatomy.keys);
4
5
  const $bg = cssVar("menu-bg");
5
6
  /**
@@ -19,14 +20,19 @@ const $bg = cssVar("menu-bg");
19
20
  */
20
21
  const $itemBg = cssVar("menu-item-bg");
21
22
  const baseStyle = definePartsStyle(({ theme }) => {
22
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y;
23
- 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";
24
- 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";
23
+ const colors = paletteOf(theme);
24
+ const hoverBg = colors.primary.opacity[8];
25
+ const activeBg = colors.primary.opacity[16];
25
26
  return {
26
27
  list: {
27
- [$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",
28
+ [$bg.variable]: colors.backgroundColor.light,
28
29
  bg: $bg.reference,
29
- 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",
30
+ color: colors.text[900],
31
+ // A rule at CHROME_RULE weight, not Chakra's gray.200: that default read as a hard edge,
32
+ // which is why this shipped borderless. At 1.31:1 the edge defines the surface instead.
33
+ borderWidth: "1px",
34
+ borderStyle: "solid",
35
+ borderColor: colors.boxborder[200],
30
36
  },
31
37
  // Own CSS var (`--menu-item-bg`), NOT the list's `--menu-bg` — Chakra's stock item
32
38
  // baseStyle rewrites `--menu-bg` itself on hover/focus, so reusing that same var name
@@ -1,5 +1,6 @@
1
1
  import { createMultiStyleConfigHelpers, cssVar } from "@chakra-ui/react";
2
2
  import { popoverAnatomy } from "@chakra-ui/anatomy";
3
+ import { paletteOf } from "./paletteFromTheme.js";
3
4
  const { defineMultiStyleConfig, definePartsStyle } = createMultiStyleConfigHelpers(popoverAnatomy.keys);
4
5
  const $popperBg = cssVar("popper-bg");
5
6
  const $arrowShadowColor = cssVar("popper-arrow-shadow-color");
@@ -12,15 +13,19 @@ const $arrowShadowColor = cssVar("popper-arrow-shadow-color");
12
13
  * fixing `$popperBg` here fixes the arrow fill too.
13
14
  */
14
15
  const baseStyle = definePartsStyle(({ theme }) => {
15
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
16
- return ({
16
+ const colors = paletteOf(theme);
17
+ return {
17
18
  content: {
18
- [$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",
19
+ [$popperBg.variable]: colors.backgroundColor.light,
19
20
  bg: $popperBg.reference,
20
- [$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",
21
- 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",
21
+ [$arrowShadowColor.variable]: colors.boxborder[200],
22
+ color: colors.text[900],
23
+ // Matches Menu: a CHROME_RULE-weight edge, not Chakra's gray.200 hard edge.
24
+ borderWidth: "1px",
25
+ borderStyle: "solid",
26
+ borderColor: colors.boxborder[200],
22
27
  },
23
- });
28
+ };
24
29
  });
25
30
  export const Popover = defineMultiStyleConfig({
26
31
  baseStyle,
@@ -1,5 +1,6 @@
1
1
  import { createMultiStyleConfigHelpers, cssVar } from "@chakra-ui/react";
2
2
  import { switchAnatomy } from "@chakra-ui/anatomy";
3
+ import { paletteOf } from "./paletteFromTheme.js";
3
4
  const { defineMultiStyleConfig, definePartsStyle } = createMultiStyleConfigHelpers(switchAnatomy.keys);
4
5
  const $thumbBg = cssVar("switch-thumb-bg");
5
6
  /**
@@ -7,15 +8,12 @@ const $thumbBg = cssVar("switch-thumb-bg");
7
8
  * `_dark` gate at all, so every bare `<Switch>` renders a literal white knob on the dark canvas
8
9
  * regardless of mode.
9
10
  */
10
- const baseStyle = definePartsStyle(({ theme }) => {
11
- var _a, _b, _c, _d, _e, _f;
12
- return ({
13
- thumb: {
14
- [$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",
15
- bg: $thumbBg.reference,
16
- },
17
- });
18
- });
11
+ const baseStyle = definePartsStyle(({ theme }) => ({
12
+ thumb: {
13
+ [$thumbBg.variable]: paletteOf(theme).backgroundColor.light,
14
+ bg: $thumbBg.reference,
15
+ },
16
+ }));
19
17
  export const Switch = defineMultiStyleConfig({
20
18
  baseStyle,
21
19
  });
@@ -3,6 +3,7 @@ import common from "./common.web.js";
3
3
  import fonts from "./fonts.web.js";
4
4
  import { componentStyles } from "./componentStyles.js";
5
5
  import { onFilled } from "../tokens/builders/accentText.js";
6
+ import { globalScrollbarStyles } from "../tokens/builders/scrollbar.js";
6
7
  /**
7
8
  * Builds a Chakra theme from a pure brand palette.
8
9
  *
@@ -83,22 +84,8 @@ export const createBrandTheme = (palette, options = {}) => {
83
84
  color: onFilled(palette.primary[500], palette.white, palette.black),
84
85
  },
85
86
  // `color-scheme: dark` gives WebKit/Blink a dark scrollbar by default, but it's the
86
- // OS's generic dark gray, not brand-aware — style it explicitly so it matches the
87
- // canvas instead of floating as a mismatched gray bar.
88
- "::-webkit-scrollbar": {
89
- width: "10px",
90
- height: "10px",
91
- },
92
- "::-webkit-scrollbar-track": {
93
- background: palette.backgroundColor.main,
94
- },
95
- "::-webkit-scrollbar-thumb": {
96
- background: palette.gray[600],
97
- borderRadius: "6px",
98
- },
99
- "::-webkit-scrollbar-thumb:hover": {
100
- background: palette.gray[500],
101
- },
87
+ // OS's generic dark gray, not brand-aware.
88
+ ...globalScrollbarStyles(palette),
102
89
  // Chrome/Edge autofill paints its own opaque yellow/white fill behind the input
103
90
  // text via `-webkit-box-shadow` (not `background`), so a plain `bg` override never
104
91
  // reaches it — a bright light box survives on every dark autofilled field unless