next-tinacms-cloudinary 4.3.5 → 4.3.7

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/LICENSE CHANGED
@@ -1,12 +1,4 @@
1
- Copyright (c) 2023-present Forestry.io Holdings Inc.
2
-
3
- Portions of the TinaCMS software are licensed as follows:
4
-
5
- * All software that resides under the "packages/@tinacms/datalayer/" and the "packages/@tinacms/graphql/" directories (the "Tina Data Layer"), is licensed under the license defined in "packages/@tinacms/datalayer/LICENSE".
6
-
7
- * All software outside of the above-mentioned directories is available under the "Apache 2.0" license as set forth below.
8
-
9
- Apache License
1
+ Apache License
10
2
  Version 2.0, January 2004
11
3
  http://www.apache.org/licenses/
12
4
 
package/dist/handlers.js CHANGED
@@ -169,14 +169,14 @@ function getCloudinaryToTinaFunc(opts) {
169
169
  directory,
170
170
  src: file[sel],
171
171
  thumbnails: {
172
- "75x75": transformCloudinaryImage(file[sel], "w_75,h_75,c_fill,q_auto"),
172
+ "75x75": transformCloudinaryImage(file[sel], "w_75,h_75,c_fit,q_auto"),
173
173
  "400x400": transformCloudinaryImage(
174
174
  file[sel],
175
- "w_400,h_400,c_fill,q_auto"
175
+ "w_400,h_400,c_fit,q_auto"
176
176
  ),
177
177
  "1000x1000": transformCloudinaryImage(
178
178
  file[sel],
179
- "w_1000,h_1000,c_fill,q_auto"
179
+ "w_1000,h_1000,c_fit,q_auto"
180
180
  )
181
181
  },
182
182
  type: "file"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-tinacms-cloudinary",
3
- "version": "4.3.5",
3
+ "version": "4.3.7",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "files": [
@@ -29,11 +29,11 @@
29
29
  "next": "12.2.4",
30
30
  "react": "17.0.2",
31
31
  "react-dom": "17.0.2",
32
- "tinacms": "1.5.20",
32
+ "tinacms": "1.5.22",
33
33
  "typescript": "4.3.5"
34
34
  },
35
35
  "peerDependencies": {
36
- "tinacms": "1.5.20"
36
+ "tinacms": "1.5.22"
37
37
  },
38
38
  "publishConfig": {
39
39
  "registry": "https://registry.npmjs.org"