@firecms/core 3.0.0-canary.241 → 3.0.0-canary.244

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.
@@ -486,6 +486,10 @@ export interface EntityCustomViewParams<M extends Record<string, any> = any> {
486
486
  * Use the form context to access the form state and methods
487
487
  */
488
488
  formContext: FormContext;
489
+ /**
490
+ * If this is a subcollection, this is the path of the parent collections
491
+ */
492
+ parentCollectionIds?: string[];
489
493
  }
490
494
  export type InferCollectionType<S extends EntityCollection> = S extends EntityCollection<infer M> ? M : never;
491
495
  /**
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.241",
4
+ "version": "3.0.0-canary.244",
5
5
  "description": "Awesome Firebase/Firestore-based headless open-source CMS",
6
6
  "funding": {
7
7
  "url": "https://github.com/sponsors/firecmsco"
@@ -50,10 +50,12 @@
50
50
  "./package.json": "./package.json"
51
51
  },
52
52
  "dependencies": {
53
- "@firecms/editor": "^3.0.0-canary.241",
54
- "@firecms/formex": "^3.0.0-canary.241",
55
- "@firecms/ui": "^3.0.0-canary.241",
56
- "@hello-pangea/dnd": "^17.0.0",
53
+ "@dnd-kit/core": "^6.3.1",
54
+ "@dnd-kit/modifiers": "^9.0.0",
55
+ "@dnd-kit/sortable": "^10.0.0",
56
+ "@firecms/editor": "^3.0.0-canary.244",
57
+ "@firecms/formex": "^3.0.0-canary.244",
58
+ "@firecms/ui": "^3.0.0-canary.244",
57
59
  "@radix-ui/react-portal": "^1.1.3",
58
60
  "clsx": "^2.1.1",
59
61
  "date-fns": "^3.6.0",
@@ -105,7 +107,7 @@
105
107
  "dist",
106
108
  "src"
107
109
  ],
108
- "gitHead": "5d3c3928250947d0363073d612a8c15f9bc10459",
110
+ "gitHead": "6b3dcdc942e0fd64e3023b5361c34ec2ac2bb1d3",
109
111
  "publishConfig": {
110
112
  "access": "public"
111
113
  },