@sk-web-gui/core 0.1.52 → 0.1.53
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 +2 -2
- package/src/components/forms.js +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sk-web-gui/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.53",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"files": [
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"postcss-import": "^14.0.2",
|
|
32
32
|
"tailwindcss": "^2.2.4"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "52eadc25b58d23c56796ffb4442f598550a16cf7"
|
|
35
35
|
}
|
package/src/components/forms.js
CHANGED
|
@@ -211,9 +211,9 @@ module.exports = Forms = (colors) => ({
|
|
|
211
211
|
padding: '1.32rem 1.76rem',
|
|
212
212
|
},
|
|
213
213
|
|
|
214
|
-
'&-disabled': {
|
|
215
|
-
'@apply disabled:cursor-not-allowed': {},
|
|
216
|
-
'@apply disabled:bg-gray-lighter': {},
|
|
214
|
+
'&-disabled, &&-disabled': {
|
|
215
|
+
'@apply disabled:cursor-not-allowed cursor-not-allowed': {},
|
|
216
|
+
'@apply disabled:bg-gray-lighter bg-gray-lighter': {},
|
|
217
217
|
//"@apply disabled:shadow-none disabled:cursor-not-allowed disabled:opacity-60": {},
|
|
218
218
|
//"@apply disabled:border-neutral-200 disabled:bg-neutral-200": {},
|
|
219
219
|
//"@apply dark:disabled:border-transparent dark:disabled:bg-white/20": {},
|