import * as React from 'react'; import { IDocPageProps } from '@fluentui/react/lib/common/DocPage.types'; import { TextFieldBasicExample } from './TextField.Basic.Example'; import { TextFieldBorderlessExample } from './TextField.Borderless.Example'; import { TextFieldCustomRenderExample } from './TextField.CustomRender.Example'; import { TextFieldErrorMessageExample } from './TextField.ErrorMessage.Example'; import { TextFieldMultilineExample } from './TextField.Multiline.Example'; import { TextFieldControlledExample } from './TextField.Controlled.Example'; import { TextFieldPrefixAndSuffixExample } from './TextField.PrefixAndSuffix.Example'; import { TextFieldStyledExample } from './TextField.Styled.Example'; import { TextFieldMaskedExample } from './TextField.Masked.Example'; const TextFieldBasicExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/TextField/TextField.Basic.Example.tsx') as string; const TextFieldBorderlessExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/TextField/TextField.Borderless.Example.tsx') as string; const TextFieldCustomRenderExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/TextField/TextField.CustomRender.Example.tsx') as string; const TextFieldErrorMessageExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/TextField/TextField.ErrorMessage.Example.tsx') as string; const TextFieldMultilineExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/TextField/TextField.Multiline.Example.tsx') as string; const TextFieldControlledExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/TextField/TextField.Controlled.Example.tsx') as string; const TextFieldPrefixAndSuffixExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/TextField/TextField.PrefixAndSuffix.Example.tsx') as string; const TextFieldStyledExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/TextField/TextField.Styled.Example.tsx') as string; const TextFieldMaskedExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/TextField/TextField.Masked.Example.tsx') as string; export const TextFieldPageProps: IDocPageProps = { title: 'TextField', componentName: 'TextField', componentUrl: 'https://github.com/microsoft/fluentui/tree/master/packages/react/src/components/TextField', examples: [ { title: 'Basic TextFields', code: TextFieldBasicExampleCode, view: , }, { title: 'Controlled TextFields', code: TextFieldControlledExampleCode, view: , }, { title: 'Multiline TextField', code: TextFieldMultilineExampleCode, view: , }, { title: 'Underlined and borderless TextFields', code: TextFieldBorderlessExampleCode, view: , }, { title: 'Customizable Masked TextField', code: TextFieldMaskedExampleCode, view: , }, { title: 'TextField with prefix and/or suffix', code: TextFieldPrefixAndSuffixExampleCode, view: , }, { title: 'TextFields with custom rendering', code: TextFieldCustomRenderExampleCode, view: , }, { title: 'TextField error message variations', code: TextFieldErrorMessageExampleCode, view: , }, { title: 'TextField subcomponent styling', code: TextFieldStyledExampleCode, view: , }, ], overview: require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/TextField/docs/TextFieldOverview.md'), bestPractices: require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/TextField/docs/TextFieldBestPractices.md'), isHeaderVisible: false, isFeedbackVisible: true, allowNativeProps: true, nativePropsElement: ['input', 'textarea'], };