react-bricks 4.0.0-alpha.3 → 4.0.0-alpha.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-bricks",
3
- "version": "4.0.0-alpha.3",
3
+ "version": "4.0.0-alpha.4",
4
4
  "description": "React Bricks is a CMS with visual editing based on React components for Next.js, Gatsby and Remix.",
5
5
  "keywords": [
6
6
  "react bricks",
package/react-bricks.d.ts CHANGED
@@ -255,6 +255,11 @@ declare namespace types {
255
255
  lockBlocks: boolean;
256
256
  flexibleRoles: boolean;
257
257
  eventsLog: boolean;
258
+ maxFileSize: number;
259
+ maxImageSize: number;
260
+ maxFilesBatch: number;
261
+ maxFilesConcurrency: number;
262
+ diskSpace: number;
258
263
  };
259
264
  } | null;
260
265
  /**
@@ -1279,6 +1284,11 @@ declare const useAuth: () => {
1279
1284
  lockBlocks: boolean;
1280
1285
  flexibleRoles: boolean;
1281
1286
  eventsLog: boolean;
1287
+ maxFileSize: number;
1288
+ maxImageSize: number;
1289
+ maxFilesBatch: number;
1290
+ maxFilesConcurrency: number;
1291
+ diskSpace: number;
1282
1292
  };
1283
1293
  } & {
1284
1294
  authToken: string;