onejs-core 0.3.40 → 0.3.41

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.
@@ -338,6 +338,9 @@ declare global {
338
338
  "is-password-field"?: boolean
339
339
  "mask-char"?: string
340
340
  "is-read-only"?: boolean
341
+ "select-all-on-focus"?: boolean
342
+ "select-all-on-mouse-up"?: boolean
343
+ "vertical-scroller-visibility"?: ScrollerVisibility
341
344
  }
342
345
 
343
346
  interface TextField extends TextInputBaseField<string> {
@@ -4,4 +4,5 @@ export declare class DomStyleWrapper implements CS.OneJS.Dom.DomStyle {
4
4
  setProperty(name: string, value: any): void;
5
5
  }
6
6
  export interface DomStyleWrapper extends CS.OneJS.Dom.DomStyle {
7
+ [key: string | symbol]: any;
7
8
  }
package/dom/dom-style.ts CHANGED
@@ -22,4 +22,6 @@ export class DomStyleWrapper implements CS.OneJS.Dom.DomStyle {
22
22
  }
23
23
  }
24
24
 
25
- export interface DomStyleWrapper extends CS.OneJS.Dom.DomStyle { }
25
+ export interface DomStyleWrapper extends CS.OneJS.Dom.DomStyle {
26
+ [key: string | symbol]: any;
27
+ }
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": "0.3.40",
4
+ "version": "0.3.41",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./typings.d.ts",
7
7
  "dependencies": {