@energy8platform/shell 0.6.2 → 0.6.4
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 +84 -65
- package/dist/html.cjs.js.map +1 -1
- package/dist/html.d.ts +2 -2
- package/dist/html.esm.js +84 -65
- package/dist/html.esm.js.map +1 -1
- package/dist/index.cjs.js +11 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +11 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/pixi.cjs.js +151 -176
- package/dist/pixi.cjs.js.map +1 -1
- package/dist/pixi.d.ts +2 -2
- package/dist/pixi.esm.js +152 -177
- package/dist/pixi.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/core/i18n.ts +10 -3
- 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 +3 -3
- 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/pixi.d.ts
CHANGED
|
@@ -513,7 +513,7 @@ declare class ShellController extends EventEmitter<ShellEvents> implements Shell
|
|
|
513
513
|
tokens: ShellTokens;
|
|
514
514
|
layout: ShellLayoutMode;
|
|
515
515
|
soundOn: boolean;
|
|
516
|
-
readonly engineVersion = "0.6.
|
|
516
|
+
readonly engineVersion = "0.6.4";
|
|
517
517
|
readonly actions: ShellActions;
|
|
518
518
|
private renderer;
|
|
519
519
|
private i18n;
|
|
@@ -595,7 +595,7 @@ interface I18n {
|
|
|
595
595
|
declare function createI18n(opts: I18nOptions): I18n;
|
|
596
596
|
|
|
597
597
|
/** The @energy8platform/shell package version, stamped into the game-info footer. */
|
|
598
|
-
declare const PACKAGE_VERSION = "0.6.
|
|
598
|
+
declare const PACKAGE_VERSION = "0.6.4";
|
|
599
599
|
|
|
600
600
|
/** A shell: the renderer-agnostic controller plus the surface facade (safeArea/barHeight/setVisible)
|
|
601
601
|
* an embedding host reads. `createShell`, `createGameShell` and `createPixiShell` all return this. */
|