searchsmartly-ui 0.0.202 → 1.0.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.
package/dist/index.d.ts CHANGED
@@ -122,6 +122,7 @@ type CardImageProps = {
122
122
  originalImage?: string;
123
123
  index: number;
124
124
  showCount?: number;
125
+ disableThumbnail: boolean;
125
126
  height?: number | string;
126
127
  };
127
128
  declare const CardImage: FC<CardImageProps>;
@@ -139,6 +140,7 @@ declare const LazyLoadImage: FC<LazyLoadImageInterface>;
139
140
  interface CarouselInterface {
140
141
  images: string[];
141
142
  disableLazyLoader?: boolean;
143
+ disableThumbnail?: boolean;
142
144
  lazyLoad?: LazyLoadTypes;
143
145
  fullSizeImages?: string[];
144
146
  id?: string;
@@ -781,6 +783,7 @@ declare const EmptyImage: FC<{
781
783
  type ImageGridProps = {
782
784
  images: string[];
783
785
  fullSizeImages: string[];
786
+ disableThumbnail?: boolean;
784
787
  gridSize: number;
785
788
  blockItemHeight: number;
786
789
  blockHeight: number;