@cmdniels/uikit 1.5.8 → 1.5.10

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.
@@ -1,3 +1,4 @@
1
+ "use client";
1
2
  var __rest = (this && this.__rest) || function (s, e) {
2
3
  var t = {};
3
4
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cmdniels/uikit",
3
- "version": "1.5.8",
3
+ "version": "1.5.10",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "type": "module",
package/tailwind.css CHANGED
@@ -181,43 +181,41 @@
181
181
  }
182
182
  }
183
183
 
184
- @layer base {
185
- html {
186
- overflow-y: scroll;
187
- }
184
+ html {
185
+ overflow-y: scroll;
186
+ }
188
187
 
189
- /* Firefox ONLY — this kills webkit pseudo-elements in Chrome 121+ if applied globally */
190
- @supports not selector(::-webkit-scrollbar) {
191
- * {
192
- scrollbar-width: auto;
193
- scrollbar-color: rgba(128, 128, 128, 0.4) transparent;
194
- }
188
+ /* Firefox ONLY — this kills webkit pseudo-elements in Chrome 121+ if applied globally */
189
+ @supports not selector(::-webkit-scrollbar) {
190
+ * {
191
+ scrollbar-width: auto;
192
+ scrollbar-color: rgba(128, 128, 128, 0.4) transparent;
195
193
  }
194
+ }
196
195
 
197
- /* WebKit / Chromium — only runs where ::-webkit-scrollbar is supported */
198
- ::-webkit-scrollbar {
199
- width: 8px;
200
- height: 8px;
201
- }
196
+ /* WebKit / Chromium — only runs where ::-webkit-scrollbar is supported */
197
+ ::-webkit-scrollbar {
198
+ width: 8px;
199
+ height: 8px;
200
+ }
202
201
 
203
- ::-webkit-scrollbar-track {
204
- background: transparent;
205
- }
202
+ ::-webkit-scrollbar-track {
203
+ background: transparent;
204
+ }
206
205
 
207
- ::-webkit-scrollbar-thumb {
208
- background: rgba(128, 128, 128, 0.4);
209
- border-radius: 4px;
210
- }
206
+ ::-webkit-scrollbar-thumb {
207
+ background: rgba(128, 128, 128, 0.4);
208
+ border-radius: 4px;
209
+ }
211
210
 
212
- ::-webkit-scrollbar-thumb:hover {
213
- background: rgba(128, 128, 128, 0.6);
214
- }
211
+ ::-webkit-scrollbar-thumb:hover {
212
+ background: rgba(128, 128, 128, 0.6);
213
+ }
215
214
 
216
- ::-webkit-scrollbar-button {
217
- display: none;
218
- }
215
+ ::-webkit-scrollbar-button {
216
+ display: none;
217
+ }
219
218
 
220
- ::-webkit-scrollbar-corner {
221
- background: transparent;
222
- }
219
+ ::-webkit-scrollbar-corner {
220
+ background: transparent;
223
221
  }