@una-ui/preset-edge 0.63.1-29240258.718df6c → 0.63.1-29247284.735a951
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
|
@@ -3,7 +3,7 @@ import { colors } from '@unocss/preset-mini/colors';
|
|
|
3
3
|
import { fonts } from '@unocss/preset-mini/rules';
|
|
4
4
|
import { handler, parseColor } from '@unocss/preset-mini/utils';
|
|
5
5
|
import { mergeDeep } from 'unocss';
|
|
6
|
-
import { s as shortcuts } from './shared/preset-edge.
|
|
6
|
+
import { s as shortcuts } from './shared/preset-edge.CBVHv0ok.mjs';
|
|
7
7
|
|
|
8
8
|
function presetUna(options = {
|
|
9
9
|
// TODO: add options
|
package/dist/prefixes.mjs
CHANGED
|
@@ -1240,6 +1240,20 @@ const toggle = [
|
|
|
1240
1240
|
staticToggle
|
|
1241
1241
|
];
|
|
1242
1242
|
|
|
1243
|
+
const staticToggleGroup = {
|
|
1244
|
+
// configurations
|
|
1245
|
+
"toggle-group": "flex gap-1 flex-wrap w-fit rounded-md",
|
|
1246
|
+
"toggle-group-horizontal": "flex-row items-center",
|
|
1247
|
+
"toggle-group-vertical": "flex-col items-start",
|
|
1248
|
+
// components
|
|
1249
|
+
"toggle-group-item": ""
|
|
1250
|
+
};
|
|
1251
|
+
const dynamicToggleGroup = [];
|
|
1252
|
+
const toggleGroup = [
|
|
1253
|
+
staticToggleGroup,
|
|
1254
|
+
...dynamicToggleGroup
|
|
1255
|
+
];
|
|
1256
|
+
|
|
1243
1257
|
const staticTooltip = {
|
|
1244
1258
|
"tooltip-content": "z-50 overflow-hidden rounded-md px-0.75em py-0.375em text-xs shadow-md data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
|
|
1245
1259
|
"tooltip-white": "border border-base bg-popover text-popover",
|
|
@@ -1304,7 +1318,8 @@ const shortcuts = [
|
|
|
1304
1318
|
...alertDialog,
|
|
1305
1319
|
...combobox,
|
|
1306
1320
|
...drawer,
|
|
1307
|
-
...hoverCard
|
|
1321
|
+
...hoverCard,
|
|
1322
|
+
...toggleGroup
|
|
1308
1323
|
];
|
|
1309
1324
|
|
|
1310
1325
|
export { shortcuts as s };
|
package/dist/shortcuts.mjs
CHANGED