valtech-components 4.0.563 → 4.0.565

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.
Files changed (55) hide show
  1. package/esm2022/lib/components/molecules/feedback-form/feedback-form.component.mjs +2 -2
  2. package/esm2022/lib/components/molecules/request-form/request-form.component.mjs +2 -2
  3. package/esm2022/lib/components/organisms/api-key-create-modal/api-key-create-modal.component.mjs +2 -2
  4. package/esm2022/lib/components/organisms/api-keys-modal/api-keys-modal.component.mjs +2 -2
  5. package/esm2022/lib/components/organisms/change-email-modal/change-email-modal.component.mjs +2 -2
  6. package/esm2022/lib/components/organisms/change-password-modal/change-password-modal.component.mjs +1 -1
  7. package/esm2022/lib/components/organisms/create-org-modal/create-org-modal.component.mjs +2 -2
  8. package/esm2022/lib/components/organisms/delete-account-modal/delete-account-modal.component.mjs +1 -1
  9. package/esm2022/lib/components/organisms/edit-org-modal/edit-org-modal.component.mjs +2 -2
  10. package/esm2022/lib/components/organisms/form/form.component.mjs +27 -3
  11. package/esm2022/lib/components/organisms/login/login.component.mjs +21 -3
  12. package/esm2022/lib/components/organisms/login/types.mjs +1 -1
  13. package/esm2022/lib/components/organisms/menu/menu.component.mjs +130 -9
  14. package/esm2022/lib/components/organisms/menu/types.mjs +1 -1
  15. package/esm2022/lib/components/organisms/mfa-modal/mfa-modal.component.mjs +2 -2
  16. package/esm2022/lib/components/organisms/mini-games/chessimals-challenge-progress.service.mjs +16 -2
  17. package/esm2022/lib/components/organisms/mini-games/chessimals-engine.mjs +59 -16
  18. package/esm2022/lib/components/organisms/mini-games/chessimals-game.component.mjs +178 -18
  19. package/esm2022/lib/components/organisms/mini-games/christianity-card.component.mjs +3 -9
  20. package/esm2022/lib/components/organisms/mini-games/christianity-game.component.mjs +13 -3
  21. package/esm2022/lib/components/organisms/mini-games/mini-games.i18n.mjs +17 -3
  22. package/esm2022/lib/components/organisms/mini-games/types.mjs +1 -1
  23. package/esm2022/lib/components/organisms/organization-view/organization-view.component.mjs +34 -29
  24. package/esm2022/lib/components/organisms/organization-view/types.mjs +1 -1
  25. package/esm2022/lib/components/organisms/profile-view/profile-content.component.mjs +2 -2
  26. package/esm2022/lib/services/auth/guards.mjs +11 -3
  27. package/esm2022/lib/services/forms/form-schema-builder.service.mjs +2 -1
  28. package/esm2022/lib/services/forms/types.mjs +1 -1
  29. package/esm2022/lib/version.mjs +2 -2
  30. package/esm2022/mini-games/public-api.mjs +54 -2
  31. package/fesm2022/valtech-components-mini-games.mjs +54 -2
  32. package/fesm2022/valtech-components-mini-games.mjs.map +1 -1
  33. package/fesm2022/valtech-components.mjs +509 -97
  34. package/fesm2022/valtech-components.mjs.map +1 -1
  35. package/lib/components/organisms/form/form.component.d.ts +3 -1
  36. package/lib/components/organisms/login/login.component.d.ts +3 -1
  37. package/lib/components/organisms/login/types.d.ts +6 -1
  38. package/lib/components/organisms/menu/menu.component.d.ts +17 -1
  39. package/lib/components/organisms/menu/types.d.ts +14 -0
  40. package/lib/components/organisms/mini-games/chessimals-challenge-progress.service.d.ts +1 -1
  41. package/lib/components/organisms/mini-games/chessimals-engine.d.ts +2 -1
  42. package/lib/components/organisms/mini-games/chessimals-game.component.d.ts +13 -2
  43. package/lib/components/organisms/mini-games/christianity-game.component.d.ts +1 -0
  44. package/lib/components/organisms/mini-games/types.d.ts +2 -0
  45. package/lib/components/organisms/organization-view/types.d.ts +5 -0
  46. package/lib/services/forms/types.d.ts +2 -0
  47. package/lib/version.d.ts +1 -1
  48. package/mini-games/public-api.d.ts +11 -0
  49. package/package.json +1 -1
  50. package/src/lib/assets/games/chessimals/challenge-avatars/sprinter.png +0 -0
  51. package/src/lib/assets/games/chessimals/mode-icons/path-borderless.png +0 -0
  52. package/src/lib/assets/games/chessimals/mode-icons/path.jpg +0 -0
  53. package/src/lib/assets/games/chessimals/rules/capture.jpg +0 -0
  54. package/src/lib/assets/games/chessimals/tutorial-solo-clean.png +0 -0
  55. package/src/lib/components/styles/overrides.scss +5 -0
@@ -11,6 +11,7 @@ export declare class FormComponent implements OnInit, OnChanges, DoCheck {
11
11
  private elementRef;
12
12
  props: FormMetadata;
13
13
  onSubmit: EventEmitter<FormSubmit>;
14
+ onValueChange: EventEmitter<Record<string, unknown>>;
14
15
  onInvalid: EventEmitter<any>;
15
16
  onSelectChange: EventEmitter<{
16
17
  field: string;
@@ -52,6 +53,7 @@ export declare class FormComponent implements OnInit, OnChanges, DoCheck {
52
53
  constructor(fb: FormBuilder, elementRef: ElementRef);
53
54
  ngOnInit(): void;
54
55
  ngOnChanges(changes: SimpleChanges): void;
56
+ private patchInitialValuesFromProps;
55
57
  ngDoCheck(): void;
56
58
  /**
57
59
  * Synchronizes form control disabled/enabled state with field metadata.
@@ -127,5 +129,5 @@ export declare class FormComponent implements OnInit, OnChanges, DoCheck {
127
129
  };
128
130
  get actions(): ButtonMetadata[];
129
131
  static ɵfac: i0.ɵɵFactoryDeclaration<FormComponent, never>;
130
- static ɵcmp: i0.ɵɵComponentDeclaration<FormComponent, "val-form", never, { "props": { "alias": "props"; "required": false; }; }, { "onSubmit": "onSubmit"; "onInvalid": "onInvalid"; "onSelectChange": "onSelectChange"; }, never, ["*"], true, never>;
132
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormComponent, "val-form", never, { "props": { "alias": "props"; "required": false; }; }, { "onSubmit": "onSubmit"; "onValueChange": "onValueChange"; "onInvalid": "onInvalid"; "onSelectChange": "onSelectChange"; }, never, ["*"], true, never>;
131
133
  }
@@ -12,6 +12,7 @@ export declare class LoginComponent implements OnInit, OnDestroy {
12
12
  authService: AuthService;
13
13
  private toastService;
14
14
  private router;
15
+ private route;
15
16
  private i18n;
16
17
  private i18nHelper;
17
18
  private legalLink;
@@ -35,7 +36,7 @@ export declare class LoginComponent implements OnInit, OnDestroy {
35
36
  pendingResetEmail: string;
36
37
  resendCooldown: number;
37
38
  resetResendCooldown: number;
38
- get config(): Required<Omit<LoginMetadata, 'logo' | 'legal' | 'redirectOnSuccess' | 'initialOperation' | 'loginRoute'>> & LoginMetadata;
39
+ get config(): Required<Omit<LoginMetadata, 'logo' | 'legal' | 'redirectOnSuccess' | 'redirectOnSuccessQueryParam' | 'initialOperation' | 'loginRoute'>> & LoginMetadata;
39
40
  /**
40
41
  * Logo a renderizar arriba del form. Si el consumer no pasa `logo`, cae al
41
42
  * default de marca del factory (`--main-logo` por app). Ver DEFAULT_LOGIN_LOGO.
@@ -102,6 +103,7 @@ export declare class LoginComponent implements OnInit, OnDestroy {
102
103
  resetPasswordHandler(event: FormSubmit): void;
103
104
  resendResetCode(): void;
104
105
  private handleLoginSuccess;
106
+ private resolveQueryRedirect;
105
107
  private handleError;
106
108
  private showToast;
107
109
  private getErrorMessage;
@@ -34,6 +34,11 @@ export interface LoginMetadata {
34
34
  legal?: LoginLegalConfig;
35
35
  /** Route to redirect after successful login (optional - if not set, emits event) */
36
36
  redirectOnSuccess?: string;
37
+ /**
38
+ * Query param con una ruta interna para volver despues del login.
39
+ * Ejemplo: `returnUrl` en `/login?returnUrl=/app/dashboard`.
40
+ */
41
+ redirectOnSuccessQueryParam?: string;
37
42
  /** Open directly in signup view (default: 'signin') */
38
43
  initialOperation?: 'signin' | 'signup';
39
44
  /**
@@ -77,7 +82,7 @@ export interface MFARequiredEvent {
77
82
  /**
78
83
  * Default values for LoginMetadata
79
84
  */
80
- export declare const LOGIN_DEFAULTS: Required<Omit<LoginMetadata, 'logo' | 'legal' | 'redirectOnSuccess' | 'initialOperation' | 'loginRoute'>>;
85
+ export declare const LOGIN_DEFAULTS: Required<Omit<LoginMetadata, 'logo' | 'legal' | 'redirectOnSuccess' | 'redirectOnSuccessQueryParam' | 'initialOperation' | 'loginRoute'>>;
81
86
  /**
82
87
  * Logo por defecto de la card de login cuando el consumer no pasa `logo`.
83
88
  *
@@ -1,3 +1,4 @@
1
+ import { AfterViewInit, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
1
2
  import { MenuMetadata } from './types';
2
3
  import * as i0 from "@angular/core";
3
4
  /**
@@ -24,13 +25,20 @@ import * as i0 from "@angular/core";
24
25
  *
25
26
  * @input props - Menu configuration
26
27
  */
27
- export declare class MenuComponent {
28
+ export declare class MenuComponent implements AfterViewInit, OnChanges, OnDestroy {
28
29
  private menuCtrl;
29
30
  private i18n;
31
+ private elementRef;
32
+ private splitPane?;
33
+ private splitPaneOriginalStyles;
34
+ protected readonly isDesktopCollapsed: import("@angular/core").WritableSignal<boolean>;
30
35
  /**
31
36
  * Menu configuration.
32
37
  */
33
38
  props: MenuMetadata;
39
+ ngOnChanges(changes: SimpleChanges): void;
40
+ ngAfterViewInit(): void;
41
+ ngOnDestroy(): void;
34
42
  /**
35
43
  * Close button text - reactive to language changes.
36
44
  */
@@ -39,6 +47,14 @@ export declare class MenuComponent {
39
47
  * Closes the menu.
40
48
  */
41
49
  closeMenu(): Promise<void>;
50
+ toggleDesktopCollapse(): void;
51
+ retractableMenuEnabled(): boolean;
52
+ desktopCollapseButtonLabel(): string;
53
+ desktopCollapseIcon(): string;
54
+ private syncSplitPaneWidth;
55
+ private findSplitPane;
56
+ private captureOriginalSplitPaneStyles;
57
+ private restoreSplitPaneWidth;
42
58
  static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
43
59
  static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "val-menu", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, ["*"], true, never>;
44
60
  }
@@ -18,6 +18,20 @@ export interface MenuMetadata {
18
18
  showCloseButton?: boolean;
19
19
  /** Close button text (default: 'Close') */
20
20
  closeButtonText?: string;
21
+ /** Enable a desktop split-pane menu rail that can expand and collapse */
22
+ retractableMenu?: boolean;
23
+ /** @deprecated Use retractableMenu instead */
24
+ desktopCollapsible?: boolean;
25
+ /** Initial collapsed state for desktop split-pane menus */
26
+ desktopCollapsed?: boolean;
27
+ /** Expanded width for desktop split-pane menus */
28
+ desktopExpandedWidth?: string;
29
+ /** Collapsed width for desktop split-pane menus */
30
+ desktopCollapsedWidth?: string;
31
+ /** Accessible label for collapsing the desktop menu */
32
+ desktopCollapseLabel?: string;
33
+ /** Accessible label for expanding the desktop menu */
34
+ desktopExpandLabel?: string;
21
35
  /** Logo image configuration */
22
36
  logo?: ImageMetadata;
23
37
  }
@@ -18,7 +18,7 @@ export declare class ChessimalsChallengeProgressService {
18
18
  completed: boolean;
19
19
  roundStats: ChessimalsChallengeRoundStats;
20
20
  }): Promise<void>;
21
- recordModeResult(mode: Exclude<ChessimalsStatsMode, 'challenge'>, won: boolean): Promise<void>;
21
+ recordModeResult(mode: Exclude<ChessimalsStatsMode, 'challenge'>, won: boolean, roundStats?: ChessimalsChallengeRoundStats): Promise<void>;
22
22
  emptyStats(): ChessimalsChallengeStats;
23
23
  private readStats;
24
24
  private normalizeStats;
@@ -1,6 +1,7 @@
1
- import { ChessimalsAnimalType, ChessimalsBotDifficulty, ChessimalsBotProfile, ChessimalsBotProfileId, ChessimalsBoardSize, ChessimalsGameMode, ChessimalsGameState, ChessimalsGameStatus, ChessimalsMove, ChessimalsMoveHistoryEntry, ChessimalsOnlineState, ChessimalsPiece, ChessimalsPlayerColor, ChessimalsPosition } from './types';
1
+ import { ChessimalsAnimalType, ChessimalsBotDifficulty, ChessimalsBotProfile, ChessimalsBotProfileId, ChessimalsBoardSize, ChessimalsGameMode, ChessimalsGameState, ChessimalsGameStatus, ChessimalsMove, ChessimalsMoveHistoryEntry, ChessimalsNightmareMode, ChessimalsOnlineState, ChessimalsPiece, ChessimalsPlayerColor, ChessimalsPosition } from './types';
2
2
  interface ChessimalsBotOptions {
3
3
  challengeRound?: number;
4
+ nightmareMode?: ChessimalsNightmareMode;
4
5
  }
5
6
  export declare const CHESSIMALS_BOT_PROFILES: ChessimalsBotProfile[];
6
7
  export interface CreateChessimalsGameOptions {
@@ -2,7 +2,7 @@ import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { FormControl } from '@angular/forms';
3
3
  import { MiniGameCalloutMetadata } from './mini-game-callout.component';
4
4
  import { MiniGameScorePopMetadata } from './mini-game-score-pop.component';
5
- import { ChessimalsAnimalType, ChessimalsBotDifficulty, ChessimalsBotProfile, ChessimalsBotProfileId, ChessimalsBoardSize, ChessimalsChallengeBot, ChessimalsChallengeRoundStats, ChessimalsChallengeRun, ChessimalsChallengeStats, ChessimalsGameState, ChessimalsHistoryEntry, ChessimalsLocalMode, ChessimalsMove, ChessimalsOnlineParticipant, ChessimalsPiece, ChessimalsPlayerColor, ChessimalsPosition, ChessimalsStatsMode } from './types';
5
+ import { ChessimalsAnimalType, ChessimalsBotDifficulty, ChessimalsBotProfile, ChessimalsBotProfileId, ChessimalsBoardSize, ChessimalsChallengeBot, ChessimalsChallengeRoundStats, ChessimalsChallengeRun, ChessimalsChallengeStats, ChessimalsGameState, ChessimalsHistoryEntry, ChessimalsLocalMode, ChessimalsMove, ChessimalsNightmareMode, ChessimalsOnlineParticipant, ChessimalsPiece, ChessimalsPlayerColor, ChessimalsPosition, ChessimalsStatsMode } from './types';
6
6
  import { RangeInputMetadata, RangeValue } from '../../molecules/range-input/types';
7
7
  import { ToggleInputMetadata } from '../../molecules/toggle-input/types';
8
8
  import { UserAvatarMetadata } from '../../atoms/user-avatar/types';
@@ -117,14 +117,16 @@ export declare class ChessimalsGameComponent implements OnInit, OnDestroy {
117
117
  readonly boardSizes: ChessimalsBoardSize[];
118
118
  readonly localModes: ChessimalsLocalMode[];
119
119
  readonly botDifficulties: ChessimalsBotDifficulty[];
120
+ readonly nightmareModes: ChessimalsNightmareMode[];
120
121
  readonly botProfiles: ChessimalsBotProfile[];
121
122
  readonly challengeLadder: ChessimalsChallengeBot[];
122
123
  readonly animals: ChessimalsAnimalView[];
123
- readonly valtechComponentsVersion = "4.0.563";
124
+ readonly valtechComponentsVersion = "4.0.565";
124
125
  readonly screen: import("@angular/core").WritableSignal<"home" | "challenge" | "path" | "game">;
125
126
  readonly selectedBoardSize: import("@angular/core").WritableSignal<ChessimalsBoardSize>;
126
127
  readonly selectedLocalMode: import("@angular/core").WritableSignal<ChessimalsLocalMode>;
127
128
  readonly selectedBotDifficulty: import("@angular/core").WritableSignal<ChessimalsBotDifficulty>;
129
+ readonly selectedNightmareMode: import("@angular/core").WritableSignal<ChessimalsNightmareMode>;
128
130
  readonly selectedBotProfileId: import("@angular/core").WritableSignal<ChessimalsBotProfileId>;
129
131
  readonly gameBotProfileId: import("@angular/core").WritableSignal<ChessimalsBotProfileId>;
130
132
  readonly game: import("@angular/core").WritableSignal<ChessimalsGameState>;
@@ -284,6 +286,8 @@ export declare class ChessimalsGameComponent implements OnInit, OnDestroy {
284
286
  private startChallengeRound;
285
287
  private enterChallengeRound;
286
288
  private isResumableChallengeRun;
289
+ private createConfiguredLocalGame;
290
+ private applyNightmarePreset;
287
291
  startGame(): void;
288
292
  private handleChallengeRoundFinished;
289
293
  private abandonChallengeIfNeeded;
@@ -428,6 +432,11 @@ export declare class ChessimalsGameComponent implements OnInit, OnDestroy {
428
432
  localModeLabel(mode: ChessimalsLocalMode): string;
429
433
  localModeDescription(mode: ChessimalsLocalMode): string;
430
434
  selectBotDifficulty(difficulty: ChessimalsBotDifficulty): void;
435
+ nightmareModeLabel(mode: ChessimalsNightmareMode): string;
436
+ nightmareModeDescription(mode: ChessimalsNightmareMode): string;
437
+ nightmareModeAssetSrc(mode: ChessimalsNightmareMode): string;
438
+ nightmareModeGlyph(mode: ChessimalsNightmareMode): string;
439
+ powerUsesLabel(animal: ChessimalsAnimalType): string;
431
440
  botDifficultyLabel(difficulty: ChessimalsBotDifficulty): string;
432
441
  botProfileLabel(profile: ChessimalsBotProfile): string;
433
442
  botProfileDescription(profile: ChessimalsBotProfile): string;
@@ -442,6 +451,7 @@ export declare class ChessimalsGameComponent implements OnInit, OnDestroy {
442
451
  challengeMenuClearedRound(): number;
443
452
  private challengeMenuRun;
444
453
  challengeBotName(bot: ChessimalsChallengeBot): string;
454
+ challengeBotIntro(bot: ChessimalsChallengeBot): string;
445
455
  challengeBotDifficultyLabel(bot: ChessimalsChallengeBot): string;
446
456
  challengeBotStyleLine(bot: ChessimalsChallengeBot): string;
447
457
  challengeBotStatusLabel(bot: ChessimalsChallengeBot): string;
@@ -492,6 +502,7 @@ export declare class ChessimalsGameComponent implements OnInit, OnDestroy {
492
502
  private scoreChessimalsMove;
493
503
  private colorFromPieceId;
494
504
  private createChallengeRoundStats;
505
+ private createPlayerRoundStats;
495
506
  private modeStatsResult;
496
507
  animalLabel(type: ChessimalsAnimalType): string;
497
508
  animalGlyph(type: ChessimalsAnimalType): string;
@@ -180,6 +180,7 @@ export declare class ChristianityGameComponent {
180
180
  }[]>;
181
181
  protected readonly selectedCardDefinition: import("@angular/core").Signal<ChristianityCardDefinition>;
182
182
  protected readonly selectedPreviewCard: import("@angular/core").Signal<ChristianityCardDefinition>;
183
+ protected readonly selectedPreviewBibleCredit: import("@angular/core").Signal<string>;
183
184
  protected readonly selectedPreviewRenderCard: import("@angular/core").Signal<ChristianityCardRenderModel>;
184
185
  protected selectedPreviewNeighborRenderCard(direction: -1 | 1): ChristianityCardRenderModel | null;
185
186
  protected readonly previewRule: import("@angular/core").Signal<ChristianityPreviewRule>;
@@ -52,6 +52,7 @@ export type ChessimalsWinReason = 'promotion' | 'elimination' | 'resignation' |
52
52
  export type ChessimalsGameMode = 'local' | 'online';
53
53
  export type ChessimalsLocalMode = 'one-device' | 'bot';
54
54
  export type ChessimalsBotDifficulty = 'easy' | 'normal' | 'hard';
55
+ export type ChessimalsNightmareMode = 'none' | 'hunt' | 'pride';
55
56
  export type ChessimalsBotProfileId = 'explorer' | 'impulsive' | 'runner' | 'hunter' | 'guardian' | 'jumper' | 'strategist' | 'predator' | 'sprinter' | 'sentinel' | 'oracle' | 'ambusher' | 'locksmith' | 'storm' | 'matriarch' | 'endgame';
56
57
  export type ChessimalsGameStatus = 'waiting' | 'in_progress' | 'finished' | 'expired';
57
58
  export interface ChessimalsBotProfile {
@@ -152,6 +153,7 @@ export interface ChessimalsPiece {
152
153
  export interface ChessimalsPowerCard {
153
154
  type: ChessimalsAnimalType;
154
155
  used: boolean;
156
+ usesRemaining?: number;
155
157
  }
156
158
  export interface ChessimalsPlayerState {
157
159
  color: ChessimalsPlayerColor;
@@ -45,6 +45,11 @@ export interface OrganizationViewConfig {
45
45
  * exige además ser owner (gating RBAC interno vía `isOwner()`).
46
46
  */
47
47
  showDeleteOrg?: boolean;
48
+ /**
49
+ * Muestra la sección "Integraciones (API Keys)". Default `true`. El render real
50
+ * exige además permiso `api-keys:read`.
51
+ */
52
+ showApiKeys?: boolean;
48
53
  /**
49
54
  * Namespace i18n con el que la vista resuelve sus textos.
50
55
  * Default `'Settings.Organization'`.
@@ -24,6 +24,8 @@ export interface FieldSchemaDef {
24
24
  validators?: string[];
25
25
  options?: FieldOption[];
26
26
  order: number;
27
+ /** Initial value injected by consumers when rendering a configured form. */
28
+ value?: string;
27
29
  }
28
30
  export interface FormSchemaConfig {
29
31
  schemaId: string;
package/lib/version.d.ts CHANGED
@@ -2,4 +2,4 @@
2
2
  * Current version of valtech-components.
3
3
  * This is automatically updated during the publish process.
4
4
  */
5
- export declare const VERSION = "4.0.563";
5
+ export declare const VERSION = "4.0.565";
@@ -1,9 +1,20 @@
1
+ import { Route, Routes } from '@angular/router';
1
2
  import { MiniGameDefinition, PageContentMetadata } from 'valtech-components';
2
3
  import * as i0 from "@angular/core";
3
4
  export { MiniGameCalloutComponent } from 'valtech-components';
4
5
  export type { MiniGameCalloutMetadata, MiniGameCalloutVariant } from 'valtech-components';
5
6
  export { MiniGameScorePopComponent } from 'valtech-components';
6
7
  export type { MiniGameScorePopMetadata, MiniGameScorePopVariant } from 'valtech-components';
8
+ export interface ValtechMiniGamesRoutesOptions {
9
+ path?: string;
10
+ canActivate?: Route['canActivate'];
11
+ includeMenu?: boolean;
12
+ includeMemory?: boolean;
13
+ includeSimon?: boolean;
14
+ includeBubbleBlitz?: boolean;
15
+ includeChessimals?: boolean;
16
+ }
17
+ export declare function provideValtechMiniGamesRoutes(opts?: ValtechMiniGamesRoutesOptions): Routes;
7
18
  export declare class MiniGamesPageComponent {
8
19
  private readonly router;
9
20
  private readonly i18n;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "4.0.563",
3
+ "version": "4.0.565",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"
@@ -281,6 +281,11 @@ ion-modal ion-content {
281
281
  * Variante .val-modal-adaptive--wide disponible para contenido más ancho.
282
282
  * ─────────────────────────────────────────────────────────────────────────── */
283
283
  ion-modal.val-modal-adaptive {
284
+ --background: #ffffff;
285
+ --ion-background-color: #ffffff;
286
+ --ion-card-background: #ffffff;
287
+ --ion-item-background: #ffffff;
288
+ --ion-toolbar-background: #ffffff;
284
289
  --border-radius: 0;
285
290
  --width: 100%;
286
291
  --height: 100%;