valtech-components 4.0.560 → 4.0.561

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.
@@ -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.560";
117
+ readonly valtechComponentsVersion = "4.0.561";
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>;
@@ -21,10 +21,11 @@ export interface ChristianityCardRenderModel {
21
21
  editionIcon?: string;
22
22
  year?: string;
23
23
  author?: string;
24
- rarity?: 'normal' | 'uncommon' | 'rare' | 'legendary';
24
+ rarity?: 'normal' | 'good' | 'very-good' | 'uncommon' | 'rare' | 'legendary';
25
25
  imageUrl?: string;
26
26
  frontTemplate?: string;
27
27
  statusText?: string;
28
+ bibleCredit?: string;
28
29
  }
29
30
  export declare class ChristianityCardComponent {
30
31
  readonly card: import("@angular/core").InputSignal<ChristianityCardRenderModel>;
@@ -211,6 +211,7 @@ export declare class ChristianityGameComponent {
211
211
  protected definitionToRenderCard(card: ChristianityCardDefinition, overrides?: Partial<ChristianityCardRenderModel>): ChristianityCardRenderModel;
212
212
  protected placeBackdropImage(card: ChristianityCardDefinition): string;
213
213
  protected hiddenCardRenderCard(): ChristianityCardRenderModel;
214
+ private bibleCreditForCard;
214
215
  private defaultCardBody;
215
216
  protected characterRenderCard(card: ChristianityCharacterInstance): ChristianityCardRenderModel;
216
217
  protected leaderRenderCard(player: ChristianityPlayerState): ChristianityCardRenderModel;
@@ -259,7 +259,7 @@ export type ChristianitySeat = 'P1' | 'P2';
259
259
  export type ChristianityGameStatus = 'in_progress' | 'finished';
260
260
  export type ChristianityGameMode = 'solo_bot' | 'two_player' | 'local_pass';
261
261
  export type ChristianityCardType = 'action' | 'character' | 'event' | 'leader' | 'offering' | 'place' | 'tool' | 'wisdom';
262
- export type ChristianityCardRarity = 'normal' | 'uncommon' | 'rare' | 'legendary';
262
+ export type ChristianityCardRarity = 'normal' | 'good' | 'very-good' | 'uncommon' | 'rare' | 'legendary';
263
263
  export interface ChristianityCardAbility {
264
264
  name?: string;
265
265
  text?: string;
@@ -333,6 +333,7 @@ export interface ChristianityCardDefinition {
333
333
  i18n?: Record<string, ChristianityCardTranslation>;
334
334
  status?: string;
335
335
  sourceNotes?: string;
336
+ bibleCredit?: string;
336
337
  }
337
338
  export interface ChristianityCharacterInstance {
338
339
  instanceId: 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.560";
5
+ export declare const VERSION = "4.0.561";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "4.0.560",
3
+ "version": "4.0.561",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"