@foxford/ui 2.21.0 → 2.21.1-beta-969c4c3-20240320

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/dts/index.d.ts CHANGED
@@ -874,7 +874,7 @@ declare type ThemeName = 'mother' | 'baby' | 'teen' | 'adult';
874
874
 
875
875
  declare type ResponsivePropKey = 'size' | keyof CSSProperties;
876
876
  declare type ResponsiveProps<K extends ResponsivePropKey, V> = {
877
- [key in K]?: V | [desktop: V, tablet: V, mobile: V] | [xl: V, l: V, m: V, s: V, xs: V, xxs: V];
877
+ [key in K]?: V | [DESKTOP: V, TABLET: V, MOBILE: V] | [XL: V, L: V, M: V, S: V, XS: V, XXS: V];
878
878
  } & {
879
879
  [key in `${K}${Breakpoint}`]?: V;
880
880
  };