fix review comments

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2021-12-20 16:06:16 +01:00
parent 8e9d7e9200
commit 7eeb65fd77
2 changed files with 19 additions and 3 deletions
+14 -2
View File
@@ -211,13 +211,11 @@ export const SearchType: ({
defaultValue,
}: SearchTypeProps) => JSX.Element;
// Warning: (ae-forgotten-export) The symbol "SidebarSearchProps" needs to be exported by the entry point index.d.ts
// Warning: (ae-missing-release-tag) "SidebarSearch" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const SidebarSearch: (props: SidebarSearchProps) => JSX.Element;
// Warning: (ae-forgotten-export) The symbol "SidebarSearchModalProps" needs to be exported by the entry point index.d.ts
// Warning: (ae-missing-release-tag) "SidebarSearchModal" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
@@ -225,6 +223,20 @@ export const SidebarSearchModal: (
props: SidebarSearchModalProps,
) => JSX.Element;
// Warning: (ae-missing-release-tag) "SidebarSearchModalProps" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export type SidebarSearchModalProps = {
icon?: IconComponent;
};
// Warning: (ae-missing-release-tag) "SidebarSearchProps" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export type SidebarSearchProps = {
icon?: IconComponent;
};
// Warning: (ae-forgotten-export) The symbol "SearchContextValue" needs to be exported by the entry point index.d.ts
// Warning: (ae-missing-release-tag) "useSearch" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
+5 -1
View File
@@ -36,7 +36,11 @@ export {
SidebarSearch,
useSearch,
} from './components';
export type { SearchModalProps } from './components';
export type {
SearchModalProps,
SidebarSearchModalProps,
SidebarSearchProps,
} from './components';
export type { FiltersState } from './components';
export {
DefaultResultListItem,