@retaila/shared-types 1.1.111 → 1.1.112

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/index.d.mts CHANGED
@@ -2166,7 +2166,8 @@ interface ButtonStyle {
2166
2166
  backgroundColor: string;
2167
2167
  textColor: string;
2168
2168
  borderColor: string;
2169
- borderRadius: number;
2169
+ /** Number (legacy) or CSS string e.g. "6px 6px 6px 6px" */
2170
+ borderRadius: number | string;
2170
2171
  shadow: string;
2171
2172
  hoverBackgroundColor: string;
2172
2173
  hoverTextColor: string;
package/dist/index.d.ts CHANGED
@@ -2166,7 +2166,8 @@ interface ButtonStyle {
2166
2166
  backgroundColor: string;
2167
2167
  textColor: string;
2168
2168
  borderColor: string;
2169
- borderRadius: number;
2169
+ /** Number (legacy) or CSS string e.g. "6px 6px 6px 6px" */
2170
+ borderRadius: number | string;
2170
2171
  shadow: string;
2171
2172
  hoverBackgroundColor: string;
2172
2173
  hoverTextColor: string;