@gympass/yoga 7.78.1 → 7.78.2
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.
|
@@ -15,10 +15,9 @@ describe('<Stepper />', function () {
|
|
|
15
15
|
}, /*#__PURE__*/React.createElement(Text, null, "step two content")), /*#__PURE__*/React.createElement(Stepper.Step, {
|
|
16
16
|
label: "step three"
|
|
17
17
|
}, /*#__PURE__*/React.createElement(Text, null, "step three content"))))),
|
|
18
|
-
root = _render.root,
|
|
19
18
|
toJSON = _render.toJSON;
|
|
20
19
|
|
|
21
|
-
expect(toJSON(
|
|
20
|
+
expect(toJSON()).toMatchSnapshot();
|
|
22
21
|
});
|
|
23
22
|
it('should match snapshot with first step active and secondary color', function () {
|
|
24
23
|
var _render2 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Stepper, {
|
|
@@ -31,10 +30,9 @@ describe('<Stepper />', function () {
|
|
|
31
30
|
}, /*#__PURE__*/React.createElement(Text, null, "step two content")), /*#__PURE__*/React.createElement(Stepper.Step, {
|
|
32
31
|
label: "step three"
|
|
33
32
|
}, /*#__PURE__*/React.createElement(Text, null, "step three content"))))),
|
|
34
|
-
container = _render2.container,
|
|
35
33
|
toJSON = _render2.toJSON;
|
|
36
34
|
|
|
37
|
-
expect(toJSON(
|
|
35
|
+
expect(toJSON()).toMatchSnapshot();
|
|
38
36
|
});
|
|
39
37
|
it('should match snapshot with second step active', function () {
|
|
40
38
|
var _render3 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Stepper, {
|
|
@@ -46,10 +44,9 @@ describe('<Stepper />', function () {
|
|
|
46
44
|
}, /*#__PURE__*/React.createElement(Text, null, "step two content")), /*#__PURE__*/React.createElement(Stepper.Step, {
|
|
47
45
|
label: "step three"
|
|
48
46
|
}, /*#__PURE__*/React.createElement(Text, null, "step three content"))))),
|
|
49
|
-
root = _render3.root,
|
|
50
47
|
toJSON = _render3.toJSON;
|
|
51
48
|
|
|
52
|
-
expect(toJSON(
|
|
49
|
+
expect(toJSON()).toMatchSnapshot();
|
|
53
50
|
});
|
|
54
51
|
});
|
|
55
52
|
describe('Steps', function () {
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gympass/yoga",
|
|
3
|
-
"version": "7.78.
|
|
3
|
+
"version": "7.78.2",
|
|
4
4
|
"description": "Gympass component library",
|
|
5
|
-
"main": "./cjs
|
|
5
|
+
"main": "./cjs",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"keywords": [
|
|
8
8
|
"Gympass",
|
|
@@ -55,14 +55,14 @@
|
|
|
55
55
|
"react-native": "0.72.3",
|
|
56
56
|
"styled-components": "^4.4.0"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
59
|
-
"module": "./esm
|
|
58
|
+
"gitHead": "06f36029241fa500b63cdf2cc0d720643dee86e0",
|
|
59
|
+
"module": "./esm",
|
|
60
60
|
"types": "./typings/index.d.ts",
|
|
61
61
|
"private": false,
|
|
62
62
|
"exports": {
|
|
63
63
|
".": {
|
|
64
|
-
"require": "./cjs
|
|
65
|
-
"import": "./esm
|
|
64
|
+
"require": "./cjs",
|
|
65
|
+
"import": "./esm"
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
68
|
"react-native": "./cjs/index.native.js"
|