@frybynite/image-cloud 0.4.0 → 0.4.2

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
@@ -349,7 +349,7 @@ export declare class EntryAnimationEngine {
349
349
  /**
350
350
  * Get animation parameters for an image
351
351
  */
352
- getAnimationParams(imageIndex: number): AnimationParams;
352
+ getAnimationParams(_imageIndex: number): AnimationParams;
353
353
  /**
354
354
  * Build a CSS transform string for the start position
355
355
  * Uses pixel-based centering offset for reliable cross-browser behavior
@@ -385,7 +385,6 @@ export declare class EntryAnimationEngine {
385
385
  */
386
386
  getTiming(): {
387
387
  duration: number;
388
- stagger: number;
389
388
  };
390
389
  /**
391
390
  * Get the rotation configuration
@@ -515,7 +514,6 @@ declare type EntryStartPosition = 'nearest-edge' | 'top' | 'bottom' | 'left' | '
515
514
 
516
515
  declare interface EntryTimingConfig {
517
516
  duration: number;
518
- stagger: number;
519
517
  }
520
518
 
521
519
  declare interface FilterConfig {
@@ -1237,7 +1235,6 @@ export declare interface SharedLoaderConfig {
1237
1235
  validateUrls?: boolean;
1238
1236
  validationTimeout?: number;
1239
1237
  validationMethod?: 'head' | 'simple' | 'none';
1240
- failOnAllMissing?: boolean;
1241
1238
  allowedExtensions?: string[];
1242
1239
  }
1243
1240
 
@@ -1402,7 +1399,6 @@ export declare interface StaticLoaderInnerConfig {
1402
1399
  validateUrls?: boolean;
1403
1400
  validationTimeout?: number;
1404
1401
  validationMethod?: 'head' | 'simple' | 'none';
1405
- failOnAllMissing?: boolean;
1406
1402
  allowedExtensions?: string[];
1407
1403
  debugLogging?: boolean;
1408
1404
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frybynite/image-cloud",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "description": "Javascript/TypeScript image cloud library with custom loaders, various layouts, full images styling, with animation and zoom effects",
5
5
  "type": "module",
6
6
  "main": "./dist/image-cloud.umd.js",
@@ -8,9 +8,9 @@
8
8
  "types": "./dist/index.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
+ "types": "./dist/index.d.ts",
11
12
  "import": "./dist/image-cloud.js",
12
- "require": "./dist/image-cloud.umd.js",
13
- "types": "./dist/index.d.ts"
13
+ "require": "./dist/image-cloud.umd.js"
14
14
  },
15
15
  "./style.css": "./dist/style.css",
16
16
  "./auto-init": "./dist/image-cloud-auto-init.js"
@@ -64,7 +64,7 @@
64
64
  "devDependencies": {
65
65
  "@playwright/test": "^1.57.0",
66
66
  "typescript": "^5.3.3",
67
- "vite": "^5.0.11",
68
- "vite-plugin-dts": "^3.7.1"
67
+ "vite": "^7.3.1",
68
+ "vite-plugin-dts": "^4.5.4"
69
69
  }
70
70
  }