react-gldn-kit 0.1.36 → 0.1.37
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/index.js +1 -1
- package/dist/lib/components/Layouts/BonusCardLayout/index.js +6 -4
- package/dist/lib/components/Layouts/BonusCardLayout/types.d.ts +5 -0
- package/dist/lib/components/Modals/Alert/index.js +5 -3
- package/dist/lib/components/ui/AccordionGroup/Accordion.d.ts +1 -0
- package/dist/lib/components/ui/AccordionGroup/Accordion.js +2 -2
- package/dist/lib/components/ui/Icons/InfoSecondSvg.d.ts +2 -0
- package/dist/lib/components/ui/Icons/InfoSecondSvg.js +20 -0
- package/dist/lib/constants/translates.js +16 -16
- package/dist/lib/index.d.ts +3 -1
- package/dist/lib/index.js +7 -3
- package/dist/lib/zustandStore/alerts/modal/types.d.ts +30 -29
- package/dist/lib/zustandStore/alerts/modal/types.js +30 -29
- package/dist/main.css +103 -20
- package/package.json +1 -1
|
@@ -42,12 +42,14 @@ var jsx_runtime_1 = require("react/jsx-runtime");
|
|
|
42
42
|
var classnames_1 = __importDefault(require("classnames"));
|
|
43
43
|
var CountDown_1 = require("components/ui/CountDown");
|
|
44
44
|
var Buttons_1 = require("components/ui/Buttons");
|
|
45
|
+
var Text_1 = require("components/Text");
|
|
46
|
+
var InfoSecondSvg_1 = require("components/ui/Icons/InfoSecondSvg");
|
|
45
47
|
var styles = __importStar(require("./BonusCardLayout.module.css"));
|
|
46
48
|
var BonusCardLayout = function (props) {
|
|
47
49
|
var _a;
|
|
48
|
-
var bonusImagePath = props.bonusImagePath, title = props.title, value = props.value, _b = props.endTimestamp, endTimestamp = _b === void 0 ? 0 : _b, description = props.description, buttonText = props.buttonText, handleClaim = props.handleClaim, counterProps = props.counterProps;
|
|
49
|
-
return ((0, jsx_runtime_1.jsxs)("div", __assign({ className: styles.wrapperBonusCardLayout }, { children: [(0, jsx_runtime_1.
|
|
50
|
-
|
|
51
|
-
|
|
50
|
+
var bonusImagePath = props.bonusImagePath, title = props.title, value = props.value, _b = props.endTimestamp, endTimestamp = _b === void 0 ? 0 : _b, description = props.description, buttonText = props.buttonText, handleClaim = props.handleClaim, counterProps = props.counterProps, categoryName = props.categoryName, currencyName = props.currencyName, _c = props.isAvailable, isAvailable = _c === void 0 ? true : _c, lockImagePath = props.lockImagePath, infoCallback = props.infoCallback;
|
|
51
|
+
return ((0, jsx_runtime_1.jsxs)("div", __assign({ className: styles.wrapperBonusCardLayout }, { children: [(0, jsx_runtime_1.jsx)("div", __assign({ className: styles.container }, { children: (0, jsx_runtime_1.jsxs)("div", __assign({ className: styles.info }, { children: [(0, jsx_runtime_1.jsxs)("div", __assign({ className: styles.row }, { children: [(0, jsx_runtime_1.jsx)("div", __assign({ className: styles.categoryName }, { children: (0, jsx_runtime_1.jsx)(Text_1.Text, { idT: categoryName }) })), (0, jsx_runtime_1.jsx)(InfoSecondSvg_1.InfoSecondSvg, { classes: styles.infoSvg, handleClick: infoCallback })] })), (0, jsx_runtime_1.jsxs)("div", __assign({ className: styles.box }, { children: [(0, jsx_runtime_1.jsx)("div", __assign({ className: styles.row }, { children: (0, jsx_runtime_1.jsx)("div", __assign({ className: styles.title }, { children: (0, jsx_runtime_1.jsx)(Text_1.Text, { idT: title }) })) })), (0, jsx_runtime_1.jsx)("div", __assign({ className: styles.description }, { children: (0, jsx_runtime_1.jsx)(Text_1.Text, { idT: description }) })), !!endTimestamp && ((0, jsx_runtime_1.jsxs)("div", __assign({ className: styles.timer }, { children: [(0, jsx_runtime_1.jsx)("div", __assign({ className: styles.expiration }, { children: (0, jsx_runtime_1.jsx)(Text_1.Text, { idT: "bonusCabinet.expiration" }) })), (0, jsx_runtime_1.jsx)(CountDown_1.CountDown, __assign({}, counterProps, { endTimestamp: endTimestamp, wrapperClasses: (0, classnames_1.default)(styles.maxWidth, styles.timerBg), type: "row", timeBlockClasses: styles.timeBlock }))] }))), value && ((0, jsx_runtime_1.jsx)("div", __assign({ className: styles.row }, { children: (0, jsx_runtime_1.jsxs)("div", __assign({ className: styles.value }, { children: [currencyName, value] })) })))] }))] })) })), (0, jsx_runtime_1.jsx)(Buttons_1.BaseButton, { text: buttonText, handleClick: handleClaim, buttonHeight: "--button-height-full", size: "--button-full", color: "primary", disabled: !+value, centreText: true, classes: (0, classnames_1.default)(styles.btn, (_a = {},
|
|
52
|
+
_a[styles.dark] = !+value,
|
|
53
|
+
_a)) }), (0, jsx_runtime_1.jsx)("div", __assign({ className: styles.img }, { children: (0, jsx_runtime_1.jsx)("img", { src: bonusImagePath, className: styles.wrapperBonusCard }) })), !isAvailable && ((0, jsx_runtime_1.jsxs)("div", __assign({ className: styles.blockedContent }, { children: [(0, jsx_runtime_1.jsx)("img", { src: lockImagePath, className: styles.lock }), (0, jsx_runtime_1.jsx)("div", __assign({ className: styles.blockedText }, { children: (0, jsx_runtime_1.jsx)(Text_1.Text, { idT: "bonusCabinet.availableFrom" }) }))] })))] })));
|
|
52
54
|
};
|
|
53
55
|
exports.BonusCardLayout = BonusCardLayout;
|
|
@@ -126,9 +126,9 @@ var SetNewPassword = (0, react_1.lazy)(function () { return __awaiter(void 0, vo
|
|
|
126
126
|
var styles = __importStar(require("./Alert.module.css"));
|
|
127
127
|
var shared_1 = require("utils/shared");
|
|
128
128
|
var Alerts = function (props) {
|
|
129
|
-
var _a;
|
|
129
|
+
var _a, _b;
|
|
130
130
|
var getComponentFn = props.getComponentFn, controllers = props.controllers, hooks = props.hooks;
|
|
131
|
-
var
|
|
131
|
+
var _c = ((controllers === null || controllers === void 0 ? void 0 : controllers()) || {}).sendCommand, sendCommand = _c === void 0 ? console.info : _c;
|
|
132
132
|
var modalType = (0, store_1.useZustandModalKitStore)(selectors_1.zustandModalKitSelector.getModalTypeSelector);
|
|
133
133
|
var oldModalType = (0, store_1.useZustandModalKitStore)(selectors_1.zustandModalKitSelector.getNextEModalTypeSelector);
|
|
134
134
|
var closeAndOpen = (0, store_1.useZustandModalKitStore)(selectors_1.zustandModalKitSelector.closeAndOpenModalAction);
|
|
@@ -191,6 +191,8 @@ var Alerts = function (props) {
|
|
|
191
191
|
// [styles.modalCloseDesktopAnimation]: isCloseModal && !isMobile,
|
|
192
192
|
_a[styles.animationFadeIn] = isActiveModal,
|
|
193
193
|
_a[styles.animationFadeOutModal] = isCloseModal,
|
|
194
|
-
_a)), modalLayoutClasses: additionalSettings === null || additionalSettings === void 0 ? void 0 : additionalSettings.classes
|
|
194
|
+
_a)), modalLayoutClasses: (0, classnames_1.default)(additionalSettings === null || additionalSettings === void 0 ? void 0 : additionalSettings.classes, (_b = {},
|
|
195
|
+
_b[styles.fullHeight] = modalType === types_1.EModalTypes.Bonuses,
|
|
196
|
+
_b)) }, { children: (0, jsx_runtime_1.jsx)(react_1.Suspense, __assign({ fallback: (0, jsx_runtime_1.jsx)("div", __assign({ className: "full center" }, { children: "LOADING" })) }, { children: getModalComponent() })) })));
|
|
195
197
|
};
|
|
196
198
|
exports.Alerts = Alerts;
|
|
@@ -45,7 +45,7 @@ var ArrowSvg_1 = require("../Icons/ArrowSvg");
|
|
|
45
45
|
var Text_1 = require("components/Text");
|
|
46
46
|
var Accordion = function (props) {
|
|
47
47
|
var _a, _b, _c;
|
|
48
|
-
var title = props.title, startIcon = props.startIcon, data = props.data, classes = props.classes, titleClasses = props.titleClasses, _d = props.isGroup, isGroup = _d === void 0 ? false : _d, _e = props.isOpenedByGroup, isOpenedByGroup = _e === void 0 ? false : _e, callbackOpenState = props.callbackOpenState, handleClick = props.handleClick;
|
|
48
|
+
var title = props.title, startIcon = props.startIcon, data = props.data, classes = props.classes, titleClasses = props.titleClasses, _d = props.isGroup, isGroup = _d === void 0 ? false : _d, _e = props.isOpenedByGroup, isOpenedByGroup = _e === void 0 ? false : _e, callbackOpenState = props.callbackOpenState, handleClick = props.handleClick, itemTextClasses = props.itemTextClasses;
|
|
49
49
|
var _f = (0, react_1.useState)(false), isOpened = _f[0], setOpenState = _f[1];
|
|
50
50
|
var handleClickItem = function (inx) { return function () { return handleClick === null || handleClick === void 0 ? void 0 : handleClick(inx); }; };
|
|
51
51
|
var toggleOpenState = function () {
|
|
@@ -65,6 +65,6 @@ var Accordion = function (props) {
|
|
|
65
65
|
_b[styles.starIcon] = startIcon,
|
|
66
66
|
_b), titleClasses) }, { children: (0, jsx_runtime_1.jsx)(Text_1.Text, { idT: title }) }))] })), (0, jsx_runtime_1.jsx)(ArrowSvg_1.ArrowSvg, { classes: (0, classnames_1.default)(styles.icon, (_c = {},
|
|
67
67
|
_c[styles.rotate] = isOpenedState,
|
|
68
|
-
_c)), width: "16", height: "9" })] })), isOpenedState && ((0, jsx_runtime_1.jsx)("div", __assign({ className: styles.accordionList }, { children: data.map(function (text, inx) { return ((0, jsx_runtime_1.jsx)("div", __assign({ onClick: handleClickItem(inx), className: styles.itemRow }, { children: (0, jsx_runtime_1.jsx)(Text_1.Text, { idT: text }) }), inx)); }) })))] })));
|
|
68
|
+
_c)), width: "16", height: "9" })] })), isOpenedState && ((0, jsx_runtime_1.jsx)("div", __assign({ className: styles.accordionList }, { children: data.map(function (text, inx) { return ((0, jsx_runtime_1.jsx)("div", __assign({ onClick: handleClickItem(inx), className: (0, classnames_1.default)(styles.itemRow, itemTextClasses) }, { children: (0, jsx_runtime_1.jsx)(Text_1.Text, { idT: text }) }), inx)); }) })))] })));
|
|
69
69
|
};
|
|
70
70
|
exports.default = Accordion;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.InfoSecondSvg = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var InfoSecondSvg = function (props) {
|
|
17
|
+
var _a = props.width, width = _a === void 0 ? '20' : _a, _b = props.height, height = _b === void 0 ? '20' : _b, classes = props.classes, handleClick = props.handleClick;
|
|
18
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: width, height: height, viewBox: "0 0 24 24", fill: "none", className: classes, onClick: handleClick }, { children: (0, jsx_runtime_1.jsx)("path", { d: "M11 17H13V11H11V17ZM12 9C12.2833 9 12.521 8.904 12.713 8.712C12.905 8.52 13.0007 8.28267 13 8C12.9993 7.71733 12.9033 7.48 12.712 7.288C12.5207 7.096 12.2833 7 12 7C11.7167 7 11.4793 7.096 11.288 7.288C11.0967 7.48 11.0007 7.71733 11 8C10.9993 8.28267 11.0953 8.52033 11.288 8.713C11.4807 8.90567 11.718 9.00133 12 9ZM12 22C10.6167 22 9.31667 21.7373 8.1 21.212C6.88334 20.6867 5.825 19.9743 4.925 19.075C4.025 18.1757 3.31267 17.1173 2.788 15.9C2.26333 14.6827 2.00067 13.3827 2 12C1.99933 10.6173 2.262 9.31733 2.788 8.1C3.314 6.88267 4.02633 5.82433 4.925 4.925C5.82367 4.02567 6.882 3.31333 8.1 2.788C9.318 2.26267 10.618 2 12 2C13.382 2 14.682 2.26267 15.9 2.788C17.118 3.31333 18.1763 4.02567 19.075 4.925C19.9737 5.82433 20.6863 6.88267 21.213 8.1C21.7397 9.31733 22.002 10.6173 22 12C21.998 13.3827 21.7353 14.6827 21.212 15.9C20.6887 17.1173 19.9763 18.1757 19.075 19.075C18.1737 19.9743 17.1153 20.687 15.9 21.213C14.6847 21.739 13.3847 22.0013 12 22ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76667 19.225 7.875 17.675 6.325C16.125 4.775 14.2333 4 12 4C9.76667 4 7.875 4.775 6.325 6.325C4.775 7.875 4 9.76667 4 12C4 14.2333 4.775 16.125 6.325 17.675C7.875 19.225 9.76667 20 12 20Z", fill: "var(--bonus-card-info-svg-fill)" }) })));
|
|
19
|
+
};
|
|
20
|
+
exports.InfoSecondSvg = InfoSecondSvg;
|
|
@@ -9,48 +9,48 @@ exports.DICTIONARY = {
|
|
|
9
9
|
title: 'header.join',
|
|
10
10
|
},
|
|
11
11
|
credentials: {
|
|
12
|
-
title: 'credentials.title'
|
|
12
|
+
title: 'credentials.title',
|
|
13
13
|
},
|
|
14
14
|
lostPassword: {
|
|
15
|
-
title: 'authorization.lostPasswordBtn'
|
|
15
|
+
title: 'authorization.lostPasswordBtn',
|
|
16
16
|
},
|
|
17
17
|
setNewPassword: {
|
|
18
|
-
title: 'profile.content.myAccount.form.setNewPassword'
|
|
18
|
+
title: 'profile.content.myAccount.form.setNewPassword',
|
|
19
19
|
},
|
|
20
20
|
languages: {
|
|
21
|
-
title: 'languages'
|
|
21
|
+
title: 'languages',
|
|
22
22
|
},
|
|
23
23
|
casinoProviders: {
|
|
24
|
-
title: 'filterByProviders'
|
|
24
|
+
title: 'filterByProviders',
|
|
25
25
|
},
|
|
26
26
|
casinoFavorite: {
|
|
27
|
-
title: 'favorites'
|
|
27
|
+
title: 'favorites',
|
|
28
28
|
},
|
|
29
29
|
bonuses: {
|
|
30
|
-
title: '
|
|
30
|
+
title: 'bonusCabinet.title',
|
|
31
31
|
},
|
|
32
32
|
calendar: {
|
|
33
|
-
title: 'calendar'
|
|
33
|
+
title: 'calendar',
|
|
34
34
|
},
|
|
35
35
|
referralCopyContent: {
|
|
36
|
-
title: 'referral.shareModal.title'
|
|
36
|
+
title: 'referral.shareModal.title',
|
|
37
37
|
},
|
|
38
38
|
referralWithdraw: {
|
|
39
|
-
title: 'referral.withdrawModal.title'
|
|
39
|
+
title: 'referral.withdrawModal.title',
|
|
40
40
|
},
|
|
41
41
|
referralFailure: {
|
|
42
|
-
title: 'referral.failureModal.title'
|
|
42
|
+
title: 'referral.failureModal.title',
|
|
43
43
|
},
|
|
44
44
|
referralSuccess: {
|
|
45
|
-
title: 'referral.successModal.title'
|
|
45
|
+
title: 'referral.successModal.title',
|
|
46
46
|
},
|
|
47
47
|
promoCodeActivate: {
|
|
48
|
-
title: 'promoCodePage.promoCodeActivatedTitle'
|
|
48
|
+
title: 'promoCodePage.promoCodeActivatedTitle',
|
|
49
49
|
},
|
|
50
50
|
cancelBonus: {
|
|
51
|
-
title: 'bonusCabinet.cancelBonus.title'
|
|
51
|
+
title: 'bonusCabinet.cancelBonus.title',
|
|
52
52
|
},
|
|
53
53
|
claimConfirmation: {
|
|
54
|
-
title: 'bonusCabinet.cancelBonus.title'
|
|
55
|
-
}
|
|
54
|
+
title: 'bonusCabinet.cancelBonus.title',
|
|
55
|
+
},
|
|
56
56
|
};
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -116,6 +116,7 @@ import { SecondBonusSvg } from 'components/ui/Icons/Bonuses/SecondBonusSvg';
|
|
|
116
116
|
import { ThirdBonusSvg } from 'components/ui/Icons/Bonuses/ThirdBonusSvg';
|
|
117
117
|
import { VipClubSvg } from 'components/ui/Icons/Bonuses/VipClubSvg';
|
|
118
118
|
export { CheckBoxSvg } from 'components/ui/Icons/CheckBoxSvg';
|
|
119
|
+
import { InfoSecondSvg } from 'components/ui/Icons/InfoSecondSvg';
|
|
119
120
|
import { BronzeSvg } from './components/ui/Icons/Bonuses/VipClub/BronzeSvg';
|
|
120
121
|
import { SilverSvg } from 'components/ui/Icons/Bonuses/VipClub/SilverSvg';
|
|
121
122
|
import { DiamondSvg } from 'components/ui/Icons/Bonuses/VipClub/DiamondSvg';
|
|
@@ -228,9 +229,10 @@ import { Section } from './components/ui/Section/index';
|
|
|
228
229
|
import { BattleBanner } from 'components/Banners/components/BattleBanner';
|
|
229
230
|
import { Leaderboard } from 'components/ui/Leaderboard';
|
|
230
231
|
import Accordion from 'components/ui/AccordionGroup/Accordion';
|
|
232
|
+
import AccordionGroup from 'components/ui/AccordionGroup';
|
|
231
233
|
import { copyToClipboard, sleep } from 'utils/shared';
|
|
232
234
|
import { getAuthorizationData, getRegistrationData } from 'zustandStore/forms/signUp/utils';
|
|
233
|
-
export { Logo, BaseButton, CloseButton, DrawerButton, AppSwitcher, CasinoCategoryButton, CasinoSubCategoriesButton, ProviderNameButton, DepositButton, ShowAllCard, BaseInput, BaseInputUi, PhoneInput, CheckBox, EmailInput, PasswordInput, JivoChatButton, JivoChatButtonProps, PaymentsMethods, PaymentMethodProps, EActiveMethodTab, DepositSkelet, DepositSkeletProps, DepositQrFormProps, PopUpHeader, Footer, Tabs, MainLoader, CircularLoader, HOCImageLoader, HOCOutsideClick, HOCErrorBoundary, HOCRequestLoader, useHookFabric, useElementResize, useOnClickOutside, useCountDown, useTranslate, useInView, JackpotWidget, JackPotInfoBox, Wheel, Scratch, TournamentCard, ReferralTable, ReferralTableProps, Pagination, ModalLayout, Alerts, BonusCardLayout, DrawerLayout, LandingLayoutTemplate, PortalLayout, CountDown, LastBigWinners, Banners, BannerTemplate, PromotionMobileApp, OneClick, DocsCheckBox, CurrencySelector, CountrySelector, RegistrationPromoCode, SignUp, EmailSignUp, PhoneSignUp, Selector, LanguageSelector, SignIn, ArrowSvg, DownloadSvg, LockSvg, CloseSvg, JabiInHouseSvg, ProviderSvg, HotSvg, WagerSvg, ElonHouseSvg, FSWinHouseSvg, ElonTreasureSvg, FSWinTreasureSvg, JabibetTreasureSvg, PlaySvg, InfoSvg, InstagramSvg, TelegramSvg, FacebookSvg, AvatarSvg, ProfileSvg, BonusGiftSvg, BurgerSvg, CalendarSvg, CashSvg, CloseEyeSvg, OpenEyeSvg, CoinSvg, CoinsSvg, CopySvg, DocSvg, FavoritesSvg, GoogleSvg, GrowSvg, DrawerTogglerSvg, LotterySvg, InfoLotterySvg, PlusSvg, SearchSvg, ProvidersBlocksSvg, SelectedSvg, ShareSvg, StarSvg, SupportSvg, ThreeDotsSvg, TrashSvg, WalletSvg, FirstBonusSvg, SecondBonusSvg, ThirdBonusSvg, VipClubSvg, BronzeSvg, SilverSvg, DiamondSvg, GoldSvg, GreenSvg, PlatinumSvg, PlatinumOneSvg, AzeSvg, BnSvg, BsSvg, ChSvg, DeSvg, EnSvg, EsSvg, FrSvg, HiSvg, ItSvg, KoSvg, KzSvg, NoSvg, PtSvg, RoSvg, RuSvg, TrSvg, UkrSvg, UzSvg, TournamentWagerSvg, ProvidersSvg, DefaultImgSvg, CasinoCoinSvg, RecommendedSvg, DepositSvg, ErrorSvg, SuccessSvg, WaitingSvg, WithdrawSvg, AmericanFootballSvg, AussieRulesSvg, BadmintonSvg, BaseballSvg, BasketballSvg, Basketball3x3Svg, BeachSoccerSvg, BoxingSvg, ChessSvg, CricketSvg, DartsSvg, EFifaSvg, ENbaSvg, ENhlSvg, EsportSvg, FieldHockeySvg, FutsalSvg, IceHockeySvg, KabaddiSvg, MmaSvg, RugbySvg, SnookerSvg, SoccerSvg, SquashSvg, TableTennisSvg, TennisSvg, VolleyballSvg, NotFoundBonusesSvg, NotificationWarningSvg, NotificationErrorSvg, NotificationSuccessSvg, Notifications, NavTournamentSvg, NavReferralSvg, NavMyBetsSvg, NavCasinoSvg, NavBonusesSvg, NavBettingLiveSvg, NavBettingSvg, BattlesCard, Step, Section, BattleBanner, Leaderboard, Accordion, useZustandLanguagesKitStore, languageSelectors, Text, useZustandNotificationKitStore, notificationKitSelectors, useZustandModalKitStore, zustandModalKitSelector, useZustandDeviceKitStore, zustandDeviceKitSelector, useZustandRegistrationKitStore, zustandRegistrationKitSelector, useZustandSignInKitStore, zustandSignInKitSelectors, useZustandRequestKitStore, requestSelectors, useZustandCasinoGamesKitStore, gamesSelectors, useZustandConnectionKitStore, connectionSelectors, useZustandWheelPromoKitStore, wheelPromoSelectors, EDirection, getCasinoCategoryIcon, sleep, getAuthorizationData, getRegistrationData, copyToClipboard, };
|
|
235
|
+
export { Logo, BaseButton, CloseButton, DrawerButton, AppSwitcher, CasinoCategoryButton, CasinoSubCategoriesButton, ProviderNameButton, DepositButton, ShowAllCard, BaseInput, BaseInputUi, PhoneInput, CheckBox, EmailInput, PasswordInput, JivoChatButton, JivoChatButtonProps, PaymentsMethods, PaymentMethodProps, EActiveMethodTab, DepositSkelet, DepositSkeletProps, DepositQrFormProps, PopUpHeader, Footer, Tabs, MainLoader, CircularLoader, HOCImageLoader, HOCOutsideClick, HOCErrorBoundary, HOCRequestLoader, useHookFabric, useElementResize, useOnClickOutside, useCountDown, useTranslate, useInView, JackpotWidget, JackPotInfoBox, Wheel, Scratch, TournamentCard, ReferralTable, ReferralTableProps, Pagination, ModalLayout, Alerts, BonusCardLayout, DrawerLayout, LandingLayoutTemplate, PortalLayout, CountDown, LastBigWinners, Banners, BannerTemplate, PromotionMobileApp, OneClick, DocsCheckBox, CurrencySelector, CountrySelector, RegistrationPromoCode, SignUp, EmailSignUp, PhoneSignUp, Selector, LanguageSelector, SignIn, ArrowSvg, DownloadSvg, LockSvg, CloseSvg, JabiInHouseSvg, ProviderSvg, HotSvg, WagerSvg, ElonHouseSvg, FSWinHouseSvg, ElonTreasureSvg, FSWinTreasureSvg, JabibetTreasureSvg, PlaySvg, InfoSvg, InstagramSvg, TelegramSvg, FacebookSvg, AvatarSvg, ProfileSvg, BonusGiftSvg, BurgerSvg, CalendarSvg, CashSvg, CloseEyeSvg, OpenEyeSvg, CoinSvg, CoinsSvg, CopySvg, DocSvg, FavoritesSvg, GoogleSvg, GrowSvg, DrawerTogglerSvg, LotterySvg, InfoLotterySvg, PlusSvg, SearchSvg, ProvidersBlocksSvg, SelectedSvg, ShareSvg, StarSvg, SupportSvg, ThreeDotsSvg, TrashSvg, WalletSvg, FirstBonusSvg, SecondBonusSvg, ThirdBonusSvg, VipClubSvg, InfoSecondSvg, BronzeSvg, SilverSvg, DiamondSvg, GoldSvg, GreenSvg, PlatinumSvg, PlatinumOneSvg, AzeSvg, BnSvg, BsSvg, ChSvg, DeSvg, EnSvg, EsSvg, FrSvg, HiSvg, ItSvg, KoSvg, KzSvg, NoSvg, PtSvg, RoSvg, RuSvg, TrSvg, UkrSvg, UzSvg, TournamentWagerSvg, ProvidersSvg, DefaultImgSvg, CasinoCoinSvg, RecommendedSvg, DepositSvg, ErrorSvg, SuccessSvg, WaitingSvg, WithdrawSvg, AmericanFootballSvg, AussieRulesSvg, BadmintonSvg, BaseballSvg, BasketballSvg, Basketball3x3Svg, BeachSoccerSvg, BoxingSvg, ChessSvg, CricketSvg, DartsSvg, EFifaSvg, ENbaSvg, ENhlSvg, EsportSvg, FieldHockeySvg, FutsalSvg, IceHockeySvg, KabaddiSvg, MmaSvg, RugbySvg, SnookerSvg, SoccerSvg, SquashSvg, TableTennisSvg, TennisSvg, VolleyballSvg, NotFoundBonusesSvg, NotificationWarningSvg, NotificationErrorSvg, NotificationSuccessSvg, Notifications, NavTournamentSvg, NavReferralSvg, NavMyBetsSvg, NavCasinoSvg, NavBonusesSvg, NavBettingLiveSvg, NavBettingSvg, BattlesCard, Step, Section, BattleBanner, Leaderboard, Accordion, AccordionGroup, useZustandLanguagesKitStore, languageSelectors, Text, useZustandNotificationKitStore, notificationKitSelectors, useZustandModalKitStore, zustandModalKitSelector, useZustandDeviceKitStore, zustandDeviceKitSelector, useZustandRegistrationKitStore, zustandRegistrationKitSelector, useZustandSignInKitStore, zustandSignInKitSelectors, useZustandRequestKitStore, requestSelectors, useZustandCasinoGamesKitStore, gamesSelectors, useZustandConnectionKitStore, connectionSelectors, useZustandWheelPromoKitStore, wheelPromoSelectors, EDirection, getCasinoCategoryIcon, sleep, getAuthorizationData, getRegistrationData, copyToClipboard, };
|
|
234
236
|
export { Size, Color, EAppType } from 'types/ui';
|
|
235
237
|
export { COUNTRY_MOCK } from 'constants/mock';
|
|
236
238
|
export { REFERRAL_KEY, REFERRAL_CODE, } from 'components/SignUp/PromoCode/constants';
|
package/dist/lib/index.js
CHANGED
|
@@ -5,9 +5,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.Pagination = exports.ReferralTable = exports.TournamentCard = exports.Scratch = exports.Wheel = exports.JackPotInfoBox = exports.JackpotWidget = exports.useInView = exports.useTranslate = exports.useCountDown = exports.useOnClickOutside = exports.useElementResize = exports.useHookFabric = exports.HOCRequestLoader = exports.HOCErrorBoundary = exports.HOCOutsideClick = exports.HOCImageLoader = exports.CircularLoader = exports.MainLoader = exports.Tabs = exports.Footer = exports.PopUpHeader = exports.DepositSkelet = exports.EActiveMethodTab = exports.PaymentsMethods = exports.JivoChatButton = exports.PasswordInput = exports.EmailInput = exports.CheckBox = exports.PhoneInput = exports.BaseInputUi = exports.BaseInput = exports.ShowAllCard = exports.DepositButton = exports.ProviderNameButton = exports.CasinoSubCategoriesButton = exports.CasinoCategoryButton = exports.AppSwitcher = exports.DrawerButton = exports.CloseButton = exports.BaseButton = exports.Logo = exports.EWheelState = exports.EModalTypes = exports.ENotificationType = exports.EAuthFormType = exports.ERegistrationForm = exports.handleDeviceDetection = exports.EDeviceType = exports.CheckBoxSvg = void 0;
|
|
7
7
|
exports.CoinsSvg = exports.CoinSvg = exports.OpenEyeSvg = exports.CloseEyeSvg = exports.CashSvg = exports.CalendarSvg = exports.BurgerSvg = exports.BonusGiftSvg = exports.ProfileSvg = exports.AvatarSvg = exports.FacebookSvg = exports.TelegramSvg = exports.InstagramSvg = exports.InfoSvg = exports.PlaySvg = exports.JabibetTreasureSvg = exports.FSWinTreasureSvg = exports.ElonTreasureSvg = exports.FSWinHouseSvg = exports.ElonHouseSvg = exports.WagerSvg = exports.HotSvg = exports.ProviderSvg = exports.JabiInHouseSvg = exports.CloseSvg = exports.LockSvg = exports.DownloadSvg = exports.ArrowSvg = exports.SignIn = exports.LanguageSelector = exports.Selector = exports.PhoneSignUp = exports.EmailSignUp = exports.SignUp = exports.RegistrationPromoCode = exports.CountrySelector = exports.CurrencySelector = exports.DocsCheckBox = exports.OneClick = exports.PromotionMobileApp = exports.BannerTemplate = exports.Banners = exports.LastBigWinners = exports.CountDown = exports.PortalLayout = exports.LandingLayoutTemplate = exports.DrawerLayout = exports.BonusCardLayout = exports.Alerts = exports.ModalLayout = void 0;
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.REFERRAL_CODE = exports.REFERRAL_KEY = exports.COUNTRY_MOCK = exports.EAppType = exports.copyToClipboard = exports.getRegistrationData = exports.getAuthorizationData = exports.sleep = exports.getCasinoCategoryIcon = exports.EDirection = exports.wheelPromoSelectors = exports.useZustandWheelPromoKitStore = exports.connectionSelectors = exports.useZustandConnectionKitStore = exports.gamesSelectors = exports.useZustandCasinoGamesKitStore = exports.requestSelectors = exports.useZustandRequestKitStore = exports.zustandSignInKitSelectors = exports.useZustandSignInKitStore = exports.zustandRegistrationKitSelector = exports.useZustandRegistrationKitStore = exports.zustandDeviceKitSelector = exports.useZustandDeviceKitStore = exports.zustandModalKitSelector = exports.useZustandModalKitStore = exports.notificationKitSelectors = exports.useZustandNotificationKitStore = exports.Text = exports.languageSelectors = exports.useZustandLanguagesKitStore = exports.Accordion = exports.Leaderboard = exports.BattleBanner = void 0;
|
|
8
|
+
exports.TournamentWagerSvg = exports.UzSvg = exports.UkrSvg = exports.TrSvg = exports.RuSvg = exports.RoSvg = exports.PtSvg = exports.NoSvg = exports.KzSvg = exports.KoSvg = exports.ItSvg = exports.HiSvg = exports.FrSvg = exports.EsSvg = exports.EnSvg = exports.DeSvg = exports.ChSvg = exports.BsSvg = exports.BnSvg = exports.AzeSvg = exports.PlatinumOneSvg = exports.PlatinumSvg = exports.GreenSvg = exports.GoldSvg = exports.DiamondSvg = exports.SilverSvg = exports.BronzeSvg = exports.InfoSecondSvg = exports.VipClubSvg = exports.ThirdBonusSvg = exports.SecondBonusSvg = exports.FirstBonusSvg = exports.WalletSvg = exports.TrashSvg = exports.ThreeDotsSvg = exports.SupportSvg = exports.StarSvg = exports.ShareSvg = exports.SelectedSvg = exports.ProvidersBlocksSvg = exports.SearchSvg = exports.PlusSvg = exports.InfoLotterySvg = exports.LotterySvg = exports.DrawerTogglerSvg = exports.GrowSvg = exports.GoogleSvg = exports.FavoritesSvg = exports.DocSvg = exports.CopySvg = void 0;
|
|
9
|
+
exports.Step = exports.BattlesCard = exports.NavBettingSvg = exports.NavBettingLiveSvg = exports.NavBonusesSvg = exports.NavCasinoSvg = exports.NavMyBetsSvg = exports.NavReferralSvg = exports.NavTournamentSvg = exports.Notifications = exports.NotificationSuccessSvg = exports.NotificationErrorSvg = exports.NotificationWarningSvg = exports.NotFoundBonusesSvg = exports.VolleyballSvg = exports.TennisSvg = exports.TableTennisSvg = exports.SquashSvg = exports.SoccerSvg = exports.SnookerSvg = exports.RugbySvg = exports.MmaSvg = exports.KabaddiSvg = exports.IceHockeySvg = exports.FutsalSvg = exports.FieldHockeySvg = exports.EsportSvg = exports.ENhlSvg = exports.ENbaSvg = exports.EFifaSvg = exports.DartsSvg = exports.CricketSvg = exports.ChessSvg = exports.BoxingSvg = exports.BeachSoccerSvg = exports.Basketball3x3Svg = exports.BasketballSvg = exports.BaseballSvg = exports.BadmintonSvg = exports.AussieRulesSvg = exports.AmericanFootballSvg = exports.WithdrawSvg = exports.WaitingSvg = exports.SuccessSvg = exports.ErrorSvg = exports.DepositSvg = exports.RecommendedSvg = exports.CasinoCoinSvg = exports.DefaultImgSvg = exports.ProvidersSvg = void 0;
|
|
10
|
+
exports.REFERRAL_CODE = exports.REFERRAL_KEY = exports.COUNTRY_MOCK = exports.EAppType = exports.copyToClipboard = exports.getRegistrationData = exports.getAuthorizationData = exports.sleep = exports.getCasinoCategoryIcon = exports.EDirection = exports.wheelPromoSelectors = exports.useZustandWheelPromoKitStore = exports.connectionSelectors = exports.useZustandConnectionKitStore = exports.gamesSelectors = exports.useZustandCasinoGamesKitStore = exports.requestSelectors = exports.useZustandRequestKitStore = exports.zustandSignInKitSelectors = exports.useZustandSignInKitStore = exports.zustandRegistrationKitSelector = exports.useZustandRegistrationKitStore = exports.zustandDeviceKitSelector = exports.useZustandDeviceKitStore = exports.zustandModalKitSelector = exports.useZustandModalKitStore = exports.notificationKitSelectors = exports.useZustandNotificationKitStore = exports.Text = exports.languageSelectors = exports.useZustandLanguagesKitStore = exports.AccordionGroup = exports.Accordion = exports.Leaderboard = exports.BattleBanner = exports.Section = void 0;
|
|
11
11
|
// Buttons
|
|
12
12
|
var Buttons_1 = require("components/ui/Buttons");
|
|
13
13
|
Object.defineProperty(exports, "BaseButton", { enumerable: true, get: function () { return Buttons_1.BaseButton; } });
|
|
@@ -257,6 +257,8 @@ var VipClubSvg_1 = require("components/ui/Icons/Bonuses/VipClubSvg");
|
|
|
257
257
|
Object.defineProperty(exports, "VipClubSvg", { enumerable: true, get: function () { return VipClubSvg_1.VipClubSvg; } });
|
|
258
258
|
var CheckBoxSvg_1 = require("components/ui/Icons/CheckBoxSvg");
|
|
259
259
|
Object.defineProperty(exports, "CheckBoxSvg", { enumerable: true, get: function () { return CheckBoxSvg_1.CheckBoxSvg; } });
|
|
260
|
+
var InfoSecondSvg_1 = require("components/ui/Icons/InfoSecondSvg");
|
|
261
|
+
Object.defineProperty(exports, "InfoSecondSvg", { enumerable: true, get: function () { return InfoSecondSvg_1.InfoSecondSvg; } });
|
|
260
262
|
//Loyalty SVGs
|
|
261
263
|
var BronzeSvg_1 = require("./components/ui/Icons/Bonuses/VipClub/BronzeSvg");
|
|
262
264
|
Object.defineProperty(exports, "BronzeSvg", { enumerable: true, get: function () { return BronzeSvg_1.BronzeSvg; } });
|
|
@@ -494,6 +496,8 @@ Object.defineProperty(exports, "Leaderboard", { enumerable: true, get: function
|
|
|
494
496
|
// Accordion
|
|
495
497
|
var Accordion_1 = __importDefault(require("components/ui/AccordionGroup/Accordion"));
|
|
496
498
|
exports.Accordion = Accordion_1.default;
|
|
499
|
+
var AccordionGroup_1 = __importDefault(require("components/ui/AccordionGroup"));
|
|
500
|
+
exports.AccordionGroup = AccordionGroup_1.default;
|
|
497
501
|
// Utils
|
|
498
502
|
var shared_1 = require("utils/shared");
|
|
499
503
|
Object.defineProperty(exports, "copyToClipboard", { enumerable: true, get: function () { return shared_1.copyToClipboard; } });
|
|
@@ -27,34 +27,35 @@ export declare enum EModalTypes {
|
|
|
27
27
|
CasinoFavorite = 16,
|
|
28
28
|
BonusPack = 17,
|
|
29
29
|
Bonuses = 18,
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
30
|
+
BonusInfo = 19,
|
|
31
|
+
BettingTransaction = 20,
|
|
32
|
+
TransactionDetails = 21,
|
|
33
|
+
TransactionFilters = 22,
|
|
34
|
+
ShortStories = 23,
|
|
35
|
+
Calendar = 24,
|
|
36
|
+
ReferralCopyContent = 25,
|
|
37
|
+
ReferralWithdraw = 26,
|
|
38
|
+
ReferralFailure = 27,
|
|
39
|
+
ReferralSuccess = 28,
|
|
40
|
+
Wheel = 29,
|
|
41
|
+
JackpotInfo = 30,
|
|
42
|
+
JackpotsRules = 31,
|
|
43
|
+
LootBoxGame = 32,
|
|
44
|
+
Hamster = 33,
|
|
45
|
+
Avatars = 34,
|
|
46
|
+
KGamesDaily = 35,
|
|
47
|
+
PromoCode = 36,
|
|
48
|
+
PromoCodeActivate = 37,
|
|
49
|
+
Prize = 38,
|
|
50
|
+
CricketPrize = 39,
|
|
51
|
+
CricketThrowAgain = 40,
|
|
52
|
+
MoneyComingPrize = 41,
|
|
53
|
+
CancelBonus = 42,
|
|
54
|
+
ClaimConfirmation = 43,
|
|
55
|
+
InstaShorts = 44,
|
|
56
|
+
AviatrixBonusOnDep = 45,
|
|
57
|
+
AviatrixSpins = 46,
|
|
58
|
+
LandingBonus = 47,
|
|
59
|
+
ChickenBonus = 48
|
|
59
60
|
}
|
|
60
61
|
export {};
|
|
@@ -25,38 +25,39 @@ var EModalTypes;
|
|
|
25
25
|
EModalTypes[EModalTypes["CasinoFavorite"] = 16] = "CasinoFavorite";
|
|
26
26
|
EModalTypes[EModalTypes["BonusPack"] = 17] = "BonusPack";
|
|
27
27
|
EModalTypes[EModalTypes["Bonuses"] = 18] = "Bonuses";
|
|
28
|
-
EModalTypes[EModalTypes["
|
|
29
|
-
EModalTypes[EModalTypes["
|
|
30
|
-
EModalTypes[EModalTypes["
|
|
31
|
-
EModalTypes[EModalTypes["
|
|
28
|
+
EModalTypes[EModalTypes["BonusInfo"] = 19] = "BonusInfo";
|
|
29
|
+
EModalTypes[EModalTypes["BettingTransaction"] = 20] = "BettingTransaction";
|
|
30
|
+
EModalTypes[EModalTypes["TransactionDetails"] = 21] = "TransactionDetails";
|
|
31
|
+
EModalTypes[EModalTypes["TransactionFilters"] = 22] = "TransactionFilters";
|
|
32
|
+
EModalTypes[EModalTypes["ShortStories"] = 23] = "ShortStories";
|
|
32
33
|
// Filters
|
|
33
|
-
EModalTypes[EModalTypes["Calendar"] =
|
|
34
|
+
EModalTypes[EModalTypes["Calendar"] = 24] = "Calendar";
|
|
34
35
|
// Referrals
|
|
35
|
-
EModalTypes[EModalTypes["ReferralCopyContent"] =
|
|
36
|
-
EModalTypes[EModalTypes["ReferralWithdraw"] =
|
|
37
|
-
EModalTypes[EModalTypes["ReferralFailure"] =
|
|
38
|
-
EModalTypes[EModalTypes["ReferralSuccess"] =
|
|
39
|
-
EModalTypes[EModalTypes["Wheel"] =
|
|
40
|
-
EModalTypes[EModalTypes["JackpotInfo"] =
|
|
41
|
-
EModalTypes[EModalTypes["JackpotsRules"] =
|
|
42
|
-
EModalTypes[EModalTypes["LootBoxGame"] =
|
|
43
|
-
EModalTypes[EModalTypes["Hamster"] =
|
|
44
|
-
EModalTypes[EModalTypes["Avatars"] =
|
|
45
|
-
EModalTypes[EModalTypes["KGamesDaily"] =
|
|
46
|
-
EModalTypes[EModalTypes["PromoCode"] =
|
|
47
|
-
EModalTypes[EModalTypes["PromoCodeActivate"] =
|
|
48
|
-
EModalTypes[EModalTypes["Prize"] =
|
|
49
|
-
EModalTypes[EModalTypes["CricketPrize"] =
|
|
50
|
-
EModalTypes[EModalTypes["CricketThrowAgain"] =
|
|
51
|
-
EModalTypes[EModalTypes["MoneyComingPrize"] =
|
|
52
|
-
EModalTypes[EModalTypes["CancelBonus"] =
|
|
36
|
+
EModalTypes[EModalTypes["ReferralCopyContent"] = 25] = "ReferralCopyContent";
|
|
37
|
+
EModalTypes[EModalTypes["ReferralWithdraw"] = 26] = "ReferralWithdraw";
|
|
38
|
+
EModalTypes[EModalTypes["ReferralFailure"] = 27] = "ReferralFailure";
|
|
39
|
+
EModalTypes[EModalTypes["ReferralSuccess"] = 28] = "ReferralSuccess";
|
|
40
|
+
EModalTypes[EModalTypes["Wheel"] = 29] = "Wheel";
|
|
41
|
+
EModalTypes[EModalTypes["JackpotInfo"] = 30] = "JackpotInfo";
|
|
42
|
+
EModalTypes[EModalTypes["JackpotsRules"] = 31] = "JackpotsRules";
|
|
43
|
+
EModalTypes[EModalTypes["LootBoxGame"] = 32] = "LootBoxGame";
|
|
44
|
+
EModalTypes[EModalTypes["Hamster"] = 33] = "Hamster";
|
|
45
|
+
EModalTypes[EModalTypes["Avatars"] = 34] = "Avatars";
|
|
46
|
+
EModalTypes[EModalTypes["KGamesDaily"] = 35] = "KGamesDaily";
|
|
47
|
+
EModalTypes[EModalTypes["PromoCode"] = 36] = "PromoCode";
|
|
48
|
+
EModalTypes[EModalTypes["PromoCodeActivate"] = 37] = "PromoCodeActivate";
|
|
49
|
+
EModalTypes[EModalTypes["Prize"] = 38] = "Prize";
|
|
50
|
+
EModalTypes[EModalTypes["CricketPrize"] = 39] = "CricketPrize";
|
|
51
|
+
EModalTypes[EModalTypes["CricketThrowAgain"] = 40] = "CricketThrowAgain";
|
|
52
|
+
EModalTypes[EModalTypes["MoneyComingPrize"] = 41] = "MoneyComingPrize";
|
|
53
|
+
EModalTypes[EModalTypes["CancelBonus"] = 42] = "CancelBonus";
|
|
53
54
|
// Confirm bonus cancel or claim
|
|
54
|
-
EModalTypes[EModalTypes["ClaimConfirmation"] =
|
|
55
|
+
EModalTypes[EModalTypes["ClaimConfirmation"] = 43] = "ClaimConfirmation";
|
|
55
56
|
// EXPERIMANTALS
|
|
56
|
-
EModalTypes[EModalTypes["InstaShorts"] =
|
|
57
|
+
EModalTypes[EModalTypes["InstaShorts"] = 44] = "InstaShorts";
|
|
57
58
|
// Landing
|
|
58
|
-
EModalTypes[EModalTypes["AviatrixBonusOnDep"] =
|
|
59
|
-
EModalTypes[EModalTypes["AviatrixSpins"] =
|
|
60
|
-
EModalTypes[EModalTypes["LandingBonus"] =
|
|
61
|
-
EModalTypes[EModalTypes["ChickenBonus"] =
|
|
59
|
+
EModalTypes[EModalTypes["AviatrixBonusOnDep"] = 45] = "AviatrixBonusOnDep";
|
|
60
|
+
EModalTypes[EModalTypes["AviatrixSpins"] = 46] = "AviatrixSpins";
|
|
61
|
+
EModalTypes[EModalTypes["LandingBonus"] = 47] = "LandingBonus";
|
|
62
|
+
EModalTypes[EModalTypes["ChickenBonus"] = 48] = "ChickenBonus";
|
|
62
63
|
})(EModalTypes = exports.EModalTypes || (exports.EModalTypes = {}));
|
package/dist/main.css
CHANGED
|
@@ -1739,7 +1739,7 @@
|
|
|
1739
1739
|
}
|
|
1740
1740
|
|
|
1741
1741
|
.KIT__CountDown-module__row___Pg1OZ {
|
|
1742
|
-
color:
|
|
1742
|
+
color: var(--count-down-row-color);
|
|
1743
1743
|
margin-bottom: 0;
|
|
1744
1744
|
margin-bottom: initial;
|
|
1745
1745
|
}
|
|
@@ -1794,14 +1794,18 @@
|
|
|
1794
1794
|
.KIT__BonusCardLayout-module__wrapperBonusCardLayout___klMSg {
|
|
1795
1795
|
position: relative;
|
|
1796
1796
|
width: 100%;
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
min-width:
|
|
1800
|
-
padding: var(--indent-
|
|
1797
|
+
height: 100%;
|
|
1798
|
+
min-height: 220px;
|
|
1799
|
+
min-width: 280px;
|
|
1800
|
+
padding: var(--indent-m);
|
|
1801
1801
|
overflow: hidden;
|
|
1802
|
-
border-radius:
|
|
1802
|
+
border-radius: var(--border-m);
|
|
1803
1803
|
background: var(--background-bonus-card);
|
|
1804
1804
|
border: 2px solid var(--border-color-gray);
|
|
1805
|
+
|
|
1806
|
+
display: flex;
|
|
1807
|
+
flex-direction: column;
|
|
1808
|
+
justify-content: space-between;
|
|
1805
1809
|
}
|
|
1806
1810
|
|
|
1807
1811
|
.KIT__BonusCardLayout-module__dots___RfsaQ {
|
|
@@ -1818,14 +1822,12 @@
|
|
|
1818
1822
|
display: flex;
|
|
1819
1823
|
align-items: center;
|
|
1820
1824
|
justify-content: space-between;
|
|
1821
|
-
margin-bottom: 8px;
|
|
1822
1825
|
}
|
|
1823
1826
|
|
|
1824
1827
|
.KIT__BonusCardLayout-module__title___BStV1 {
|
|
1825
|
-
font-size:
|
|
1828
|
+
font-size: var(--font-size-m);
|
|
1826
1829
|
color: var(--bonus-card-layout-title-color);
|
|
1827
1830
|
font-weight: 700;
|
|
1828
|
-
margin-bottom: 4px;
|
|
1829
1831
|
}
|
|
1830
1832
|
|
|
1831
1833
|
.KIT__BonusCardLayout-module__detail___rwO1z {
|
|
@@ -1836,9 +1838,7 @@
|
|
|
1836
1838
|
.KIT__BonusCardLayout-module__description___kuXoe {
|
|
1837
1839
|
width: 50%;
|
|
1838
1840
|
color: var(--bonus-card-layout-description-color);
|
|
1839
|
-
|
|
1840
|
-
font-size: 12px;
|
|
1841
|
-
margin-bottom: 8px;
|
|
1841
|
+
font-size: var(--font-size-xs);
|
|
1842
1842
|
}
|
|
1843
1843
|
|
|
1844
1844
|
.KIT__BonusCardLayout-module__container___xL3D6 {
|
|
@@ -1853,6 +1853,18 @@
|
|
|
1853
1853
|
overflow: hidden;
|
|
1854
1854
|
}
|
|
1855
1855
|
|
|
1856
|
+
.KIT__BonusCardLayout-module__box___yluAY {
|
|
1857
|
+
display: flex;
|
|
1858
|
+
flex-direction: column;
|
|
1859
|
+
gap: var(--indent-xs);
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
.KIT__BonusCardLayout-module__info___ZfGYp {
|
|
1863
|
+
display: flex;
|
|
1864
|
+
flex-direction: column;
|
|
1865
|
+
gap: var(--indent-s);
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1856
1868
|
.KIT__BonusCardLayout-module__contentRow___lWV13 {
|
|
1857
1869
|
display: flex;
|
|
1858
1870
|
height: 100%;
|
|
@@ -1862,7 +1874,7 @@
|
|
|
1862
1874
|
.KIT__BonusCardLayout-module__img___D7ZA2 {
|
|
1863
1875
|
position: absolute;
|
|
1864
1876
|
top: 0%;
|
|
1865
|
-
right:
|
|
1877
|
+
right: -5%;
|
|
1866
1878
|
width: 100%;
|
|
1867
1879
|
height: 100%;
|
|
1868
1880
|
-o-object-fit: cover;
|
|
@@ -1871,17 +1883,27 @@
|
|
|
1871
1883
|
}
|
|
1872
1884
|
|
|
1873
1885
|
.KIT__BonusCardLayout-module__value___ab83F {
|
|
1874
|
-
font-size:
|
|
1886
|
+
font-size: var(--font-size-xxl);
|
|
1875
1887
|
color: var(--bonus-card-layout-value-color);
|
|
1876
|
-
font-weight:
|
|
1888
|
+
font-weight: 700;
|
|
1877
1889
|
}
|
|
1878
1890
|
|
|
1879
1891
|
.KIT__BonusCardLayout-module__btn___r4YOm {
|
|
1892
|
+
--button-height: 32px;
|
|
1893
|
+
min-height: 32px;
|
|
1894
|
+
min-height: var(--button-height);
|
|
1895
|
+
max-height: 32px;
|
|
1896
|
+
max-height: var(--button-height);
|
|
1897
|
+
height: 32px;
|
|
1898
|
+
height: var(--button-height);
|
|
1880
1899
|
position: relative;
|
|
1881
1900
|
z-index: calc(var(--layout-lvl-1) + 2);
|
|
1901
|
+
border-radius: var(--border-s);
|
|
1902
|
+
font-size: var(--font-size-s);
|
|
1903
|
+
font-weight: 500;
|
|
1882
1904
|
}
|
|
1883
1905
|
|
|
1884
|
-
.KIT__BonusCardLayout-
|
|
1906
|
+
.KIT__BonusCardLayout-module__row___B4YuW {
|
|
1885
1907
|
display: flex;
|
|
1886
1908
|
width: 100%;
|
|
1887
1909
|
justify-content: space-between;
|
|
@@ -1907,12 +1929,69 @@
|
|
|
1907
1929
|
height: 100%;
|
|
1908
1930
|
}
|
|
1909
1931
|
|
|
1932
|
+
.KIT__BonusCardLayout-module__categoryName___OcOQd {
|
|
1933
|
+
font-size: var(--font-size-xxs);
|
|
1934
|
+
color: var(--bonus-card-layout-category-color);
|
|
1935
|
+
border: var(--bonus-card-layout-category-border);
|
|
1936
|
+
padding: calc(var(--indent-xs) / 2) var(--indent-m);
|
|
1937
|
+
border-radius: var(--border-m);
|
|
1938
|
+
width: -moz-fit-content;
|
|
1939
|
+
width: fit-content;
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
.KIT__BonusCardLayout-module__timer___asIZ9 {
|
|
1943
|
+
display: flex;
|
|
1944
|
+
align-items: center;
|
|
1945
|
+
gap: var(--indent-xs);
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
.KIT__BonusCardLayout-module__expiration___zSHk7 {
|
|
1949
|
+
color: var(--bonus-card-layout-expiration-color);
|
|
1950
|
+
font-size: var(--font-size-xs);
|
|
1951
|
+
}
|
|
1952
|
+
|
|
1953
|
+
.KIT__BonusCardLayout-module__timeBlock___vyoL3 {
|
|
1954
|
+
font-size: var(--font-size-xs);
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
.KIT__BonusCardLayout-module__infoSvg___GMblf {
|
|
1958
|
+
cursor: pointer;
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
.KIT__BonusCardLayout-module__dark___mmsxr {
|
|
1962
|
+
color: var(--bonus-card-layout-dark-button-color);
|
|
1963
|
+
background: var(--bonus-card-layout-dark-button-background-color);
|
|
1964
|
+
border: var(--bonus-card-layout-dark-button-border);
|
|
1965
|
+
opacity: 1;
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
.KIT__BonusCardLayout-module__blockedContent___wynw2 {
|
|
1969
|
+
position: absolute;
|
|
1970
|
+
top: 0;
|
|
1971
|
+
left: 0;
|
|
1972
|
+
display: flex;
|
|
1973
|
+
align-items: center;
|
|
1974
|
+
justify-content: center;
|
|
1975
|
+
flex-direction: column;
|
|
1976
|
+
background-color: var(--bonus-cabinet-blocked-bonus-background);
|
|
1977
|
+
width: 100%;
|
|
1978
|
+
height: 100%;
|
|
1979
|
+
z-index: calc(var(--layout-lvl-1) + 2);
|
|
1980
|
+
gap: var(--indent-s);
|
|
1981
|
+
-webkit-backdrop-filter: blur(10px);
|
|
1982
|
+
backdrop-filter: blur(10px);
|
|
1983
|
+
border-radius: var(--border-m);
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1986
|
+
.KIT__BonusCardLayout-module__blockedText___gNZbl {
|
|
1987
|
+
color: var(--bonus-card-layout-blocked-text-color);
|
|
1988
|
+
font-weight: 700;
|
|
1989
|
+
text-align: center;
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1910
1992
|
@media (min-width: 1024px) {
|
|
1911
1993
|
.KIT__BonusCardLayout-module__wrapperBonusCardLayout___klMSg {
|
|
1912
|
-
width:
|
|
1913
|
-
width: initial;
|
|
1914
|
-
min-width: 0;
|
|
1915
|
-
min-width: initial;
|
|
1994
|
+
width: 336px;
|
|
1916
1995
|
}
|
|
1917
1996
|
}
|
|
1918
1997
|
|
|
@@ -2188,6 +2267,10 @@
|
|
|
2188
2267
|
border-radius: var(--indent-l);
|
|
2189
2268
|
}
|
|
2190
2269
|
|
|
2270
|
+
.KIT__Alert-module__fullHeight___XrorH {
|
|
2271
|
+
max-height: 100%;
|
|
2272
|
+
}
|
|
2273
|
+
|
|
2191
2274
|
@media (min-width: 768px) {
|
|
2192
2275
|
.KIT__Alert-module__wrapperModal___lOle6 {
|
|
2193
2276
|
display: flex;
|