@jobber/components-native 0.89.5-JOB-140604-4c8f8f2.41 → 0.89.5-JOB-140604-cab60b8.43
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/package.json +2 -2
- package/dist/src/BottomSheet/BottomSheet.js +1 -1
- package/dist/src/BottomSheet/BottomSheet.style.js +4 -2
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/src/BottomSheet/BottomSheet.style.d.ts +4 -2
- package/package.json +2 -2
- package/src/BottomSheet/BottomSheet.style.ts +4 -2
- package/src/BottomSheet/BottomSheet.tsx +1 -0
- package/src/ThumbnailList/__snapshots__/ThumbnailList.test.tsx.snap +6 -2
|
@@ -10,10 +10,9 @@ export declare const useStyles: () => {
|
|
|
10
10
|
background: {
|
|
11
11
|
borderTopLeftRadius: number;
|
|
12
12
|
borderTopRightRadius: number;
|
|
13
|
-
paddingTop: number;
|
|
14
13
|
};
|
|
15
14
|
content: {
|
|
16
|
-
|
|
15
|
+
paddingVertical: number;
|
|
17
16
|
};
|
|
18
17
|
footer: {
|
|
19
18
|
paddingBottom: number;
|
|
@@ -31,4 +30,7 @@ export declare const useStyles: () => {
|
|
|
31
30
|
marginTop: number;
|
|
32
31
|
marginBottom: number;
|
|
33
32
|
};
|
|
33
|
+
handle: {
|
|
34
|
+
display: "none";
|
|
35
|
+
};
|
|
34
36
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components-native",
|
|
3
|
-
"version": "0.89.5-JOB-140604-
|
|
3
|
+
"version": "0.89.5-JOB-140604-cab60b8.43+cab60b8c4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "React Native implementation of Atlantis",
|
|
6
6
|
"repository": {
|
|
@@ -96,5 +96,5 @@
|
|
|
96
96
|
"react-native-safe-area-context": "^5.4.0",
|
|
97
97
|
"react-native-svg": ">=12.0.0"
|
|
98
98
|
},
|
|
99
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "cab60b8c45dc2b1cd9271c7db3b984c65563e7f6"
|
|
100
100
|
}
|
|
@@ -12,10 +12,9 @@ export const useStyles = buildThemedStyles(tokens => {
|
|
|
12
12
|
background: {
|
|
13
13
|
borderTopLeftRadius: modalBorderRadius,
|
|
14
14
|
borderTopRightRadius: modalBorderRadius,
|
|
15
|
-
paddingTop: tokens["space-small"],
|
|
16
15
|
},
|
|
17
16
|
content: {
|
|
18
|
-
|
|
17
|
+
paddingVertical: tokens["space-small"],
|
|
19
18
|
},
|
|
20
19
|
footer: {
|
|
21
20
|
paddingBottom: tokens["space-small"],
|
|
@@ -33,5 +32,8 @@ export const useStyles = buildThemedStyles(tokens => {
|
|
|
33
32
|
marginTop: tokens["space-small"],
|
|
34
33
|
marginBottom: tokens["space-smaller"],
|
|
35
34
|
},
|
|
35
|
+
handle: {
|
|
36
|
+
display: "none",
|
|
37
|
+
},
|
|
36
38
|
};
|
|
37
39
|
});
|
|
@@ -157,10 +157,14 @@ exports[`renders a thumbnail component with attachments 1`] = `
|
|
|
157
157
|
{
|
|
158
158
|
"borderTopLeftRadius": 24,
|
|
159
159
|
"borderTopRightRadius": 24,
|
|
160
|
-
"paddingTop": 8,
|
|
161
160
|
}
|
|
162
161
|
}
|
|
163
162
|
enablePanDownToClose={true}
|
|
163
|
+
handleStyle={
|
|
164
|
+
{
|
|
165
|
+
"display": "none",
|
|
166
|
+
}
|
|
167
|
+
}
|
|
164
168
|
keyboardBlurBehavior="restore"
|
|
165
169
|
style={
|
|
166
170
|
{
|
|
@@ -173,7 +177,7 @@ exports[`renders a thumbnail component with attachments 1`] = `
|
|
|
173
177
|
enableFooterMarginAdjustment={true}
|
|
174
178
|
style={
|
|
175
179
|
{
|
|
176
|
-
"
|
|
180
|
+
"paddingVertical": 8,
|
|
177
181
|
}
|
|
178
182
|
}
|
|
179
183
|
testID="bottom-sheet-view"
|