@loja-integrada/admin-components 0.18.1 → 0.18.2

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,4 +1,5 @@
1
1
  /// <reference types="react" />
2
+ import { TippyProps } from '@tippyjs/react';
2
3
  import { IconProps } from '../../Icons';
3
4
  export declare type TableListItemWrapperProp = React.ComponentClass<any> | React.FunctionComponent<any>;
4
5
  export interface TableListItemProps {
@@ -34,6 +35,13 @@ export interface TableListItemProps {
34
35
  * Icon to use
35
36
  */
36
37
  icon?: IconProps['icon'];
38
+ /**
39
+ * Tooltip to use
40
+ */
41
+ tooltip?: {
42
+ message: string;
43
+ placement?: TippyProps['placement'];
44
+ };
37
45
  };
38
46
  /** Force border top at desktop even if is first item
39
47
  * @default false
@@ -21,6 +21,10 @@ export interface TimelineItemInterface {
21
21
  * Background of the current icon (className)
22
22
  */
23
23
  iconBackgroundColor?: string;
24
+ /**
25
+ * Color of the current icon (className)
26
+ */
27
+ iconColor?: string;
24
28
  /**
25
29
  * Toggle item description
26
30
  */