mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-01-12 22:50:10 +08:00
Summary: related #21342 TODO * move ImageSourcePropType.js, ImageStylePropTypes.js, TextPropTypes.js * fix flow error CheckList - [x] `yarn prettier` - [x] `yarn flow-check-android` - [x] `yarn flow-check-ios` All flow checks pass. [GENERAL] [ENHANCEMENT] [DeprecatedImageSourcePropType.js] - Created. [GENERAL] [ENHANCEMENT] [DeprecatedImageStylePropTypes.js] - Created. [GENERAL] [ENHANCEMENT] [DeprecatedTextPropTypes.js] - Created. Pull Request resolved: https://github.com/facebook/react-native/pull/21387 Reviewed By: TheSavior Differential Revision: D10099753 Pulled By: RSNara fbshipit-source-id: c907af6d1549ee42de1a2e17f278998e8422110f
42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const DeprecatedColorPropType = require('DeprecatedColorPropType');
|
|
const DeprecatedEdgeInsetsPropType = require('DeprecatedEdgeInsetsPropType');
|
|
const PropTypes = require('prop-types');
|
|
const StyleSheetPropType = require('DeprecatedStyleSheetPropType');
|
|
const TextStylePropTypes = require('TextStylePropTypes');
|
|
|
|
const stylePropType = StyleSheetPropType(TextStylePropTypes);
|
|
|
|
module.exports = {
|
|
ellipsizeMode: PropTypes.oneOf(['head', 'middle', 'tail', 'clip']),
|
|
numberOfLines: PropTypes.number,
|
|
textBreakStrategy: PropTypes.oneOf(['simple', 'highQuality', 'balanced']),
|
|
onLayout: PropTypes.func,
|
|
onPress: PropTypes.func,
|
|
onLongPress: PropTypes.func,
|
|
pressRetentionOffset: DeprecatedEdgeInsetsPropType,
|
|
selectable: PropTypes.bool,
|
|
selectionColor: DeprecatedColorPropType,
|
|
suppressHighlighting: PropTypes.bool,
|
|
style: stylePropType,
|
|
testID: PropTypes.string,
|
|
nativeID: PropTypes.string,
|
|
allowFontScaling: PropTypes.bool,
|
|
maxFontSizeMultiplier: PropTypes.number,
|
|
accessible: PropTypes.bool,
|
|
adjustsFontSizeToFit: PropTypes.bool,
|
|
minimumFontScale: PropTypes.number,
|
|
disabled: PropTypes.bool,
|
|
};
|