Merge pull request #23294 from backstage/rugvip/rollback

catalog-react: roll back style class key type change
This commit is contained in:
Patrik Oldsberg
2024-02-27 17:42:46 +01:00
committed by GitHub
3 changed files with 4 additions and 10 deletions
+2 -5
View File
@@ -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(
{
@@ -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(
{