valtech-components 4.0.564 → 4.0.566
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/feedback-form/feedback-form.component.mjs +2 -2
- package/esm2022/lib/components/molecules/request-form/request-form.component.mjs +2 -2
- package/esm2022/lib/components/organisms/api-key-create-modal/api-key-create-modal.component.mjs +2 -2
- package/esm2022/lib/components/organisms/api-keys-modal/api-keys-modal.component.mjs +2 -2
- package/esm2022/lib/components/organisms/change-email-modal/change-email-modal.component.mjs +2 -2
- package/esm2022/lib/components/organisms/change-password-modal/change-password-modal.component.mjs +1 -1
- package/esm2022/lib/components/organisms/create-org-modal/create-org-modal.component.mjs +2 -2
- package/esm2022/lib/components/organisms/delete-account-modal/delete-account-modal.component.mjs +1 -1
- package/esm2022/lib/components/organisms/edit-org-modal/edit-org-modal.component.mjs +2 -2
- package/esm2022/lib/components/organisms/form/form.component.mjs +27 -3
- package/esm2022/lib/components/organisms/login/login.component.mjs +21 -3
- package/esm2022/lib/components/organisms/login/types.mjs +1 -1
- package/esm2022/lib/components/organisms/menu/menu.component.mjs +130 -9
- package/esm2022/lib/components/organisms/menu/types.mjs +1 -1
- package/esm2022/lib/components/organisms/mfa-modal/mfa-modal.component.mjs +2 -2
- package/esm2022/lib/components/organisms/mini-games/chessimals-engine.mjs +59 -16
- package/esm2022/lib/components/organisms/mini-games/chessimals-game.component.mjs +139 -6
- package/esm2022/lib/components/organisms/mini-games/christianity-card.component.mjs +3 -9
- package/esm2022/lib/components/organisms/mini-games/christianity-game.component.mjs +13 -3
- package/esm2022/lib/components/organisms/mini-games/mini-games.i18n.mjs +17 -3
- package/esm2022/lib/components/organisms/mini-games/types.mjs +1 -1
- package/esm2022/lib/components/organisms/profile-view/profile-content.component.mjs +2 -2
- package/esm2022/lib/services/auth/guards.mjs +11 -3
- package/esm2022/lib/services/forms/form-schema-builder.service.mjs +2 -1
- package/esm2022/lib/services/forms/types.mjs +1 -1
- package/esm2022/lib/version.mjs +2 -2
- package/esm2022/mini-games/public-api.mjs +54 -2
- package/fesm2022/valtech-components-mini-games.mjs +54 -2
- package/fesm2022/valtech-components-mini-games.mjs.map +1 -1
- package/fesm2022/valtech-components.mjs +422 -56
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/organisms/form/form.component.d.ts +3 -1
- package/lib/components/organisms/login/login.component.d.ts +3 -1
- package/lib/components/organisms/login/types.d.ts +6 -1
- package/lib/components/organisms/menu/menu.component.d.ts +17 -1
- package/lib/components/organisms/menu/types.d.ts +14 -0
- package/lib/components/organisms/mini-games/chessimals-engine.d.ts +2 -1
- package/lib/components/organisms/mini-games/chessimals-game.component.d.ts +11 -2
- package/lib/components/organisms/mini-games/christianity-game.component.d.ts +1 -0
- package/lib/components/organisms/mini-games/types.d.ts +2 -0
- package/lib/services/forms/types.d.ts +2 -0
- package/lib/version.d.ts +1 -1
- package/mini-games/public-api.d.ts +11 -0
- package/package.json +1 -1
- 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
|
}
|
|
@@ -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.
|
|
124
|
+
readonly valtechComponentsVersion = "4.0.566";
|
|
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;
|
|
@@ -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;
|
|
@@ -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
|
@@ -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
|
@@ -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%;
|