@yahoo/uds 3.108.2 → 3.109.0

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 (37) hide show
  1. package/dist/components/experimental/Table.cjs +2 -2
  2. package/dist/components/experimental/Table.js +2 -2
  3. package/dist/config/dist/index.cjs +3842 -642
  4. package/dist/config/dist/index.js +3842 -642
  5. package/dist/index.cjs +4 -0
  6. package/dist/index.d.cts +3 -2
  7. package/dist/index.d.ts +3 -2
  8. package/dist/index.js +2 -1
  9. package/dist/styles/styler.d.cts +21 -21
  10. package/dist/styles/styler.d.ts +21 -21
  11. package/dist/tailwind/dist/tailwind/plugins/getTailwindAsUdsColors.cjs +16 -11
  12. package/dist/tailwind/dist/tailwind/plugins/getTailwindAsUdsColors.js +16 -11
  13. package/dist/tailwind/dist/tailwind/utils/getFontStyles.d.cts +1 -1
  14. package/dist/tailwind/dist/tailwind/utils/getFontStyles.d.ts +1 -1
  15. package/dist/tailwind/dist/utils/parseTokens.cjs +6 -1
  16. package/dist/tailwind/dist/utils/parseTokens.js +6 -1
  17. package/dist/tokens/index.cjs +4 -0
  18. package/dist/tokens/index.d.cts +3 -2
  19. package/dist/tokens/index.d.ts +3 -2
  20. package/dist/tokens/index.js +2 -1
  21. package/dist/tokens/types.d.cts +2 -2
  22. package/dist/tokens/types.d.ts +2 -2
  23. package/dist/tokens/utils/spectrum.cjs +72 -0
  24. package/dist/tokens/utils/spectrum.d.cts +37 -0
  25. package/dist/tokens/utils/spectrum.d.ts +37 -0
  26. package/dist/tokens/utils/spectrum.js +68 -0
  27. package/dist/types/dist/index.d.cts +11 -2
  28. package/dist/types/dist/index.d.ts +11 -2
  29. package/dist/uds/generated/componentData.cjs +2 -4
  30. package/dist/uds/generated/componentData.js +2 -4
  31. package/package.json +1 -1
  32. package/dist/tailwind/dist/tailwind/utils/flattenColorPalette.cjs +0 -8
  33. package/dist/tailwind/dist/tailwind/utils/flattenColorPalette.js +0 -7
  34. package/dist/tokens/configs/spectrum.cjs +0 -732
  35. package/dist/tokens/configs/spectrum.d.cts +0 -9
  36. package/dist/tokens/configs/spectrum.d.ts +0 -9
  37. package/dist/tokens/configs/spectrum.js +0 -729
@@ -61,7 +61,7 @@ const TableBody = (0, react.forwardRef)(function TableBody({ children, display =
61
61
  });
62
62
  });
63
63
  TableBody.displayName = "TableBody";
64
- const TableCell = (0, react.forwardRef)(function TableCell({ asHeaderCell, className, display = "table-cell", spacing = "3", borderBottomColor = "muted", color = "primary", ...props }, ref) {
64
+ const TableCell = (0, react.forwardRef)(function TableCell({ asHeaderCell, className, display = "table-cell", spacing = "3", borderBottomColor = "muted", borderBottomWidth = "thin", color = "primary", ...props }, ref) {
65
65
  const classNames = require_styles_styler.getStyles({
66
66
  textAlign: "start",
67
67
  className
@@ -73,7 +73,7 @@ const TableCell = (0, react.forwardRef)(function TableCell({ asHeaderCell, class
73
73
  display,
74
74
  spacing,
75
75
  borderBottomColor,
76
- borderBottomWidth: "thin",
76
+ borderBottomWidth,
77
77
  className: classNames,
78
78
  children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(asHeaderCell ? "th" : "td", {
79
79
  scope: asHeaderCell === "row" ? "row" : asHeaderCell ? "column" : void 0,
@@ -58,7 +58,7 @@ const TableBody = forwardRef(function TableBody({ children, display = "table-row
58
58
  });
59
59
  });
60
60
  TableBody.displayName = "TableBody";
61
- const TableCell = forwardRef(function TableCell({ asHeaderCell, className, display = "table-cell", spacing = "3", borderBottomColor = "muted", color = "primary", ...props }, ref) {
61
+ const TableCell = forwardRef(function TableCell({ asHeaderCell, className, display = "table-cell", spacing = "3", borderBottomColor = "muted", borderBottomWidth = "thin", color = "primary", ...props }, ref) {
62
62
  const classNames = getStyles({
63
63
  textAlign: "start",
64
64
  className
@@ -70,7 +70,7 @@ const TableCell = forwardRef(function TableCell({ asHeaderCell, className, displ
70
70
  display,
71
71
  spacing,
72
72
  borderBottomColor,
73
- borderBottomWidth: "thin",
73
+ borderBottomWidth,
74
74
  className: classNames,
75
75
  children: /* @__PURE__ */ jsx(asHeaderCell ? "th" : "td", {
76
76
  scope: asHeaderCell === "row" ? "row" : asHeaderCell ? "column" : void 0,