@trafilea/afrodita-components 7.27.7 → 7.27.8
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/build/index.d.ts +2 -2
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -3263,7 +3263,7 @@ interface ColorPickerWithTooltipProps {
|
|
|
3263
3263
|
numeric?: boolean;
|
|
3264
3264
|
};
|
|
3265
3265
|
translatedLabels?: Record<string, string>;
|
|
3266
|
-
colorRadioGroupProps?: ColorPickerProps$1
|
|
3266
|
+
colorRadioGroupProps?: Partial<ColorPickerProps$1>;
|
|
3267
3267
|
}
|
|
3268
3268
|
declare const ColorPickerWithTooltip: FC<ColorPickerWithTooltipProps>;
|
|
3269
3269
|
|
|
@@ -3284,7 +3284,7 @@ interface ColorPickerProps {
|
|
|
3284
3284
|
showCross?: boolean;
|
|
3285
3285
|
dimension?: ColorSelectorDimension;
|
|
3286
3286
|
translatedLabels?: Record<string, string>;
|
|
3287
|
-
colorRadioGroupProps?: ColorPickerProps$1
|
|
3287
|
+
colorRadioGroupProps?: Partial<ColorPickerProps$1>;
|
|
3288
3288
|
}
|
|
3289
3289
|
declare const SingleColorPicker: ({ options, selectedValue, label, onChange, inline, showCross, dimension, translatedLabels, colorRadioGroupProps, }: ColorPickerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3290
3290
|
|
package/package.json
CHANGED