@truelab/truelogic-plinko 0.0.1 → 0.0.2
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/dist/988.min.js +1 -1
- package/dist/preloader.html +1 -1
- package/dist/truelogic.min.css +1 -1
- package/dist/truelogic.min.js +1 -1
- package/dist/types/src/app/lib/singletones/publicEmitter.d.ts +4 -0
- package/dist/types/src/app/store.d.ts +40 -10
- package/dist/types/src/entities/activeRounds/index.d.ts +1 -0
- package/dist/types/src/entities/activeRounds/model/activeRoundsSlice.d.ts +18 -0
- package/dist/types/src/entities/autoplay/index.d.ts +1 -1
- package/dist/types/src/entities/autoplay/model/autoPlaySlice.d.ts +16 -2
- package/dist/types/src/entities/bonus/index.d.ts +1 -1
- package/dist/types/src/entities/bonus/model/bonusSlice.d.ts +17 -11
- package/dist/types/src/entities/fastplay/index.d.ts +1 -1
- package/dist/types/src/entities/fastplay/model/fastPlaySlice.d.ts +2 -1
- package/dist/types/src/entities/freeRounds/model/freeRoundsSlice.d.ts +1 -1
- package/dist/types/src/entities/modals/ui/ModalBaseHeader.d.ts +2 -1
- package/dist/types/src/entities/round/index.d.ts +1 -1
- package/dist/types/src/entities/round/model/roundSlice.d.ts +2 -2
- package/dist/types/src/entities/session/index.d.ts +1 -1
- package/dist/types/src/entities/session/model/sessionSlice.d.ts +2 -3
- package/dist/types/src/entities/stake/ui/StakeAmountSelector/StakeAmountSelector.d.ts +3 -1
- package/dist/types/src/features/bonus/index.d.ts +2 -0
- package/dist/types/src/features/bonus/ui/BonusFeatureSelector/BonusFeatureSelector.d.ts +7 -1
- package/dist/types/src/features/bonus/ui/BonusFeatureSelector/BonusFeatureSelectorItem.d.ts +9 -0
- package/dist/types/src/features/bonus/ui/BonusInfoTooltip/BonusInfoTooltip.d.ts +7 -0
- package/dist/types/src/features/bonus/ui/BonusShortcutIcons/BonusShortcutIcon.d.ts +5 -0
- package/dist/types/src/features/bonus/ui/BonusShortcutIcons/BonusShortcutIcons.d.ts +1 -0
- package/dist/types/src/features/panel/ui/PanelBonus.d.ts +4 -1
- package/dist/types/src/features/play/index.d.ts +1 -0
- package/dist/types/src/features/play/model/initRound.d.ts +10 -0
- package/dist/types/src/features/play/ui/PanelPlay/PanelPlay.d.ts +2 -1
- package/dist/types/src/features/riskSelector/index.d.ts +3 -0
- package/dist/types/src/features/riskSelector/model/constants.d.ts +5 -0
- package/dist/types/src/features/riskSelector/model/types.d.ts +5 -0
- package/dist/types/src/features/riskSelector/ui/RiskSelector.d.ts +1 -0
- package/dist/types/src/features/riskSelector/ui/RiskSelectorSelect.d.ts +1 -0
- package/dist/types/src/features/rowsSelector/index.d.ts +2 -0
- package/dist/types/src/features/rowsSelector/model/constants.d.ts +2 -0
- package/dist/types/src/features/rowsSelector/ui/RowsSelectorGrid.d.ts +1 -0
- package/dist/types/src/features/rowsSelector/ui/RowsSelectorSelect.d.ts +1 -0
- package/dist/types/src/features/welcome/index.d.ts +1 -0
- package/dist/types/src/features/welcome/ui/defaultV3/GameWelcomeV3.d.ts +2 -0
- package/dist/types/src/sandbox/config.d.ts +4 -0
- package/dist/types/src/shared/api/config/index.d.ts +1 -1
- package/dist/types/src/shared/api/config/types.d.ts +7 -0
- package/dist/types/src/shared/api/round/open/index.d.ts +1 -0
- package/dist/types/src/shared/api/round/open/types.d.ts +4 -0
- package/dist/types/src/shared/lib/singletones/gameEmitter.d.ts +1 -0
- package/dist/types/src/shared/lib/store/redux.d.ts +16 -4
- package/dist/types/src/shared/lib/tests/utils/getPreloadedState.d.ts +8 -2
- package/dist/types/src/shared/lib/tests/utils/setupTestStore.d.ts +16 -4
- package/dist/types/src/shared/lib/types/theme.d.ts +1 -0
- package/dist/types/src/shared/model/autoplay/types.d.ts +1 -0
- package/dist/types/src/shared/model/modals/modalsSlice.d.ts +1 -1
- package/dist/types/src/shared/model/welcome/types.d.ts +11 -1
- package/dist/types/src/shared/ui/Switch/Switch.d.ts +6 -0
- package/dist/types/src/shared/ui/Tooltip/TooltipDropdown.d.ts +3 -2
- package/dist/types/src/truelogic.d.ts +2 -0
- package/dist/types/src/widgets/gameSettingsPanel/GameSettingsPanel.d.ts +1 -0
- package/dist/types/src/widgets/gameSettingsPanel/index.d.ts +1 -0
- package/dist/types/src/widgets/modals/index.d.ts +1 -0
- package/dist/types/src/widgets/modals/ui/ModalStakeAmounts/ModalStakeAmounts.d.ts +1 -0
- package/dist/types/src/widgets/modals/ui/ModalStakeAmounts/RectStakeAmount.d.ts +8 -0
- package/dist/types/tailwind.config.d.ts +11 -0
- package/package.json +1 -1
|
@@ -62,6 +62,8 @@ export type TConfiguration = {
|
|
|
62
62
|
freeRounds?: TFreeRoundsConfig;
|
|
63
63
|
sounds?: TSoundsConfig;
|
|
64
64
|
fillFrame?: TFillFrameConfig;
|
|
65
|
+
customPay?: boolean;
|
|
66
|
+
fastPlay?: boolean;
|
|
65
67
|
};
|
|
66
68
|
export type TPublicEvents = {
|
|
67
69
|
['init']: (config?: TInitConfig) => void;
|
|
@@ -87,6 +89,8 @@ export type TPublicEvents = {
|
|
|
87
89
|
['tapAnywhere:ended']: () => void;
|
|
88
90
|
['test:set']: (test: string) => void;
|
|
89
91
|
['panel.counter:set']: (data: TPanelCounterData) => void;
|
|
92
|
+
['balance:added']: (amount: number) => void;
|
|
93
|
+
['round:finished']: (roundId: string) => void;
|
|
90
94
|
};
|
|
91
95
|
declare class PublicEmitter extends Emitter<TPublicEvents> {
|
|
92
96
|
log(event: string, ...args: unknown[]): void;
|
|
@@ -51,18 +51,18 @@ export declare const rootReducer: import("redux").Reducer<{
|
|
|
51
51
|
default: number;
|
|
52
52
|
fastPlay?: number;
|
|
53
53
|
};
|
|
54
|
+
seriesIndex?: number;
|
|
54
55
|
};
|
|
55
56
|
session: {
|
|
56
57
|
isDemo: boolean;
|
|
57
58
|
partner: string;
|
|
58
59
|
balance: number;
|
|
59
|
-
balancePrevious: number;
|
|
60
60
|
netValue: number;
|
|
61
|
-
netValuePrevious: number;
|
|
62
61
|
shouldResetNetValue: boolean;
|
|
63
62
|
currency: string;
|
|
64
63
|
currencyDecimals: number;
|
|
65
64
|
urls: import("../shared/api/config/types").TSessionUrls;
|
|
65
|
+
customPay: boolean;
|
|
66
66
|
};
|
|
67
67
|
modals: {
|
|
68
68
|
hasOpened: boolean;
|
|
@@ -132,6 +132,7 @@ export declare const rootReducer: import("redux").Reducer<{
|
|
|
132
132
|
fake: import("../shared/api/round/open").TApiRoundOpenFake;
|
|
133
133
|
};
|
|
134
134
|
fastPlay: {
|
|
135
|
+
isEnabled: boolean;
|
|
135
136
|
isActive: boolean;
|
|
136
137
|
};
|
|
137
138
|
bonus: {
|
|
@@ -143,6 +144,8 @@ export declare const rootReducer: import("redux").Reducer<{
|
|
|
143
144
|
isConfirmModalShown: boolean;
|
|
144
145
|
tmpLevel: number;
|
|
145
146
|
tmpAmountIndex: number;
|
|
147
|
+
isTooltipOpened: boolean;
|
|
148
|
+
isInfoTooltipOpened: boolean;
|
|
146
149
|
activeSlideWidth: number;
|
|
147
150
|
activeSlideOffsetX: number;
|
|
148
151
|
isSliderInTransition: boolean;
|
|
@@ -342,6 +345,9 @@ export declare const rootReducer: import("redux").Reducer<{
|
|
|
342
345
|
hasDefferedModal?: boolean;
|
|
343
346
|
defferedCampaign?: import("../shared/sockets").TPrizeDropSocketEventPayloadCampaignUpdated;
|
|
344
347
|
};
|
|
348
|
+
activeRounds: {
|
|
349
|
+
items: string[];
|
|
350
|
+
};
|
|
345
351
|
}, import("redux").UnknownAction, Partial<{
|
|
346
352
|
viewPort: import("../shared/viewPort/lib/types").TViewPortState;
|
|
347
353
|
loading: {
|
|
@@ -395,18 +401,18 @@ export declare const rootReducer: import("redux").Reducer<{
|
|
|
395
401
|
default: number;
|
|
396
402
|
fastPlay?: number;
|
|
397
403
|
};
|
|
404
|
+
seriesIndex?: number;
|
|
398
405
|
};
|
|
399
406
|
session: {
|
|
400
407
|
isDemo: boolean;
|
|
401
408
|
partner: string;
|
|
402
409
|
balance: number;
|
|
403
|
-
balancePrevious: number;
|
|
404
410
|
netValue: number;
|
|
405
|
-
netValuePrevious: number;
|
|
406
411
|
shouldResetNetValue: boolean;
|
|
407
412
|
currency: string;
|
|
408
413
|
currencyDecimals: number;
|
|
409
414
|
urls: import("../shared/api/config/types").TSessionUrls;
|
|
415
|
+
customPay: boolean;
|
|
410
416
|
};
|
|
411
417
|
modals: {
|
|
412
418
|
hasOpened: boolean;
|
|
@@ -476,6 +482,7 @@ export declare const rootReducer: import("redux").Reducer<{
|
|
|
476
482
|
fake: import("../shared/api/round/open").TApiRoundOpenFake;
|
|
477
483
|
};
|
|
478
484
|
fastPlay: {
|
|
485
|
+
isEnabled: boolean;
|
|
479
486
|
isActive: boolean;
|
|
480
487
|
};
|
|
481
488
|
bonus: {
|
|
@@ -487,6 +494,8 @@ export declare const rootReducer: import("redux").Reducer<{
|
|
|
487
494
|
isConfirmModalShown: boolean;
|
|
488
495
|
tmpLevel: number;
|
|
489
496
|
tmpAmountIndex: number;
|
|
497
|
+
isTooltipOpened: boolean;
|
|
498
|
+
isInfoTooltipOpened: boolean;
|
|
490
499
|
activeSlideWidth: number;
|
|
491
500
|
activeSlideOffsetX: number;
|
|
492
501
|
isSliderInTransition: boolean;
|
|
@@ -686,6 +695,9 @@ export declare const rootReducer: import("redux").Reducer<{
|
|
|
686
695
|
hasDefferedModal?: boolean;
|
|
687
696
|
defferedCampaign?: import("../shared/sockets").TPrizeDropSocketEventPayloadCampaignUpdated;
|
|
688
697
|
};
|
|
698
|
+
activeRounds: {
|
|
699
|
+
items: string[];
|
|
700
|
+
};
|
|
689
701
|
}>>;
|
|
690
702
|
export declare const persistedReducer: import("redux").Reducer<{
|
|
691
703
|
viewPort: import("../shared/viewPort/lib/types").TViewPortState;
|
|
@@ -740,18 +752,18 @@ export declare const persistedReducer: import("redux").Reducer<{
|
|
|
740
752
|
default: number;
|
|
741
753
|
fastPlay?: number;
|
|
742
754
|
};
|
|
755
|
+
seriesIndex?: number;
|
|
743
756
|
};
|
|
744
757
|
session: {
|
|
745
758
|
isDemo: boolean;
|
|
746
759
|
partner: string;
|
|
747
760
|
balance: number;
|
|
748
|
-
balancePrevious: number;
|
|
749
761
|
netValue: number;
|
|
750
|
-
netValuePrevious: number;
|
|
751
762
|
shouldResetNetValue: boolean;
|
|
752
763
|
currency: string;
|
|
753
764
|
currencyDecimals: number;
|
|
754
765
|
urls: import("../shared/api/config/types").TSessionUrls;
|
|
766
|
+
customPay: boolean;
|
|
755
767
|
};
|
|
756
768
|
modals: {
|
|
757
769
|
hasOpened: boolean;
|
|
@@ -821,6 +833,7 @@ export declare const persistedReducer: import("redux").Reducer<{
|
|
|
821
833
|
fake: import("../shared/api/round/open").TApiRoundOpenFake;
|
|
822
834
|
};
|
|
823
835
|
fastPlay: {
|
|
836
|
+
isEnabled: boolean;
|
|
824
837
|
isActive: boolean;
|
|
825
838
|
};
|
|
826
839
|
bonus: {
|
|
@@ -832,6 +845,8 @@ export declare const persistedReducer: import("redux").Reducer<{
|
|
|
832
845
|
isConfirmModalShown: boolean;
|
|
833
846
|
tmpLevel: number;
|
|
834
847
|
tmpAmountIndex: number;
|
|
848
|
+
isTooltipOpened: boolean;
|
|
849
|
+
isInfoTooltipOpened: boolean;
|
|
835
850
|
activeSlideWidth: number;
|
|
836
851
|
activeSlideOffsetX: number;
|
|
837
852
|
isSliderInTransition: boolean;
|
|
@@ -1031,6 +1046,9 @@ export declare const persistedReducer: import("redux").Reducer<{
|
|
|
1031
1046
|
hasDefferedModal?: boolean;
|
|
1032
1047
|
defferedCampaign?: import("../shared/sockets").TPrizeDropSocketEventPayloadCampaignUpdated;
|
|
1033
1048
|
};
|
|
1049
|
+
activeRounds: {
|
|
1050
|
+
items: string[];
|
|
1051
|
+
};
|
|
1034
1052
|
} & import("redux-persist/es/persistReducer").PersistPartial, import("redux").Action>;
|
|
1035
1053
|
export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
1036
1054
|
viewPort: import("../shared/viewPort/lib/types").TViewPortState;
|
|
@@ -1085,18 +1103,18 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
1085
1103
|
default: number;
|
|
1086
1104
|
fastPlay?: number;
|
|
1087
1105
|
};
|
|
1106
|
+
seriesIndex?: number;
|
|
1088
1107
|
};
|
|
1089
1108
|
session: {
|
|
1090
1109
|
isDemo: boolean;
|
|
1091
1110
|
partner: string;
|
|
1092
1111
|
balance: number;
|
|
1093
|
-
balancePrevious: number;
|
|
1094
1112
|
netValue: number;
|
|
1095
|
-
netValuePrevious: number;
|
|
1096
1113
|
shouldResetNetValue: boolean;
|
|
1097
1114
|
currency: string;
|
|
1098
1115
|
currencyDecimals: number;
|
|
1099
1116
|
urls: import("../shared/api/config/types").TSessionUrls;
|
|
1117
|
+
customPay: boolean;
|
|
1100
1118
|
};
|
|
1101
1119
|
modals: {
|
|
1102
1120
|
hasOpened: boolean;
|
|
@@ -1166,6 +1184,7 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
1166
1184
|
fake: import("../shared/api/round/open").TApiRoundOpenFake;
|
|
1167
1185
|
};
|
|
1168
1186
|
fastPlay: {
|
|
1187
|
+
isEnabled: boolean;
|
|
1169
1188
|
isActive: boolean;
|
|
1170
1189
|
};
|
|
1171
1190
|
bonus: {
|
|
@@ -1177,6 +1196,8 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
1177
1196
|
isConfirmModalShown: boolean;
|
|
1178
1197
|
tmpLevel: number;
|
|
1179
1198
|
tmpAmountIndex: number;
|
|
1199
|
+
isTooltipOpened: boolean;
|
|
1200
|
+
isInfoTooltipOpened: boolean;
|
|
1180
1201
|
activeSlideWidth: number;
|
|
1181
1202
|
activeSlideOffsetX: number;
|
|
1182
1203
|
isSliderInTransition: boolean;
|
|
@@ -1376,6 +1397,9 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
1376
1397
|
hasDefferedModal?: boolean;
|
|
1377
1398
|
defferedCampaign?: import("../shared/sockets").TPrizeDropSocketEventPayloadCampaignUpdated;
|
|
1378
1399
|
};
|
|
1400
|
+
activeRounds: {
|
|
1401
|
+
items: string[];
|
|
1402
|
+
};
|
|
1379
1403
|
} & import("redux-persist/es/persistReducer").PersistPartial, import("redux").Action, import("@reduxjs/toolkit").Tuple<[import("redux").StoreEnhancer<{
|
|
1380
1404
|
dispatch: import("redux-thunk").ThunkDispatch<{
|
|
1381
1405
|
viewPort: import("../shared/viewPort/lib/types").TViewPortState;
|
|
@@ -1430,18 +1454,18 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
1430
1454
|
default: number;
|
|
1431
1455
|
fastPlay?: number;
|
|
1432
1456
|
};
|
|
1457
|
+
seriesIndex?: number;
|
|
1433
1458
|
};
|
|
1434
1459
|
session: {
|
|
1435
1460
|
isDemo: boolean;
|
|
1436
1461
|
partner: string;
|
|
1437
1462
|
balance: number;
|
|
1438
|
-
balancePrevious: number;
|
|
1439
1463
|
netValue: number;
|
|
1440
|
-
netValuePrevious: number;
|
|
1441
1464
|
shouldResetNetValue: boolean;
|
|
1442
1465
|
currency: string;
|
|
1443
1466
|
currencyDecimals: number;
|
|
1444
1467
|
urls: import("../shared/api/config/types").TSessionUrls;
|
|
1468
|
+
customPay: boolean;
|
|
1445
1469
|
};
|
|
1446
1470
|
modals: {
|
|
1447
1471
|
hasOpened: boolean;
|
|
@@ -1511,6 +1535,7 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
1511
1535
|
fake: import("../shared/api/round/open").TApiRoundOpenFake;
|
|
1512
1536
|
};
|
|
1513
1537
|
fastPlay: {
|
|
1538
|
+
isEnabled: boolean;
|
|
1514
1539
|
isActive: boolean;
|
|
1515
1540
|
};
|
|
1516
1541
|
bonus: {
|
|
@@ -1522,6 +1547,8 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
1522
1547
|
isConfirmModalShown: boolean;
|
|
1523
1548
|
tmpLevel: number;
|
|
1524
1549
|
tmpAmountIndex: number;
|
|
1550
|
+
isTooltipOpened: boolean;
|
|
1551
|
+
isInfoTooltipOpened: boolean;
|
|
1525
1552
|
activeSlideWidth: number;
|
|
1526
1553
|
activeSlideOffsetX: number;
|
|
1527
1554
|
isSliderInTransition: boolean;
|
|
@@ -1721,6 +1748,9 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
1721
1748
|
hasDefferedModal?: boolean;
|
|
1722
1749
|
defferedCampaign?: import("../shared/sockets").TPrizeDropSocketEventPayloadCampaignUpdated;
|
|
1723
1750
|
};
|
|
1751
|
+
activeRounds: {
|
|
1752
|
+
items: string[];
|
|
1753
|
+
};
|
|
1724
1754
|
} & import("redux-persist/es/persistReducer").PersistPartial, undefined, import("redux").UnknownAction>;
|
|
1725
1755
|
}>, import("redux").StoreEnhancer]>>;
|
|
1726
1756
|
export declare const persistor: import("redux-persist").Persistor;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { activeRoundsReducer, addActiveRoundsItem, finishActiveRoundsItem, getHasActiveRounds, } from './model/activeRoundsSlice';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
|
+
type TActiveRoundsState = {
|
|
3
|
+
items: string[];
|
|
4
|
+
};
|
|
5
|
+
export declare const activeRoundsSlice: import("@reduxjs/toolkit").Slice<TActiveRoundsState, {
|
|
6
|
+
addActiveRoundsItem: (state: import("immer").WritableDraft<TActiveRoundsState>, action: PayloadAction<string>) => void;
|
|
7
|
+
finishActiveRoundsItem: (state: import("immer").WritableDraft<TActiveRoundsState>, action: PayloadAction<string>) => void;
|
|
8
|
+
}, "activeRounds", "activeRounds", {
|
|
9
|
+
getHasActiveRounds: (state: TActiveRoundsState) => boolean;
|
|
10
|
+
}>;
|
|
11
|
+
export declare const addActiveRoundsItem: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string, "activeRounds/addActiveRoundsItem">, finishActiveRoundsItem: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string, "activeRounds/finishActiveRoundsItem">;
|
|
12
|
+
export declare const getHasActiveRounds: import("reselect").Selector<{
|
|
13
|
+
activeRounds: TActiveRoundsState;
|
|
14
|
+
}, boolean, []> & {
|
|
15
|
+
unwrapped: (state: TActiveRoundsState) => boolean;
|
|
16
|
+
};
|
|
17
|
+
export declare const activeRoundsReducer: import("redux").Reducer<TActiveRoundsState>;
|
|
18
|
+
export {};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { TAutoplayServiceModalType } from './lib/types';
|
|
2
2
|
export { useAutoplayNumbers } from './lib/useAutoplayNumbers';
|
|
3
|
-
export { autoPlayReducer, calcAutoPlayLossLimit, decreaseAutoPlayNumber, getAutoPlayIsReadyForStart, getAutoPlayIsSupported, setAutoPlayActiveIndex, setAutoPlayActiveNumber, setAutoPlayConfig, setAutoPlayEnd, setAutoPlayLossLimit, setAutoPlayProgress, setAutoPlaySingleWin, setAutoPlayStart, setAutoPlayStopInBonusGame, setAutoPlayVisibleDropdown, } from './model/autoPlaySlice';
|
|
3
|
+
export { autoPlayReducer, calcAutoPlayLossLimit, decreaseAutoPlayNumber, getAutoPlayCanStart, getAutoPlayIsReadyForStart, getAutoPlayIsSeriesMode, getAutoPlayIsSupported, setAutoPlayActiveIndex, setAutoPlayActiveNumber, setAutoPlayConfig, setAutoPlayEnd, setAutoPlayLossLimit, setAutoPlayProgress, setAutoPlaySingleWin, setAutoPlayStart, setAutoPlayStopInBonusGame, setAutoPlayVisibleDropdown, } from './model/autoPlaySlice';
|
|
@@ -24,6 +24,7 @@ type TAutoPlayState = {
|
|
|
24
24
|
default: number;
|
|
25
25
|
fastPlay?: number;
|
|
26
26
|
};
|
|
27
|
+
seriesIndex?: number;
|
|
27
28
|
};
|
|
28
29
|
export declare const getAutoPlayIsSupported: ((state: {
|
|
29
30
|
viewPort: import("../../../shared/viewPort/lib/types").TViewPortState;
|
|
@@ -55,13 +56,12 @@ export declare const getAutoPlayIsSupported: ((state: {
|
|
|
55
56
|
isDemo: boolean;
|
|
56
57
|
partner: string;
|
|
57
58
|
balance: number;
|
|
58
|
-
balancePrevious: number;
|
|
59
59
|
netValue: number;
|
|
60
|
-
netValuePrevious: number;
|
|
61
60
|
shouldResetNetValue: boolean;
|
|
62
61
|
currency: string;
|
|
63
62
|
currencyDecimals: number;
|
|
64
63
|
urls: import("../../../shared/api/config/types").TSessionUrls;
|
|
64
|
+
customPay: boolean;
|
|
65
65
|
};
|
|
66
66
|
modals: {
|
|
67
67
|
hasOpened: boolean;
|
|
@@ -131,6 +131,7 @@ export declare const getAutoPlayIsSupported: ((state: {
|
|
|
131
131
|
fake: import("../../../shared/api/round/open").TApiRoundOpenFake;
|
|
132
132
|
};
|
|
133
133
|
fastPlay: {
|
|
134
|
+
isEnabled: boolean;
|
|
134
135
|
isActive: boolean;
|
|
135
136
|
};
|
|
136
137
|
bonus: {
|
|
@@ -142,6 +143,8 @@ export declare const getAutoPlayIsSupported: ((state: {
|
|
|
142
143
|
isConfirmModalShown: boolean;
|
|
143
144
|
tmpLevel: number;
|
|
144
145
|
tmpAmountIndex: number;
|
|
146
|
+
isTooltipOpened: boolean;
|
|
147
|
+
isInfoTooltipOpened: boolean;
|
|
145
148
|
activeSlideWidth: number;
|
|
146
149
|
activeSlideOffsetX: number;
|
|
147
150
|
isSliderInTransition: boolean;
|
|
@@ -341,6 +344,9 @@ export declare const getAutoPlayIsSupported: ((state: {
|
|
|
341
344
|
hasDefferedModal?: boolean;
|
|
342
345
|
defferedCampaign?: import("../../../shared/sockets").TPrizeDropSocketEventPayloadCampaignUpdated;
|
|
343
346
|
};
|
|
347
|
+
activeRounds: {
|
|
348
|
+
items: string[];
|
|
349
|
+
};
|
|
344
350
|
} & import("redux-persist/es/persistReducer").PersistPartial) => boolean) & {
|
|
345
351
|
clearCache: () => void;
|
|
346
352
|
resultsCount: () => number;
|
|
@@ -369,6 +375,14 @@ export declare const getAutoPlayIsReadyForStart: import("reselect").Selector<{
|
|
|
369
375
|
autoPlay: TAutoPlayState;
|
|
370
376
|
}, boolean, []> & {
|
|
371
377
|
unwrapped: (state: TAutoPlayState) => boolean;
|
|
378
|
+
}, getAutoPlayIsSeriesMode: import("reselect").Selector<{
|
|
379
|
+
autoPlay: TAutoPlayState;
|
|
380
|
+
}, boolean, []> & {
|
|
381
|
+
unwrapped: (state: TAutoPlayState) => boolean;
|
|
382
|
+
}, getAutoPlayCanStart: import("reselect").Selector<{
|
|
383
|
+
autoPlay: TAutoPlayState;
|
|
384
|
+
}, boolean, []> & {
|
|
385
|
+
unwrapped: (state: TAutoPlayState) => boolean;
|
|
372
386
|
};
|
|
373
387
|
export declare const autoPlayReducer: import("redux").Reducer<TAutoPlayState>;
|
|
374
388
|
export declare const setAutoPlayStart: TAppThunkAction;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { bonusReducer, getBonusCashPrice, getBonusIsBuyFeatureSupported, getBonusIsConfirmDisabled, setBonusActiveSlideOffsetX, setBonusActiveSlideWidth, setBonusConfig, setBonusConfirmModalShown, setBonusCurrentBonusModeNames, setBonusLastSlideOutOfView, setBonusOutsideViewportCardSelected, setBonusPreselectedModeName, setBonusSelectedBonusModeName, setBonusSliderInSwiping, setBonusSliderInTransition, setBonusTmpAmountIndex, setBonusTmpLevel, } from './model/bonusSlice';
|
|
1
|
+
export { bonusReducer, getBonusCashPrice, getBonusIsBuyFeatureSupported, getBonusIsConfirmDisabled, setBonusActiveSlideOffsetX, setBonusActiveSlideWidth, setBonusConfig, setBonusConfirmModalShown, setBonusCurrentBonusModeNames, setBonusInfoTooltipOpened, setBonusLastSlideOutOfView, setBonusOutsideViewportCardSelected, setBonusPreselectedModeName, setBonusSelectedBonusModeName, setBonusSliderInSwiping, setBonusSliderInTransition, setBonusTmpAmountIndex, setBonusTmpLevel, setBonusTooltipOpened, } from './model/bonusSlice';
|
|
2
2
|
export { BonusConfirmButtonBase } from './ui/BonusConfirmButtonBase/BonusConfirmButtonBase';
|
|
3
3
|
export { BonusConfirmButtonPro } from './ui/BonusConfirmButtonPro/BonusConfirmButtonPro';
|
|
4
4
|
export { BonusDescription } from './ui/BonusDescription/BonusDescription';
|
|
@@ -9,6 +9,8 @@ type TBonusState = {
|
|
|
9
9
|
isConfirmModalShown: boolean;
|
|
10
10
|
tmpLevel: number;
|
|
11
11
|
tmpAmountIndex: number;
|
|
12
|
+
isTooltipOpened: boolean;
|
|
13
|
+
isInfoTooltipOpened: boolean;
|
|
12
14
|
activeSlideWidth: number;
|
|
13
15
|
activeSlideOffsetX: number;
|
|
14
16
|
isSliderInTransition: boolean;
|
|
@@ -69,18 +71,18 @@ export declare const getBonusIsConfirmDisabled: ((state: {
|
|
|
69
71
|
default: number;
|
|
70
72
|
fastPlay?: number;
|
|
71
73
|
};
|
|
74
|
+
seriesIndex?: number;
|
|
72
75
|
};
|
|
73
76
|
session: {
|
|
74
77
|
isDemo: boolean;
|
|
75
78
|
partner: string;
|
|
76
79
|
balance: number;
|
|
77
|
-
balancePrevious: number;
|
|
78
80
|
netValue: number;
|
|
79
|
-
netValuePrevious: number;
|
|
80
81
|
shouldResetNetValue: boolean;
|
|
81
82
|
currency: string;
|
|
82
83
|
currencyDecimals: number;
|
|
83
84
|
urls: import("../../../shared/api/config/types").TSessionUrls;
|
|
85
|
+
customPay: boolean;
|
|
84
86
|
};
|
|
85
87
|
modals: {
|
|
86
88
|
hasOpened: boolean;
|
|
@@ -150,6 +152,7 @@ export declare const getBonusIsConfirmDisabled: ((state: {
|
|
|
150
152
|
fake: import("../../../shared/api/round/open").TApiRoundOpenFake;
|
|
151
153
|
};
|
|
152
154
|
fastPlay: {
|
|
155
|
+
isEnabled: boolean;
|
|
153
156
|
isActive: boolean;
|
|
154
157
|
};
|
|
155
158
|
bonus: TBonusState;
|
|
@@ -345,6 +348,9 @@ export declare const getBonusIsConfirmDisabled: ((state: {
|
|
|
345
348
|
hasDefferedModal?: boolean;
|
|
346
349
|
defferedCampaign?: import("../../../shared/sockets").TPrizeDropSocketEventPayloadCampaignUpdated;
|
|
347
350
|
};
|
|
351
|
+
activeRounds: {
|
|
352
|
+
items: string[];
|
|
353
|
+
};
|
|
348
354
|
} & import("redux-persist/es/persistReducer").PersistPartial) => boolean) & {
|
|
349
355
|
clearCache: () => void;
|
|
350
356
|
resultsCount: () => number;
|
|
@@ -419,18 +425,18 @@ export declare const getBonusCashPrice: ((state: {
|
|
|
419
425
|
default: number;
|
|
420
426
|
fastPlay?: number;
|
|
421
427
|
};
|
|
428
|
+
seriesIndex?: number;
|
|
422
429
|
};
|
|
423
430
|
session: {
|
|
424
431
|
isDemo: boolean;
|
|
425
432
|
partner: string;
|
|
426
433
|
balance: number;
|
|
427
|
-
balancePrevious: number;
|
|
428
434
|
netValue: number;
|
|
429
|
-
netValuePrevious: number;
|
|
430
435
|
shouldResetNetValue: boolean;
|
|
431
436
|
currency: string;
|
|
432
437
|
currencyDecimals: number;
|
|
433
438
|
urls: import("../../../shared/api/config/types").TSessionUrls;
|
|
439
|
+
customPay: boolean;
|
|
434
440
|
};
|
|
435
441
|
modals: {
|
|
436
442
|
hasOpened: boolean;
|
|
@@ -500,6 +506,7 @@ export declare const getBonusCashPrice: ((state: {
|
|
|
500
506
|
fake: import("../../../shared/api/round/open").TApiRoundOpenFake;
|
|
501
507
|
};
|
|
502
508
|
fastPlay: {
|
|
509
|
+
isEnabled: boolean;
|
|
503
510
|
isActive: boolean;
|
|
504
511
|
};
|
|
505
512
|
bonus: TBonusState;
|
|
@@ -695,6 +702,9 @@ export declare const getBonusCashPrice: ((state: {
|
|
|
695
702
|
hasDefferedModal?: boolean;
|
|
696
703
|
defferedCampaign?: import("../../../shared/sockets").TPrizeDropSocketEventPayloadCampaignUpdated;
|
|
697
704
|
};
|
|
705
|
+
activeRounds: {
|
|
706
|
+
items: string[];
|
|
707
|
+
};
|
|
698
708
|
} & import("redux-persist/es/persistReducer").PersistPartial) => number) & {
|
|
699
709
|
clearCache: () => void;
|
|
700
710
|
resultsCount: () => number;
|
|
@@ -717,8 +727,6 @@ export declare const getBonusCashPrice: ((state: {
|
|
|
717
727
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
718
728
|
};
|
|
719
729
|
export declare const getBonusIsBuyFeatureSupported: ((state: {
|
|
720
|
-
bonus: TBonusState;
|
|
721
|
-
} & {
|
|
722
730
|
stake: {
|
|
723
731
|
modes: TStakeMode[];
|
|
724
732
|
};
|
|
@@ -731,16 +739,14 @@ export declare const getBonusIsBuyFeatureSupported: ((state: {
|
|
|
731
739
|
resultsCount: () => number;
|
|
732
740
|
resetResultsCount: () => void;
|
|
733
741
|
} & {
|
|
734
|
-
resultFunc: (resultFuncArgs_0:
|
|
735
|
-
memoizedResultFunc: ((resultFuncArgs_0:
|
|
742
|
+
resultFunc: (resultFuncArgs_0: TStakeMode[], resultFuncArgs_1: boolean) => boolean;
|
|
743
|
+
memoizedResultFunc: ((resultFuncArgs_0: TStakeMode[], resultFuncArgs_1: boolean) => boolean) & {
|
|
736
744
|
clearCache: () => void;
|
|
737
745
|
resultsCount: () => number;
|
|
738
746
|
resetResultsCount: () => void;
|
|
739
747
|
};
|
|
740
748
|
lastResult: () => boolean;
|
|
741
749
|
dependencies: [(state: {
|
|
742
|
-
bonus: TBonusState;
|
|
743
|
-
}) => TBonusModes, (state: {
|
|
744
750
|
stake: {
|
|
745
751
|
modes: TStakeMode[];
|
|
746
752
|
};
|
|
@@ -757,6 +763,6 @@ export declare const getBonusIsBuyFeatureSupported: ((state: {
|
|
|
757
763
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
758
764
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
759
765
|
};
|
|
760
|
-
export declare const setBonusActiveSlideWidth: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "bonus/setBonusActiveSlideWidth">, setBonusActiveSlideOffsetX: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "bonus/setBonusActiveSlideOffsetX">, setBonusSliderInTransition: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusSliderInTransition">, setBonusSliderInSwiping: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusSliderInSwiping">, setBonusOutsideViewportCardSelected: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusOutsideViewportCardSelected">, setBonusLastSlideOutOfView: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusLastSlideOutOfView">, setBonusCurrentBonusModeNames: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string[], "bonus/setBonusCurrentBonusModeNames">, setBonusSelectedBonusModeName: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string, "bonus/setBonusSelectedBonusModeName">, setBonusConfig: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TBonusConfig, "bonus/setBonusConfig">, setBonusTmpAmountIndex: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "bonus/setBonusTmpAmountIndex">, setBonusTmpLevel: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "bonus/setBonusTmpLevel">, setBonusPreselectedModeName: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string, "bonus/setBonusPreselectedModeName">, setBonusConfirmModalShown: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusConfirmModalShown">;
|
|
766
|
+
export declare const setBonusActiveSlideWidth: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "bonus/setBonusActiveSlideWidth">, setBonusActiveSlideOffsetX: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "bonus/setBonusActiveSlideOffsetX">, setBonusSliderInTransition: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusSliderInTransition">, setBonusSliderInSwiping: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusSliderInSwiping">, setBonusOutsideViewportCardSelected: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusOutsideViewportCardSelected">, setBonusLastSlideOutOfView: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusLastSlideOutOfView">, setBonusCurrentBonusModeNames: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string[], "bonus/setBonusCurrentBonusModeNames">, setBonusSelectedBonusModeName: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string, "bonus/setBonusSelectedBonusModeName">, setBonusConfig: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TBonusConfig, "bonus/setBonusConfig">, setBonusTmpAmountIndex: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "bonus/setBonusTmpAmountIndex">, setBonusTmpLevel: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "bonus/setBonusTmpLevel">, setBonusPreselectedModeName: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string, "bonus/setBonusPreselectedModeName">, setBonusConfirmModalShown: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusConfirmModalShown">, setBonusTooltipOpened: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusTooltipOpened">, setBonusInfoTooltipOpened: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusInfoTooltipOpened">;
|
|
761
767
|
export declare const bonusReducer: import("redux").Reducer<TBonusState>;
|
|
762
768
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { fastPlayReducer, setFastPlayActive } from './model/fastPlaySlice';
|
|
1
|
+
export { fastPlayReducer, setFastPlayActive, setFastPlayEnabled } from './model/fastPlaySlice';
|
|
2
2
|
export { FastPlaySwitcher } from './ui/FastPlaySwitcher/FastPlaySwitcher';
|
|
3
3
|
export { FastPlayTooltip } from './ui/FastPlayTooltip/FastPlayTooltip';
|
|
4
4
|
export { PanelFastPlay } from './ui/PanelFastPlay/PanelFastPlay';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
type TFastPlayState = {
|
|
2
|
+
isEnabled: boolean;
|
|
2
3
|
isActive: boolean;
|
|
3
4
|
};
|
|
4
|
-
export declare const setFastPlayActive: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "fastPlay/setFastPlayActive">;
|
|
5
|
+
export declare const setFastPlayActive: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "fastPlay/setFastPlayActive">, setFastPlayEnabled: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "fastPlay/setFastPlayEnabled">;
|
|
5
6
|
export declare const fastPlayReducer: import("redux").Reducer<TFastPlayState>;
|
|
6
7
|
export {};
|
|
@@ -8,6 +8,6 @@ type TRoundState = {
|
|
|
8
8
|
initial: TPromoTool;
|
|
9
9
|
version: `${EVersion}`;
|
|
10
10
|
};
|
|
11
|
-
export declare const startFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/startFreeRounds">, setFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TPromoTool, "freeRounds/setFreeRounds">, startFreeRound: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/startFreeRound">, finishFreeRound: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/finishFreeRound">, endFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/endFreeRounds">, clearFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/clearFreeRounds">, setFreeRoundsModalVersion: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<"default" | "pro", "freeRounds/setFreeRoundsModalVersion">, setFreeRoundsInitial: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TPromoTool, "freeRounds/setFreeRoundsInitial">, restoreFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/restoreFreeRounds">, restoreFreeRoundsError: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/restoreFreeRoundsError">;
|
|
11
|
+
export declare const startFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/startFreeRounds">, setFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TPromoTool, "freeRounds/setFreeRounds">, startFreeRound: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/startFreeRound">, finishFreeRound: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/finishFreeRound">, endFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/endFreeRounds">, clearFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/clearFreeRounds">, setFreeRoundsModalVersion: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<"default" | "defaultV3" | "pro", "freeRounds/setFreeRoundsModalVersion">, setFreeRoundsInitial: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TPromoTool, "freeRounds/setFreeRoundsInitial">, restoreFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/restoreFreeRounds">, restoreFreeRoundsError: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/restoreFreeRoundsError">;
|
|
12
12
|
export declare const freeRoundsReducer: import("redux").Reducer<TRoundState>;
|
|
13
13
|
export {};
|
|
@@ -6,6 +6,7 @@ type TModalBaseHeaderProps = {
|
|
|
6
6
|
onReturn?: (event: React.MouseEvent) => void;
|
|
7
7
|
onClose?: () => void;
|
|
8
8
|
modalName: TModalName;
|
|
9
|
+
className?: string;
|
|
9
10
|
};
|
|
10
|
-
export declare const ModalBaseHeader: ({ children, onReturn, onClose, returnType, modalName, }: TModalBaseHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare const ModalBaseHeader: ({ children, onReturn, onClose, returnType, modalName, className, }: TModalBaseHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
12
|
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { TWin } from './model/roundSlice';
|
|
2
|
-
export { addRoundResponseGS, clearRoundWin,
|
|
2
|
+
export { addRoundResponseGS, clearRoundWin, initRoundData, resetRoundCurrent, roundReducer, setRoundChoice, setRoundHasMaxWin, setRoundIsRestore, setRoundMeta, setRoundNextResponseGS, setRoundWasRestore, setRoundWin, } from './model/roundSlice';
|
|
@@ -23,11 +23,11 @@ type TRoundState = {
|
|
|
23
23
|
winCash: number;
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
|
-
export declare const
|
|
26
|
+
export declare const initRoundData: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<{
|
|
27
27
|
roundId: string;
|
|
28
28
|
responsesGS: TResponseGS[];
|
|
29
29
|
balance: number;
|
|
30
30
|
meta?: unknown;
|
|
31
|
-
}, "round/
|
|
31
|
+
}, "round/initRoundData">, setRoundNextResponseGS: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"round/setRoundNextResponseGS">, clearRoundWin: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"round/clearRoundWin">, setRoundChoice: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "round/setRoundChoice">, setRoundIsRestore: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "round/setRoundIsRestore">, setRoundWasRestore: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "round/setRoundWasRestore">, setRoundWin: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TWin, "round/setRoundWin">, setRoundHasMaxWin: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "round/setRoundHasMaxWin">, addRoundResponseGS: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TResponseGS, "round/addRoundResponseGS">, resetRoundCurrent: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"round/resetRoundCurrent">, setRoundMeta: import("@reduxjs/toolkit").ActionCreatorWithNonInferrablePayload<"round/setRoundMeta">;
|
|
32
32
|
export declare const roundReducer: import("redux").Reducer<TRoundState>;
|
|
33
33
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { addSessionBalance, decreaseSessionBalance, initSession, isFakePartner, sessionReducer, setSessionBalance, setSessionCustomPayConfig, setSessionShouldResetNetValue, updateSessionNetValue, } from './model/sessionSlice';
|
|
@@ -3,13 +3,12 @@ type TSessionState = {
|
|
|
3
3
|
isDemo: boolean;
|
|
4
4
|
partner: string;
|
|
5
5
|
balance: number;
|
|
6
|
-
balancePrevious: number;
|
|
7
6
|
netValue: number;
|
|
8
|
-
netValuePrevious: number;
|
|
9
7
|
shouldResetNetValue: boolean;
|
|
10
8
|
currency: string;
|
|
11
9
|
currencyDecimals: number;
|
|
12
10
|
urls: TSessionUrls;
|
|
11
|
+
customPay: boolean;
|
|
13
12
|
};
|
|
14
13
|
export declare const initSession: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<{
|
|
15
14
|
isDemo: boolean;
|
|
@@ -18,7 +17,7 @@ export declare const initSession: import("@reduxjs/toolkit").ActionCreatorWithOp
|
|
|
18
17
|
currency: string;
|
|
19
18
|
currencyDecimals: number;
|
|
20
19
|
urls: TSessionUrls;
|
|
21
|
-
}, "session/initSession">,
|
|
20
|
+
}, "session/initSession">, setSessionBalance: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "session/setSessionBalance">, decreaseSessionBalance: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "session/decreaseSessionBalance">, updateSessionNetValue: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "session/updateSessionNetValue">, addNetValue: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "session/addNetValue">, setSessionShouldResetNetValue: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"session/setSessionShouldResetNetValue">, addSessionBalance: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "session/addSessionBalance">, setSessionCustomPayConfig: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "session/setSessionCustomPayConfig">;
|
|
22
21
|
export declare const isFakePartner: import("reselect").Selector<{
|
|
23
22
|
session: TSessionState;
|
|
24
23
|
}, boolean, []> & {
|
|
@@ -3,6 +3,8 @@ type TStakeAmountSelectorProps = {
|
|
|
3
3
|
showMin?: boolean;
|
|
4
4
|
showMax?: boolean;
|
|
5
5
|
disabled?: boolean;
|
|
6
|
+
isBetValueClickable?: boolean;
|
|
7
|
+
ref?: React.RefObject<HTMLDivElement>;
|
|
6
8
|
};
|
|
7
|
-
export declare const StakeAmountSelector: ({ className, showMin, showMax, disabled, }: TStakeAmountSelectorProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const StakeAmountSelector: ({ className, showMin, showMax, disabled, isBetValueClickable, ref, }: TStakeAmountSelectorProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
10
|
export {};
|
|
@@ -2,5 +2,7 @@ export { cancelBonusFeatureSelection } from './model/cancelBonusFeatureSelection
|
|
|
2
2
|
export { confirmBonusFeature } from './model/confirmBonusFeature';
|
|
3
3
|
export { BonusConfirmButton } from './ui/BonusConfirmButton/BonusConfirmButton';
|
|
4
4
|
export { BonusFeatureSelector } from './ui/BonusFeatureSelector/BonusFeatureSelector';
|
|
5
|
+
export { BonusInfoTooltip } from './ui/BonusInfoTooltip/BonusInfoTooltip';
|
|
6
|
+
export { BonusShortcutIcons } from './ui/BonusShortcutIcons/BonusShortcutIcons';
|
|
5
7
|
export { LevelSelector } from './ui/LevelSelector/LevelSelector';
|
|
6
8
|
export { StakeAmountSelector } from './ui/StakeAmountSelector/StakeAmountSelector';
|
|
@@ -1 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import { RefObject } from 'react';
|
|
2
|
+
type TBonusFeatureSelectorProps = {
|
|
3
|
+
ref?: RefObject<HTMLDivElement>;
|
|
4
|
+
position?: 'right' | 'left';
|
|
5
|
+
};
|
|
6
|
+
export declare const BonusFeatureSelector: ({ ref, position }: TBonusFeatureSelectorProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type TBonusFeatureSelectorItemProps = {
|
|
2
|
+
title: string;
|
|
3
|
+
cash: string;
|
|
4
|
+
icon: React.ElementType;
|
|
5
|
+
isActive: boolean;
|
|
6
|
+
onClick: () => void;
|
|
7
|
+
};
|
|
8
|
+
export declare const BonusFeatureSelectorItem: ({ title, cash, icon: Icon, isActive, onClick, }: TBonusFeatureSelectorItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { RefObject } from 'react';
|
|
2
|
+
type TBonusInfoTooltipProps = {
|
|
3
|
+
ref?: RefObject<HTMLDivElement>;
|
|
4
|
+
position?: 'right' | 'left';
|
|
5
|
+
};
|
|
6
|
+
export declare const BonusInfoTooltip: ({ ref, position }: TBonusInfoTooltipProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const BonusShortcutIcons: () => import("react/jsx-runtime").JSX.Element;
|