valtech-components 4.0.546 → 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/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 +25 -9
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/atoms/user-avatar/user-avatar.component.d.ts +1 -1
- package/lib/components/molecules/features-list/features-list.component.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
|
@@ -39,7 +39,7 @@ export declare class UserAvatarComponent {
|
|
|
39
39
|
/** Iniciales — 1-2 chars derivados de name (preferred) o email prefix. */
|
|
40
40
|
readonly initials: import("@angular/core").Signal<string>;
|
|
41
41
|
readonly sizeClass: import("@angular/core").Signal<"small" | "xsmall" | "medium" | "large" | "xlarge">;
|
|
42
|
-
readonly shapeClass: import("@angular/core").Signal<"
|
|
42
|
+
readonly shapeClass: import("@angular/core").Signal<"circle" | "square">;
|
|
43
43
|
/** Background — explicito o derivado deterministicamente del user. */
|
|
44
44
|
readonly bgColor: import("@angular/core").Signal<string>;
|
|
45
45
|
readonly ariaLabel: import("@angular/core").Signal<string>;
|
|
@@ -43,7 +43,7 @@ export declare class FeaturesListComponent {
|
|
|
43
43
|
mode: "horizontal" | "vertical";
|
|
44
44
|
gap: "small" | "medium" | "large";
|
|
45
45
|
alignment: "start" | "center";
|
|
46
|
-
imageShape: "
|
|
46
|
+
imageShape: "circle" | "square";
|
|
47
47
|
maxVisible: number;
|
|
48
48
|
showMoreLabel?: string;
|
|
49
49
|
showLessLabel?: 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