@ledgerhq/native-ui 0.22.4 → 0.22.5-next.0
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.
|
@@ -5,5 +5,5 @@ export type InputStatus = "default" | "focused" | "filled" | "error";
|
|
|
5
5
|
export interface AnimatedInputProps extends BaseInputType {
|
|
6
6
|
style?: StyleProp<ViewStyle>;
|
|
7
7
|
}
|
|
8
|
-
declare const
|
|
9
|
-
export default
|
|
8
|
+
declare const AnimatedInput: ({ style, ...textInputProps }: AnimatedInputProps) => React.JSX.Element;
|
|
9
|
+
export default AnimatedInput;
|
|
@@ -9,7 +9,7 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
9
9
|
}
|
|
10
10
|
return t;
|
|
11
11
|
};
|
|
12
|
-
import React
|
|
12
|
+
import React from "react";
|
|
13
13
|
import { BaseInput } from "..";
|
|
14
14
|
import styled, { useTheme } from "styled-components/native";
|
|
15
15
|
import { View } from "react-native";
|
|
@@ -49,4 +49,4 @@ const AnimatedInput = (_a) => {
|
|
|
49
49
|
marginTop: 8,
|
|
50
50
|
}, inputErrorColor: theme ? inputStatusColors[inputStatus]({ theme }) : "neutral.c100", showErrorIcon: true }, rest))));
|
|
51
51
|
};
|
|
52
|
-
export default
|
|
52
|
+
export default AnimatedInput;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/native-ui",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.5-next.0",
|
|
4
4
|
"description": "Ledger Live - Mobile UI",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"rn-range-slider": "2.1.1",
|
|
43
43
|
"styled-system": "^5.1.5",
|
|
44
44
|
"victory-native": "^35.5.5",
|
|
45
|
-
"@ledgerhq/crypto-icons-ui": "^1.0.0",
|
|
45
|
+
"@ledgerhq/crypto-icons-ui": "^1.0.1-next.0",
|
|
46
46
|
"@ledgerhq/icons-ui": "^0.6.2",
|
|
47
47
|
"@ledgerhq/ui-shared": "^0.2.1"
|
|
48
48
|
},
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
"victory": "^35.5.5",
|
|
147
147
|
"webpack": "^5.76.1",
|
|
148
148
|
"webpack-dev-server": "^4.12.0",
|
|
149
|
-
"metro-extra-config": "1.0.1"
|
|
149
|
+
"@ledgerhq/metro-extra-config": "1.0.1"
|
|
150
150
|
},
|
|
151
151
|
"scripts": {
|
|
152
152
|
"android": "expo start --android",
|