react-native-ui-lib 7.39.0-snapshot.6630 → 7.39.0-snapshot.6641
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/colorPicker/ColorPickerDialog.js +1 -1
- package/src/components/panningViews/panDismissibleView.js +1 -1
- package/src/components/panningViews/panGestureView.js +1 -1
- package/src/components/panningViews/panListenerView.js +1 -1
- package/src/components/panningViews/panResponderView.js +1 -1
- package/src/components/panningViews/panningContext.js +1 -0
- package/src/components/scrollBar/index.js +1 -1
- package/src/incubator/expandableOverlay/index.js +1 -0
- package/src/incubator/panView/index.js +1 -1
package/package.json
CHANGED
|
@@ -116,7 +116,7 @@ const ColorPickerDialog = props => {
|
|
|
116
116
|
<ColorPickerDialogSliders keyboardHeight={keyboardHeight} color={color} onSliderValueChange={updateColor} migrate={migrate} />
|
|
117
117
|
</Dialog>;
|
|
118
118
|
};
|
|
119
|
-
ColorPickerDialog.displayName = '
|
|
119
|
+
ColorPickerDialog.displayName = 'ColorPickerDialog';
|
|
120
120
|
export default asBaseComponent(ColorPickerDialog);
|
|
121
121
|
const styles = StyleSheet.create({
|
|
122
122
|
dialog: {
|
|
@@ -23,7 +23,7 @@ const MAXIMUM_DRAGS_AFTER_SWIPE = 2;
|
|
|
23
23
|
* @gif: https://github.com/wix/react-native-ui-lib/blob/master/demo/showcase/PanDismissibleView/PanDismissibleView.gif?raw=true
|
|
24
24
|
*/
|
|
25
25
|
class PanDismissibleView extends PureComponent {
|
|
26
|
-
static displayName = '
|
|
26
|
+
static displayName = 'IGNORE';
|
|
27
27
|
static defaultProps = {
|
|
28
28
|
directions: DEFAULT_DIRECTIONS,
|
|
29
29
|
animationOptions: DEFAULT_ANIMATION_OPTIONS,
|
|
@@ -13,7 +13,7 @@ const BOUNCINESS = 6;
|
|
|
13
13
|
* @description: PanGestureView component for drag and swipe gestures (supports only vertical gestures at the moment)
|
|
14
14
|
*/
|
|
15
15
|
class PanGestureView extends Component {
|
|
16
|
-
static displayName = '
|
|
16
|
+
static displayName = 'IGNORE';
|
|
17
17
|
static defaultProps = {
|
|
18
18
|
direction: GestureDirections.DOWN
|
|
19
19
|
};
|
|
@@ -14,7 +14,7 @@ const DEFAULT_SWIPE_VELOCITY = 1.8;
|
|
|
14
14
|
* @gif: https://github.com/wix/react-native-ui-lib/blob/master/demo/showcase/PanListenerView/PanListenerView.gif?raw=true
|
|
15
15
|
*/
|
|
16
16
|
class PanListenerView extends PureComponent {
|
|
17
|
-
static displayName = '
|
|
17
|
+
static displayName = 'IGNORE';
|
|
18
18
|
static defaultProps = {
|
|
19
19
|
directions: DEFAULT_DIRECTIONS,
|
|
20
20
|
panSensitivity: DEFAULT_PAN_SENSITIVITY,
|
|
@@ -9,7 +9,7 @@ import asPanViewConsumer from "./asPanViewConsumer";
|
|
|
9
9
|
* @gif: https://github.com/wix/react-native-ui-lib/blob/master/demo/showcase/PanResponderView/PanResponderView.gif?raw=true
|
|
10
10
|
*/
|
|
11
11
|
class PanResponderView extends PureComponent {
|
|
12
|
-
static displayName = '
|
|
12
|
+
static displayName = 'IGNORE';
|
|
13
13
|
static defaultProps = {
|
|
14
14
|
isAnimated: false
|
|
15
15
|
};
|