chore(search): Add changeset & update API reports

Signed-off-by: Carlos Esteban Lopez <lcarlosesteb@vmware.com>
This commit is contained in:
Carlos Esteban Lopez
2023-03-01 17:03:39 -05:00
committed by Carlos Lopez
parent e22f74f421
commit 750e45539a
3 changed files with 11 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/plugin-search-react': patch
'@backstage/plugin-search': patch
---
Add close button & improve search input.
+2
View File
@@ -140,6 +140,7 @@ export const EntityTagsPickerFieldExtension: FieldExtensionComponent_2<
kinds?: string[] | undefined;
showCounts?: boolean | undefined;
helperText?: string | undefined;
kinds?: string[] | undefined;
}
>;
@@ -150,6 +151,7 @@ export const EntityTagsPickerFieldSchema: FieldSchema<
kinds?: string[] | undefined;
showCounts?: boolean | undefined;
helperText?: string | undefined;
kinds?: string[] | undefined;
}
>;
+3 -2
View File
@@ -10,7 +10,6 @@ import { AsyncState } from 'react-use/lib/useAsync';
import { AutocompleteProps } from '@material-ui/lab';
import { Extension } from '@backstage/core-plugin-api';
import { ForwardRefExoticComponent } from 'react';
import { InputBaseProps } from '@material-ui/core';
import { JsonObject } from '@backstage/types';
import { JsonValue } from '@backstage/types';
import { LinkProps } from '@backstage/core-components';
@@ -26,6 +25,7 @@ import { SearchDocument } from '@backstage/plugin-search-common';
import { SearchQuery } from '@backstage/plugin-search-common';
import { SearchResult as SearchResult_2 } from '@backstage/plugin-search-common';
import { SearchResultSet } from '@backstage/plugin-search-common';
import { TextFieldProps } from '@material-ui/core/TextField';
import { TypographyProps } from '@material-ui/core';
// @public (undocumented)
@@ -136,12 +136,13 @@ export const SearchBar: ForwardRefExoticComponent<SearchBarProps>;
export const SearchBarBase: ForwardRefExoticComponent<SearchBarBaseProps>;
// @public
export type SearchBarBaseProps = Omit<InputBaseProps, 'onChange'> & {
export type SearchBarBaseProps = Omit<TextFieldProps, 'onChange'> & {
debounceTime?: number;
clearButton?: boolean;
onClear?: () => void;
onSubmit?: () => void;
onChange: (value: string) => void;
endAdornment?: React_2.ReactNode;
};
// @public