@veeqo/ui 0.2.1 → 0.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.
@@ -8,4 +8,4 @@ export interface ClassNamesReturnPayload {
8
8
  active?: string;
9
9
  counter?: string;
10
10
  }
11
- export declare const View: ({ id, name, type, className, count, active, onClick, onDelete, onEdit, onOptions, e2eClassName, }: ViewProps) => React.JSX.Element;
11
+ export declare const View: ({ id, iconSlot, name, type, className, count, active, onClick, onDelete, onEdit, onOptions, e2eClassName, }: ViewProps) => React.JSX.Element;
@@ -10,4 +10,5 @@ declare const CounterContainer: import("styled-components").StyledComponent<"spa
10
10
  declare const IconStyling: {
11
11
  style: CSSProperties;
12
12
  };
13
+ export declare const CustomIconWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
13
14
  export { Container, Contour, Text, CounterContainer, CounterText, IconStyling };
@@ -1,3 +1,4 @@
1
+ import { ReactElement } from 'react';
1
2
  export type ViewId = string;
2
3
  export declare enum ViewTypes {
3
4
  saved = "saved",
@@ -11,6 +12,8 @@ export interface ViewProps {
11
12
  active?: boolean;
12
13
  /** View name, eg.: Jade's view */
13
14
  name: string;
15
+ /** IconSlot for passing */
16
+ iconSlot?: ReactElement;
14
17
  /** View's unique identifier */
15
18
  id: ViewId;
16
19
  /** View type */