| /expo/packages/html-elements/build/elements/ |
| H A D | _Text.web.d.ts | 3 import { TextProps } from '../primitives/Text'; 4 export declare const P: ComponentType<TextProps>; 5 export declare const B: ComponentType<TextProps>; 6 export declare const S: ComponentType<TextProps>; 7 export declare const Del: ComponentType<TextProps>; 8 export declare const Strong: ComponentType<TextProps>; 9 export declare const I: ComponentType<TextProps>; 12 export declare const EM: ComponentType<TextProps>; 13 export declare const BR: ComponentType<TextProps>; 15 export declare const Mark: ComponentType<TextProps>; [all …]
|
| H A D | Text.d.ts | 3 import { TextProps } from '../primitives/Text'; 5 export declare const P: React.ComponentType<TextProps>; 6 export declare const B: React.ComponentType<TextProps>; 7 export declare const S: React.ComponentType<TextProps>; 8 export declare const I: React.ComponentType<TextProps>; 11 export declare const BR: React.ComponentType<TextProps>; 12 export declare const Mark: React.ComponentType<TextProps>; 13 export declare const Code: React.ComponentType<TextProps>; 14 type PreProps = TextProps | ViewProps; 18 export declare const Del: React.ComponentType<TextProps>; [all …]
|
| H A D | Headings.d.ts | 2 import { TextProps } from '../primitives/Text'; 3 export declare const H1: React.ComponentType<TextProps>; 4 export declare const H2: React.ComponentType<TextProps>; 5 export declare const H3: React.ComponentType<TextProps>; 6 export declare const H4: React.ComponentType<TextProps>; 7 export declare const H5: React.ComponentType<TextProps>; 8 export declare const H6: React.ComponentType<TextProps>;
|
| H A D | Text.types.d.ts | 1 import { TextProps } from '../primitives/Text'; 3 export type QuoteProps = React.PropsWithChildren<TextProps & { 9 export type TimeProps = React.PropsWithChildren<TextProps & { 12 export type LinkProps = React.PropsWithChildren<TextProps & {
|
| H A D | Text.types.js.map | 1 …TextProps } from '../primitives/Text';\nimport { ViewProps } from '../primitives/View';\n\nexport …
|
| H A D | _Text.web.js.map | 1 …TextProps } from '../primitives/Text';\n\nexport const P = forwardRef(({ style, ...props }: TextPr…
|
| H A D | Lists.d.ts | 2 import { TextProps } from '../primitives/Text'; 5 type LIProps = TextProps | ViewProps;
|
| H A D | Table.d.ts | 3 import { TextProps } from '../primitives/Text'; 12 export declare const Caption: React.ComponentType<TextProps>;
|
| H A D | Text.js.map | 1 …TextProps } from '../primitives/Text';\nimport View, { ViewProps } from '../primitives/View';\n\ne…
|
| /expo/packages/html-elements/src/elements/ |
| H A D | _Text.web.tsx | 10 }) as ComponentType<TextProps>; 14 }) as ComponentType<TextProps>; 18 }) as ComponentType<TextProps>; 22 }) as ComponentType<TextProps>; 26 }) as ComponentType<TextProps>; 30 }) as ComponentType<TextProps>; 42 }) as ComponentType<TextProps>; 46 }) as ComponentType<TextProps>; 50 }) as ComponentType<TextProps>; 54 }) as ComponentType<TextProps>; [all …]
|
| H A D | Text.tsx | 6 import Text, { TextProps } from '../primitives/Text'; 9 export const P = forwardRef(({ style, ...props }: TextProps, ref) => { 11 }) as ComponentType<TextProps>; 15 }) as ComponentType<TextProps>; 19 }) as ComponentType<TextProps>; 23 }) as ComponentType<TextProps>; 39 }) as ComponentType<TextProps>; 43 }) as ComponentType<TextProps>; 47 }) as ComponentType<TextProps>; 49 function isTextProps(props: any): props is TextProps { [all …]
|
| H A D | Text.types.ts | 1 import { TextProps } from '../primitives/Text'; 4 export type QuoteProps = React.PropsWithChildren<TextProps & { cite?: string }>; 8 export type TimeProps = React.PropsWithChildren<TextProps & { dateTime?: string }>; 11 TextProps & {
|
| H A D | Headings.tsx | 5 import Text, { TextProps } from '../primitives/Text'; 7 function createHeadingComponent(level: number): ComponentType<TextProps> { 14 return forwardRef((props: TextProps, ref) => { 24 }) as ComponentType<TextProps>;
|
| H A D | Lists.tsx | 4 import Text, { TextProps } from '../primitives/Text'; 21 function isTextProps(props: any): props is TextProps { 26 type LIProps = TextProps | ViewProps;
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/components/text/ |
| H A D | ABI49_0_0TextProps.cpp | 12 TextProps::TextProps( in TextProps() function in ABI49_0_0facebook::ABI49_0_0React::TextProps 14 const TextProps &sourceProps, in TextProps() 19 void TextProps::setProp( in setProp() 31 SharedDebugStringConvertibleList TextProps::getDebugProps() const { in getDebugProps()
|
| H A D | ABI49_0_0TextProps.h | 19 class TextProps : public Props, public BaseTextProps { 21 TextProps() = default; 22 TextProps( 24 const TextProps &sourceProps,
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/components/text/ |
| H A D | ABI48_0_0TextProps.cpp | 12 TextProps::TextProps( in TextProps() function in ABI48_0_0facebook::ABI48_0_0React::TextProps 14 const TextProps &sourceProps, in TextProps() 19 void TextProps::setProp( in setProp() 31 SharedDebugStringConvertibleList TextProps::getDebugProps() const { in getDebugProps()
|
| H A D | ABI48_0_0TextProps.h | 20 class TextProps : public Props, public BaseTextProps { 22 TextProps() = default; 23 TextProps( 25 const TextProps &sourceProps,
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/components/text/ |
| H A D | ABI47_0_0TextProps.cpp | 13 TextProps::TextProps( in TextProps() function in ABI47_0_0facebook::ABI47_0_0React::TextProps 15 const TextProps &sourceProps, in TextProps() 20 void TextProps::setProp( in setProp() 32 SharedDebugStringConvertibleList TextProps::getDebugProps() const { in getDebugProps()
|
| H A D | ABI47_0_0TextProps.h | 20 class TextProps : public Props, public BaseTextProps { 22 TextProps() = default; 23 TextProps( 25 const TextProps &sourceProps,
|
| /expo/templates/expo-template-tabs/components/ |
| H A D | StyledText.tsx | 1 import { Text, TextProps } from './Themed'; 3 export function MonoText(props: TextProps) {
|
| /expo/packages/expo-router/build/link/ |
| H A D | Link.d.ts | 2 import { TextProps, GestureResponderEvent } from 'react-native'; 4 export interface LinkProps extends Omit<TextProps, 'href' | 'hoverStyle'> {
|
| /expo/apps/native-component-list/src/components/ |
| H A D | HeadingText.tsx | 2 import { StyleSheet, Text, TextProps, View } from 'react-native'; 4 const HeadingText = ({ children, style }: PropsWithChildren<TextProps>) => (
|
| H A D | DeprecatedHeading.tsx | 2 import { StyleSheet, Text, TextProps, View } from 'react-native'; 6 const DeprecatedHeading = ({ children, style }: PropsWithChildren<TextProps>) => (
|
| /expo/packages/html-elements/build/primitives/ |
| H A D | Text.d.ts | 49 export type TextProps = Omit<NativeTextProps, 'style' | 'accessibilityRole'> & WebTextProps; alias 50 declare const _default: ComponentType<TextProps>;
|