@dcl/playground-assets 7.7.5 → 7.7.6-13418365922.commit-c459a2f

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcl/sdk",
3
3
  "description": "",
4
- "version": "7.7.5",
4
+ "version": "7.7.6-13418365922.commit-c459a2f",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
7
  "@dcl/ecs": "file:../ecs",
@@ -35,5 +35,5 @@
35
35
  },
36
36
  "types": "./index.d.ts",
37
37
  "typings": "./index.d.ts",
38
- "commit": "3f077721374fc753f4e3db2d6c7232df9bc252ef"
38
+ "commit": "c459a2f95046d73bbfa2142d06e4395f4f60a4b5"
39
39
  }
@@ -1596,6 +1596,11 @@ export declare function createInputSystem(engine: IEngine): IInputSystem;
1596
1596
  */
1597
1597
  export declare function createPointerEventsSystem(engine: IEngine, inputSystem: IInputSystem): PointerEventsSystem;
1598
1598
 
1599
+ /**
1600
+ * @public
1601
+ */
1602
+ export declare function createReactBasedUiSystem(engine: IEngine, pointerSystem: PointerEventsSystem): ReactBasedUiSystem;
1603
+
1599
1604
  /**
1600
1605
  * @public
1601
1606
  * @returns tween helper to be used on the scene
@@ -15981,6 +15981,70 @@
15981
15981
  ],
15982
15982
  "name": "createPointerEventsSystem"
15983
15983
  },
15984
+ {
15985
+ "kind": "Function",
15986
+ "canonicalReference": "@dcl/playground-assets!createReactBasedUiSystem:function(1)",
15987
+ "docComment": "/**\n * @public\n */\n",
15988
+ "excerptTokens": [
15989
+ {
15990
+ "kind": "Content",
15991
+ "text": "export declare function createReactBasedUiSystem(engine: "
15992
+ },
15993
+ {
15994
+ "kind": "Reference",
15995
+ "text": "IEngine",
15996
+ "canonicalReference": "@dcl/playground-assets!IEngine:interface"
15997
+ },
15998
+ {
15999
+ "kind": "Content",
16000
+ "text": ", pointerSystem: "
16001
+ },
16002
+ {
16003
+ "kind": "Reference",
16004
+ "text": "PointerEventsSystem",
16005
+ "canonicalReference": "@dcl/playground-assets!PointerEventsSystem:interface"
16006
+ },
16007
+ {
16008
+ "kind": "Content",
16009
+ "text": "): "
16010
+ },
16011
+ {
16012
+ "kind": "Reference",
16013
+ "text": "ReactBasedUiSystem",
16014
+ "canonicalReference": "@dcl/playground-assets!ReactBasedUiSystem:interface"
16015
+ },
16016
+ {
16017
+ "kind": "Content",
16018
+ "text": ";"
16019
+ }
16020
+ ],
16021
+ "fileUrlPath": "../react-ecs/dist/system.d.ts",
16022
+ "returnTypeTokenRange": {
16023
+ "startIndex": 5,
16024
+ "endIndex": 6
16025
+ },
16026
+ "releaseTag": "Public",
16027
+ "overloadIndex": 1,
16028
+ "parameters": [
16029
+ {
16030
+ "parameterName": "engine",
16031
+ "parameterTypeTokenRange": {
16032
+ "startIndex": 1,
16033
+ "endIndex": 2
16034
+ },
16035
+ "isOptional": false
16036
+ },
16037
+ {
16038
+ "parameterName": "pointerSystem",
16039
+ "parameterTypeTokenRange": {
16040
+ "startIndex": 3,
16041
+ "endIndex": 4
16042
+ },
16043
+ "isOptional": false
16044
+ }
16045
+ ],
16046
+ "name": "createReactBasedUiSystem"
16047
+ },
15984
16048
  {
15985
16049
  "kind": "Function",
15986
16050
  "canonicalReference": "@dcl/playground-assets!createTweenSystem:function(1)",
@@ -846,6 +846,9 @@ export function createInputSystem(engine: IEngine): IInputSystem;
846
846
  // @public
847
847
  export function createPointerEventsSystem(engine: IEngine, inputSystem: IInputSystem): PointerEventsSystem;
848
848
 
849
+ // @public (undocumented)
850
+ export function createReactBasedUiSystem(engine: IEngine, pointerSystem: PointerEventsSystem): ReactBasedUiSystem;
851
+
849
852
  // @public (undocumented)
850
853
  export function createTweenSystem(engine: IEngine): TweenSystem;
851
854
 
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dcl/playground-assets",
3
3
  "description": "",
4
- "version": "7.7.5",
4
+ "version": "7.7.6-13418365922.commit-c459a2f",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
- "@dcl/js-runtime": "7.7.5",
8
- "@dcl/sdk": "7.7.5"
7
+ "@dcl/js-runtime": "7.7.6-13418365922.commit-c459a2f",
8
+ "@dcl/sdk": "7.7.6-13418365922.commit-c459a2f"
9
9
  },
10
10
  "devDependencies": {
11
11
  "@microsoft/api-extractor": "^7.33.8"
@@ -32,5 +32,5 @@
32
32
  },
33
33
  "types": "./dist/index.d.ts",
34
34
  "typings": "./dist/index.d.ts",
35
- "commit": "3f077721374fc753f4e3db2d6c7232df9bc252ef"
35
+ "commit": "c459a2f95046d73bbfa2142d06e4395f4f60a4b5"
36
36
  }