onejs-core 1.0.24 → 1.0.25

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "onejs-core",
3
3
  "description": "The JS part of OneJS, a UI framework and Scripting Engine for Unity.",
4
- "version": "1.0.24",
4
+ "version": "1.0.25",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./typings.d.ts",
7
7
  "dependencies": {
@@ -139,6 +139,16 @@ exports.plugins = [
139
139
  }
140
140
  )
141
141
 
142
+ matchUtilities(
143
+ {
144
+ delay: (value) => ({ "transition-delay": value }),
145
+ },
146
+ {
147
+ supportsNegativeValues: false,
148
+ values: theme("delay"),
149
+ }
150
+ )
151
+
142
152
  matchUtilities(
143
153
  {
144
154
  translate: (value) => ({ translate: value }),