@gympass/yoga 7.102.0 → 7.102.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.
|
@@ -111,7 +111,7 @@ const Button = ({
|
|
|
111
111
|
}
|
|
112
112
|
},
|
|
113
113
|
disabled: {
|
|
114
|
-
color: colors.
|
|
114
|
+
color: colors.text.disabled
|
|
115
115
|
},
|
|
116
116
|
hover: {
|
|
117
117
|
color: colors.white
|
|
@@ -128,7 +128,7 @@ const Button = ({
|
|
|
128
128
|
},
|
|
129
129
|
text: {
|
|
130
130
|
backgroundColor: "transparent",
|
|
131
|
-
disabled: colors.
|
|
131
|
+
disabled: colors.text.disabled
|
|
132
132
|
},
|
|
133
133
|
link: {
|
|
134
134
|
font: {
|
|
@@ -139,7 +139,7 @@ const Button = ({
|
|
|
139
139
|
color: colors.secondary
|
|
140
140
|
},
|
|
141
141
|
disabled: {
|
|
142
|
-
color: colors.
|
|
142
|
+
color: colors.text.disabled
|
|
143
143
|
}
|
|
144
144
|
},
|
|
145
145
|
margin: {
|
package/cjs/Button/web/Button.js
CHANGED
|
@@ -115,7 +115,7 @@ const Button = (0, import_react.forwardRef)(
|
|
|
115
115
|
children: [
|
|
116
116
|
Icon && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Icon, { role: "img" }),
|
|
117
117
|
children,
|
|
118
|
-
isLoading && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SpinnerContainer, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_Spinner.default, { color: "
|
|
118
|
+
isLoading && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SpinnerContainer, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_Spinner.default, { color: "text.disabled", size: small ? "small" : "medium" }) })
|
|
119
119
|
]
|
|
120
120
|
})
|
|
121
121
|
);
|
|
@@ -88,7 +88,7 @@ const Button = ({
|
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
90
|
disabled: {
|
|
91
|
-
color: colors.
|
|
91
|
+
color: colors.text.disabled
|
|
92
92
|
},
|
|
93
93
|
hover: {
|
|
94
94
|
color: colors.white
|
|
@@ -105,7 +105,7 @@ const Button = ({
|
|
|
105
105
|
},
|
|
106
106
|
text: {
|
|
107
107
|
backgroundColor: "transparent",
|
|
108
|
-
disabled: colors.
|
|
108
|
+
disabled: colors.text.disabled
|
|
109
109
|
},
|
|
110
110
|
link: {
|
|
111
111
|
font: {
|
|
@@ -116,7 +116,7 @@ const Button = ({
|
|
|
116
116
|
color: colors.secondary
|
|
117
117
|
},
|
|
118
118
|
disabled: {
|
|
119
|
-
color: colors.
|
|
119
|
+
color: colors.text.disabled
|
|
120
120
|
}
|
|
121
121
|
},
|
|
122
122
|
margin: {
|
package/esm/Button/web/Button.js
CHANGED
|
@@ -84,7 +84,7 @@ const Button = forwardRef(
|
|
|
84
84
|
children: [
|
|
85
85
|
Icon && /* @__PURE__ */ jsx(Icon, { role: "img" }),
|
|
86
86
|
children,
|
|
87
|
-
isLoading && /* @__PURE__ */ jsx(SpinnerContainer, { children: /* @__PURE__ */ jsx(Spinner, { color: "
|
|
87
|
+
isLoading && /* @__PURE__ */ jsx(SpinnerContainer, { children: /* @__PURE__ */ jsx(Spinner, { color: "text.disabled", size: small ? "small" : "medium" }) })
|
|
88
88
|
]
|
|
89
89
|
})
|
|
90
90
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gympass/yoga",
|
|
3
|
-
"version": "7.102.
|
|
3
|
+
"version": "7.102.2",
|
|
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": "003ec262716e9fc128bf071e1836f278766350a1",
|
|
61
61
|
"module": "./esm",
|
|
62
62
|
"private": false,
|
|
63
63
|
"react-native": "./cjs/index.native.js"
|