@yahoo/uds 3.108.1 → 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.
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +1 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.ts +1 -1
- package/dist/components/experimental/Table.cjs +2 -2
- package/dist/components/experimental/Table.js +2 -2
- package/dist/config/dist/index.cjs +3842 -642
- package/dist/config/dist/index.js +3842 -642
- package/dist/index.cjs +4 -0
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +2 -1
- package/dist/styles/styler.d.cts +46 -46
- package/dist/styles/styler.d.ts +46 -46
- package/dist/tailwind/dist/tailwind/plugins/getTailwindAsUdsColors.cjs +16 -11
- package/dist/tailwind/dist/tailwind/plugins/getTailwindAsUdsColors.js +16 -11
- package/dist/tailwind/dist/tailwind/utils/getFontStyles.d.cts +1 -1
- package/dist/tailwind/dist/tailwind/utils/getFontStyles.d.ts +1 -1
- package/dist/tailwind/dist/utils/parseTokens.cjs +6 -1
- package/dist/tailwind/dist/utils/parseTokens.js +6 -1
- package/dist/tokens/index.cjs +4 -0
- package/dist/tokens/index.d.cts +3 -2
- package/dist/tokens/index.d.ts +3 -2
- package/dist/tokens/index.js +2 -1
- package/dist/tokens/types.d.cts +2 -2
- package/dist/tokens/types.d.ts +2 -2
- package/dist/tokens/utils/spectrum.cjs +72 -0
- package/dist/tokens/utils/spectrum.d.cts +37 -0
- package/dist/tokens/utils/spectrum.d.ts +37 -0
- package/dist/tokens/utils/spectrum.js +68 -0
- package/dist/types/dist/index.d.cts +11 -2
- package/dist/types/dist/index.d.ts +11 -2
- package/dist/uds/generated/componentData.cjs +2 -4
- package/dist/uds/generated/componentData.js +2 -4
- package/dist/uds/package.cjs +1 -1
- package/dist/uds/package.js +1 -1
- package/package.json +2 -2
- package/dist/tailwind/dist/tailwind/utils/flattenColorPalette.cjs +0 -8
- package/dist/tailwind/dist/tailwind/utils/flattenColorPalette.js +0 -7
- package/dist/tokens/configs/spectrum.cjs +0 -732
- package/dist/tokens/configs/spectrum.d.cts +0 -9
- package/dist/tokens/configs/spectrum.d.ts +0 -9
- package/dist/tokens/configs/spectrum.js +0 -729
|
@@ -88,6 +88,6 @@ interface MenuItemCheckboxProps extends Omit<PressableProps, 'asChild'>, HtmlBut
|
|
|
88
88
|
*
|
|
89
89
|
* @related [Menu](https://uds.build/docs/components/menu), [Menu.Item](https://uds.build/docs/components/menu-item)
|
|
90
90
|
**/
|
|
91
|
-
declare const MenuItemCheckbox: react.ForwardRefExoticComponent<Omit<MenuItemCheckboxProps, "
|
|
91
|
+
declare const MenuItemCheckbox: react.ForwardRefExoticComponent<Omit<MenuItemCheckboxProps, "active" | "hideEndIcon" | "rootProps"> & react.RefAttributes<HTMLDivElement>>;
|
|
92
92
|
//#endregion
|
|
93
93
|
export { MenuItemCheckbox, type MenuItemCheckboxProps };
|
|
@@ -88,6 +88,6 @@ interface MenuItemCheckboxProps extends Omit<PressableProps, 'asChild'>, HtmlBut
|
|
|
88
88
|
*
|
|
89
89
|
* @related [Menu](https://uds.build/docs/components/menu), [Menu.Item](https://uds.build/docs/components/menu-item)
|
|
90
90
|
**/
|
|
91
|
-
declare const MenuItemCheckbox: react.ForwardRefExoticComponent<Omit<MenuItemCheckboxProps, "
|
|
91
|
+
declare const MenuItemCheckbox: react.ForwardRefExoticComponent<Omit<MenuItemCheckboxProps, "active" | "hideEndIcon" | "rootProps"> & react.RefAttributes<HTMLDivElement>>;
|
|
92
92
|
//#endregion
|
|
93
93
|
export { MenuItemCheckbox, type MenuItemCheckboxProps };
|
|
@@ -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
|
|
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
|
|
73
|
+
borderBottomWidth,
|
|
74
74
|
className: classNames,
|
|
75
75
|
children: /* @__PURE__ */ jsx(asHeaderCell ? "th" : "td", {
|
|
76
76
|
scope: asHeaderCell === "row" ? "row" : asHeaderCell ? "column" : void 0,
|