Update API reports

Add Title to Filters Drawer

Signed-off-by: Philipp Hugenroth <philipph@spotify.com>
This commit is contained in:
Philipp Hugenroth
2021-07-16 13:53:49 +02:00
parent b044fa6f7c
commit 5858056f79
5 changed files with 30 additions and 28 deletions
+2 -2
View File
@@ -1202,7 +1202,7 @@ export const Page: ({
children,
}: PropsWithChildren<Props_21>) => JSX.Element;
// Warning: (ae-forgotten-export) The symbol "IProps" needs to be exported by the entry point index.d.ts
// Warning: (ae-forgotten-export) The symbol "ThemedHeaderProps" needs to be exported by the entry point index.d.ts
// Warning: (ae-missing-release-tag) "PageWithHeader" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
@@ -1210,7 +1210,7 @@ export const PageWithHeader: ({
themeId,
children,
...props
}: React_2.PropsWithChildren<IProps>) => JSX.Element;
}: React_2.PropsWithChildren<ThemedHeaderProps>) => JSX.Element;
// Warning: (ae-missing-release-tag) "Progress" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
@@ -14,12 +14,12 @@
* limitations under the License.
*/
import React, { ComponentProps } from 'react';
import React, { PropsWithChildren, ComponentProps } from 'react';
import { Header } from '../Header';
import { Page } from './Page';
type ThemedHeaderProps = ComponentProps<typeof Header> & {
export type ThemedHeaderProps = ComponentProps<typeof Header> & {
themeId: string;
};
@@ -27,7 +27,7 @@ export const PageWithHeader = ({
themeId,
children,
...props
}: React.PropsWithChildren<ThemedHeaderProps>) => (
}: PropsWithChildren<ThemedHeaderProps>) => (
<Page themeId={themeId}>
<Header {...props} />
{children}