fbsource deploy
Reviewed By: gabelevi, bestander Differential Revision: D3753032 fbshipit-source-id: 47aadb8a54f47c40f0133966df588d42cdbe0d80
This commit is contained in:
parent
c19339783d
commit
5a5c56c8a9
|
@ -47,11 +47,11 @@ suppress_type=$FlowIssue
|
|||
suppress_type=$FlowFixMe
|
||||
suppress_type=$FixMe
|
||||
|
||||
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(30\\|[1-2][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
|
||||
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(30\\|1[0-9]\\|[1-2][0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
|
||||
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(3[0-1]\\|[1-2][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
|
||||
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(3[0-1]\\|1[0-9]\\|[1-2][0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
|
||||
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
|
||||
|
||||
unsafe.enable_getters_and_setters=true
|
||||
|
||||
[version]
|
||||
^0.30.0
|
||||
^0.31.0
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
/**
|
||||
* Copyright (c) 2013-present, Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*
|
||||
* The examples provided by Facebook are for non-commercial testing and
|
||||
* evaluation purposes only.
|
||||
*
|
||||
|
@ -58,7 +65,10 @@ var SwipeableListViewSimpleExample = React.createClass({
|
|||
<SwipeableListView
|
||||
dataSource={this.state.dataSource}
|
||||
maxSwipeDistance={100}
|
||||
renderQuickActions={(rowData: Object, sectionID: string, rowID: string) => {
|
||||
renderQuickActions={
|
||||
/* $FlowFixMe(>=0.31.0) */
|
||||
(rowData: Object, sectionID: string, rowID: string) => {
|
||||
/* $FlowFixMe(>=0.31.0) */
|
||||
return (<View style={styles.actionsContainer}>
|
||||
<TouchableHighlight onPress={() => {
|
||||
Alert.alert('Tips', 'You could do something with this row: ' + rowData.text);
|
||||
|
|
|
@ -155,7 +155,6 @@ class SwipeableListView extends React.Component {
|
|||
}
|
||||
|
||||
let shouldBounceOnMount = false;
|
||||
// $FlowFixMe found when converting React.createClass to ES6
|
||||
if (this._shouldBounceFirstRowOnMount) {
|
||||
this._shouldBounceFirstRowOnMount = false;
|
||||
shouldBounceOnMount = rowID === this.props.dataSource.getFirstRowID();
|
||||
|
|
|
@ -202,7 +202,7 @@
|
|||
"eslint-plugin-babel": "^3.2.0",
|
||||
"eslint-plugin-flow-vars": "^0.2.1",
|
||||
"eslint-plugin-react": "^4.2.1",
|
||||
"flow-bin": "^0.30.0",
|
||||
"flow-bin": "^0.31.1",
|
||||
"jest": "~14.1.0",
|
||||
"jest-repl": "~14.1.0",
|
||||
"jest-runtime": "~14.1.0",
|
||||
|
|
Loading…
Reference in New Issue