@foxford/ui 2.0.0-beta-6aa54d7-20220701 → 2.0.0-beta-c1a6f96-20220701

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
@@ -21,7 +21,7 @@ declare type ColorCssProperty = string | ColorCalcProperty;
21
21
  declare type Color<T extends ColorPropsProperties = 'color'> = {
22
22
  [key in `${T}`]?: RGB | RGBA | HEX | keyof typeof ColorNames;
23
23
  };
24
- declare const color: (color: ColorValue, cssProperty?: ColorCssProperty) => () => (props: {
24
+ declare const color: (color?: ColorValue, cssProperty?: ColorCssProperty) => () => (props: {
25
25
  theme: DefaultTheme;
26
26
  }) => FlattenSimpleInterpolation | null;
27
27
 
@@ -317,7 +317,8 @@ interface Theme {
317
317
  [key: string]: RGB | RGBA | HEX;
318
318
  };
319
319
  borderRadius: string;
320
- textColor: string;
320
+ textColor?: string;
321
+ fallbackColor?: string;
321
322
  zIndex: {
322
323
  modal: number;
323
324
  tooltip: number;