@ambuj.bhaskar/react-component-library 0.10.7 → 0.10.8

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
@@ -86,6 +86,7 @@ export declare type CompactEventCardPropsType = {
86
86
  data: EventType;
87
87
  className?: string;
88
88
  isFocused?: boolean;
89
+ borderColor?: Color;
89
90
  focusedBorderColor?: Color;
90
91
  focusedBorderThickness?: CSSstring;
91
92
  width?: CSSstring;
@@ -149,6 +150,8 @@ export declare type DateRangePickerProps = {
149
150
 
150
151
  declare type DateTimeFormat = string;
151
152
 
153
+ export declare const DEFAULT_PALETTE: Theme;
154
+
152
155
  export declare const DetectionCarousel: React.FC<DetectionCarouselProps>;
153
156
 
154
157
  export declare type DetectionCarouselProps = {
@@ -427,15 +430,16 @@ export declare type Theme = Partial<{
427
430
  };
428
431
  }> & UnknownObject;
429
432
 
430
- declare type ThemeObject = {
433
+ export declare type ThemeObject = {
431
434
  name?: string;
432
435
  palette: Theme;
433
436
  };
434
437
 
435
- export declare const ThemeProvider: ({ theme, children }: ThemeProviderProps) => JSX_2.Element;
438
+ export declare const ThemeProvider: ({ theme, log, children }: ThemeProviderProps) => JSX_2.Element;
436
439
 
437
- declare type ThemeProviderProps = {
440
+ export declare type ThemeProviderProps = {
438
441
  theme: ThemeObject;
442
+ log?: boolean;
439
443
  children: ReactNode;
440
444
  };
441
445