UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

35 lines 1.71 kB
import * as React from 'react'; import { OverlayDarkExample } from './examples/Overlay.Dark.Example'; import { OverlayLightExample } from './examples/Overlay.Light.Example'; import { OverlayStatus } from './Overlay.checklist'; var OverlayLightExampleCode = require('!raw-loader!office-ui-fabric-react/src/components/Overlay/examples/Overlay.Light.Example.tsx'); var OverlayDarkExampleCode = require('!raw-loader!office-ui-fabric-react/src/components/Overlay/examples/Overlay.Dark.Example.tsx'); export var OverlayPageProps = { title: 'Overlay', componentName: 'Overlay', componentUrl: 'https://github.com/OfficeDev/office-ui-fabric-react/tree/master/packages/office-ui-fabric-react/src/components/Overlay', componentStatus: OverlayStatus, examples: [ { title: 'Light', code: OverlayLightExampleCode, view: React.createElement(OverlayLightExample, null) }, { title: 'Dark', code: OverlayDarkExampleCode, view: React.createElement(OverlayDarkExample, null) } ], propertiesTablesSources: [ require('!raw-loader!office-ui-fabric-react/src/components/Overlay/Overlay.types.ts') ], overview: require('!raw-loader!office-ui-fabric-react/src/components/Overlay/docs/OverlayOverview.md'), bestPractices: '', dos: require('!raw-loader!office-ui-fabric-react/src/components/Overlay/docs/OverlayDos.md'), donts: require('!raw-loader!office-ui-fabric-react/src/components/Overlay/docs/OverlayDonts.md'), isHeaderVisible: true, isFeedbackVisible: true, allowNativeProps: true }; //# sourceMappingURL=Overlay.doc.js.map