catalog-react: api report

Signed-off-by: Vincenzo Scamporlino <vincenzos@spotify.com>
This commit is contained in:
Vincenzo Scamporlino
2023-06-11 23:57:27 +02:00
parent 03cbaa4ae4
commit 84c03b1fe3
3 changed files with 15 additions and 2 deletions
+8 -1
View File
@@ -266,7 +266,14 @@ export class EntityOwnerFilter implements EntityFilter {
}
// @public (undocumented)
export const EntityOwnerPicker: () => JSX.Element | null;
export const EntityOwnerPicker: (
props?: EntityOwnerPickerProps,
) => JSX.Element | null;
// @public (undocumented)
export type EntityOwnerPickerProps = {
mode?: 'owners-only' | 'all';
};
// @public
export const EntityPeekAheadPopover: (
@@ -55,6 +55,9 @@ const useStyles = makeStyles(
const icon = <CheckBoxOutlineBlankIcon fontSize="small" />;
const checkedIcon = <CheckBoxIcon fontSize="small" />;
/**
* @public
*/
export type EntityOwnerPickerProps = {
mode?: 'owners-only' | 'all';
};
@@ -15,4 +15,7 @@
*/
export { EntityOwnerPicker } from './EntityOwnerPicker';
export type { CatalogReactEntityOwnerPickerClassKey } from './EntityOwnerPicker';
export type {
CatalogReactEntityOwnerPickerClassKey,
EntityOwnerPickerProps,
} from './EntityOwnerPicker';