ingred-ui 17.2.0 → 17.3.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.
@@ -1,6 +1,4 @@
1
- export declare const Container: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
2
- expanded: boolean;
3
- }, never>;
1
+ export declare const Container: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
4
2
  export declare const AccordionTitle: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("../Flex").FlexProps & {
5
3
  expanded: boolean;
6
4
  disabled?: boolean | undefined;
@@ -2,11 +2,11 @@ import * as React from "react";
2
2
  import { IconName } from "../Icon/Icon";
3
3
  type ColorProp = "primary" | "warning";
4
4
  export type ActionButtonProps = React.ComponentPropsWithoutRef<"button"> & {
5
- icon: IconName;
5
+ icon?: IconName;
6
6
  color?: ColorProp;
7
7
  };
8
8
  declare const ActionButton: React.ForwardRefExoticComponent<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "key" | keyof React.ButtonHTMLAttributes<HTMLButtonElement>> & {
9
- icon: IconName;
9
+ icon?: IconName | undefined;
10
10
  color?: ColorProp | undefined;
11
11
  } & React.RefAttributes<HTMLButtonElement>>;
12
12
  export default ActionButton;
@@ -4,7 +4,7 @@ import { ActionButtonProps } from "./ActionButton";
4
4
  declare const _default: {
5
5
  title: string;
6
6
  component: React.ForwardRefExoticComponent<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "key" | keyof React.ButtonHTMLAttributes<HTMLButtonElement>> & {
7
- icon: import("..").IconName;
7
+ icon?: import("..").IconName | undefined;
8
8
  color?: ("primary" | "warning") | undefined;
9
9
  } & React.RefAttributes<HTMLButtonElement>>;
10
10
  args: {
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
2
  export declare const ActionButton: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Pick<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "key" | keyof import("react").ButtonHTMLAttributes<HTMLButtonElement>> & {
3
- icon: import("..").IconName;
3
+ icon?: import("..").IconName | undefined;
4
4
  color?: ("primary" | "warning") | undefined;
5
5
  } & import("react").RefAttributes<HTMLButtonElement>>, import("styled-components").DefaultTheme, {}, never>;