fansunited-management-components 1.28.0 → 1.29.0-RC2
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/package.json
CHANGED
|
@@ -3,7 +3,6 @@ import { EntityRelationship, RelatedEntityOption } from '../../../models/related
|
|
|
3
3
|
|
|
4
4
|
type RelatedEntityCardProps = {
|
|
5
5
|
entity: RelatedEntityOption;
|
|
6
|
-
relationshipLabel: string;
|
|
7
6
|
deleteLabel: string;
|
|
8
7
|
onDelete: (id: string, relationship: EntityRelationship) => void;
|
|
9
8
|
};
|
|
@@ -13,10 +13,5 @@ type RelatedRelationshipProps = {
|
|
|
13
13
|
relatedEntitiesErrorMessage: string;
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
|
-
/**
|
|
17
|
-
* Note: We can add a feature when showing related state to group the entities by their relationship.
|
|
18
|
-
* This means if we have 3 related entities, two of them with 'relatedTo' and one with 'blockedBy', then we show
|
|
19
|
-
* first the two 'relatedTo' entities and then the 'blockedBy' entity.
|
|
20
|
-
*/
|
|
21
16
|
declare const RelatedRelationship: React.FC<RelatedRelationshipProps>;
|
|
22
17
|
export default RelatedRelationship;
|