@firecms/entity_history 3.3.0-canary.451aa49 → 3.3.0-canary.69e5ab1

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.
@@ -14,4 +14,4 @@ export type EntityPreviewProps = {
14
14
  * This view is used to display a preview of an entity.
15
15
  * It is used by default in reference fields and whenever a reference is displayed.
16
16
  */
17
- export declare function EntityHistoryEntry({ actions, hover, collection: collectionProp, previewKeys, onClick, size, entity, previousValues }: EntityPreviewProps): import("react/jsx-runtime").JSX.Element;
17
+ export declare function EntityHistoryEntry({ actions, hover, collection: collectionProp, previewKeys, onClick, size, entity, previousValues }: EntityPreviewProps): React.JSX.Element;
@@ -1,2 +1,2 @@
1
1
  import { EntityCustomViewParams } from "@firecms/core";
2
- export declare function EntityHistoryView({ entity, collection, formContext }: EntityCustomViewParams): import("react/jsx-runtime").JSX.Element;
2
+ export declare function EntityHistoryView({ entity, collection, formContext }: EntityCustomViewParams): import("react").JSX.Element;
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  /**
2
3
  * Fetches the latest history entry from the __history subcollection
3
4
  * and displays who last edited the entity and when.
@@ -6,4 +7,4 @@ export declare function LastEditedByIndicator({ path, entityId, collection }: {
6
7
  path: string;
7
8
  entityId: string;
8
9
  collection: any;
9
- }): import("react/jsx-runtime").JSX.Element;
10
+ }): React.JSX.Element;
@@ -1,6 +1,7 @@
1
+ import React from "react";
1
2
  import { PluginFormActionProps } from "@firecms/core";
2
3
  /**
3
4
  * Renders the "last edited by" indicator in the entity form top bar.
4
5
  * Used as a plugin `form.ActionsTop` component.
5
6
  */
6
- export declare function LastEditedByFormAction({ entityId, path, status, collection, }: PluginFormActionProps): import("react/jsx-runtime").JSX.Element | null;
7
+ export declare function LastEditedByFormAction({ entityId, path, status, collection, }: PluginFormActionProps): React.JSX.Element | null;
@@ -1,4 +1,4 @@
1
1
  import { User } from "@firecms/core";
2
2
  export declare function UserChip({ user }: {
3
3
  user: User;
4
- }): import("react/jsx-runtime").JSX.Element;
4
+ }): import("react").JSX.Element;
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@firecms/entity_history",
3
3
  "type": "module",
4
- "version": "3.3.0-canary.451aa49",
4
+ "version": "3.3.0-canary.69e5ab1",
5
5
  "access": "public",
6
6
  "main": "./dist/index.umd.js",
7
7
  "module": "./dist/index.es.js",
8
8
  "types": "./dist/index.d.ts",
9
9
  "source": "src/index.ts",
10
10
  "dependencies": {
11
- "@firecms/core": "^3.3.0-canary.451aa49",
12
- "@firecms/formex": "^3.3.0-canary.451aa49",
13
- "@firecms/ui": "^3.3.0-canary.451aa49"
11
+ "@firecms/core": "^3.3.0-canary.69e5ab1",
12
+ "@firecms/formex": "^3.3.0-canary.69e5ab1",
13
+ "@firecms/ui": "^3.3.0-canary.69e5ab1"
14
14
  },
15
15
  "peerDependencies": {
16
16
  "react": ">=18.3.1 || >=19.0.0",
@@ -82,5 +82,10 @@
82
82
  "publishConfig": {
83
83
  "access": "public"
84
84
  },
85
- "gitHead": "772b4a7f64893038f0cc13669d6bc66ec858fc49"
85
+ "gitHead": "9ecf37abf793bd2f2daaaed6f517ee5ee19b01ae",
86
+ "repository": {
87
+ "type": "git",
88
+ "url": "https://github.com/FireCMSco/firecms.git",
89
+ "directory": "packages/entity_history"
90
+ }
86
91
  }