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 +3 -0
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/src/components/CardImage/CardImage.d.ts +1 -0
- package/dist/src/components/ImageGrid/ImageGrid.d.ts +1 -0
- package/dist/src/components/SlickCarousel/SlickCarousel.d.ts +1 -0
- package/package.json +1 -1
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;
|