@gamelearn/arcade-components 0.16.0 → 0.16.1
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/README.md +2 -2
- package/dist/components/index.js +8 -0
- package/package.json +1 -1
- /package/dist/components/{auto-evaluation-component-game → auto-evaluation-component}/components/AutoEvaluation.js +0 -0
- /package/dist/components/{auto-evaluation-component-game → auto-evaluation-component}/components/EndScreen.js +0 -0
- /package/dist/components/{auto-evaluation-component-game → auto-evaluation-component}/components/StartScreen.js +0 -0
- /package/dist/components/{auto-evaluation-component-game → auto-evaluation-component}/index.js +0 -0
- /package/dist/components/{auto-evaluation-component-game → auto-evaluation-component}/mocks/mockForStory.js +0 -0
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
## Install
|
|
7
7
|
|
|
8
8
|
```bash
|
|
9
|
-
yarn add
|
|
9
|
+
yarn add @gamelearn/arcade-components
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
## Usage
|
|
@@ -82,4 +82,4 @@ yalc remove --all
|
|
|
82
82
|
|
|
83
83
|
## License
|
|
84
84
|
|
|
85
|
-
UNLICENSED © [gamelearn](https://github.com/gamelearn)
|
|
85
|
+
UNLICENSED © [gamelearn](https://github.com/gamelearn)
|
package/dist/components/index.js
CHANGED
|
@@ -191,6 +191,12 @@ Object.defineProperty(exports, "MediaVisor", {
|
|
|
191
191
|
return _mediaVisor.default;
|
|
192
192
|
}
|
|
193
193
|
});
|
|
194
|
+
Object.defineProperty(exports, "AutoEvaluationComponent", {
|
|
195
|
+
enumerable: true,
|
|
196
|
+
get: function get() {
|
|
197
|
+
return _autoEvaluationComponent.default;
|
|
198
|
+
}
|
|
199
|
+
});
|
|
194
200
|
|
|
195
201
|
var _scene = _interopRequireDefault(require("./arcade-render/scene"));
|
|
196
202
|
|
|
@@ -252,6 +258,8 @@ var _surveyComponent = _interopRequireDefault(require("./survey-component"));
|
|
|
252
258
|
|
|
253
259
|
var _mediaVisor = _interopRequireDefault(require("./media-visor"));
|
|
254
260
|
|
|
261
|
+
var _autoEvaluationComponent = _interopRequireDefault(require("./auto-evaluation-component"));
|
|
262
|
+
|
|
255
263
|
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
|
|
256
264
|
|
|
257
265
|
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/components/{auto-evaluation-component-game → auto-evaluation-component}/index.js
RENAMED
|
File without changes
|
|
File without changes
|