mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
0057cc9bf2
Summary: This pull request moves `Text`'s prop types to the `DeprecatedPropTypes` folder. This was already partly in progress - there were redundant `TextPropTypes` and `DeprecatedTextPropTypes` files so I removed one, and made sure the version with the doc strings was the one used. ## Changelog [General] [Deprecated] - Move `Text` component's proptypes to DeprecatedPropTypes Pull Request resolved: https://github.com/facebook/react-native/pull/26055 Test Plan: Flow checks pass for iOS and Android Differential Revision: D16801078 Pulled By: TheSavior fbshipit-source-id: ef19300945d48d0a4a83d728ee32cdf7d1c0f0cc
51 lines
2.0 KiB
JavaScript
51 lines
2.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 strict-local
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const DeprecatedImageStylePropTypes = require('../../DeprecatedPropTypes/DeprecatedImageStylePropTypes');
|
|
const DeprecatedTextStylePropTypes = require('../../DeprecatedPropTypes/DeprecatedTextStylePropTypes');
|
|
const DeprecatedViewStylePropTypes = require('../../DeprecatedPropTypes/DeprecatedViewStylePropTypes');
|
|
|
|
const processColor = require('../../StyleSheet/processColor');
|
|
const processTransform = require('../../StyleSheet/processTransform');
|
|
const sizesDiffer = require('../../Utilities/differ/sizesDiffer');
|
|
|
|
const ReactNativeStyleAttributes = {};
|
|
|
|
for (const attributeName of Object.keys({
|
|
...DeprecatedViewStylePropTypes,
|
|
...DeprecatedTextStylePropTypes,
|
|
...DeprecatedImageStylePropTypes,
|
|
})) {
|
|
ReactNativeStyleAttributes[attributeName] = true;
|
|
}
|
|
|
|
ReactNativeStyleAttributes.transform = {process: processTransform};
|
|
ReactNativeStyleAttributes.shadowOffset = {diff: sizesDiffer};
|
|
|
|
const colorAttributes = {process: processColor};
|
|
ReactNativeStyleAttributes.backgroundColor = colorAttributes;
|
|
ReactNativeStyleAttributes.borderBottomColor = colorAttributes;
|
|
ReactNativeStyleAttributes.borderColor = colorAttributes;
|
|
ReactNativeStyleAttributes.borderLeftColor = colorAttributes;
|
|
ReactNativeStyleAttributes.borderRightColor = colorAttributes;
|
|
ReactNativeStyleAttributes.borderTopColor = colorAttributes;
|
|
ReactNativeStyleAttributes.borderStartColor = colorAttributes;
|
|
ReactNativeStyleAttributes.borderEndColor = colorAttributes;
|
|
ReactNativeStyleAttributes.color = colorAttributes;
|
|
ReactNativeStyleAttributes.shadowColor = colorAttributes;
|
|
ReactNativeStyleAttributes.textDecorationColor = colorAttributes;
|
|
ReactNativeStyleAttributes.tintColor = colorAttributes;
|
|
ReactNativeStyleAttributes.textShadowColor = colorAttributes;
|
|
ReactNativeStyleAttributes.overlayColor = colorAttributes;
|
|
|
|
module.exports = ReactNativeStyleAttributes;
|