@dcl/playground-assets 7.0.2 → 7.0.3-3584826534.commit-9df0cb7
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/etc/playground-assets.api.md +5 -8
- package/package.json +6 -5
- package/src/index.ts +4 -1
- package/tsconfig.json +1 -1
|
@@ -606,7 +606,6 @@ export function IArray<T>(type: ISchema<T>): ISchema<Array<T>>;
|
|
|
606
606
|
// @public (undocumented)
|
|
607
607
|
export type IEngine = {
|
|
608
608
|
addEntity(dynamic?: boolean): Entity;
|
|
609
|
-
addDynamicEntity(): Entity;
|
|
610
609
|
removeEntity(entity: Entity): void;
|
|
611
610
|
removeEntityWithChildren(firstEntity: Entity): void;
|
|
612
611
|
entityExists(entity: Entity): boolean;
|
|
@@ -2131,23 +2130,21 @@ export type ReactBasedUiSystem = {
|
|
|
2131
2130
|
// Warning: (ae-missing-release-tag) "ReactEcs" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
|
|
2132
2131
|
//
|
|
2133
2132
|
// @public (undocumented)
|
|
2134
|
-
namespace ReactEcs {
|
|
2133
|
+
export namespace ReactEcs {
|
|
2135
2134
|
// (undocumented)
|
|
2136
|
-
namespace JSX {
|
|
2135
|
+
export namespace JSX {
|
|
2137
2136
|
// (undocumented)
|
|
2138
|
-
interface Component {
|
|
2137
|
+
export interface Component {
|
|
2139
2138
|
}
|
|
2140
2139
|
// (undocumented)
|
|
2141
|
-
interface Element {
|
|
2140
|
+
export interface Element {
|
|
2142
2141
|
}
|
|
2143
2142
|
// (undocumented)
|
|
2144
|
-
type IntrinsicElements = EcsElements;
|
|
2143
|
+
export type IntrinsicElements = EcsElements;
|
|
2145
2144
|
}
|
|
2146
2145
|
const // (undocumented)
|
|
2147
2146
|
createElement: any;
|
|
2148
2147
|
}
|
|
2149
|
-
export { ReactEcs }
|
|
2150
|
-
export default ReactEcs;
|
|
2151
2148
|
|
|
2152
2149
|
// Warning: (ae-missing-release-tag) "ReactEcsRenderer" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
|
|
2153
2150
|
//
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/playground-assets",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.3-3584826534.commit-9df0cb7",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"typings": "./dist/index.d.ts",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
8
|
"scripts": {
|
|
9
|
-
"build": "./../dcl-rollup/node_modules/.bin/rollup -c ./../dcl-rollup/ecs.config.js
|
|
10
|
-
"build
|
|
9
|
+
"build-ecs": "./../dcl-rollup/node_modules/.bin/rollup -c ./../dcl-rollup/playground-ecs.config.js",
|
|
10
|
+
"build": "npm run build-ecs && ./../dcl-rollup/node_modules/.bin/api-extractor run",
|
|
11
|
+
"build-local": "npm run build-ecs && ./../dcl-rollup/node_modules/.bin/api-extractor run --local --verbose --diagnostics"
|
|
11
12
|
},
|
|
12
13
|
"keywords": [],
|
|
13
14
|
"tsdoc": {
|
|
@@ -16,8 +17,8 @@
|
|
|
16
17
|
"author": "Decentraland",
|
|
17
18
|
"license": "Apache-2.0",
|
|
18
19
|
"dependencies": {
|
|
19
|
-
"@dcl/sdk": "7.0.
|
|
20
|
+
"@dcl/sdk": "7.0.3-3584826534.commit-9df0cb7"
|
|
20
21
|
},
|
|
21
22
|
"minCliVersion": "3.12.3",
|
|
22
|
-
"commit": "
|
|
23
|
+
"commit": "9df0cb71b0206779b6ac83e6e8a06cfea438de2c"
|
|
23
24
|
}
|
package/src/index.ts
CHANGED
package/tsconfig.json
CHANGED