valtech-components 4.0.559 → 4.0.560
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/esm2022/lib/components/organisms/mini-games/chessimals-game.component.mjs +47 -26
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +47 -26
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/organisms/mini-games/chessimals-game.component.d.ts +3 -1
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -114,7 +114,7 @@ export declare class ChessimalsGameComponent implements OnInit, OnDestroy {
|
|
|
114
114
|
readonly botProfiles: ChessimalsBotProfile[];
|
|
115
115
|
readonly challengeLadder: ChessimalsChallengeBot[];
|
|
116
116
|
readonly animals: ChessimalsAnimalView[];
|
|
117
|
-
readonly valtechComponentsVersion = "4.0.
|
|
117
|
+
readonly valtechComponentsVersion = "4.0.560";
|
|
118
118
|
readonly screen: import("@angular/core").WritableSignal<"home" | "challenge" | "path" | "game">;
|
|
119
119
|
readonly selectedBoardSize: import("@angular/core").WritableSignal<ChessimalsBoardSize>;
|
|
120
120
|
readonly selectedLocalMode: import("@angular/core").WritableSignal<ChessimalsLocalMode>;
|
|
@@ -256,6 +256,8 @@ export declare class ChessimalsGameComponent implements OnInit, OnDestroy {
|
|
|
256
256
|
readonly confirmTitle: import("@angular/core").Signal<string>;
|
|
257
257
|
readonly confirmBody: import("@angular/core").Signal<string>;
|
|
258
258
|
readonly confirmActions: import("@angular/core").Signal<ButtonMetadata[]>;
|
|
259
|
+
readonly rulesTutorialAction: import("@angular/core").Signal<ButtonMetadata>;
|
|
260
|
+
readonly rulesCloseAction: import("@angular/core").Signal<ButtonMetadata>;
|
|
259
261
|
readonly aboutActions: import("@angular/core").Signal<ButtonMetadata[]>;
|
|
260
262
|
readonly actionHint: import("@angular/core").Signal<string>;
|
|
261
263
|
constructor();
|
package/lib/version.d.ts
CHANGED