api reports and changeset update
Signed-off-by: Emma Indal <emmai@spotify.com>
This commit is contained in:
@@ -2,4 +2,4 @@
|
||||
'@backstage/plugin-search': patch
|
||||
---
|
||||
|
||||
Smaller UX improvements to search components such as focused prop to SearchBar components, decreased debounce value and closing modal on link click of SearchModal, terminology updates of SearchResultPager.
|
||||
Smaller UX improvements to search components such as optional autoFocus prop to SearchBar components, decreased debounce value and closing modal on link click of SearchModal, terminology updates of SearchResultPager.
|
||||
|
||||
@@ -80,6 +80,7 @@ export const searchApiRef: ApiRef<SearchApi>;
|
||||
//
|
||||
// @public (undocumented)
|
||||
export const SearchBar: ({
|
||||
autoFocus,
|
||||
className,
|
||||
debounceTime,
|
||||
placeholder,
|
||||
@@ -89,10 +90,12 @@ export const SearchBar: ({
|
||||
//
|
||||
// @public @deprecated (undocumented)
|
||||
export const SearchBarNext: ({
|
||||
autoFocus,
|
||||
className,
|
||||
debounceTime,
|
||||
placeholder,
|
||||
}: {
|
||||
autoFocus?: boolean | undefined;
|
||||
className?: string | undefined;
|
||||
debounceTime?: number | undefined;
|
||||
placeholder?: string | undefined;
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import React, { useEffect, KeyboardEvent, useState, useRef } from 'react';
|
||||
import React, { useEffect, KeyboardEvent, useState } from 'react';
|
||||
import { configApiRef, useApi } from '@backstage/core-plugin-api';
|
||||
import { useDebounce } from 'react-use';
|
||||
import { InputBase, InputAdornment, IconButton } from '@material-ui/core';
|
||||
|
||||
Reference in New Issue
Block a user