@overmap-ai/blocks 1.0.36-improvements.2 → 1.0.36-improvements.4

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.
package/dist/blocks.js CHANGED
@@ -4351,7 +4351,7 @@ const SegmentedTabsList = forwardRef((props, ref) => {
4351
4351
  RadixTabs.List,
4352
4352
  {
4353
4353
  ref,
4354
- className: cx(className, segmentedTabsListCva({ size: size2 }), radiusCva({ radius, maxLarge: false })),
4354
+ className: cx(className, segmentedTabsListCva({ size: size2, variant }), radiusCva({ radius, maxLarge: false })),
4355
4355
  "data-accent-color": accentColor,
4356
4356
  ...rest,
4357
4357
  children: /* @__PURE__ */ jsx(SegmentedTabsListContext.Provider, { value: contextValue, children })
@@ -4847,7 +4847,7 @@ const tableRootCva = cva(["border-collapse text-left"], {
4847
4847
  variants: {
4848
4848
  variant: {
4849
4849
  ghost: [],
4850
- surface: ["border-1", "border-(--accent-6)", "box-border", "overflow-hidden"]
4850
+ surface: ["border-1", "border-(--accent-6)", "box-border", "overflow-hidden", "bg-(--accent-a2)"]
4851
4851
  },
4852
4852
  size: {
4853
4853
  xs: ["text-xs"],
@@ -4881,19 +4881,7 @@ const tableCellCva = cva([], {
4881
4881
  col: ["box-border", "border-x", "border-(--accent-6)"],
4882
4882
  none: []
4883
4883
  }
4884
- },
4885
- compoundVariants: [
4886
- {
4887
- variant: "surface",
4888
- cell: true,
4889
- className: ["bg-(--accent-a1)"]
4890
- },
4891
- {
4892
- variant: "surface",
4893
- cell: false,
4894
- className: ["bg-(--accent-a2)"]
4895
- }
4896
- ]
4884
+ }
4897
4885
  });
4898
4886
  const TableCell = forwardRef((props, ref) => {
4899
4887
  const { className, ...rest } = props;