catalog-react: api report
Signed-off-by: Vincenzo Scamporlino <vincenzos@spotify.com>
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user