@ambuj.bhaskar/react-component-library 0.10.3 → 0.10.5

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.
package/dist/index.d.ts CHANGED
@@ -8,10 +8,10 @@ import { TimeRangePickerProps } from 'antd';
8
8
 
9
9
  declare type BlobType = {
10
10
  detection?: {
11
- image: string;
11
+ image?: string;
12
12
  };
13
13
  match?: {
14
- image: string;
14
+ image?: string;
15
15
  };
16
16
  attributes?: {
17
17
  [key: string]: string;
@@ -85,8 +85,9 @@ export declare const CompactEventCard: React.FC<CompactEventCardPropsType>;
85
85
  export declare type CompactEventCardPropsType = {
86
86
  data: EventType;
87
87
  className?: string;
88
- focusedClassName?: string;
89
88
  isFocused?: boolean;
89
+ focusedBorderColor?: Color;
90
+ focusedBorderThickness?: CSSstring;
90
91
  width?: CSSstring;
91
92
  height?: CSSstring;
92
93
  };
@@ -177,7 +178,8 @@ declare type EventType = {
177
178
  timeStamp: Date;
178
179
  color: Color;
179
180
  blobs: BlobType[];
180
- appName: string;
181
+ appName?: string;
182
+ icon?: string;
181
183
  };
182
184
 
183
185
  declare type HTMLButtonProps = ComponentProps<"button">;
@@ -391,7 +393,7 @@ export declare type SwitchProps = {
391
393
 
392
394
  declare type TextSize = "xs" | "s" | "m" | "l" | "xl";
393
395
 
394
- declare type Theme = Partial<{
396
+ export declare type Theme = Partial<{
395
397
  common: {
396
398
  primary?: string;
397
399
  secondary?: string;