@jobber/components-native 0.89.5-JOB-140604-c92b387.42 → 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.style.js +1 -2
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/src/BottomSheet/BottomSheet.style.d.ts +1 -2
- package/package.json +2 -2
- package/src/BottomSheet/BottomSheet.style.ts +1 -2
- package/src/ThumbnailList/__snapshots__/ThumbnailList.test.tsx.snap +1 -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;
|
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"],
|
|
@@ -157,7 +157,6 @@ 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}
|
|
@@ -178,7 +177,7 @@ exports[`renders a thumbnail component with attachments 1`] = `
|
|
|
178
177
|
enableFooterMarginAdjustment={true}
|
|
179
178
|
style={
|
|
180
179
|
{
|
|
181
|
-
"
|
|
180
|
+
"paddingVertical": 8,
|
|
182
181
|
}
|
|
183
182
|
}
|
|
184
183
|
testID="bottom-sheet-view"
|