跳至内容

Attributify 预设

这将为其他预设启用 attributify 模式

源代码

安装

bash
pnpm add -D @unocss/preset-attributify
bash
yarn add -D @unocss/preset-attributify
bash
npm install -D @unocss/preset-attributify
uno.config.ts
ts
import presetAttributify from '@unocss/preset-attributify'

export default defineConfig({
  presets: [
    presetAttributify({ /* preset options */ }),
    // ...
  ],
})

提示

此预设包含在 unocss 包中,您也可以从那里导入它

ts
import { presetAttributify } from 'unocss'

Attributify 模式

假设您使用 Tailwind CSS 的实用程序创建了这个按钮。当列表变长时,它变得非常难以阅读和维护。

html
<button class="bg-blue-400 hover:bg-blue-500 text-sm text-white font-mono font-light py-2 px-4 rounded border-2 border-blue-200 dark:bg-blue-500 dark:hover:bg-blue-600">
  Button
</button>

使用 attributify 模式,您可以将实用程序分离成属性

html
<button
  bg="blue-400 hover:blue-500 dark:blue-500 dark:hover:blue-600"
  text="sm white"
  font="mono light"
  p="y-2 x-4"
  border="2 rounded blue-200"
>
  Button
</button>

例如,text-sm text-white 可以分组为 text="sm white",而无需重复相同的前缀。

前缀自引用

对于像 flexgridborder 这样的实用程序,它们的前缀与实用程序相同,提供了一个特殊的 ~ 值。

例如

html
<button class="border border-red">
  Button
</button>

可以写成

html
<button border="~ red">
  Button
</button>

无值 attributify

除了 Windi CSS 的 attributify 模式,此预设还支持无值属性。

例如,

html
<div class="m-2 rounded text-teal-400" />

现在可以是

html
<div m-2 rounded text-teal-400 />

信息

注意:如果您使用的是 JSX,<div foo> 可能被转换为 <div foo={true}>,这将导致 UnoCSS 生成的 CSS 无法匹配属性。要解决此问题,您可能想尝试使用 transformer-attributify-jsx 以及此预设。

属性冲突

如果属性模式的名称与元素或组件的属性发生冲突,您可以添加 un- 前缀以明确指定 UnoCSS 的 attributify 模式。

例如

html
<a text="red">This conflicts with links' `text` prop</a>
<!-- to -->
<a un-text="red">Text color to red</a>

默认情况下,前缀是可选的。如果您想强制使用前缀,请设置

ts
presetAttributify({
  prefix: 'un-',
  prefixedOnly: true, // <--
})

您还可以通过以下方式禁用对某些属性的扫描

ts
presetAttributify({
  ignoreAttributes: [
    'text'
    // ...
  ]
})

TypeScript 支持 (JSX/TSX)

创建 shims.d.ts 并添加以下内容

默认情况下,该类型包括来自 @unocss/preset-uno 的常见属性。如果您需要自定义属性,请参考 类型源 以实现您自己的类型。

Vue

从 Volar 0.36 开始,它现在对未知属性非常严格。要选择退出,您可以在项目中添加以下文件

html.d.ts
ts
declare module '@vue/runtime-dom' {
  interface HTMLAttributes {
    [key: string]: any
  }
}
declare module '@vue/runtime-core' {
  interface AllowedComponentProps {
    [key: string]: any
  }
}
export {}

React

ts
import type { AttributifyAttributes } from '@unocss/preset-attributify'

declare module 'react' {
  interface HTMLAttributes<T> extends AttributifyAttributes {}
}

Vue 3

ts
import type { AttributifyAttributes } from '@unocss/preset-attributify'

declare module '@vue/runtime-dom' {
  interface HTMLAttributes extends AttributifyAttributes {}
}

SolidJS

ts
import type { AttributifyAttributes } from '@unocss/preset-attributify'

declare module 'solid-js' {
  namespace JSX {
    interface HTMLAttributes<T> extends AttributifyAttributes {}
  }
}

Svelte 和 SvelteKit

ts
declare namespace svelteHTML {
  import type { AttributifyAttributes } from '@unocss/preset-attributify'

  type HTMLAttributes = AttributifyAttributes
}

Astro

ts
import type { AttributifyAttributes } from '@unocss/preset-attributify'

declare global {
  namespace astroHTML.JSX {
    interface HTMLAttributes extends AttributifyAttributes { }
  }
}

Preact

ts
import type { AttributifyAttributes } from '@unocss/preset-attributify'

declare module 'preact' {
  namespace JSX {
    interface HTMLAttributes extends AttributifyAttributes {}
  }
}

带有前缀的 Attributify

ts
import type { AttributifyNames } from '@unocss/preset-attributify'

type Prefix = 'uno:' // change it to your prefix

interface HTMLAttributes extends Partial<Record<AttributifyNames<Prefix>, string>> {}

选项

strict

  • 类型: boolean
  • 默认值: false

仅为 attributify 或类生成 CSS。

prefix

  • 类型: string
  • 默认值: 'un-'

attributify 模式的前缀。

prefixedOnly

  • 类型: boolean
  • 默认值: false

仅匹配带有前缀的属性。

nonValuedAttribute

  • 类型: boolean
  • 默认值: true

支持匹配无值属性。

ignoreAttributes

  • 类型: string[]

要从提取中忽略的属性列表。

trueToNonValued

  • 类型: boolean
  • 默认值: false

如果 DOM 中表示的实际值为 true,则无值属性也将匹配。此选项用于支持将无值属性编码为 true 的框架。启用此选项将破坏以 true 结尾的规则。

致谢

最初的想法来自 @Tahul@antfu。先前在 Windi CSS 中的 实现 来自 @voorjaar

在 MIT 许可下发布。