@livetiles/reach-plugin-types 0.5.0-preview.150 → 0.5.0-preview.151
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.
- package/lib/index.d.ts +2 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -10047,8 +10047,9 @@ declare module "libs/reach/feature/content/src/common/detail/controls/DetailView
|
|
|
10047
10047
|
import { FC, ReactNode } from 'react';
|
|
10048
10048
|
export const DetailViewNavigation: FC<{
|
|
10049
10049
|
offsetRight?: number;
|
|
10050
|
-
children?: ReactNode;
|
|
10051
10050
|
callout?: ReactNode;
|
|
10051
|
+
className?: string;
|
|
10052
|
+
children?: ReactNode;
|
|
10052
10053
|
}>;
|
|
10053
10054
|
}
|
|
10054
10055
|
declare module "libs/reach/feature/content/src/common/detail/controls/DetailViewBodyExternalContent" {
|