@sk-web-gui/core 0.1.17 → 0.1.20
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.20",
|
|
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": "1c19f432f69002ac8dfa988a53d463bc4401ad95"
|
|
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
|
},
|
package/src/components/forms.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
module.exports = Message = () => ({
|
|
2
2
|
".message": {
|
|
3
|
-
"@apply flex items-center px-3 py-1.5 m-2 text-sm rounded-base shadow-sm w-max break-words": {},
|
|
3
|
+
"@apply max-w-2xl flex items-center px-3 py-1.5 m-2 text-sm rounded-base shadow-sm w-max break-words": {},
|
|
4
4
|
"@apply text-neutral-900 bg-white border border-neutral-200": {},
|
|
5
5
|
// dark
|
|
6
6
|
"@apply dark:text-neutral-100 dark:bg-neutral-700 dark:border-neutral-600": {},
|
|
7
7
|
},
|
|
8
8
|
|
|
9
9
|
".message-icon": {
|
|
10
|
-
"@apply mr-2": {},
|
|
10
|
+
"@apply mr-2 flex-shrink-0": {},
|
|
11
11
|
|
|
12
12
|
"&-info": {
|
|
13
13
|
"--tw-text-opacity": "1",
|