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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-ui-lib",
3
- "version": "7.39.0-snapshot.6630",
3
+ "version": "7.39.0-snapshot.6641",
4
4
  "main": "src/index.js",
5
5
  "types": "src/index.d.ts",
6
6
  "author": "Ethan Sharabi <ethan.shar@gmail.com>",
@@ -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 = 'ColorPicker';
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 = 'PanDismissibleView';
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 = 'PanGestureView';
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 = 'PanListenerView';
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 = 'PanResponderView';
12
+ static displayName = 'IGNORE';
13
13
  static defaultProps = {
14
14
  isAnimated: false
15
15
  };
@@ -1,3 +1,4 @@
1
1
  import React from 'react';
2
2
  const PanningContext = React.createContext({});
3
+ PanningContext.displayName = 'IGNORE';
3
4
  export default PanningContext;
@@ -17,7 +17,7 @@ const GRADIENT_WIDTH = 76;
17
17
  */
18
18
 
19
19
  class ScrollBar extends Component {
20
- static displayName = 'ScrollBar';
20
+ static displayName = 'IGNORE';
21
21
  static defaultProps = {
22
22
  gradientWidth: GRADIENT_WIDTH,
23
23
  gradientMargins: 0,
@@ -75,4 +75,5 @@ const ExpandableOverlay = (props, ref) => {
75
75
  {renderOverlay()}
76
76
  </TouchableOpacity>;
77
77
  };
78
+ ExpandableOverlay.displayName = 'IGNORE';
78
79
  export default forwardRef(ExpandableOverlay);
@@ -53,6 +53,6 @@ const PanView = props => {
53
53
  </GestureDetector>
54
54
  </View>;
55
55
  };
56
- PanView.displayName = 'PanView';
56
+ PanView.displayName = 'IGNORE';
57
57
  PanView.directions = PanViewDirectionsEnum;
58
58
  export default asBaseComponent(gestureHandlerRootHOC(PanView));