baseui 0.0.0-next-94d8810 → 0.0.0-next-1f0b4e7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import type { Override } from '../helpers/overrides';
|
|
2
3
|
export declare type HeaderNavigationOverrides = {
|
|
3
4
|
Root?: Override;
|
|
4
5
|
};
|
|
5
|
-
export declare type HeaderNavigationProps = {
|
|
6
|
+
export declare type HeaderNavigationProps = React.PropsWithChildren<{
|
|
6
7
|
overrides: HeaderNavigationOverrides;
|
|
7
|
-
}
|
|
8
|
+
}>;
|
|
@@ -5,6 +5,7 @@ This source code is licensed under the MIT license found in the
|
|
|
5
5
|
LICENSE file in the root directory of this source tree.
|
|
6
6
|
*/
|
|
7
7
|
// @flow
|
|
8
|
+
import * as React from 'react';
|
|
8
9
|
import type { OverrideT } from '../helpers/overrides.js';
|
|
9
10
|
|
|
10
11
|
export type OverridesT = {
|
|
@@ -13,6 +14,7 @@ export type OverridesT = {
|
|
|
13
14
|
|
|
14
15
|
export type PropsT = {
|
|
15
16
|
overrides: OverridesT,
|
|
17
|
+
children?: React.Node,
|
|
16
18
|
};
|
|
17
19
|
|
|
18
20
|
declare var __DEV__: boolean;
|