@firecms/core 3.0.0-beta.2 → 3.0.0-canary.1

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.
@@ -1,4 +1,3 @@
1
- import React from "react";
2
1
  import { CollectionSize, Entity, EntityAction, EntityCollection, SelectionController } from "../../types";
3
2
  /**
4
3
  *
@@ -9,15 +8,12 @@ import { CollectionSize, Entity, EntityAction, EntityCollection, SelectionContro
9
8
  * @param selectionEnabled
10
9
  * @param size
11
10
  * @param toggleEntitySelection
12
- * @param onCopyClicked
13
- * @param onEditClicked
14
- * @param onDeleteClicked
15
11
  * @param hideId
16
12
  * @constructor
17
13
  *
18
14
  * @group Collection components
19
15
  */
20
- export declare const EntityCollectionRowActions: React.NamedExoticComponent<{
16
+ export declare const EntityCollectionRowActions: ({ entity, collection, fullPath, width, frozen, isSelected, selectionEnabled, size, highlightEntity, onCollectionChange, unhighlightEntity, actions, hideId, selectionController, }: {
21
17
  entity: Entity<any>;
22
18
  collection?: EntityCollection<any, import("../../types").User> | undefined;
23
19
  fullPath?: string | undefined;
@@ -32,4 +28,4 @@ export declare const EntityCollectionRowActions: React.NamedExoticComponent<{
32
28
  selectionController?: SelectionController | undefined;
33
29
  highlightEntity?: ((entity: Entity<any>) => void) | undefined;
34
30
  unhighlightEntity?: ((entity: Entity<any>) => void) | undefined;
35
- }>;
31
+ }) => import("react/jsx-runtime").JSX.Element;