@una-ui/preset-edge 0.58.0-29161252.a68b03f → 0.58.0-29162464.ff628e9
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.D9Tc737e.mjs';
|
|
7
7
|
|
|
8
8
|
function presetUna(options = {
|
|
9
9
|
// TODO: add options
|
|
@@ -12,6 +12,7 @@ function presetUna(options = {
|
|
|
12
12
|
name: "@una-ui/preset",
|
|
13
13
|
options,
|
|
14
14
|
shortcuts,
|
|
15
|
+
separators: [":"],
|
|
15
16
|
theme: mergeDeep(theme, {
|
|
16
17
|
container: {
|
|
17
18
|
center: true,
|
|
@@ -603,7 +603,7 @@ const staticInput = {
|
|
|
603
603
|
const dynamicInput = [
|
|
604
604
|
// config
|
|
605
605
|
[/^input-focus(-(\S+))?$/, ([, , c = "primary"]) => `focus-visible:ring-${c}-500 dark:focus-visible:ring-${c}-400 focus-visible:ring-1`],
|
|
606
|
-
[/^input-status(-(\S+))?$/, ([, , c = "info"]) => `text-${c}-700 dark:text-${c}-200 placeholder-${c}-500 dark:placeholder-${c}-400`],
|
|
606
|
+
[/^input-status(-(\S+))?$/, ([, , c = "info"]) => `text-${c}-700 dark:text-${c}-200 placeholder:text-${c}-500 dark:placeholder:text-${c}-400`],
|
|
607
607
|
// variants
|
|
608
608
|
[/^input-outline(-(\S+))?$/, ([, , c = "primary"]) => `border border-input input-focus-${c}`],
|
|
609
609
|
[/^input-solid(-(\S+))?$/, ([, , c = "primary"]) => `input-focus-${c} border border-${c}-500 dark:border-${c}-400`]
|
package/dist/shortcuts.mjs
CHANGED