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/frontend/package.json +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/react-bricks.d.ts +10 -0
- package/react-bricks.esm.js +1 -1
package/package.json
CHANGED
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;
|