@unocss/transformer-attributify-jsx 0.45.1 → 0.45.3

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { SourceCodeTransformer } from '@unocss/core';
2
2
 
3
- declare type FilterPattern = ReadonlyArray<string | RegExp> | string | RegExp | null;
3
+ declare type FilterPattern = Array<string | RegExp> | string | RegExp | null;
4
4
  interface TransformerAttributifyJsxOptions {
5
5
  /**
6
6
  * the list of attributes to ignore
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unocss/transformer-attributify-jsx",
3
- "version": "0.45.1",
3
+ "version": "0.45.3",
4
4
  "description": "Support valueless attributify in JSX/TSX.",
5
5
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
6
6
  "license": "MIT",
@@ -32,7 +32,7 @@
32
32
  "dist"
33
33
  ],
34
34
  "dependencies": {
35
- "@unocss/core": "0.45.1"
35
+ "@unocss/core": "0.45.3"
36
36
  },
37
37
  "devDependencies": {
38
38
  "magic-string": "^0.26.2"