@ambuj.bhaskar/react-component-library 0.10.2 → 0.10.4

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
@@ -170,14 +170,15 @@ export declare type EventPreviewProps = {
170
170
  };
171
171
 
172
172
  declare type EventType = {
173
- id: number;
173
+ id: string;
174
174
  frameUrl: string;
175
175
  severity: string;
176
176
  location: string;
177
177
  timeStamp: Date;
178
178
  color: Color;
179
179
  blobs: BlobType[];
180
- appName: string;
180
+ appName?: string;
181
+ icon?: string;
181
182
  };
182
183
 
183
184
  declare type HTMLButtonProps = ComponentProps<"button">;
@@ -391,7 +392,7 @@ export declare type SwitchProps = {
391
392
 
392
393
  declare type TextSize = "xs" | "s" | "m" | "l" | "xl";
393
394
 
394
- declare type Theme = Partial<{
395
+ export declare type Theme = Partial<{
395
396
  common: {
396
397
  primary?: string;
397
398
  secondary?: string;