@dcl/playground-assets 7.0.2 → 7.0.3-3583938384.commit-827bc9a
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 -7
- package/package.json +6 -5
- package/src/index.ts +4 -1
- package/tsconfig.json +1 -1
|
@@ -2131,23 +2131,21 @@ export type ReactBasedUiSystem = {
|
|
|
2131
2131
|
// 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
2132
|
//
|
|
2133
2133
|
// @public (undocumented)
|
|
2134
|
-
namespace ReactEcs {
|
|
2134
|
+
export namespace ReactEcs {
|
|
2135
2135
|
// (undocumented)
|
|
2136
|
-
namespace JSX {
|
|
2136
|
+
export namespace JSX {
|
|
2137
2137
|
// (undocumented)
|
|
2138
|
-
interface Component {
|
|
2138
|
+
export interface Component {
|
|
2139
2139
|
}
|
|
2140
2140
|
// (undocumented)
|
|
2141
|
-
interface Element {
|
|
2141
|
+
export interface Element {
|
|
2142
2142
|
}
|
|
2143
2143
|
// (undocumented)
|
|
2144
|
-
type IntrinsicElements = EcsElements;
|
|
2144
|
+
export type IntrinsicElements = EcsElements;
|
|
2145
2145
|
}
|
|
2146
2146
|
const // (undocumented)
|
|
2147
2147
|
createElement: any;
|
|
2148
2148
|
}
|
|
2149
|
-
export { ReactEcs }
|
|
2150
|
-
export default ReactEcs;
|
|
2151
2149
|
|
|
2152
2150
|
// 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
2151
|
//
|
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-3583938384.commit-827bc9a",
|
|
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-3583938384.commit-827bc9a"
|
|
20
21
|
},
|
|
21
22
|
"minCliVersion": "3.12.3",
|
|
22
|
-
"commit": "
|
|
23
|
+
"commit": "827bc9acb5825d817445521eb790ee256788a01c"
|
|
23
24
|
}
|
package/src/index.ts
CHANGED
package/tsconfig.json
CHANGED