@frybynite/image-cloud 0.7.2 → 0.7.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.
@@ -166,6 +166,8 @@ export declare interface BouncePathConfig {
166
166
 
167
167
  export declare type BouncePreset = 'energetic' | 'playful' | 'subtle';
168
168
 
169
+ declare type ClipPathShape = 'circle' | 'square' | 'triangle' | 'pentagon' | 'hexagon' | 'octagon' | 'diamond';
170
+
169
171
  export declare interface ClusterAlgorithmConfig {
170
172
  clusterCount: number | 'auto';
171
173
  clusterSpread: number;
@@ -970,6 +972,7 @@ declare interface ImageStyleState {
970
972
  outline?: OutlineConfig;
971
973
  objectFit?: 'contain' | 'cover' | 'fill' | 'none' | 'scale-down';
972
974
  aspectRatio?: string;
975
+ clipPath?: ClipPathShape | string;
973
976
  }
974
977
 
975
978
  declare interface ImageStylingConfig {
@@ -1424,8 +1427,6 @@ export declare interface TransformParams {
1424
1427
  export declare interface UIRenderingConfig {
1425
1428
  showLoadingSpinner: boolean;
1426
1429
  showImageCounter?: boolean;
1427
- showThumbnails?: boolean;
1428
- theme?: 'light' | 'dark' | 'auto';
1429
1430
  loadingElement?: string | HTMLElement;
1430
1431
  errorElement?: string | HTMLElement;
1431
1432
  counterElement?: string | HTMLElement;