@frybynite/image-cloud 0.4.0 → 0.4.1

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
@@ -1237,7 +1237,6 @@ export declare interface SharedLoaderConfig {
1237
1237
  validateUrls?: boolean;
1238
1238
  validationTimeout?: number;
1239
1239
  validationMethod?: 'head' | 'simple' | 'none';
1240
- failOnAllMissing?: boolean;
1241
1240
  allowedExtensions?: string[];
1242
1241
  }
1243
1242
 
@@ -1402,7 +1401,6 @@ export declare interface StaticLoaderInnerConfig {
1402
1401
  validateUrls?: boolean;
1403
1402
  validationTimeout?: number;
1404
1403
  validationMethod?: 'head' | 'simple' | 'none';
1405
- failOnAllMissing?: boolean;
1406
1404
  allowedExtensions?: string[];
1407
1405
  debugLogging?: boolean;
1408
1406
  }
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.1",
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
  }