@sk-web-gui/core 0.1.19 → 0.1.22
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": "@sk-web-gui/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22",
|
|
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": "109cac916802484e5b57826f06a107fd81707aec"
|
|
35
35
|
}
|
|
@@ -27,16 +27,16 @@ module.exports = Accordion = () => ({
|
|
|
27
27
|
|
|
28
28
|
"&-body": {
|
|
29
29
|
"@apply h-0 overflow-hidden m-lg": {},
|
|
30
|
-
transitionProperty: "height, padding, margin",
|
|
30
|
+
transitionProperty: "visibility, height, padding, margin",
|
|
31
31
|
transitionTimingFunction: "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
32
32
|
transitionDuration: "180ms",
|
|
33
33
|
|
|
34
34
|
"&[aria-hidden=\"true\"], &[data-hidden=\"true\"]": {
|
|
35
|
-
"@apply my-0": {},
|
|
35
|
+
"@apply my-0 invisible": {},
|
|
36
36
|
},
|
|
37
37
|
|
|
38
38
|
"&[aria-hidden=\"false\"], &[data-hidden=\"false\"]": {
|
|
39
|
-
"@apply block h-auto": {},
|
|
39
|
+
"@apply block h-auto visible": {},
|
|
40
40
|
},
|
|
41
41
|
},
|
|
42
42
|
},
|
|
@@ -38,7 +38,7 @@ module.exports = ZebraTable = () => ({
|
|
|
38
38
|
},
|
|
39
39
|
|
|
40
40
|
"&-more": {
|
|
41
|
-
"@apply text-gray-
|
|
41
|
+
"@apply text-gray-stroke": {},
|
|
42
42
|
},
|
|
43
43
|
},
|
|
44
44
|
},
|
|
@@ -51,7 +51,11 @@ module.exports = ZebraTable = () => ({
|
|
|
51
51
|
"@apply lg:bg-white": {},
|
|
52
52
|
|
|
53
53
|
"&-tr": {
|
|
54
|
-
"@apply bg-white lg:even:bg-white lg:odd:bg-gray-100 px-md py-md md:px-lg md:py-lg my-lg first-of-type:mt-0 block shadow-md lg:shadow-none lg:table-row lg:my-0 lg:py-0 lg:px-lg": {},
|
|
54
|
+
"@apply transition-all bg-white lg:even:bg-white lg:odd:bg-gray-100 px-md py-md md:px-lg md:py-lg my-lg first-of-type:mt-0 block shadow-md lg:shadow-none lg:table-row lg:my-0 lg:py-0 lg:px-lg": {},
|
|
55
|
+
|
|
56
|
+
"&.highlighted": {
|
|
57
|
+
"@apply lg:border lg:border-hover": {},
|
|
58
|
+
},
|
|
55
59
|
},
|
|
56
60
|
|
|
57
61
|
"&-td": {
|