@energy8platform/shell 0.6.1 → 0.6.3
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/dist/html.cjs.js +74 -62
- package/dist/html.cjs.js.map +1 -1
- package/dist/html.d.ts +2 -2
- package/dist/html.esm.js +74 -62
- package/dist/html.esm.js.map +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +1 -1
- package/dist/pixi.cjs.js +159 -174
- package/dist/pixi.cjs.js.map +1 -1
- package/dist/pixi.d.ts +2 -2
- package/dist/pixi.esm.js +160 -175
- package/dist/pixi.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/core/version.ts +1 -1
- package/src/ui/buy-bonus-art.ts +7 -0
- package/src/ui/html/components/BottomBar.ts +19 -14
- package/src/ui/html/components/GameInfo.ts +5 -3
- package/src/ui/html/icons-preview.png +0 -0
- package/src/ui/html/icons-preview.svg +64 -102
- package/src/ui/html/icons.ts +22 -18
- package/src/ui/html/shell.css.ts +22 -23
- package/src/ui/pixi/components/BottomBar.ts +45 -112
- package/src/ui/pixi/components/BuyBonus.ts +4 -4
- package/src/ui/pixi/components/GameInfo.ts +21 -4
- package/src/ui/pixi/icons.ts +22 -26
- package/src/ui/pixi/pixi-icon.ts +16 -41
- package/src/ui/pixi/primitives/widgets.ts +60 -11
package/dist/index.cjs.js
CHANGED
|
@@ -1422,7 +1422,7 @@ class KeyboardController {
|
|
|
1422
1422
|
|
|
1423
1423
|
// AUTO-GENERATED by scripts/gen-version.mjs — do not edit. Mirrors package.json "version".
|
|
1424
1424
|
/** The @energy8platform/shell package version, stamped into the game-info footer. */
|
|
1425
|
-
const PACKAGE_VERSION = '0.6.
|
|
1425
|
+
const PACKAGE_VERSION = '0.6.3';
|
|
1426
1426
|
|
|
1427
1427
|
/** Apply defaults to the raw config (the mount target lives on the renderer, not here). */
|
|
1428
1428
|
function resolveConfig(config) {
|
package/dist/index.d.ts
CHANGED
|
@@ -511,7 +511,7 @@ declare class ShellController extends EventEmitter<ShellEvents> implements Shell
|
|
|
511
511
|
tokens: ShellTokens;
|
|
512
512
|
layout: ShellLayoutMode;
|
|
513
513
|
soundOn: boolean;
|
|
514
|
-
readonly engineVersion = "0.6.
|
|
514
|
+
readonly engineVersion = "0.6.3";
|
|
515
515
|
readonly actions: ShellActions;
|
|
516
516
|
private renderer;
|
|
517
517
|
private i18n;
|
|
@@ -593,7 +593,7 @@ interface I18n {
|
|
|
593
593
|
declare function createI18n(opts: I18nOptions): I18n;
|
|
594
594
|
|
|
595
595
|
/** The @energy8platform/shell package version, stamped into the game-info footer. */
|
|
596
|
-
declare const PACKAGE_VERSION = "0.6.
|
|
596
|
+
declare const PACKAGE_VERSION = "0.6.3";
|
|
597
597
|
|
|
598
598
|
/** A shell: the renderer-agnostic controller plus the surface facade (safeArea/barHeight/setVisible)
|
|
599
599
|
* an embedding host reads. `createShell`, `createGameShell` and `createPixiShell` all return this. */
|
package/dist/index.esm.js
CHANGED
|
@@ -1420,7 +1420,7 @@ class KeyboardController {
|
|
|
1420
1420
|
|
|
1421
1421
|
// AUTO-GENERATED by scripts/gen-version.mjs — do not edit. Mirrors package.json "version".
|
|
1422
1422
|
/** The @energy8platform/shell package version, stamped into the game-info footer. */
|
|
1423
|
-
const PACKAGE_VERSION = '0.6.
|
|
1423
|
+
const PACKAGE_VERSION = '0.6.3';
|
|
1424
1424
|
|
|
1425
1425
|
/** Apply defaults to the raw config (the mount target lives on the renderer, not here). */
|
|
1426
1426
|
function resolveConfig(config) {
|