@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.
- package/dist/image-cloud-auto-init.js +178 -163
- package/dist/image-cloud-auto-init.js.map +1 -1
- package/dist/image-cloud.js +238 -223
- package/dist/image-cloud.js.map +1 -1
- package/dist/image-cloud.umd.js +3 -3
- package/dist/image-cloud.umd.js.map +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/react.d.ts +3 -2
- package/dist/react.js +223 -208
- package/dist/react.js.map +1 -1
- package/dist/vue.d.ts +3 -2
- package/dist/vue.js +225 -210
- package/dist/vue.js.map +1 -1
- package/dist/web-component.d.ts +3 -2
- package/dist/web-component.js +172 -157
- package/dist/web-component.js.map +1 -1
- package/package.json +17 -1
package/dist/vue.d.ts
CHANGED
|
@@ -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;
|