mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-03-23 22:47:15 +08:00
Summary: This is the next step in moving RN towards standard path-based requires. All the requires in `Libraries` have been rewritten to use relative requires with a few exceptions, namely, `vendor` and `Renderer/oss` since those need to be changed upstream. This commit uses relative requires instead of `react-native/...` so that if Facebook were to stop syncing out certain folders and therefore remove code from the react-native package, internal code at Facebook would not need to change. See the umbrella issue at https://github.com/facebook/react-native/issues/24316 for more detail. [General] [Changed] - Migrate "Libraries" from Haste to standard path-based requires Pull Request resolved: https://github.com/facebook/react-native/pull/24749 Differential Revision: D15258017 Pulled By: cpojer fbshipit-source-id: a1f480ea36c05c659b6f37c8f02f6f9216d5a323
124 lines
3.0 KiB
JavaScript
124 lines
3.0 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.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const DeprecatedColorPropType = require('../DeprecatedPropTypes/DeprecatedColorPropType');
|
|
const ReactPropTypes = require('prop-types');
|
|
const DeprecatedViewStylePropTypes = require('../DeprecatedPropTypes/DeprecatedViewStylePropTypes');
|
|
|
|
const TextStylePropTypes = {
|
|
...DeprecatedViewStylePropTypes,
|
|
|
|
color: DeprecatedColorPropType,
|
|
fontFamily: ReactPropTypes.string,
|
|
fontSize: ReactPropTypes.number,
|
|
fontStyle: ReactPropTypes.oneOf(['normal', 'italic']),
|
|
/**
|
|
* Specifies font weight. The values 'normal' and 'bold' are supported for
|
|
* most fonts. Not all fonts have a variant for each of the numeric values,
|
|
* in that case the closest one is chosen.
|
|
*/
|
|
fontWeight: ReactPropTypes.oneOf([
|
|
'normal' /*default*/,
|
|
'bold',
|
|
'100',
|
|
'200',
|
|
'300',
|
|
'400',
|
|
'500',
|
|
'600',
|
|
'700',
|
|
'800',
|
|
'900',
|
|
]),
|
|
/**
|
|
* @platform ios
|
|
*/
|
|
fontVariant: ReactPropTypes.arrayOf(
|
|
ReactPropTypes.oneOf([
|
|
'small-caps',
|
|
'oldstyle-nums',
|
|
'lining-nums',
|
|
'tabular-nums',
|
|
'proportional-nums',
|
|
]),
|
|
),
|
|
textShadowOffset: ReactPropTypes.shape({
|
|
width: ReactPropTypes.number,
|
|
height: ReactPropTypes.number,
|
|
}),
|
|
textShadowRadius: ReactPropTypes.number,
|
|
textShadowColor: DeprecatedColorPropType,
|
|
/**
|
|
* @platform ios
|
|
*/
|
|
letterSpacing: ReactPropTypes.number,
|
|
lineHeight: ReactPropTypes.number,
|
|
/**
|
|
* Specifies text alignment. The value 'justify' is only supported on iOS and
|
|
* fallbacks to `left` on Android.
|
|
*/
|
|
textAlign: ReactPropTypes.oneOf([
|
|
'auto' /*default*/,
|
|
'left',
|
|
'right',
|
|
'center',
|
|
'justify',
|
|
]),
|
|
/**
|
|
* @platform android
|
|
*/
|
|
textAlignVertical: ReactPropTypes.oneOf([
|
|
'auto' /*default*/,
|
|
'top',
|
|
'bottom',
|
|
'center',
|
|
]),
|
|
/**
|
|
* Set to `false` to remove extra font padding intended to make space for certain ascenders / descenders.
|
|
* With some fonts, this padding can make text look slightly misaligned when centered vertically.
|
|
* For best results also set `textAlignVertical` to `center`. Default is true.
|
|
* @platform android
|
|
*/
|
|
includeFontPadding: ReactPropTypes.bool,
|
|
textDecorationLine: ReactPropTypes.oneOf([
|
|
'none' /*default*/,
|
|
'underline',
|
|
'line-through',
|
|
'underline line-through',
|
|
]),
|
|
/**
|
|
* @platform ios
|
|
*/
|
|
textDecorationStyle: ReactPropTypes.oneOf([
|
|
'solid' /*default*/,
|
|
'double',
|
|
'dotted',
|
|
'dashed',
|
|
]),
|
|
/**
|
|
* @platform ios
|
|
*/
|
|
textDecorationColor: DeprecatedColorPropType,
|
|
textTransform: ReactPropTypes.oneOf([
|
|
'none' /*default*/,
|
|
'capitalize',
|
|
'uppercase',
|
|
'lowercase',
|
|
]),
|
|
/**
|
|
* @platform ios
|
|
*/
|
|
writingDirection: ReactPropTypes.oneOf(['auto' /*default*/, 'ltr', 'rtl']),
|
|
};
|
|
|
|
module.exports = TextStylePropTypes;
|