2018-01-06 07:06:22 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2018-01-06 07:06:22 +00:00
|
|
|
*
|
|
|
|
* @providesModule TextProps
|
|
|
|
* @flow
|
|
|
|
* @format
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import type {Node} from 'react';
|
|
|
|
|
2018-03-11 02:29:06 +00:00
|
|
|
import type {LayoutEvent, PressEvent} from 'CoreEventTypes';
|
|
|
|
import type {DangerouslyImpreciseStyleProp} from 'StyleSheet';
|
2018-01-06 07:06:22 +00:00
|
|
|
|
|
|
|
type PressRetentionOffset = {
|
|
|
|
top: number,
|
|
|
|
left: number,
|
|
|
|
bottom: number,
|
|
|
|
right: number,
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see https://facebook.github.io/react-native/docs/text.html#reference
|
|
|
|
*/
|
2018-03-11 02:29:06 +00:00
|
|
|
export type TextProps = $ReadOnly<{
|
|
|
|
accessible?: ?boolean,
|
|
|
|
allowFontScaling?: ?boolean,
|
2018-02-08 01:23:43 +00:00
|
|
|
children?: Node,
|
2018-01-06 07:06:22 +00:00
|
|
|
ellipsizeMode?: 'clip' | 'head' | 'middle' | 'tail',
|
|
|
|
nativeID?: string,
|
2018-03-11 02:29:06 +00:00
|
|
|
numberOfLines?: ?number,
|
|
|
|
onLayout?: ?(event: LayoutEvent) => mixed,
|
|
|
|
onLongPress?: ?(event: PressEvent) => mixed,
|
|
|
|
onPress?: ?(event: PressEvent) => mixed,
|
|
|
|
onResponderGrant?: ?Function,
|
|
|
|
onResponderMove?: ?Function,
|
|
|
|
onResponderRelease?: ?Function,
|
|
|
|
onResponderTerminate?: ?Function,
|
|
|
|
onResponderTerminationRequest?: ?Function,
|
|
|
|
onStartShouldSetResponder?: ?Function,
|
|
|
|
pressRetentionOffset?: ?PressRetentionOffset,
|
|
|
|
selectable?: ?boolean,
|
|
|
|
style?: ?DangerouslyImpreciseStyleProp,
|
2018-01-06 07:06:22 +00:00
|
|
|
testID?: string,
|
|
|
|
|
|
|
|
// Android Only
|
2018-03-11 02:29:06 +00:00
|
|
|
disabled?: ?boolean,
|
|
|
|
selectionColor?: ?string,
|
2018-01-06 07:06:22 +00:00
|
|
|
textBreakStrategy?: 'balanced' | 'highQuality' | 'simple',
|
|
|
|
|
|
|
|
// iOS Only
|
2018-03-11 02:29:06 +00:00
|
|
|
adjustsFontSizeToFit?: ?boolean,
|
|
|
|
minimumFontScale?: ?number,
|
|
|
|
suppressHighlighting?: ?boolean,
|
|
|
|
}>;
|