@truelab/truelogic 0.2.2 → 0.2.3

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.
@@ -219,7 +219,7 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
219
219
  };
220
220
  gameInfo: {
221
221
  containers: import("../entities/gameInfo/model/gameInfoSlice").TGameInfoContainer<{
222
- type: "title" | "separator" | "text" | "feature-v1" | "feature-v2" | "subtitle" | "list-item" | "table-head" | "table-cell";
222
+ type: "title" | "text" | "separator" | "feature-v1" | "feature-v2" | "subtitle" | "list-item" | "table-head" | "table-cell";
223
223
  }>[];
224
224
  background?: {
225
225
  portrait?: string;
@@ -470,7 +470,7 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
470
470
  };
471
471
  gameInfo: {
472
472
  containers: import("../entities/gameInfo/model/gameInfoSlice").TGameInfoContainer<{
473
- type: "title" | "separator" | "text" | "feature-v1" | "feature-v2" | "subtitle" | "list-item" | "table-head" | "table-cell";
473
+ type: "title" | "text" | "separator" | "feature-v1" | "feature-v2" | "subtitle" | "list-item" | "table-head" | "table-cell";
474
474
  }>[];
475
475
  background?: {
476
476
  portrait?: string;
@@ -1,12 +1,12 @@
1
1
  import { TResponseGS } from "../../api/round/open/types";
2
- import { TTranslations } from "../../localization";
2
+ import { TLocalizationSettings } from "../../localization";
3
3
  import { TStake } from '../../api/round/open';
4
4
  import { Emitter } from '../classes';
5
5
  export type TInitMode = 'default' | 'restore' | 'replay';
6
6
  export type TInitResponse = {
7
7
  mode: TInitMode;
8
8
  client: unknown;
9
- translations: TTranslations;
9
+ localization: TLocalizationSettings;
10
10
  test: boolean;
11
11
  session: {
12
12
  theme: string;
@@ -217,7 +217,7 @@ export declare const useAppDispatch: import("react-redux").UseDispatch<import("r
217
217
  };
218
218
  gameInfo: {
219
219
  containers: import("../../../entities/gameInfo/model/gameInfoSlice").TGameInfoContainer<{
220
- type: "title" | "separator" | "text" | "feature-v1" | "feature-v2" | "subtitle" | "list-item" | "table-head" | "table-cell";
220
+ type: "title" | "text" | "separator" | "feature-v1" | "feature-v2" | "subtitle" | "list-item" | "table-head" | "table-cell";
221
221
  }>[];
222
222
  background?: {
223
223
  portrait?: string;
@@ -468,7 +468,7 @@ export declare const useAppSelector: import("react-redux").UseSelector<{
468
468
  };
469
469
  gameInfo: {
470
470
  containers: import("../../../entities/gameInfo/model/gameInfoSlice").TGameInfoContainer<{
471
- type: "title" | "separator" | "text" | "feature-v1" | "feature-v2" | "subtitle" | "list-item" | "table-head" | "table-cell";
471
+ type: "title" | "text" | "separator" | "feature-v1" | "feature-v2" | "subtitle" | "list-item" | "table-head" | "table-cell";
472
472
  }>[];
473
473
  background?: {
474
474
  portrait?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truelab/truelogic",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "",
5
5
  "main": "./dist/truelogic.min.js",
6
6
  "types": "./dist/types/src/truelogic.d.ts",