@sk-web-gui/core 0.1.15 → 0.1.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": "@sk-web-gui/core",
3
- "version": "0.1.15",
3
+ "version": "0.1.18",
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": "0c9dee6a0b989d6ff912b3da8e5009eba7fd89c4"
34
+ "gitHead": "e1de1135b4aa3ec4787b5a1a0b0c813c87959017"
35
35
  }
@@ -235,6 +235,10 @@ module.exports = Forms = (colors) => ({
235
235
  ".form-textarea": {
236
236
  //"@apply leading-tight": {},
237
237
  minHeight: "5rem",
238
+
239
+ "&-counter": {
240
+ "@apply mt-xs text-right": {},
241
+ },
238
242
  },
239
243
 
240
244
  ".form-select": {
@@ -9,31 +9,14 @@ module.exports = UserMenu = (colors) => ({
9
9
  },
10
10
 
11
11
  "&-header": {
12
- // "@apply flex flex-col text-left m-0 px-0 py-sm": {},
13
12
  '[aria-expanded="true"] &': {
14
13
  "@apply bg-hover": {},
15
14
  },
16
15
  },
17
- "&-body": {
18
- // "@apply p-0 m-0 py-sm bg-white": {},
19
- },
20
16
  "&-item": {
21
- "&.link": {
22
- "@apply text-white no-underline": {},
23
- },
24
- "@apply text-white cursor-pointer bg-hover": {
25
- a: {
26
- "@apply text-white px-md py-sm w-full": {},
27
- },
28
- "a.link": {
29
- "@apply text-white px-md py-sm w-full": {},
30
- },
31
- },
32
- },
33
- ".inactive > &-item": {
34
- "@apply bg-white text-black no-underline": {},
35
- "a.link": {
36
- "@apply text-black no-underline": {},
17
+ "@apply block px-lg py-md lg:px-md lg:py-sm w-full cursor-pointer text-black no-underline": {},
18
+ "&.active": {
19
+ "@apply bg-hover text-white no-underline": {},
37
20
  },
38
21
  },
39
22
  },
@@ -18,22 +18,29 @@ module.exports = ZebraTable = () => ({
18
18
  },
19
19
  },
20
20
 
21
- "&-icon": {
22
- "&-sort": {
23
- "@apply ml-2 text-black transform rotate-90": {},
21
+ "&-sortbutton": {
22
+ "@apply flex items-center": {},
23
+
24
+ "&-icon": {
25
+ "@apply inline-flex pl-sm": {},
24
26
 
25
- "&[data-sortmodeascending='false']": {
26
- "@apply -rotate-90": {},
27
+
28
+ "&-sort": {
29
+ "@apply text-black transform": {},
30
+
31
+ "&[data-sortmodeascending='true']": {
32
+ "@apply -rotate-90": {},
33
+ },
34
+
35
+ "&[data-sortmodeascending='false']": {
36
+ "@apply rotate-90": {},
37
+ },
38
+ },
39
+
40
+ "&-more": {
41
+ "@apply text-gray-300": {},
27
42
  },
28
43
  },
29
-
30
- "&-more": {
31
- "@apply pl-sm text-gray-300": {},
32
- },
33
- },
34
-
35
- "&-sortbutton": {
36
- "@apply flex items-center": {},
37
44
  },
38
45
 
39
46
  ".material-icons-outlined": {