gantri-components 2.232.0 → 2.233.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.
@@ -3,12 +3,13 @@
3
3
  import { CSSProperties } from 'styled-components';
4
4
  import { ColorPickerVariant } from '../../color-picker.types';
5
5
  import { ProductColorCode } from '../../../../styles/theme';
6
- export declare const StyledColorOutline: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
6
+ interface StyledColorOutlineProps {
7
7
  $isClickable: boolean;
8
- $selected?: boolean | undefined;
8
+ $selected?: boolean;
9
9
  $size?: CSSProperties['width'];
10
- $variant?: ColorPickerVariant | undefined;
11
- }>> & string;
10
+ $variant?: ColorPickerVariant;
11
+ }
12
+ export declare const StyledColorOutline: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledColorOutlineProps>> & string;
12
13
  export declare const StyledColor: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react-spring").AnimatedProps<{
13
14
  key?: import("react").Key | null | undefined;
14
15
  hidden?: boolean | undefined;
@@ -1130,3 +1131,4 @@ export declare const StyledColor: import("styled-components/dist/types").IStyled
1130
1131
  }, {
1131
1132
  color: ProductColorCode;
1132
1133
  }>> & string & Omit<import("react-spring").AnimatedComponent<"span">, keyof import("react").Component<any, {}, any>>;
1134
+ export {};