onejs-core 2.0.12 → 2.0.13
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/definitions/jsx.d.ts +2 -1
- package/package.json +2 -2
package/definitions/jsx.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ type AttachToPanelEvent = CS.UnityEngine.UIElements.AttachToPanelEvent
|
|
|
17
17
|
type BlurEvent = CS.UnityEngine.UIElements.BlurEvent
|
|
18
18
|
type ChangeEvent<T> = CS.UnityEngine.UIElements.ChangeEvent<T>
|
|
19
19
|
type ClickEvent = CS.UnityEngine.UIElements.ClickEvent
|
|
20
|
+
type CustomStyleResolvedEvent = CS.UnityEngine.UIElements.CustomStyleResolvedEvent
|
|
20
21
|
type DetachFromPanelEvent = CS.UnityEngine.UIElements.DetachFromPanelEvent
|
|
21
22
|
type DragEnterEvent = CS.UnityEngine.UIElements.DragEnterEvent
|
|
22
23
|
type DragExitedEvent = CS.UnityEngine.UIElements.DragExitedEvent
|
|
@@ -151,7 +152,7 @@ declare global {
|
|
|
151
152
|
onPointerLeave?: (e: PointerLeaveEvent) => void
|
|
152
153
|
onPointerOver?: (e: PointerOverEvent) => void
|
|
153
154
|
onPointerOut?: (e: PointerOutEvent) => void
|
|
154
|
-
|
|
155
|
+
onCustomStyleResolved?: (e: CustomStyleResolvedEvent) => void
|
|
155
156
|
onTooltip?: (e: TooltipEvent) => void
|
|
156
157
|
onTransitionRun?: (e: TransitionRunEvent) => void
|
|
157
158
|
onTransitionStart?: (e: TransitionStartEvent) => void
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
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": "2.0.
|
|
4
|
+
"version": "2.0.13",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./typings.d.ts",
|
|
7
7
|
"bin": {
|
|
8
8
|
"oj": "./bin/oj.js"
|
|
9
9
|
},
|
|
10
|
-
"dependencies": {
|
|
10
|
+
"dependencies": {
|
|
11
11
|
"chalk": "^4.1.2",
|
|
12
12
|
"commander": "^11.0.0",
|
|
13
13
|
"css-flatten": "^2.0.0",
|