@firecms/core 3.0.0-canary.245 → 3.0.0-canary.246
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.
|
@@ -111,7 +111,8 @@ export interface EntityCollection<M extends Record<string, any> = any, USER exte
|
|
|
111
111
|
propertiesOrder?: (Extract<keyof M, string> | string | `subcollection:${string}` | "collectionGroupParent")[];
|
|
112
112
|
/**
|
|
113
113
|
* If enabled, content is loaded in batches. If `false` all entities in the
|
|
114
|
-
* collection are loaded.
|
|
114
|
+
* collection are loaded. This means that when reaching the end of the
|
|
115
|
+
* collection, the CMS will load more entities.
|
|
115
116
|
* You can specify a number to specify the pagination size (50 by default)
|
|
116
117
|
* Defaults to `true`
|
|
117
118
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firecms/core",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.0.0-canary.
|
|
4
|
+
"version": "3.0.0-canary.246",
|
|
5
5
|
"description": "Awesome Firebase/Firestore-based headless open-source CMS",
|
|
6
6
|
"funding": {
|
|
7
7
|
"url": "https://github.com/sponsors/firecmsco"
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
"@dnd-kit/core": "^6.3.1",
|
|
54
54
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
55
55
|
"@dnd-kit/sortable": "^10.0.0",
|
|
56
|
-
"@firecms/editor": "^3.0.0-canary.
|
|
57
|
-
"@firecms/formex": "^3.0.0-canary.
|
|
58
|
-
"@firecms/ui": "^3.0.0-canary.
|
|
56
|
+
"@firecms/editor": "^3.0.0-canary.246",
|
|
57
|
+
"@firecms/formex": "^3.0.0-canary.246",
|
|
58
|
+
"@firecms/ui": "^3.0.0-canary.246",
|
|
59
59
|
"@radix-ui/react-portal": "^1.1.3",
|
|
60
60
|
"clsx": "^2.1.1",
|
|
61
61
|
"date-fns": "^3.6.0",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"dist",
|
|
108
108
|
"src"
|
|
109
109
|
],
|
|
110
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "0ba87a9533643d2d58455e02e99b4cab92beaf64",
|
|
111
111
|
"publishConfig": {
|
|
112
112
|
"access": "public"
|
|
113
113
|
},
|
package/src/types/collections.ts
CHANGED
|
@@ -127,7 +127,8 @@ export interface EntityCollection<M extends Record<string, any> = any, USER exte
|
|
|
127
127
|
|
|
128
128
|
/**
|
|
129
129
|
* If enabled, content is loaded in batches. If `false` all entities in the
|
|
130
|
-
* collection are loaded.
|
|
130
|
+
* collection are loaded. This means that when reaching the end of the
|
|
131
|
+
* collection, the CMS will load more entities.
|
|
131
132
|
* You can specify a number to specify the pagination size (50 by default)
|
|
132
133
|
* Defaults to `true`
|
|
133
134
|
*/
|