-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: upgrade iris to 4.2.3-build.4 (#716) * fix: example crash NMS-16331
- Loading branch information
1 parent
a358f0c
commit f819293
Showing
4 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
diff --git a/node_modules/react-native-color-picker/dist/HoloColorPicker.js b/node_modules/react-native-color-picker/dist/HoloColorPicker.js | ||
index a177142..e9e1feb | ||
--- a/node_modules/react-native-color-picker/dist/HoloColorPicker.js | ||
+++ b/node_modules/react-native-color-picker/dist/HoloColorPicker.js | ||
@@ -12,8 +12,9 @@ var __extends = (this && this.__extends) || (function () { | ||
}; | ||
})(); | ||
import React from "react"; | ||
-import { I18nManager, Image, InteractionManager, Slider, StyleSheet, TouchableOpacity, View, } from "react-native"; | ||
+import { I18nManager, Image, InteractionManager, StyleSheet, TouchableOpacity, View, } from "react-native"; | ||
import tinycolor from "tinycolor2"; | ||
+import Slider from '@react-native-community/slider'; | ||
import { createPanResponder } from "./utils"; | ||
var HoloColorPicker = /** @class */ (function (_super) { | ||
__extends(HoloColorPicker, _super); | ||
diff --git a/node_modules/react-native-color-picker/src/HoloColorPicker.tsx b/node_modules/react-native-color-picker/src/HoloColorPicker.tsx | ||
index 51a7bcc..6707587 | ||
--- a/node_modules/react-native-color-picker/src/HoloColorPicker.tsx | ||
+++ b/node_modules/react-native-color-picker/src/HoloColorPicker.tsx | ||
@@ -4,13 +4,12 @@ import { | ||
Image, | ||
InteractionManager, | ||
PanResponderInstance, | ||
- Slider, | ||
StyleSheet, | ||
TouchableOpacity, | ||
View, | ||
} from "react-native" | ||
import tinycolor from "tinycolor2" | ||
- | ||
+import Slider from '@react-native-community/slider'; | ||
import { HsvColor, IPickerProps, Point2D } from "./typeHelpers" | ||
import { createPanResponder } from "./utils" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters