@gympass/yoga 7.102.3 → 7.102.4
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.
|
@@ -40,17 +40,16 @@ var import_Attendances = __toESM(require("./Attendances"));
|
|
|
40
40
|
var import_Box = __toESM(require("../../Box"));
|
|
41
41
|
const StyledBox = (0, import_styled_components.default)(import_Box.default)`
|
|
42
42
|
width: 100%;
|
|
43
|
-
${({
|
|
44
|
-
|
|
43
|
+
border-bottom-width: ${({ divided }) => divided ? 1 : 0}px;
|
|
44
|
+
border-bottom-color: ${({
|
|
45
45
|
theme: {
|
|
46
46
|
yoga: {
|
|
47
|
-
colors: {
|
|
47
|
+
colors: {
|
|
48
|
+
elements: { lineAndBorders }
|
|
49
|
+
}
|
|
48
50
|
}
|
|
49
51
|
}
|
|
50
|
-
}) =>
|
|
51
|
-
border-bottom-width: 1px;
|
|
52
|
-
border-bottom-color: ${light};
|
|
53
|
-
` : ""}
|
|
52
|
+
}) => lineAndBorders};
|
|
54
53
|
`;
|
|
55
54
|
const Content = import_styled_components.default.View`
|
|
56
55
|
flex: 1;
|
|
@@ -7,17 +7,16 @@ import Attendances from "./Attendances";
|
|
|
7
7
|
import Box from "../../Box";
|
|
8
8
|
const StyledBox = styled(Box)`
|
|
9
9
|
width: 100%;
|
|
10
|
-
${({
|
|
11
|
-
|
|
10
|
+
border-bottom-width: ${({ divided }) => divided ? 1 : 0}px;
|
|
11
|
+
border-bottom-color: ${({
|
|
12
12
|
theme: {
|
|
13
13
|
yoga: {
|
|
14
|
-
colors: {
|
|
14
|
+
colors: {
|
|
15
|
+
elements: { lineAndBorders }
|
|
16
|
+
}
|
|
15
17
|
}
|
|
16
18
|
}
|
|
17
|
-
}) =>
|
|
18
|
-
border-bottom-width: 1px;
|
|
19
|
-
border-bottom-color: ${light};
|
|
20
|
-
` : ""}
|
|
19
|
+
}) => lineAndBorders};
|
|
21
20
|
`;
|
|
22
21
|
const Content = styled.View`
|
|
23
22
|
flex: 1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gympass/yoga",
|
|
3
|
-
"version": "7.102.
|
|
3
|
+
"version": "7.102.4",
|
|
4
4
|
"description": "Gympass component library",
|
|
5
5
|
"main": "./cjs",
|
|
6
6
|
"types": "./typings/index.d.ts",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"react-native": "0.72.3",
|
|
58
58
|
"styled-components": "^4.4.0"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "b05cd21c48aa81f1a3a58dd32a48080b5206721d",
|
|
61
61
|
"module": "./esm",
|
|
62
62
|
"private": false,
|
|
63
63
|
"react-native": "./cjs/index.native.js"
|