ingred-ui 9.3.2 → 9.4.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,5 +1,5 @@
1
1
  import * as React from "react";
2
- export declare type IconName = "dashboard" | "bar_chart" | "bar_chart_framed" | "line_chart_framed" | "multi_line_chart_framed" | "logout" | "setting" | "arrow_bottom" | "arrow_left" | "arrow_right" | "pencil" | "delete_bin" | "close" | "forbid" | "check" | "eye" | "eye_off" | "exclamation" | "arrow_double_left" | "arrow_double_right" | "question" | "zoom_in" | "sort_up" | "sort_down" | "sort_inactive" | "folder" | "folder_open" | "return_line" | "link" | "unlink" | "no_link" | "search" | "import" | "export" | "add_line" | "more" | "more_vert" | "date_range" | "external_link" | "desktop" | "mobile" | "desktop_mobile" | "copy" | "truck" | "camera_movie" | "code_file" | "cart_secure" | "profile" | "auction" | "mail" | "mail_open" | "filter" | "notification" | "user_settings" | "company_settings" | "heart_pulse" | "checkbox_circle" | "alart" | "base_station" | "braille" | "label" | "download_cloud" | "save" | "close_circle";
2
+ export declare type IconName = "dashboard" | "bar_chart" | "bar_chart_framed" | "line_chart_framed" | "multi_line_chart_framed" | "logout" | "setting" | "arrow_bottom" | "arrow_left" | "arrow_right" | "pencil" | "delete_bin" | "close" | "forbid" | "check" | "eye" | "eye_off" | "exclamation" | "arrow_double_left" | "arrow_double_right" | "question" | "zoom_in" | "sort_up" | "sort_down" | "sort_inactive" | "folder" | "folder_open" | "return_line" | "link" | "unlink" | "no_link" | "search" | "import" | "export" | "add_line" | "more" | "more_vert" | "date_range" | "external_link" | "desktop" | "mobile" | "desktop_mobile" | "copy" | "truck" | "camera_movie" | "code_file" | "cart_secure" | "profile" | "auction" | "mail" | "mail_open" | "filter" | "notification" | "user_settings" | "company_settings" | "heart_pulse" | "checkbox_circle" | "alart" | "base_station" | "braille" | "label" | "download_cloud" | "save" | "close_circle" | "bid_strap" | "fluct" | "data_strap";
3
3
  declare type IconType = "fill" | "line";
4
4
  declare type IconColor = IconType | "active" | string;
5
5
  declare type IconSize = "sm" | "md" | "lg";
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import { IconProps } from "../../Icon";
3
+ declare const BidStrapIcon: React.FunctionComponent<IconProps>;
4
+ export { BidStrapIcon };
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import { IconProps } from "../../Icon";
3
+ declare const DataStrapIcon: React.FunctionComponent<IconProps>;
4
+ export { DataStrapIcon };
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import { IconProps } from "../../Icon";
3
+ declare const FluctIcon: React.FunctionComponent<IconProps>;
4
+ export { FluctIcon };
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { ClearIndicatorProps, GroupBase } from "react-select";
3
2
  import { OptionType } from "../../";
4
3
  declare const ClearIndicator: <T>(props: ClearIndicatorProps<OptionType<T>, boolean, GroupBase<OptionType<T>>>) => JSX.Element;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  declare const DropdownIndicator: ({ isDisabled, error, ...rest }: any) => JSX.Element;
3
2
  export { DropdownIndicator };
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { GroupBase } from "react-select";
3
2
  import { OptionType } from "../../";
4
3
  import { MultiValueRemoveProps } from "react-select/dist/declarations/src/components/MultiValue";
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const ToastContainer: import("styled-components").StyledComponent<({ hasToasts, placement, ...props }: import("../../../../../lib/react-toast-notification/src").ToastContainerProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;