@una-ui/preset 1.0.0-alpha.3 → 1.0.0-alpha.4
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/dist/index.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { fonts } from '@unocss/preset-mini/rules';
|
|
2
2
|
import { handler, parseColor } from '@unocss/preset-mini/utils';
|
|
3
3
|
import { colors } from '@unocss/preset-wind4/colors';
|
|
4
|
-
import { s as shortcuts } from './shared/preset.
|
|
4
|
+
import { s as shortcuts } from './shared/preset.DfDyl_MJ.mjs';
|
|
5
5
|
import '@unocss/preset-mini';
|
|
6
6
|
|
|
7
7
|
function presetUna(options = {
|
|
@@ -501,13 +501,13 @@ const formGroup = [
|
|
|
501
501
|
];
|
|
502
502
|
|
|
503
503
|
const staticIcons = {
|
|
504
|
-
"i-
|
|
505
|
-
"i-
|
|
506
|
-
"i-
|
|
507
|
-
"i-
|
|
508
|
-
"i-
|
|
509
|
-
"i-close": "i-
|
|
510
|
-
"i-check": "i-
|
|
504
|
+
"i-warning": "i-lucide-triangle-alert",
|
|
505
|
+
"i-error": "i-lucide-circle-alert",
|
|
506
|
+
"i-success": "i-lucide-circle-check-big",
|
|
507
|
+
"i-info": "i-lucide-info",
|
|
508
|
+
"i-loading": "i-lucide-loader",
|
|
509
|
+
"i-close": "i-lucide-x",
|
|
510
|
+
"i-check": "i-lucide-check",
|
|
511
511
|
"i-dot": "i-tabler-circle-filled"
|
|
512
512
|
};
|
|
513
513
|
|
|
@@ -607,7 +607,7 @@ const staticInput = {
|
|
|
607
607
|
"input-leading-padding": "pl-2.5714285714285716em",
|
|
608
608
|
"input-trailing-padding": "pr-2.5714285714285716em",
|
|
609
609
|
// base
|
|
610
|
-
"input": "text-foreground placeholder:text-muted-foreground selection:bg-primary selection:text-primary-foreground text-0.875em leading-1.4285714285714286em px-0.8571428571428571em bg-transparent w-full focus-visible:outline-none input-disabled
|
|
610
|
+
"input": "text-foreground placeholder:text-muted-foreground selection:bg-primary selection:text-primary-foreground text-0.875em leading-1.4285714285714286em px-0.8571428571428571em bg-transparent w-full focus-visible:outline-none input-disabled block rounded-md transition-colors file:text-foreground file:border-0 file:bg-transparent file:text-0.875em file:font-medium",
|
|
611
611
|
"input-input": "h-2.5714285714285716em py-0.2857142857142857em",
|
|
612
612
|
// role='input'
|
|
613
613
|
"input-textarea": "min-h-4.285714285714286em py-0.5714285714em",
|
|
@@ -1178,7 +1178,9 @@ const staticTable = {
|
|
|
1178
1178
|
// table-empty
|
|
1179
1179
|
"table-empty-row": "",
|
|
1180
1180
|
"table-empty-cell": "p-4 whitespace-nowrap align-middle text-sm text-muted-foreground bg-background",
|
|
1181
|
-
"table-empty": "flex items-center justify-center py-10",
|
|
1181
|
+
"table-empty": "flex items-center flex-col justify-center py-10 gap-4",
|
|
1182
|
+
"table-empty-text": "text-center text-wrap",
|
|
1183
|
+
"table-empty-icon-name": "i-tabler-database-x size-2xl",
|
|
1182
1184
|
// table-loading
|
|
1183
1185
|
"table-loading-icon": "animate-spin text-lg",
|
|
1184
1186
|
// TODO: to add
|
package/dist/shortcuts.mjs
CHANGED