@sphereon/ui-components.ssi-react-native 0.2.1-unstable.87 → 0.2.1-unstable.89
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/dist/components/assets/badges/SSICheckmarkBadge/index.js +12 -40
- package/dist/components/assets/badges/SSIExclamationMarkBadge/index.js +12 -40
- package/dist/components/assets/logos/SSILogo/index.js +10 -15
- package/dist/components/assets/logos/SSIPlaceholderLogo/index.js +16 -44
- package/dist/components/buttons/PrimaryButton/index.js +11 -16
- package/dist/components/buttons/SecondaryButton/index.js +14 -19
- package/dist/components/indicators/SSIActivityIndicator/index.js +6 -11
- package/dist/components/labels/SSIStatusLabel/index.js +20 -25
- package/dist/components/views/SSICredentialCardView/index.js +47 -52
- package/dist/components/views/SSICredentialMiniCardView/index.js +9 -14
- package/dist/index.js +12 -41
- package/dist/styles/components/buttons/index.d.ts +12 -17
- package/dist/styles/components/buttons/index.js +5 -11
- package/dist/styles/components/components/SSICredentialCardView/index.d.ts +17 -14
- package/dist/styles/components/components/SSICredentialCardView/index.js +18 -24
- package/dist/styles/components/components/SSICredentialMiniCardView/index.d.ts +5 -2
- package/dist/styles/components/components/SSICredentialMiniCardView/index.js +4 -10
- package/dist/styles/components/components/SSIStatusLabel/index.d.ts +4 -3
- package/dist/styles/components/components/SSIStatusLabel/index.js +6 -12
- package/dist/styles/components/components/SecondaryButton/index.d.ts +13 -17
- package/dist/styles/components/components/SecondaryButton/index.js +4 -10
- package/dist/styles/components/components/index.js +4 -20
- package/dist/styles/components/containers/index.d.ts +8 -36
- package/dist/styles/components/containers/index.js +8 -14
- package/dist/styles/components/index.js +3 -19
- package/dist/styles/fonts/index.d.ts +13 -12
- package/dist/styles/fonts/index.js +45 -51
- package/dist/styles/gradients/index.d.ts +22 -29
- package/dist/styles/gradients/index.js +7 -13
- package/dist/styles/index.js +4 -20
- package/dist/styles/typography.js +58 -61
- package/package.json +14 -12
|
@@ -1,69 +1,63 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
const typography_1 = require("../typography");
|
|
10
|
-
exports.SSITextH2Styled = native_1.default.Text `
|
|
11
|
-
font-family: ${typography_1.fontStyle.h2Regular.fontFamily};
|
|
12
|
-
font-size: ${typography_1.fontStyle.h2Regular.fontSize}px;
|
|
13
|
-
font-weight: ${typography_1.fontStyle.h2Regular.fontWeight};
|
|
14
|
-
line-height: ${typography_1.fontStyle.h2Regular.lineHeight}px;
|
|
1
|
+
import styled from 'styled-components/native';
|
|
2
|
+
import { fontColors } from '@sphereon/ui-components.core';
|
|
3
|
+
import { fontStyle } from '../typography';
|
|
4
|
+
export const SSITextH2Styled = styled.Text `
|
|
5
|
+
font-family: ${fontStyle.h2Regular.fontFamily};
|
|
6
|
+
font-size: ${fontStyle.h2Regular.fontSize}px;
|
|
7
|
+
font-weight: ${fontStyle.h2Regular.fontWeight};
|
|
8
|
+
line-height: ${fontStyle.h2Regular.lineHeight}px;
|
|
15
9
|
height: auto;
|
|
16
10
|
`;
|
|
17
|
-
|
|
18
|
-
color: ${
|
|
11
|
+
export const SSITextH2LightStyled = styled(SSITextH2Styled) `
|
|
12
|
+
color: ${fontColors.light};
|
|
19
13
|
`;
|
|
20
|
-
|
|
21
|
-
color: ${
|
|
14
|
+
export const SSITextH2SecondaryButtonStyled = styled(SSITextH2Styled) `
|
|
15
|
+
color: ${fontColors.secondaryButton};
|
|
22
16
|
`;
|
|
23
|
-
|
|
24
|
-
font-family: ${
|
|
25
|
-
font-size: ${
|
|
26
|
-
font-weight: ${
|
|
27
|
-
line-height: ${
|
|
17
|
+
export const SSITextH4Styled = styled.Text `
|
|
18
|
+
font-family: ${fontStyle.h4Regular.fontFamily};
|
|
19
|
+
font-size: ${fontStyle.h4Regular.fontSize}px;
|
|
20
|
+
font-weight: ${fontStyle.h4Regular.fontWeight};
|
|
21
|
+
line-height: ${fontStyle.h4Regular.lineHeight}px;
|
|
28
22
|
height: auto;
|
|
29
23
|
`;
|
|
30
|
-
|
|
31
|
-
font-family: ${
|
|
32
|
-
font-size: ${
|
|
33
|
-
font-weight: ${
|
|
34
|
-
line-height: ${
|
|
24
|
+
export const SSITextH4SemiBoldStyled = styled.Text `
|
|
25
|
+
font-family: ${fontStyle.h4SemiBold.fontFamily};
|
|
26
|
+
font-size: ${fontStyle.h4SemiBold.fontSize}px;
|
|
27
|
+
font-weight: ${fontStyle.h4SemiBold.fontWeight};
|
|
28
|
+
line-height: ${fontStyle.h4SemiBold.lineHeight}px;
|
|
35
29
|
height: auto;
|
|
36
30
|
`;
|
|
37
|
-
|
|
38
|
-
color: ${
|
|
31
|
+
export const SSITextH4LightStyled = styled(SSITextH4Styled) `
|
|
32
|
+
color: ${fontColors.light};
|
|
39
33
|
`;
|
|
40
|
-
|
|
41
|
-
color: ${
|
|
34
|
+
export const SSITextH4SemiBoldLightStyled = styled(SSITextH4SemiBoldStyled) `
|
|
35
|
+
color: ${fontColors.light};
|
|
42
36
|
`;
|
|
43
|
-
|
|
44
|
-
font-family: ${
|
|
45
|
-
font-size: ${
|
|
46
|
-
font-weight: ${
|
|
47
|
-
line-height: ${
|
|
37
|
+
export const SSITextH5Styled = styled.Text `
|
|
38
|
+
font-family: ${fontStyle.h5Regular.fontFamily};
|
|
39
|
+
font-size: ${fontStyle.h5Regular.fontSize}px;
|
|
40
|
+
font-weight: ${fontStyle.h5Regular.fontWeight};
|
|
41
|
+
line-height: ${fontStyle.h5Regular.lineHeight}px;
|
|
48
42
|
height: auto;
|
|
49
43
|
`;
|
|
50
|
-
|
|
51
|
-
color: ${
|
|
44
|
+
export const SSITextH5LightStyled = styled(SSITextH5Styled) `
|
|
45
|
+
color: ${fontColors.light};
|
|
52
46
|
`;
|
|
53
|
-
|
|
54
|
-
font-family: ${
|
|
55
|
-
font-size: ${
|
|
56
|
-
font-weight: ${
|
|
57
|
-
line-height: ${
|
|
47
|
+
export const SSITextH6Styled = styled.Text `
|
|
48
|
+
font-family: ${fontStyle.h6.fontFamily};
|
|
49
|
+
font-size: ${fontStyle.h6.fontSize}px;
|
|
50
|
+
font-weight: ${fontStyle.h6.fontWeight};
|
|
51
|
+
line-height: ${fontStyle.h6.lineHeight}px;
|
|
58
52
|
height: auto;
|
|
59
53
|
`;
|
|
60
|
-
|
|
61
|
-
color: ${
|
|
54
|
+
export const SSITextH6LightStyled = styled(SSITextH6Styled) `
|
|
55
|
+
color: ${fontColors.light};
|
|
62
56
|
`;
|
|
63
|
-
|
|
64
|
-
font-family: ${
|
|
65
|
-
font-size: ${
|
|
66
|
-
font-weight: ${
|
|
67
|
-
line-height: ${
|
|
57
|
+
export const Text64Styled = styled.Text `
|
|
58
|
+
font-family: ${fontStyle.Regular64.fontFamily};
|
|
59
|
+
font-size: ${fontStyle.Regular64.fontSize}px;
|
|
60
|
+
font-weight: ${fontStyle.Regular64.fontWeight};
|
|
61
|
+
line-height: ${fontStyle.Regular64.lineHeight}px;
|
|
68
62
|
height: auto;
|
|
69
63
|
`;
|
|
@@ -1,30 +1,23 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { LinearGradient } from 'expo-linear-gradient';
|
|
3
|
-
export declare const SSILinearGradientStyled: import("styled-components
|
|
4
|
-
colors:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
start?: import("expo-linear-gradient").LinearGradientPoint | null | undefined;
|
|
26
|
-
end?: import("expo-linear-gradient").LinearGradientPoint | null | undefined;
|
|
27
|
-
dither?: boolean | undefined;
|
|
28
|
-
} & import("react").RefAttributes<LinearGradient>>, never>, never>, "ref"> & {
|
|
29
|
-
ref?: ((instance: LinearGradient | null) => void) | import("react").RefObject<LinearGradient> | null | undefined;
|
|
30
|
-
}, never>>;
|
|
2
|
+
export declare const SSILinearGradientStyled: import("styled-components").StyledComponent<typeof LinearGradient, any, {
|
|
3
|
+
colors: string[];
|
|
4
|
+
start: {
|
|
5
|
+
x: number;
|
|
6
|
+
y: number;
|
|
7
|
+
};
|
|
8
|
+
end: {
|
|
9
|
+
x: number;
|
|
10
|
+
y: number;
|
|
11
|
+
};
|
|
12
|
+
}, "end" | "start" | "colors">;
|
|
13
|
+
export declare const SSIRoundedLinearGradient: import("styled-components").StyledComponent<typeof LinearGradient, any, {
|
|
14
|
+
colors: string[];
|
|
15
|
+
start: {
|
|
16
|
+
x: number;
|
|
17
|
+
y: number;
|
|
18
|
+
};
|
|
19
|
+
end: {
|
|
20
|
+
x: number;
|
|
21
|
+
y: number;
|
|
22
|
+
};
|
|
23
|
+
}, "end" | "start" | "colors">;
|
|
@@ -1,17 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
exports.SSIRoundedLinearGradient = exports.SSILinearGradientStyled = void 0;
|
|
7
|
-
const expo_linear_gradient_1 = require("expo-linear-gradient");
|
|
8
|
-
const native_1 = __importDefault(require("styled-components/native"));
|
|
9
|
-
const ui_components_core_1 = require("@sphereon/ui-components.core");
|
|
10
|
-
exports.SSILinearGradientStyled = (0, native_1.default)(expo_linear_gradient_1.LinearGradient).attrs(props => ({
|
|
11
|
-
colors: props?.colors ?? [ui_components_core_1.gradientsColors['100'].secondaryColor, ui_components_core_1.gradientsColors['100'].primaryColor],
|
|
1
|
+
import { LinearGradient } from 'expo-linear-gradient';
|
|
2
|
+
import styled from 'styled-components/native';
|
|
3
|
+
import { gradientsColors, SSIRoundedEdgesCss } from '@sphereon/ui-components.core';
|
|
4
|
+
export const SSILinearGradientStyled = styled(LinearGradient).attrs(props => ({
|
|
5
|
+
colors: props?.colors ?? [gradientsColors['100'].secondaryColor, gradientsColors['100'].primaryColor],
|
|
12
6
|
start: { x: 1, y: 1 },
|
|
13
7
|
end: { x: 0, y: 0 },
|
|
14
8
|
})) ``;
|
|
15
|
-
|
|
16
|
-
${
|
|
9
|
+
export const SSIRoundedLinearGradient = styled(SSILinearGradientStyled) `
|
|
10
|
+
${SSIRoundedEdgesCss}
|
|
17
11
|
`;
|
package/dist/styles/index.js
CHANGED
|
@@ -1,20 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./typography"), exports);
|
|
18
|
-
__exportStar(require("./components"), exports);
|
|
19
|
-
__exportStar(require("./gradients"), exports);
|
|
20
|
-
__exportStar(require("./fonts"), exports);
|
|
1
|
+
export * from './typography';
|
|
2
|
+
export * from './components';
|
|
3
|
+
export * from './gradients';
|
|
4
|
+
export * from './fonts';
|
|
@@ -1,108 +1,105 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
700: (0, react_native_size_matters_1.moderateScale)(ui_components_core_1.fontSize['700']),
|
|
14
|
-
800: (0, react_native_size_matters_1.moderateScale)(ui_components_core_1.fontSize['800']),
|
|
15
|
-
64: (0, react_native_size_matters_1.moderateScale)(ui_components_core_1.fontSize['64']),
|
|
1
|
+
import { fontSize as fontSizes, fontWeight, lineHeight } from '@sphereon/ui-components.core';
|
|
2
|
+
import { moderateScale } from 'react-native-size-matters';
|
|
3
|
+
export const fontSize = {
|
|
4
|
+
100: moderateScale(fontSizes['100']),
|
|
5
|
+
200: moderateScale(fontSizes['200']),
|
|
6
|
+
300: moderateScale(fontSizes['300']),
|
|
7
|
+
400: moderateScale(fontSizes['400']),
|
|
8
|
+
500: moderateScale(fontSizes['500']),
|
|
9
|
+
600: moderateScale(fontSizes['600']),
|
|
10
|
+
700: moderateScale(fontSizes['700']),
|
|
11
|
+
800: moderateScale(fontSizes['800']),
|
|
12
|
+
64: moderateScale(fontSizes['64']),
|
|
16
13
|
};
|
|
17
|
-
|
|
14
|
+
export const fontStyle = {
|
|
18
15
|
h0SemiBold: {
|
|
19
16
|
fontFamily: 'Poppins-SemiBold',
|
|
20
|
-
fontSize:
|
|
21
|
-
fontWeight:
|
|
22
|
-
lineHeight:
|
|
17
|
+
fontSize: fontSize[800],
|
|
18
|
+
fontWeight: fontWeight[600],
|
|
19
|
+
lineHeight: lineHeight[800],
|
|
23
20
|
},
|
|
24
21
|
h1SemiBold: {
|
|
25
22
|
fontFamily: 'Poppins-SemiBold',
|
|
26
|
-
fontSize:
|
|
27
|
-
fontWeight:
|
|
28
|
-
lineHeight:
|
|
23
|
+
fontSize: fontSize[700],
|
|
24
|
+
fontWeight: fontWeight[600],
|
|
25
|
+
lineHeight: lineHeight[700],
|
|
29
26
|
},
|
|
30
27
|
h1Regular: {
|
|
31
28
|
fontFamily: 'Poppins-Regular',
|
|
32
|
-
fontSize:
|
|
33
|
-
fontWeight:
|
|
34
|
-
lineHeight:
|
|
29
|
+
fontSize: fontSize[700],
|
|
30
|
+
fontWeight: fontWeight[400],
|
|
31
|
+
lineHeight: lineHeight[700],
|
|
35
32
|
},
|
|
36
33
|
h2Regular: {
|
|
37
34
|
fontFamily: 'Poppins-Regular',
|
|
38
|
-
fontSize:
|
|
39
|
-
fontWeight:
|
|
40
|
-
lineHeight:
|
|
35
|
+
fontSize: fontSize[600],
|
|
36
|
+
fontWeight: fontWeight[400],
|
|
37
|
+
lineHeight: lineHeight[600],
|
|
41
38
|
},
|
|
42
39
|
h2SemiBold: {
|
|
43
40
|
fontFamily: 'Poppins-SemiBold',
|
|
44
|
-
fontSize:
|
|
45
|
-
fontWeight:
|
|
46
|
-
lineHeight:
|
|
41
|
+
fontSize: fontSize[600],
|
|
42
|
+
fontWeight: fontWeight[600],
|
|
43
|
+
lineHeight: lineHeight[600],
|
|
47
44
|
},
|
|
48
45
|
h3Regular: {
|
|
49
46
|
fontFamily: 'Poppins-Regular',
|
|
50
|
-
fontSize:
|
|
51
|
-
fontWeight:
|
|
52
|
-
lineHeight:
|
|
47
|
+
fontSize: fontSize[500],
|
|
48
|
+
fontWeight: fontWeight[400],
|
|
49
|
+
lineHeight: lineHeight[500],
|
|
53
50
|
},
|
|
54
51
|
h3SemiBold: {
|
|
55
52
|
fontFamily: 'Poppins-SemiBold',
|
|
56
|
-
fontSize:
|
|
57
|
-
fontWeight:
|
|
58
|
-
lineHeight:
|
|
53
|
+
fontSize: fontSize[500],
|
|
54
|
+
fontWeight: fontWeight[600],
|
|
55
|
+
lineHeight: lineHeight[500],
|
|
59
56
|
},
|
|
60
57
|
h4Regular: {
|
|
61
58
|
fontFamily: 'Poppins-Regular',
|
|
62
|
-
fontSize:
|
|
63
|
-
fontWeight:
|
|
64
|
-
lineHeight:
|
|
59
|
+
fontSize: fontSize[300],
|
|
60
|
+
fontWeight: fontWeight[400],
|
|
61
|
+
lineHeight: lineHeight[300],
|
|
65
62
|
},
|
|
66
63
|
h4SemiBold: {
|
|
67
64
|
fontFamily: 'Poppins-SemiBold',
|
|
68
|
-
fontSize:
|
|
69
|
-
fontWeight:
|
|
70
|
-
lineHeight:
|
|
65
|
+
fontSize: fontSize[300],
|
|
66
|
+
fontWeight: fontWeight[400],
|
|
67
|
+
lineHeight: lineHeight[300],
|
|
71
68
|
},
|
|
72
69
|
h5Regular: {
|
|
73
70
|
fontFamily: 'Poppins-Regular',
|
|
74
|
-
fontSize:
|
|
75
|
-
fontWeight:
|
|
76
|
-
lineHeight:
|
|
71
|
+
fontSize: fontSize[200],
|
|
72
|
+
fontWeight: fontWeight[400],
|
|
73
|
+
lineHeight: lineHeight[200],
|
|
77
74
|
},
|
|
78
75
|
h5SemiBold: {
|
|
79
76
|
fontFamily: 'Poppins-SemiBold',
|
|
80
|
-
fontSize:
|
|
81
|
-
fontWeight:
|
|
82
|
-
lineHeight:
|
|
77
|
+
fontSize: fontSize[200],
|
|
78
|
+
fontWeight: fontWeight[600],
|
|
79
|
+
lineHeight: lineHeight[200],
|
|
83
80
|
},
|
|
84
81
|
h6: {
|
|
85
82
|
fontFamily: 'Poppins',
|
|
86
|
-
fontSize:
|
|
87
|
-
fontWeight:
|
|
88
|
-
lineHeight:
|
|
83
|
+
fontSize: fontSize[100],
|
|
84
|
+
fontWeight: fontWeight[400],
|
|
85
|
+
lineHeight: lineHeight[100],
|
|
89
86
|
},
|
|
90
87
|
h7Regular: {
|
|
91
88
|
fontFamily: 'Poppins',
|
|
92
|
-
fontSize:
|
|
93
|
-
fontWeight:
|
|
94
|
-
lineHeight:
|
|
89
|
+
fontSize: fontSize[400],
|
|
90
|
+
fontWeight: fontWeight[400],
|
|
91
|
+
lineHeight: lineHeight[400],
|
|
95
92
|
},
|
|
96
93
|
h7SemiBold: {
|
|
97
94
|
fontFamily: 'Poppins-SemiBold',
|
|
98
|
-
fontSize:
|
|
99
|
-
fontWeight:
|
|
100
|
-
lineHeight:
|
|
95
|
+
fontSize: fontSize[400],
|
|
96
|
+
fontWeight: fontWeight[600],
|
|
97
|
+
lineHeight: lineHeight[400],
|
|
101
98
|
},
|
|
102
99
|
Regular64: {
|
|
103
100
|
fontFamily: 'Poppins',
|
|
104
|
-
fontSize:
|
|
105
|
-
fontWeight:
|
|
106
|
-
lineHeight:
|
|
101
|
+
fontSize: fontSize[64],
|
|
102
|
+
fontWeight: fontWeight[600],
|
|
103
|
+
lineHeight: lineHeight[64],
|
|
107
104
|
},
|
|
108
105
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sphereon/ui-components.ssi-react-native",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.2.1-unstable.
|
|
4
|
+
"version": "0.2.1-unstable.89+ad8f031",
|
|
5
5
|
"description": "SSI UI components for React-Native",
|
|
6
6
|
"repository": "git@github.com:Sphereon-Opensource/UI-Components.git",
|
|
7
7
|
"author": "Sphereon <dev@sphereon.com>",
|
|
@@ -29,22 +29,24 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@react-native-community/blur": "^4.4.0",
|
|
32
|
-
"@react-native-masked-view/masked-view": "
|
|
33
|
-
"@sphereon/ui-components.core": "0.2.1-unstable.
|
|
34
|
-
"expo-linear-gradient": "~
|
|
32
|
+
"@react-native-masked-view/masked-view": "0.3.1",
|
|
33
|
+
"@sphereon/ui-components.core": "0.2.1-unstable.89+ad8f031",
|
|
34
|
+
"expo-linear-gradient": "~12.7.2",
|
|
35
35
|
"react-native-fast-image": "^8.6.3",
|
|
36
|
-
"react-native-size-matters": "^0.4.
|
|
37
|
-
"react-native-svg": "
|
|
38
|
-
"styled-components": "^
|
|
36
|
+
"react-native-size-matters": "^0.4.0",
|
|
37
|
+
"react-native-svg": "14.1.0",
|
|
38
|
+
"styled-components": "^5.3.3"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@types/react": "~18.2.
|
|
42
|
-
"
|
|
43
|
-
"
|
|
41
|
+
"@types/react": "~18.2.67",
|
|
42
|
+
"@types/react-native": "0.73.0",
|
|
43
|
+
"@types/styled-components": "^5.1.15",
|
|
44
|
+
"@types/styled-components-react-native": "^5.1.2",
|
|
45
|
+
"typescript": "4.9.5"
|
|
44
46
|
},
|
|
45
47
|
"peerDependencies": {
|
|
46
48
|
"react": ">= 18",
|
|
47
|
-
"react-native": "~0.
|
|
49
|
+
"react-native": "~0.73.6"
|
|
48
50
|
},
|
|
49
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "ad8f031641f8d58a427323fe7d35baf11e98384b"
|
|
50
52
|
}
|