@sk-web-gui/core 0.1.74 → 0.1.75

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.74",
3
+ "version": "0.1.75",
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": "043082a334de566c85d49b320dacf5f87ba021cd"
34
+ "gitHead": "3a72018bb2de73c6e1db1a461cbed02b37e4827e"
35
35
  }
@@ -17,7 +17,9 @@ module.exports = Pagination = () => ({
17
17
  '&-list': {
18
18
  '@apply flex items-center': {},
19
19
  },
20
-
20
+ '.form-select-wrapper': {
21
+ '@apply w-fit': {},
22
+ },
21
23
  '&-pageLabel': {
22
24
  '@apply cursor-pointer m-sm box-content': {},
23
25
  width: '1.5em',
@@ -66,5 +68,26 @@ module.exports = Pagination = () => ({
66
68
  '&-ellipsis': {
67
69
  '@apply inline-block w-16 text-center': {},
68
70
  },
71
+ '&.fit-content': {
72
+ '@apply w-full max-w-full': {},
73
+ '.pagination-list': {
74
+ '@apply w-full flex justify-between': {},
75
+ '&-item': {
76
+ '@apply px-0 flex-shrink grow text-center': {},
77
+ '&.ellipsis': {
78
+ '@apply flex-shrink grow-0': {},
79
+ },
80
+ '&.prev-next': {
81
+ '@apply flex-shrink grow-0': {},
82
+ },
83
+ '.pagination-pageLabel': {
84
+ '@apply w-full max-w-[1.5em] mx-xs': {},
85
+ },
86
+ },
87
+ },
88
+ '.form-select-wrapper': {
89
+ '@apply w-full': {},
90
+ },
91
+ },
69
92
  },
70
93
  });