valtech-components 4.0.545 → 4.0.547
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/molecules/ticket-card/ticket-card.i18n.mjs +3 -3
- package/esm2022/lib/components/molecules/ticket-card/types.mjs +1 -1
- package/esm2022/lib/components/organisms/mini-games/chessimals-game.component.mjs +7 -3
- package/esm2022/lib/components/organisms/mini-games/mini-game-callout.component.mjs +19 -7
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +27 -11
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/molecules/ticket-card/ticket-card.i18n.d.ts +2 -2
- package/lib/components/molecules/ticket-card/types.d.ts +1 -1
- package/lib/components/organisms/mini-games/chessimals-game.component.d.ts +2 -1
- package/lib/components/organisms/mini-games/mini-game-callout.component.d.ts +1 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
export declare const TICKET_CARD_I18N: {
|
|
8
8
|
readonly es: {
|
|
9
9
|
readonly cardLabel: "Cartón de bingo";
|
|
10
|
-
readonly folio: "
|
|
10
|
+
readonly folio: "Cartón";
|
|
11
11
|
readonly statusSold: "Vendida";
|
|
12
12
|
readonly statusCheckedIn: "Canjeada";
|
|
13
13
|
readonly download: "Descargar";
|
|
@@ -17,7 +17,7 @@ export declare const TICKET_CARD_I18N: {
|
|
|
17
17
|
};
|
|
18
18
|
readonly en: {
|
|
19
19
|
readonly cardLabel: "Bingo card";
|
|
20
|
-
readonly folio: "
|
|
20
|
+
readonly folio: "Card";
|
|
21
21
|
readonly statusSold: "Sold";
|
|
22
22
|
readonly statusCheckedIn: "Checked in";
|
|
23
23
|
readonly download: "Download";
|
|
@@ -38,7 +38,7 @@ export interface TicketCardMetadata {
|
|
|
38
38
|
showDownload?: boolean;
|
|
39
39
|
/** Mostrar botón de compartir el QR. */
|
|
40
40
|
showShare?: boolean;
|
|
41
|
-
/** Label del prefijo de
|
|
41
|
+
/** Label del prefijo de cartón (default i18n: "Cartón" / "Card"). */
|
|
42
42
|
folioLabel?: string;
|
|
43
43
|
/** Label del badge cuando `status === 'sold'` (default: "Vendida"). */
|
|
44
44
|
statusSoldLabel?: string;
|
|
@@ -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.547";
|
|
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>;
|
|
@@ -483,6 +483,7 @@ export declare class ChessimalsGameComponent implements OnInit, OnDestroy {
|
|
|
483
483
|
private modeStatsResult;
|
|
484
484
|
animalLabel(type: ChessimalsAnimalType): string;
|
|
485
485
|
animalGlyph(type: ChessimalsAnimalType): string;
|
|
486
|
+
animalAssetSrc(type: ChessimalsAnimalType): string;
|
|
486
487
|
private powerCalloutTone;
|
|
487
488
|
canReviewPrevious(): boolean;
|
|
488
489
|
canReviewNext(): boolean;
|
package/lib/version.d.ts
CHANGED