@gympass/yoga 7.114.17 → 7.114.18
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gympass/yoga",
|
|
3
|
-
"version": "7.114.
|
|
3
|
+
"version": "7.114.18",
|
|
4
4
|
"description": "Gympass component library",
|
|
5
5
|
"main": "./cjs",
|
|
6
6
|
"types": "./typings/index.d.ts",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@gympass/yoga-common": "^1.3.1",
|
|
30
|
-
"@gympass/yoga-helpers": "^1.0
|
|
30
|
+
"@gympass/yoga-helpers": "^1.1.0",
|
|
31
31
|
"@gympass/yoga-icons": "^1.23.0",
|
|
32
32
|
"@gympass/yoga-illustrations": "^0.7.1",
|
|
33
33
|
"@gympass/yoga-system": "^0.12.0",
|
|
34
|
-
"@gympass/yoga-tokens": "^3.5.
|
|
34
|
+
"@gympass/yoga-tokens": "^3.5.1",
|
|
35
35
|
"@ptomasroos/react-native-multi-slider": "^2.1.1",
|
|
36
36
|
"@radix-ui/react-dropdown-menu": "^2.0.1",
|
|
37
37
|
"date-fns": "^2.29.2",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"react-native": "0.72.3",
|
|
58
58
|
"styled-components": "^4.4.0"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "c7386e9739774f4bc622d20a463ac7ceba02a0d9",
|
|
61
61
|
"module": "./esm",
|
|
62
62
|
"private": false,
|
|
63
63
|
"react-native": "./cjs/index.native.js"
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import * as _gympass_yoga_tokens_global_transition from '@gympass/yoga-tokens/global/transition';
|
|
2
|
-
import * as _gympass_yoga_tokens_global_breakpoints from '@gympass/yoga-tokens/global/breakpoints';
|
|
3
2
|
|
|
4
3
|
declare const v3theme: {
|
|
5
4
|
(tokens: {
|
|
@@ -60,7 +59,49 @@ declare const v3theme: {
|
|
|
60
59
|
values: boolean;
|
|
61
60
|
};
|
|
62
61
|
};
|
|
63
|
-
breakpoints:
|
|
62
|
+
breakpoints: {
|
|
63
|
+
readonly xxs: {
|
|
64
|
+
readonly width: 0;
|
|
65
|
+
readonly margin: 20;
|
|
66
|
+
readonly gutter: 16;
|
|
67
|
+
};
|
|
68
|
+
readonly xs: {
|
|
69
|
+
readonly width: 360;
|
|
70
|
+
readonly margin: 20;
|
|
71
|
+
readonly gutter: 16;
|
|
72
|
+
};
|
|
73
|
+
readonly sm: {
|
|
74
|
+
readonly width: 480;
|
|
75
|
+
readonly margin: 20;
|
|
76
|
+
readonly gutter: 16;
|
|
77
|
+
};
|
|
78
|
+
readonly md: {
|
|
79
|
+
readonly width: 768;
|
|
80
|
+
readonly margin: 20;
|
|
81
|
+
readonly gutter: 16;
|
|
82
|
+
};
|
|
83
|
+
readonly lg: {
|
|
84
|
+
readonly width: 1024;
|
|
85
|
+
readonly margin: 71;
|
|
86
|
+
readonly gutter: 24;
|
|
87
|
+
};
|
|
88
|
+
readonly xl: {
|
|
89
|
+
readonly width: 1200;
|
|
90
|
+
readonly margin: 71;
|
|
91
|
+
readonly gutter: 24;
|
|
92
|
+
};
|
|
93
|
+
readonly xxl: {
|
|
94
|
+
readonly width: 1366;
|
|
95
|
+
readonly margin: 71;
|
|
96
|
+
readonly gutter: 24;
|
|
97
|
+
};
|
|
98
|
+
readonly xxxl: {
|
|
99
|
+
readonly width: 1600;
|
|
100
|
+
readonly margin: 71;
|
|
101
|
+
readonly gutter: 24;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
BREAKPOINTS_KEYS: string[];
|
|
64
105
|
colors: {
|
|
65
106
|
readonly vibin: "#D8385E";
|
|
66
107
|
readonly hope: "#1D856C";
|
package/typings/index.d.ts
CHANGED
|
@@ -7,7 +7,6 @@ import * as styled_components from 'styled-components';
|
|
|
7
7
|
export { _ as Icon } from './Icon-19f6da82.js';
|
|
8
8
|
export { N as NavigationMenu } from './NavigationMenu-8c022497.js';
|
|
9
9
|
import '@gympass/yoga-tokens/global/transition';
|
|
10
|
-
import '@gympass/yoga-tokens/global/breakpoints';
|
|
11
10
|
import '@gympass/yoga-tokens';
|
|
12
11
|
import './Actions-752d7514.js';
|
|
13
12
|
|