@@ -4,4 +4,4 @@
|
||||
|
||||
Improved API documentation.
|
||||
|
||||
**Breaking change**: The individual table column factories (e.g. `createEntityRefColumn`) are now no longer available directly, but only through `EntityTable.columns`.
|
||||
**BREAKING**: The individual table column factories (e.g. `createEntityRefColumn`) are now no longer available directly, but only through `EntityTable.columns`.
|
||||
|
||||
@@ -47,7 +47,8 @@ const useStyles = makeStyles(
|
||||
|
||||
/**
|
||||
* Renders search bar for filtering the entity list.
|
||||
* @public */
|
||||
* @public
|
||||
*/
|
||||
export const EntitySearchBar = () => {
|
||||
const classes = useStyles();
|
||||
|
||||
|
||||
@@ -35,7 +35,8 @@ export class EntityKindFilter implements EntityFilter {
|
||||
}
|
||||
}
|
||||
|
||||
/** Filters entities based on type
|
||||
/**
|
||||
* Filters entities based on type
|
||||
* @public
|
||||
*/
|
||||
export class EntityTypeFilter implements EntityFilter {
|
||||
|
||||
@@ -18,7 +18,8 @@ import useAsync from 'react-use/lib/useAsync';
|
||||
import { useApi } from '@backstage/core-plugin-api';
|
||||
import { catalogApiRef } from '../api';
|
||||
|
||||
/** Retrieve a list of unique entity kinds present in the catalog
|
||||
/**
|
||||
* Retrieve a list of unique entity kinds present in the catalog
|
||||
* @public
|
||||
*/
|
||||
export function useEntityKinds() {
|
||||
|
||||
@@ -109,7 +109,8 @@ type OutputState<EntityFilters extends DefaultEntityFilters> = {
|
||||
|
||||
/**
|
||||
* Provides entities and filters for a catalog listing.
|
||||
* @public */
|
||||
* @public
|
||||
*/
|
||||
export const EntityListProvider = <EntityFilters extends DefaultEntityFilters>({
|
||||
children,
|
||||
}: PropsWithChildren<{}>) => {
|
||||
|
||||
Reference in New Issue
Block a user