react-gldn-kit 0.1.119 → 0.1.121
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/Banners/index.js +1 -1
- package/dist/lib/components/Presets/index.d.ts +2 -0
- package/dist/lib/components/Presets/index.js +59 -0
- package/dist/lib/components/Presets/types.d.ts +10 -0
- package/dist/lib/components/Presets/types.js +2 -0
- package/dist/lib/components/ui/Icons/FireSvg.d.ts +2 -0
- package/dist/lib/components/ui/Icons/FireSvg.js +20 -0
- package/dist/lib/index.d.ts +3 -1
- package/dist/lib/index.js +10 -5
- package/dist/main.css +47 -0
- package/package.json +1 -1
|
@@ -76,7 +76,7 @@ var Banners = function (props) {
|
|
|
76
76
|
return ((0, jsx_runtime_1.jsx)("div", __assign({ className: (0, classnames_1.default)(styles.emblaSlide, (_a = {},
|
|
77
77
|
_a[styles.half] = bannerViewType === types_1.EBackgroundSliderType.Half,
|
|
78
78
|
_a[styles.full] = bannerViewType === types_1.EBackgroundSliderType.Full,
|
|
79
|
-
_a)) }, { children: (0, jsx_runtime_1.jsxs)("div", __assign({ className: styles.emblaSlideContent
|
|
79
|
+
_a)) }, { children: (0, jsx_runtime_1.jsxs)("div", __assign({ className: styles.emblaSlideContent }, { children: [(0, jsx_runtime_1.jsxs)("div", __assign({ className: styles.emblaSlideContentText }, { children: [(0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsx)("div", __assign({ className: (0, classnames_1.default)(styles.title, titleClasses) }, { children: (0, jsx_runtime_1.jsx)(Text_1.Text, { idT: adaptedBanner.text }) })), (0, jsx_runtime_1.jsx)("div", __assign({ className: (0, classnames_1.default)(styles.subTitle, subTitleClasses) }, { children: (0, jsx_runtime_1.jsx)(Text_1.Text, { idT: adaptedBanner.subTitle }) }))] }), buttonText.trim() && ((0, jsx_runtime_1.jsx)(Buttons_1.BaseButton, { text: adaptedBanner.buttonText, handleClick: handleClick(adaptedBanner.id), size: "--button-xl", isResized: true, buttonHeight: "--button-height-l", color: "primary", centreText: true, classes: styles.bannerButton }))] })), (0, jsx_runtime_1.jsx)(Image_1.Image, { path: path, classes: styles.image })] })) }), index));
|
|
80
80
|
}) })) })) })), isProgress && ((0, jsx_runtime_1.jsx)("div", __assign({ className: styles.emblaProgress }, { children: (0, jsx_runtime_1.jsx)("div", { className: styles.emblaProgressBar, style: { transform: "translate3d(".concat(scrollProgress, "%,0px,0px)") } }) })))] }));
|
|
81
81
|
};
|
|
82
82
|
exports.Banners = Banners;
|
|
@@ -0,0 +1,59 @@
|
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14
|
+
if (k2 === undefined) k2 = k;
|
|
15
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
16
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
17
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
18
|
+
}
|
|
19
|
+
Object.defineProperty(o, k2, desc);
|
|
20
|
+
}) : (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
o[k2] = m[k];
|
|
23
|
+
}));
|
|
24
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
25
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
26
|
+
}) : function(o, v) {
|
|
27
|
+
o["default"] = v;
|
|
28
|
+
});
|
|
29
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
30
|
+
if (mod && mod.__esModule) return mod;
|
|
31
|
+
var result = {};
|
|
32
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
+
__setModuleDefault(result, mod);
|
|
34
|
+
return result;
|
|
35
|
+
};
|
|
36
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
37
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
38
|
+
};
|
|
39
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40
|
+
exports.Presets = void 0;
|
|
41
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
42
|
+
var classnames_1 = __importDefault(require("classnames"));
|
|
43
|
+
var FireSvg_1 = require("components/ui/Icons/FireSvg");
|
|
44
|
+
var styles = __importStar(require("./Presets.module.css"));
|
|
45
|
+
var Presets = function (props) {
|
|
46
|
+
var presets = props.presets, activeAmount = props.activeAmount, handleSetAmount = props.handleSetAmount, balanceInfo = props.balanceInfo;
|
|
47
|
+
var _a = (balanceInfo || {}).successDepositCnt, successDepositCnt = _a === void 0 ? 0 : _a;
|
|
48
|
+
var handleApply = function (v) { return function () {
|
|
49
|
+
handleSetAmount("".concat(v));
|
|
50
|
+
}; };
|
|
51
|
+
return ((0, jsx_runtime_1.jsx)("div", __assign({ className: styles.wrapperPresets }, { children: presets.map(function (_a, inx) {
|
|
52
|
+
var _b;
|
|
53
|
+
var value = _a.value, promoValuePercent = _a.promoValuePercent;
|
|
54
|
+
return ((0, jsx_runtime_1.jsxs)("div", __assign({ className: (0, classnames_1.default)(styles.preset, (_b = {},
|
|
55
|
+
_b[styles.active] = +activeAmount === value,
|
|
56
|
+
_b)), onClick: handleApply(value) }, { children: [value, promoValuePercent && !successDepositCnt && ((0, jsx_runtime_1.jsxs)("div", __assign({ className: styles.promoValuePercent }, { children: [(0, jsx_runtime_1.jsx)(FireSvg_1.FireSvg, {}), (0, jsx_runtime_1.jsxs)("div", { children: ["+", promoValuePercent, "%"] })] })))] }), "".concat(value, "_").concat(inx)));
|
|
57
|
+
}) })));
|
|
58
|
+
};
|
|
59
|
+
exports.Presets = Presets;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BalanceInfo } from 'react-memory-optimization/dist/lib/store/user/entities/balance/types';
|
|
2
|
+
export type PresetsProps = {
|
|
3
|
+
presets: {
|
|
4
|
+
value: number;
|
|
5
|
+
promoValuePercent?: number;
|
|
6
|
+
}[];
|
|
7
|
+
handleSetAmount: (s: string) => void;
|
|
8
|
+
activeAmount: string;
|
|
9
|
+
balanceInfo: BalanceInfo;
|
|
10
|
+
};
|
|
@@ -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.FireSvg = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var FireSvg = function (props) {
|
|
17
|
+
var _a = props.width, width = _a === void 0 ? '10' : _a, _b = props.height, height = _b === void 0 ? '10' : _b, classes = props.classes, handleClick = props.handleClick;
|
|
18
|
+
return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: width, height: height, viewBox: "0 0 10 10", fill: "none", xmlns: "http://www.w3.org/2000/svg", onClick: handleClick, className: classes }, { children: [(0, jsx_runtime_1.jsxs)("g", { children: [(0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.66156 6.46328C8.57936 8.42637 6.96254 9.99281 4.97925 9.99281C2.94336 9.99281 1.29297 8.28692 1.29297 6.30653C1.29297 6.04182 1.28823 5.51281 1.68513 4.62026C1.92266 4.0861 2.07164 3.75053 2.15572 3.44379C2.20191 3.2752 2.29176 3.00735 2.54787 3.44379C2.69889 3.70112 2.70474 4.07124 2.70474 4.07124C2.70474 4.07124 3.26662 3.64006 3.64591 2.81634C4.20195 1.60877 3.7583 0.886924 3.6067 0.384963C3.55423 0.211316 3.52129 -0.100763 3.88121 0.0320217C4.24795 0.167355 5.21752 0.846061 5.72434 1.56143C6.44768 2.58241 6.70474 3.56143 6.70474 3.56143C6.70474 3.56143 6.93634 3.27398 7.01846 2.9732C7.11121 2.63355 7.11258 2.29716 7.41058 2.65951C7.69399 3.0041 8.11489 3.65167 8.35179 4.26732C8.78195 5.38532 8.66156 6.46328 8.66156 6.46328Z", fill: "url(#paint0_linear_6767_266289)" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.97871 9.9931C3.5709 9.9931 2.42969 8.85189 2.42969 7.44408C2.42969 6.59463 2.772 6.07891 3.48443 5.37954C3.94059 4.93173 4.36753 4.38173 4.54898 4.00722C4.58471 3.9335 4.666 3.5493 4.97945 3.99914C5.14388 4.23507 5.40165 4.65463 5.56694 5.01271C5.85188 5.63008 5.91988 6.2284 5.91988 6.2284C5.91988 6.2284 6.19914 6.06385 6.39047 5.64016C6.45216 5.50361 6.57686 4.98667 6.92549 5.50354C7.1813 5.88283 7.53271 6.56479 7.52773 7.44408C7.52773 8.85189 6.38647 9.9931 4.97871 9.9931Z", fill: "#FFB64E" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.01961 7.20801C5.38235 7.20801 5.38235 7.87973 5.84314 8.77664C6.14996 9.37385 5.69102 9.99232 5.01961 9.99232C4.3482 9.99232 4 9.44805 4 8.77664C4 8.10526 4.65686 7.20801 5.01961 7.20801Z", fill: "#FFE719" })] }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsxs)("linearGradient", __assign({ id: "paint0_linear_6767_266289", x1: "4.98478", y1: "10.0002", x2: "4.98478", y2: "0.00755111", gradientUnits: "userSpaceOnUse" }, { children: [(0, jsx_runtime_1.jsx)("stop", { stopColor: "#FF8458" }), (0, jsx_runtime_1.jsx)("stop", { offset: "1", stopColor: "#FFA92F" })] })) })] })));
|
|
19
|
+
};
|
|
20
|
+
exports.FireSvg = FireSvg;
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -72,6 +72,7 @@ import { TournamentCard } from 'components/ui/TournamentCard';
|
|
|
72
72
|
import { LastBigWinners } from 'components/LastBigWinners';
|
|
73
73
|
import { JackpotWidget } from 'components/Jackpots/JackpotWidget';
|
|
74
74
|
import { JackPotInfoBox } from 'components/Jackpots/JackpotWidget/components/Jackpot';
|
|
75
|
+
import { Presets } from 'components/Presets';
|
|
75
76
|
import { IconProps } from 'components/ui/Icons/types';
|
|
76
77
|
import { DownloadSvg } from 'components/ui/Icons/Base/DownloadSvg';
|
|
77
78
|
import { ArrowSvg } from 'components/ui/Icons/ArrowSvg';
|
|
@@ -125,6 +126,7 @@ import { ThirdBonusSvg } from 'components/ui/Icons/Bonuses/ThirdBonusSvg';
|
|
|
125
126
|
import { VipClubSvg } from 'components/ui/Icons/Bonuses/VipClubSvg';
|
|
126
127
|
export { CheckBoxSvg } from 'components/ui/Icons/CheckBoxSvg';
|
|
127
128
|
import { InfoSecondSvg } from 'components/ui/Icons/InfoSecondSvg';
|
|
129
|
+
import { FireSvg } from 'components/ui/Icons/FireSvg';
|
|
128
130
|
import { BronzeSvg } from './components/ui/Icons/Bonuses/VipClub/BronzeSvg';
|
|
129
131
|
import { SilverSvg } from 'components/ui/Icons/Bonuses/VipClub/SilverSvg';
|
|
130
132
|
import { DiamondSvg } from 'components/ui/Icons/Bonuses/VipClub/DiamondSvg';
|
|
@@ -246,7 +248,7 @@ import Accordion from 'components/ui/AccordionGroup/Accordion';
|
|
|
246
248
|
import AccordionGroup from 'components/ui/AccordionGroup';
|
|
247
249
|
import { copyToClipboard, sleep } from 'utils/shared';
|
|
248
250
|
import { getAuthorizationData, getRegistrationData } from 'zustandStore/forms/signUp/utils';
|
|
249
|
-
export { Logo, BaseButton, CloseButton, DrawerButton, AppSwitcher, CasinoCategoryButton, CasinoSubCategoriesButton, ProviderNameButton, DepositButton, ShowAllCard, BaseInput, BaseInputUi, PhoneInput, CheckBox, EmailInput, PasswordInput, CasinoSearchBlock, CasinoSearchInput, JivoChatButton, JivoChatButtonProps, PaymentsMethods, PaymentMethodProps, EActiveMethodTab, DepositSkelet, DepositSkeletProps, DepositQrFormProps, PopUpHeader, Footer, Tabs, MainLoader, CircularLoader, Image, HOCImageLoader, HOCOutsideClick, HOCErrorBoundary, HOCRequestLoader, HOCKitConfigure, useHookFabric, useElementResize, useOnClickOutside, useCountDown, useTranslate, useInView, useHotJarAnalytics, JackpotWidget, JackPotInfoBox, Wheel, Scratch, TournamentCard, ReferralTable, ReferralTableProps, Pagination, ModalLayout, Alerts, BonusCardLayout, DrawerLayout, LandingLayoutTemplate, PortalLayout, CountDown, LastBigWinners, Banners, PromotionMobileApp, OneClick, DocsCheckBox, CurrencySelector, CountrySelector, RegistrationPromoCode, SignUp, SignUpTypeTwo, SignUpTypeThree, EmailSignUp, PhoneSignUp, Selector, LanguageSelector, SignIn, SignInThird, IconProps, 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, useZustandRecoveryKitStore, zustandRecoveryKitSelectors, useZustandNotificationKitStore, notificationKitSelectors, useZustandModalKitStore, zustandModalKitSelector, useZustandDeviceKitStore, zustandDeviceKitSelector, useZustandRegistrationKitStore, zustandRegistrationKitSelector, useZustandSignInKitStore, zustandSignInKitSelectors, useZustandRequestKitStore, requestSelectors, useZustandCasinoGamesKitStore, gamesSelectors, useZustandConnectionKitStore, connectionSelectors, useZustandWheelPromoKitStore, wheelPromoSelectors, EDirection, searchSelectors, useZustandCasinoSearchKitStore, useZustandSupportKitStore, supportSelectors, getCasinoCategoryIcon, sleep, getAuthorizationData, getRegistrationData, copyToClipboard, };
|
|
251
|
+
export { Logo, BaseButton, CloseButton, DrawerButton, AppSwitcher, CasinoCategoryButton, CasinoSubCategoriesButton, ProviderNameButton, DepositButton, ShowAllCard, BaseInput, BaseInputUi, PhoneInput, CheckBox, EmailInput, PasswordInput, CasinoSearchBlock, CasinoSearchInput, JivoChatButton, JivoChatButtonProps, PaymentsMethods, PaymentMethodProps, EActiveMethodTab, DepositSkelet, DepositSkeletProps, DepositQrFormProps, PopUpHeader, Footer, Tabs, MainLoader, CircularLoader, Image, HOCImageLoader, HOCOutsideClick, HOCErrorBoundary, HOCRequestLoader, HOCKitConfigure, useHookFabric, useElementResize, useOnClickOutside, useCountDown, useTranslate, useInView, useHotJarAnalytics, JackpotWidget, JackPotInfoBox, Presets, Wheel, Scratch, TournamentCard, ReferralTable, ReferralTableProps, Pagination, ModalLayout, Alerts, BonusCardLayout, DrawerLayout, LandingLayoutTemplate, PortalLayout, CountDown, LastBigWinners, Banners, PromotionMobileApp, OneClick, DocsCheckBox, CurrencySelector, CountrySelector, RegistrationPromoCode, SignUp, SignUpTypeTwo, SignUpTypeThree, EmailSignUp, PhoneSignUp, Selector, LanguageSelector, SignIn, SignInThird, IconProps, 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, FireSvg, 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, useZustandRecoveryKitStore, zustandRecoveryKitSelectors, useZustandNotificationKitStore, notificationKitSelectors, useZustandModalKitStore, zustandModalKitSelector, useZustandDeviceKitStore, zustandDeviceKitSelector, useZustandRegistrationKitStore, zustandRegistrationKitSelector, useZustandSignInKitStore, zustandSignInKitSelectors, useZustandRequestKitStore, requestSelectors, useZustandCasinoGamesKitStore, gamesSelectors, useZustandConnectionKitStore, connectionSelectors, useZustandWheelPromoKitStore, wheelPromoSelectors, EDirection, searchSelectors, useZustandCasinoSearchKitStore, useZustandSupportKitStore, supportSelectors, getCasinoCategoryIcon, sleep, getAuthorizationData, getRegistrationData, copyToClipboard, };
|
|
250
252
|
export { Size, Color, EAppType } from 'types/ui';
|
|
251
253
|
export { COUNTRY_MOCK } from 'constants/mock';
|
|
252
254
|
export { REFERRAL_KEY, REFERRAL_CODE, } from 'components/SignUp/PromoCode/constants';
|
package/dist/lib/index.js
CHANGED
|
@@ -4,11 +4,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.useHotJarAnalytics = exports.useInView = exports.useTranslate = exports.useCountDown = exports.useOnClickOutside = exports.useElementResize = exports.useHookFabric = exports.HOCKitConfigure = exports.HOCRequestLoader = exports.HOCErrorBoundary = exports.HOCOutsideClick = exports.HOCImageLoader = exports.Image = exports.CircularLoader = exports.MainLoader = exports.Tabs = exports.Footer = exports.PopUpHeader = exports.DepositSkelet = exports.EActiveMethodTab = exports.PaymentsMethods = exports.JivoChatButton = exports.CasinoSearchInput = exports.CasinoSearchBlock = 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 = exports.EBackgroundSliderType = exports.ESignUpTheme = void 0;
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.HookProvider = exports.useHookProvider = exports.REFERRAL_CODE = void 0;
|
|
7
|
+
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.SignInThird = exports.SignIn = exports.LanguageSelector = exports.Selector = exports.PhoneSignUp = exports.EmailSignUp = exports.SignUpTypeThree = exports.SignUpTypeTwo = exports.SignUp = exports.RegistrationPromoCode = exports.CountrySelector = exports.CurrencySelector = exports.DocsCheckBox = exports.OneClick = exports.PromotionMobileApp = exports.Banners = exports.LastBigWinners = exports.CountDown = exports.PortalLayout = exports.LandingLayoutTemplate = exports.DrawerLayout = exports.BonusCardLayout = exports.Alerts = exports.ModalLayout = exports.Pagination = exports.ReferralTable = exports.TournamentCard = exports.Scratch = exports.Wheel = exports.Presets = exports.JackPotInfoBox = exports.JackpotWidget = void 0;
|
|
8
|
+
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.FireSvg = 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 = exports.CoinsSvg = exports.CoinSvg = exports.OpenEyeSvg = exports.CloseEyeSvg = exports.CashSvg = exports.CalendarSvg = exports.BurgerSvg = exports.BonusGiftSvg = exports.ProfileSvg = exports.AvatarSvg = void 0;
|
|
9
|
+
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 = exports.TournamentWagerSvg = exports.UzSvg = exports.UkrSvg = exports.TrSvg = exports.RuSvg = exports.RoSvg = exports.PtSvg = exports.NoSvg = exports.KzSvg = exports.KoSvg = exports.ItSvg = void 0;
|
|
10
|
+
exports.EAppType = exports.copyToClipboard = exports.getRegistrationData = exports.getAuthorizationData = exports.sleep = exports.getCasinoCategoryIcon = exports.supportSelectors = exports.useZustandSupportKitStore = exports.useZustandCasinoSearchKitStore = exports.searchSelectors = 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.zustandRecoveryKitSelectors = exports.useZustandRecoveryKitStore = exports.Text = exports.languageSelectors = exports.useZustandLanguagesKitStore = exports.AccordionGroup = exports.Accordion = exports.Leaderboard = exports.BattleBanner = exports.Section = exports.Step = exports.BattlesCard = exports.NavBettingSvg = exports.NavBettingLiveSvg = exports.NavBonusesSvg = exports.NavCasinoSvg = exports.NavMyBetsSvg = exports.NavReferralSvg = exports.NavTournamentSvg = exports.Notifications = exports.NotificationSuccessSvg = void 0;
|
|
11
|
+
exports.HookProvider = exports.useHookProvider = exports.REFERRAL_CODE = exports.REFERRAL_KEY = exports.COUNTRY_MOCK = void 0;
|
|
12
12
|
// Buttons
|
|
13
13
|
var Buttons_1 = require("components/ui/Buttons");
|
|
14
14
|
Object.defineProperty(exports, "BaseButton", { enumerable: true, get: function () { return Buttons_1.BaseButton; } });
|
|
@@ -169,6 +169,9 @@ var JackpotWidget_1 = require("components/Jackpots/JackpotWidget");
|
|
|
169
169
|
Object.defineProperty(exports, "JackpotWidget", { enumerable: true, get: function () { return JackpotWidget_1.JackpotWidget; } });
|
|
170
170
|
var Jackpot_1 = require("components/Jackpots/JackpotWidget/components/Jackpot");
|
|
171
171
|
Object.defineProperty(exports, "JackPotInfoBox", { enumerable: true, get: function () { return Jackpot_1.JackPotInfoBox; } });
|
|
172
|
+
// Deposit
|
|
173
|
+
var Presets_1 = require("components/Presets");
|
|
174
|
+
Object.defineProperty(exports, "Presets", { enumerable: true, get: function () { return Presets_1.Presets; } });
|
|
172
175
|
// icons
|
|
173
176
|
var DownloadSvg_1 = require("components/ui/Icons/Base/DownloadSvg");
|
|
174
177
|
Object.defineProperty(exports, "DownloadSvg", { enumerable: true, get: function () { return DownloadSvg_1.DownloadSvg; } });
|
|
@@ -274,6 +277,8 @@ var CheckBoxSvg_1 = require("components/ui/Icons/CheckBoxSvg");
|
|
|
274
277
|
Object.defineProperty(exports, "CheckBoxSvg", { enumerable: true, get: function () { return CheckBoxSvg_1.CheckBoxSvg; } });
|
|
275
278
|
var InfoSecondSvg_1 = require("components/ui/Icons/InfoSecondSvg");
|
|
276
279
|
Object.defineProperty(exports, "InfoSecondSvg", { enumerable: true, get: function () { return InfoSecondSvg_1.InfoSecondSvg; } });
|
|
280
|
+
var FireSvg_1 = require("components/ui/Icons/FireSvg");
|
|
281
|
+
Object.defineProperty(exports, "FireSvg", { enumerable: true, get: function () { return FireSvg_1.FireSvg; } });
|
|
277
282
|
//Loyalty SVGs
|
|
278
283
|
var BronzeSvg_1 = require("./components/ui/Icons/Bonuses/VipClub/BronzeSvg");
|
|
279
284
|
Object.defineProperty(exports, "BronzeSvg", { enumerable: true, get: function () { return BronzeSvg_1.BronzeSvg; } });
|
package/dist/main.css
CHANGED
|
@@ -7115,6 +7115,53 @@
|
|
|
7115
7115
|
.KIT__JackpotWidget-module__marginL___xUqkQ:first-child {
|
|
7116
7116
|
margin-left: 0;
|
|
7117
7117
|
}
|
|
7118
|
+
.KIT__Presets-module__wrapperPresets___ZRbpS {
|
|
7119
|
+
display: grid;
|
|
7120
|
+
grid-template-columns: repeat(3, 1fr);
|
|
7121
|
+
grid-gap: var(--indent-xs);
|
|
7122
|
+
gap: var(--indent-xs);
|
|
7123
|
+
margin-bottom: var(--indent-m);
|
|
7124
|
+
}
|
|
7125
|
+
|
|
7126
|
+
.KIT__Presets-module__preset___DtdS0 {
|
|
7127
|
+
height: 42px;
|
|
7128
|
+
display: flex;
|
|
7129
|
+
justify-content: center;
|
|
7130
|
+
align-items: center;
|
|
7131
|
+
border-radius: var(--border-m);
|
|
7132
|
+
color: var(--presets-preset-color);
|
|
7133
|
+
font-size: 0.75rem;
|
|
7134
|
+
font-weight: 700;
|
|
7135
|
+
background-color: var(--preset-background);
|
|
7136
|
+
position: relative;
|
|
7137
|
+
}
|
|
7138
|
+
|
|
7139
|
+
.KIT__Presets-module__active___Q4LWd {
|
|
7140
|
+
color: var(--presets-active-color);
|
|
7141
|
+
border-color: var(--presets-active-border-color);
|
|
7142
|
+
background-color: var(--presets-active-background-color);
|
|
7143
|
+
}
|
|
7144
|
+
|
|
7145
|
+
.KIT__Presets-module__promoValuePercent___wcxX8 {
|
|
7146
|
+
position: absolute;
|
|
7147
|
+
right: 0;
|
|
7148
|
+
top: 0;
|
|
7149
|
+
|
|
7150
|
+
background-color: var(--presets-promo-value-percent-background);
|
|
7151
|
+
color: var(--presets-promo-value-percent-color);
|
|
7152
|
+
|
|
7153
|
+
display: flex;
|
|
7154
|
+
align-items: center;
|
|
7155
|
+
justify-content: center;
|
|
7156
|
+
width: 40px;
|
|
7157
|
+
height: 14px;
|
|
7158
|
+
gap: 2px;
|
|
7159
|
+
padding: 0 4px;
|
|
7160
|
+
border-radius: 0 var(--border-m) 0 var(--border-s);
|
|
7161
|
+
font-size: 8px;
|
|
7162
|
+
font-weight: 700;
|
|
7163
|
+
}
|
|
7164
|
+
|
|
7118
7165
|
|
|
7119
7166
|
.KIT__Icons-module__fsWinCashFill___cQ6iY path {
|
|
7120
7167
|
fill:rgb(0,0,0)
|