Merge pull request #23294 from backstage/rugvip/rollback
catalog-react: roll back style class key type change
This commit is contained in:
@@ -109,13 +109,10 @@ export type CatalogReactEntityLifecyclePickerClassKey = 'input';
|
||||
export type CatalogReactEntityNamespacePickerClassKey = 'input';
|
||||
|
||||
// @public (undocumented)
|
||||
export type CatalogReactEntityOwnerPickerClassKey = 'input' | 'root' | 'label';
|
||||
export type CatalogReactEntityOwnerPickerClassKey = 'input';
|
||||
|
||||
// @public (undocumented)
|
||||
export type CatalogReactEntityProcessingStatusPickerClassKey =
|
||||
| 'input'
|
||||
| 'root'
|
||||
| 'label';
|
||||
export type CatalogReactEntityProcessingStatusPickerClassKey = 'input';
|
||||
|
||||
// @public (undocumented)
|
||||
export type CatalogReactEntitySearchBarClassKey = 'searchToolbar' | 'input';
|
||||
|
||||
@@ -44,7 +44,7 @@ import { withStyles } from '@material-ui/core/styles';
|
||||
import { useEntityPresentation } from '../../apis';
|
||||
|
||||
/** @public */
|
||||
export type CatalogReactEntityOwnerPickerClassKey = 'input' | 'root' | 'label';
|
||||
export type CatalogReactEntityOwnerPickerClassKey = 'input';
|
||||
|
||||
const useStyles = makeStyles(
|
||||
{
|
||||
|
||||
+1
-4
@@ -31,10 +31,7 @@ import { useEntityList } from '../../hooks';
|
||||
import { Autocomplete } from '@material-ui/lab';
|
||||
|
||||
/** @public */
|
||||
export type CatalogReactEntityProcessingStatusPickerClassKey =
|
||||
| 'input'
|
||||
| 'root'
|
||||
| 'label';
|
||||
export type CatalogReactEntityProcessingStatusPickerClassKey = 'input';
|
||||
|
||||
const useStyles = makeStyles(
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user