@everymatrix/casino-engagement-suite-luckywheel-list 1.56.2 → 1.57.0
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/casino-engagement-suite-luckywheel-list/casino-engagement-suite-luckywheel-list.esm.js +1 -1
- package/dist/casino-engagement-suite-luckywheel-list/index.esm.js +1 -1
- package/dist/casino-engagement-suite-luckywheel-list/{p-bfe195ea.entry.js → p-19bf678d.entry.js} +1 -1
- package/dist/casino-engagement-suite-luckywheel-list/p-89bbc8c4.js +15 -0
- package/dist/cjs/{casino-engagement-suite-luckywheel-list-f932b388.js → casino-engagement-suite-luckywheel-list-660f479c.js} +65 -29
- package/dist/cjs/casino-engagement-suite-luckywheel-list_2.cjs.entry.js +1 -1
- package/dist/cjs/index.cjs.js +1 -1
- package/dist/collection/components/casino-engagement-suite-luckywheel-list/casino-engagement-suite-luckywheel-list.js +28 -17
- package/dist/collection/components/casino-engagement-suite-luckywheel-list/casino-engagement-suite-luckywheel-list.stories.js +42 -0
- package/dist/collection/renders/LuckyWheelsHistory.js +7 -8
- package/dist/esm/{casino-engagement-suite-luckywheel-list-4e9fb36c.js → casino-engagement-suite-luckywheel-list-a950eff2.js} +65 -29
- package/dist/esm/casino-engagement-suite-luckywheel-list_2.entry.js +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/storybook/main.js +47 -0
- package/dist/storybook/preview.js +9 -0
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/casino-engagement-suite-luckywheel-list/.stencil/libs/common/src/storybook/storybook-utils.d.ts +39 -0
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/casino-engagement-suite-luckywheel-list/.stencil/packages/stencil/casino-engagement-suite-luckywheel-list/storybook/main.d.ts +3 -0
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/casino-engagement-suite-luckywheel-list/.stencil/packages/stencil/casino-engagement-suite-luckywheel-list/storybook/preview.d.ts +70 -0
- package/dist/types/components/casino-engagement-suite-luckywheel-list/casino-engagement-suite-luckywheel-list.d.ts +2 -3
- package/dist/types/components/casino-engagement-suite-luckywheel-list/casino-engagement-suite-luckywheel-list.stories.d.ts +5 -0
- package/dist/types/components.d.ts +2 -2
- package/dist/types/models/luckywheel.d.ts +16 -16
- package/package.json +1 -1
- package/dist/casino-engagement-suite-luckywheel-list/p-d338274b.js +0 -1
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
import { h as h$1, r as registerInstance, c as createEvent, g as getElement } from './index-8671bc92.js';
|
|
2
2
|
|
|
3
|
+
/*! *****************************************************************************
|
|
4
|
+
Copyright (c) Microsoft Corporation.
|
|
5
|
+
|
|
6
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
7
|
+
purpose with or without fee is hereby granted.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
10
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
11
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
12
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
13
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
14
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
15
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
16
|
+
***************************************************************************** */
|
|
17
|
+
|
|
18
|
+
function __rest(s, e) {
|
|
19
|
+
var t = {};
|
|
20
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
21
|
+
t[p] = s[p];
|
|
22
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
23
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
24
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
25
|
+
t[p[i]] = s[p[i]];
|
|
26
|
+
}
|
|
27
|
+
return t;
|
|
28
|
+
}
|
|
29
|
+
|
|
3
30
|
const DEFAULT_LANGUAGE = 'en';
|
|
4
31
|
const SUPPORTED_LANGUAGES = ['en'];
|
|
5
32
|
const TRANSLATIONS = {
|
|
@@ -2793,12 +2820,12 @@ const getHistoryLoaderTemplate = (lang) => {
|
|
|
2793
2820
|
};
|
|
2794
2821
|
const getRewards = (luckywheel, result) => {
|
|
2795
2822
|
var _a, _b, _c, _d;
|
|
2796
|
-
const index = result.
|
|
2797
|
-
const name = (_b = (_a = luckywheel.
|
|
2823
|
+
const index = result.WheelOfFortunePartitionIndex || 0;
|
|
2824
|
+
const name = (_b = (_a = luckywheel.Program.WheelOfFortune) === null || _a === void 0 ? void 0 : _a.Partitions[index]) === null || _b === void 0 ? void 0 : _b.Name;
|
|
2798
2825
|
const displayName = name['en'] || name['*'];
|
|
2799
|
-
const assets = (_d = (_c = luckywheel.
|
|
2826
|
+
const assets = (_d = (_c = luckywheel.Program.WheelOfFortune) === null || _c === void 0 ? void 0 : _c.Partitions[index]) === null || _d === void 0 ? void 0 : _d.Image1;
|
|
2800
2827
|
const displayAssets = assets['en'] || assets['*'];
|
|
2801
|
-
const programName = luckywheel.
|
|
2828
|
+
const programName = luckywheel.Program.Name['en'] || luckywheel.Program.Name['*'];
|
|
2802
2829
|
return h$1("div", { class: "HistoryRewards" }, displayName ? displayName : displayAssets ? (h$1("img", { src: displayAssets })) : programName);
|
|
2803
2830
|
};
|
|
2804
2831
|
const getStatus = (state) => {
|
|
@@ -2809,18 +2836,17 @@ const getLuckyWheelsHistoryTemplate = (luckywheels, historyGroups, openedHistory
|
|
|
2809
2836
|
return h$1("p", { class: "HistoryEmptyMessage" }, translate('noHistory', lang));
|
|
2810
2837
|
}
|
|
2811
2838
|
return h$1("div", { class: "HistoryList" }, luckywheels.map((luckywheel) => {
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2839
|
+
var _a;
|
|
2840
|
+
return h$1("div", { key: luckywheel.Program.Id, class: `HistoryListItem ${openedHistoryIds.includes(luckywheel.Program.Id) ? 'Opened' : 'Closed'}` },
|
|
2841
|
+
h$1("header", { class: "HistoryListItemHeader", "data-id": luckywheel.Program.Id, onClick: toggleLuckyWheelHistory },
|
|
2842
|
+
luckywheel.Program.Name['en'] || luckywheel.Program.Name['*'],
|
|
2815
2843
|
h$1("button", { class: "EngagementSuiteIconButton ArrowDown" })),
|
|
2816
2844
|
h$1("div", { class: "HistoryListItemBody" },
|
|
2817
|
-
h$1("div", { class: "HistoryInfoRow" },
|
|
2818
|
-
return
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
h$1("div", { class: "HistoryCol Time" }, format(new Date(history.draw.time), 'LLL d, yyyy HH:mm:ss')));
|
|
2823
|
-
});
|
|
2845
|
+
h$1("div", { class: "HistoryInfoRow" }, (_a = historyGroups[luckywheel.Program.Id]) === null || _a === void 0 ? void 0 : _a.map((history) => {
|
|
2846
|
+
return (h$1("div", { class: "HistoryInfo" },
|
|
2847
|
+
h$1("div", { class: "HistoryCol Rewards" }, getRewards(luckywheel, history.Draw.Result)),
|
|
2848
|
+
h$1("div", { class: "HistoryCol Issued" }, getStatus(history.Draw.State)),
|
|
2849
|
+
h$1("div", { class: "HistoryCol Time" }, format(new Date(history.Draw.Time), 'LLL d, yyyy HH:mm:ss'))));
|
|
2824
2850
|
}))));
|
|
2825
2851
|
}));
|
|
2826
2852
|
};
|
|
@@ -2899,14 +2925,19 @@ const CasinoEngagementSuiteLuckyWheelList = class {
|
|
|
2899
2925
|
this.isLoading = false;
|
|
2900
2926
|
}
|
|
2901
2927
|
handleEvent(e) {
|
|
2902
|
-
|
|
2928
|
+
var _a;
|
|
2929
|
+
const _b = e === null || e === void 0 ? void 0 : e.data, { type } = _b, rest = __rest(_b, ["type"]);
|
|
2903
2930
|
if (type === 'BarLuckyWheelsClick') {
|
|
2904
2931
|
this.activeTab = 1;
|
|
2905
2932
|
this.openedHistoryIds = [];
|
|
2906
2933
|
}
|
|
2907
2934
|
if (type === 'LuckywheelHistoryResponse') {
|
|
2908
2935
|
this.openedHistoryIds = [];
|
|
2909
|
-
|
|
2936
|
+
const items = rest.data;
|
|
2937
|
+
if (items.length > 0) {
|
|
2938
|
+
const id = (_a = items[0].Draw) === null || _a === void 0 ? void 0 : _a.LotteryProgramID;
|
|
2939
|
+
this.luckywheelHistory[id] = items;
|
|
2940
|
+
}
|
|
2910
2941
|
this.historyLoading = false;
|
|
2911
2942
|
}
|
|
2912
2943
|
}
|
|
@@ -2946,11 +2977,11 @@ const CasinoEngagementSuiteLuckyWheelList = class {
|
|
|
2946
2977
|
const now = new Date().getTime();
|
|
2947
2978
|
this.timers = this.luckyWheels.reduce((acc, luckywheel) => {
|
|
2948
2979
|
var _a;
|
|
2949
|
-
const expirationDate = new Date((_a = luckywheel.
|
|
2980
|
+
const expirationDate = new Date((_a = luckywheel.Current) === null || _a === void 0 ? void 0 : _a.EndTime).getTime();
|
|
2950
2981
|
const diff = expirationDate - now;
|
|
2951
2982
|
let countdown = '00h:00m:00s';
|
|
2952
2983
|
if (diff < 1) {
|
|
2953
|
-
this.removeLuckyWheel(luckywheel.
|
|
2984
|
+
this.removeLuckyWheel(luckywheel.Program.Id);
|
|
2954
2985
|
}
|
|
2955
2986
|
else {
|
|
2956
2987
|
const { days, hours, minutes, seconds } = {
|
|
@@ -2963,38 +2994,43 @@ const CasinoEngagementSuiteLuckyWheelList = class {
|
|
|
2963
2994
|
? `${hours}h:${minutes}m:${seconds}s`
|
|
2964
2995
|
: `${days}d:${hours}h:${minutes}m`;
|
|
2965
2996
|
}
|
|
2966
|
-
return Object.assign(Object.assign({}, acc), { [luckywheel.
|
|
2997
|
+
return Object.assign(Object.assign({}, acc), { [luckywheel.Program.Id]: countdown });
|
|
2967
2998
|
}, {});
|
|
2968
2999
|
}
|
|
2969
3000
|
removeLuckyWheel(id) {
|
|
2970
|
-
this.luckyWheels = this.luckyWheels.filter((luckywheel) => luckywheel.
|
|
3001
|
+
this.luckyWheels = this.luckyWheels.filter((luckywheel) => luckywheel.Program.Id !== id);
|
|
2971
3002
|
window.postMessage({ type: 'LuckyWheelHasExpired', id });
|
|
2972
3003
|
}
|
|
2973
3004
|
sendHistoryRequest() {
|
|
2974
3005
|
this.historyLoading = true;
|
|
2975
|
-
|
|
2976
|
-
|
|
3006
|
+
this.luckyWheels.forEach((luckyWheel) => {
|
|
3007
|
+
window.postMessage({
|
|
3008
|
+
type: 'LuckywheelHistoryRequest',
|
|
3009
|
+
data: {
|
|
3010
|
+
lotteryProgramID: luckyWheel.Program.Id,
|
|
3011
|
+
}
|
|
3012
|
+
});
|
|
2977
3013
|
});
|
|
2978
3014
|
}
|
|
2979
3015
|
getLuckyWheelClasses(luckyWheel) {
|
|
2980
3016
|
return {
|
|
2981
3017
|
LuckyWheelsCard: true,
|
|
2982
|
-
LuckyWheelsEmptyNumber: luckyWheel.
|
|
3018
|
+
LuckyWheelsEmptyNumber: luckyWheel.Current.RemainingTimes === 0
|
|
2983
3019
|
};
|
|
2984
3020
|
}
|
|
2985
3021
|
getLuckyWheelName(luckywheel) {
|
|
2986
3022
|
var _a, _b;
|
|
2987
|
-
return ((_a = luckywheel.
|
|
3023
|
+
return ((_a = luckywheel.Program) === null || _a === void 0 ? void 0 : _a.Name['en']) || ((_b = luckywheel.Program) === null || _b === void 0 ? void 0 : _b.Name['*']);
|
|
2988
3024
|
}
|
|
2989
3025
|
getLuckyWheelHeaderTemplate(luckywheel) {
|
|
2990
3026
|
var _a, _b;
|
|
2991
|
-
return (h$1("div", { class: "LuckyWheelsCardHeader" }, h$1("div", { class: `LuckyWheelsName` }, this.getLuckyWheelName(luckywheel)), (h$1("div", { class: "LuckyWheelsCounter" }, h$1("div", { class: `${((_a = luckywheel.
|
|
3027
|
+
return (h$1("div", { class: "LuckyWheelsCardHeader" }, h$1("div", { class: `LuckyWheelsName` }, this.getLuckyWheelName(luckywheel)), (h$1("div", { class: "LuckyWheelsCounter" }, h$1("div", { class: `${((_a = luckywheel.Current) === null || _a === void 0 ? void 0 : _a.RemainingTimes) ? 'LuckyWheelsHighlightedCounter' : 'LuckyWheelsEmptyCounter'}` }, (_b = luckywheel.Current) === null || _b === void 0 ? void 0 : _b.RemainingTimes)))));
|
|
2992
3028
|
}
|
|
2993
3029
|
getLuckyWheelTemplate(luckywheel, index) {
|
|
2994
|
-
const countdown = this.timers[luckywheel.
|
|
3030
|
+
const countdown = this.timers[luckywheel.Program.Id];
|
|
2995
3031
|
//TODO: canceled status
|
|
2996
|
-
const isCanceled = luckywheel.
|
|
2997
|
-
return (h$1("div", { class: this.getLuckyWheelClasses(luckywheel), onClick: this.handleLuckyWheelClick, key: luckywheel.
|
|
3032
|
+
const isCanceled = luckywheel.Current.RemainingTimes === 0;
|
|
3033
|
+
return (h$1("div", { class: this.getLuckyWheelClasses(luckywheel), onClick: this.handleLuckyWheelClick, key: luckywheel.Program.Id, "data-id": luckywheel.Program.Id, "data-index": index }, this.getLuckyWheelHeaderTemplate(luckywheel), isCanceled ? (h$1("div", { class: "ForfeitedMessage" }, h$1("div", null, translate('canceled', this.language)), h$1("div", null, translate('support', this.language)))) : (h$1("div", { class: "LuckyWheelsCountdownWrapper" }, h$1("span", { class: "LuckyWheelsCountdown" }, countdown)))));
|
|
2998
3034
|
}
|
|
2999
3035
|
getHeaderTemplate() {
|
|
3000
3036
|
return h$1("header", { class: "LuckyWheelsListPopupHeader" }, h$1("button", { onClick: this.showTooltip, class: "EngagementSuiteIconButton Help" }), h$1("div", { class: "LuckyWheelsListPopupHeaderName" }, translate('luckyWheel', this.language)), h$1("button", { class: "EngagementSuiteIconButton Close", onClick: this.handleCloseClick }));
|
|
@@ -3032,7 +3068,7 @@ const CasinoEngagementSuiteLuckyWheelList = class {
|
|
|
3032
3068
|
: this.getHistoryTabTemplate();
|
|
3033
3069
|
}
|
|
3034
3070
|
render() {
|
|
3035
|
-
return h$1("div", { key: '
|
|
3071
|
+
return h$1("div", { key: 'b640229fe6feea73f03ee6ce4a2e80e269240780', class: `LuckyWheelsListPopup ${this.device}` }, this.getHeaderTemplate(), this.getTabsTemplate(), this.getTabsContentTemplate(), this.getTooltipTemplate());
|
|
3036
3072
|
}
|
|
3037
3073
|
get host() { return getElement(this); }
|
|
3038
3074
|
static get watchers() { return {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { C as casino_engagement_suite_luckywheel_list } from './casino-engagement-suite-luckywheel-list-
|
|
1
|
+
export { C as casino_engagement_suite_luckywheel_list } from './casino-engagement-suite-luckywheel-list-a950eff2.js';
|
|
2
2
|
import { r as registerInstance, h, g as getElement } from './index-8671bc92.js';
|
|
3
3
|
|
|
4
4
|
const casinoEngagementSuiteProgressBarCss = ":host{display:block;font-family:inherit}:host(.Desktop) .ProgressBarPercent{font-size:var(--emw--font-size-small, 14px);line-height:14px}@keyframes indeterminate{0%{left:-200%;right:100%}60%{left:110%;right:-10%}to{left:110%;right:-10%}}.ProgressBarBackground{height:8px;background-color:var(--emw--color-gray-300, #666178);border-radius:var(--emw--border-radius-small, 4px);position:relative;overflow:hidden}.ProgressBarLine{position:absolute;left:0;top:0;bottom:0;border-radius:var(--emw--border-radius-small, 4px);background:var(--emw--engagement-suite-gradient-button, linear-gradient(98.25deg, #FF9400 22.48%, #FEF746 131.02%, #FFE24A 131.9%));transition:width ease-out 0.3s}.ProgressBarLine.Indeterminate{animation:indeterminate 1s linear infinite}.ProgressBarInfo{margin-bottom:8px;display:flex;justify-content:space-between;align-items:center}.ProgressBarPercent{font-weight:var(--emw--font-weight-bold, 700);font-size:var(--emw--font-size-x-small, 12px);line-height:12px}.HidePercent .ProgressBarPercent{display:none}.ProgressBar:not(.Disabled) .ProgressBarPercent{background:var(--emw--engagement-suite-gradient-button, linear-gradient(98.25deg, #FF9400 22.48%, #FEF746 131.02%, #FFE24A 131.9%));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}.ProgressBar.Disabled .ProgressBarPercent{color:var(--emw--color-gray-300, #666178)}.ProgressBar.Disabled .ProgressBarLine{background:var(--emw--color-background-secondary, #474668)}";
|
package/dist/esm/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { C as CasinoEngagementSuiteLuckyWheelList } from './casino-engagement-suite-luckywheel-list-
|
|
1
|
+
export { C as CasinoEngagementSuiteLuckyWheelList } from './casino-engagement-suite-luckywheel-list-a950eff2.js';
|
|
2
2
|
import './index-8671bc92.js';
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import path from "path";
|
|
2
|
+
import { getStoryFiles, detectUsedPackages, parseTsConfig, exec, filterParsedPathsByUsedPackages } from "../../../../libs/common/src/storybook/storybook-utils";
|
|
3
|
+
const config = {
|
|
4
|
+
stories: ['../**/*.@(mdx|stories.@(js|ts|tsx))'],
|
|
5
|
+
addons: [
|
|
6
|
+
'@storybook/addon-essentials',
|
|
7
|
+
'@storybook/addon-interactions',
|
|
8
|
+
'storybook-dark-mode'
|
|
9
|
+
],
|
|
10
|
+
docs: {
|
|
11
|
+
defaultName: 'Documentation',
|
|
12
|
+
autodocs: 'tag'
|
|
13
|
+
},
|
|
14
|
+
framework: {
|
|
15
|
+
name: '@storybook/web-components-vite',
|
|
16
|
+
options: {}
|
|
17
|
+
},
|
|
18
|
+
// Async viteFinal to build dependent packages before finalizing configuration.
|
|
19
|
+
viteFinal: async (config) => {
|
|
20
|
+
const storyFiles = getStoryFiles(path.resolve(__dirname, '../'));
|
|
21
|
+
const usedPackages = detectUsedPackages(storyFiles);
|
|
22
|
+
const buildPromises = usedPackages.map(async (pkg) => {
|
|
23
|
+
try {
|
|
24
|
+
console.log(`Building package ${pkg}...`);
|
|
25
|
+
const { stdout, stderr } = await exec(`nx run ${pkg}:build`);
|
|
26
|
+
console.log(`Built package ${pkg}: ${stdout}`);
|
|
27
|
+
if (stderr) {
|
|
28
|
+
console.error(`Build warning/error for package ${pkg}: ${stderr}`);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
catch (error) {
|
|
32
|
+
console.error(`Error building package ${pkg}:`, error);
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
await Promise.all(buildPromises);
|
|
36
|
+
const parsedPaths = parseTsConfig() || {};
|
|
37
|
+
const filteredParsedPaths = filterParsedPathsByUsedPackages(parsedPaths, usedPackages);
|
|
38
|
+
return Object.assign(Object.assign({}, config), { resolve: {
|
|
39
|
+
alias: Object.assign({}, filteredParsedPaths)
|
|
40
|
+
}, define: {
|
|
41
|
+
process: {
|
|
42
|
+
env: {}
|
|
43
|
+
}
|
|
44
|
+
} });
|
|
45
|
+
}
|
|
46
|
+
};
|
|
47
|
+
export default config;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { themes } from "@storybook/theming";
|
|
2
|
+
export const parameters = {
|
|
3
|
+
darkMode: {
|
|
4
|
+
dark: Object.assign(Object.assign({}, themes.dark), { appBg: 'black' }),
|
|
5
|
+
light: Object.assign(Object.assign({}, themes.normal), { appBg: 'green' }),
|
|
6
|
+
current: 'light',
|
|
7
|
+
stylePreview: true
|
|
8
|
+
}
|
|
9
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import { exec as execCallback } from 'child_process';
|
|
3
|
+
export declare const exec: typeof execCallback.__promisify__;
|
|
4
|
+
/**
|
|
5
|
+
* Recursively retrieves all story files (.stories.ts/.stories.tsx) in a directory.
|
|
6
|
+
* @param dir The directory to search.
|
|
7
|
+
* @returns Array of story file paths.
|
|
8
|
+
*/
|
|
9
|
+
export declare const getStoryFiles: (dir: string) => string[];
|
|
10
|
+
/**
|
|
11
|
+
* Detects which internal packages are used in the provided story files.
|
|
12
|
+
* It looks at every import that starts with the given package alias prefix,
|
|
13
|
+
* then extracts the package name (the segment immediately following the prefix).
|
|
14
|
+
*
|
|
15
|
+
* @param stories Array of story file paths.
|
|
16
|
+
* @returns Array of unique package names (e.g. ['foo', 'bar']).
|
|
17
|
+
*/
|
|
18
|
+
export declare const detectUsedPackages: (stories: string[]) => string[];
|
|
19
|
+
/**
|
|
20
|
+
* Extracts all import paths from a file using the TypeScript compiler API.
|
|
21
|
+
* @param filePath The file path to parse.
|
|
22
|
+
* @returns Array of import strings.
|
|
23
|
+
*/
|
|
24
|
+
export declare const extractImports: (filePath: string) => string[];
|
|
25
|
+
/**
|
|
26
|
+
* Parses the tsconfig paths and resolves them to absolute paths.
|
|
27
|
+
* @param tsconfigPath The path to the tsconfig file.
|
|
28
|
+
* @returns An object mapping alias keys to absolute paths.
|
|
29
|
+
*/
|
|
30
|
+
export declare const parseTsConfig: () => Record<string, string> | null;
|
|
31
|
+
/**
|
|
32
|
+
* Filters the parsed tsconfig alias mapping to only include keys that correspond
|
|
33
|
+
* to the used packages.
|
|
34
|
+
*
|
|
35
|
+
* @param parsedPaths The full alias mapping from tsconfig.
|
|
36
|
+
* @param usedPackages Array of package names that are used (e.g. ['foo', 'bar']).
|
|
37
|
+
* @returns Filtered alias mapping.
|
|
38
|
+
*/
|
|
39
|
+
export declare const filterParsedPathsByUsedPackages: (parsedPaths: Record<string, string>, usedPackages: string[]) => Record<string, string>;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
export declare const parameters: {
|
|
2
|
+
darkMode: {
|
|
3
|
+
dark: {
|
|
4
|
+
appBg: string;
|
|
5
|
+
base: "light" | "dark";
|
|
6
|
+
colorPrimary: string;
|
|
7
|
+
colorSecondary: string;
|
|
8
|
+
appContentBg: string;
|
|
9
|
+
appPreviewBg: string;
|
|
10
|
+
appBorderColor: string;
|
|
11
|
+
appBorderRadius: number;
|
|
12
|
+
fontBase: string;
|
|
13
|
+
fontCode: string;
|
|
14
|
+
textColor: string;
|
|
15
|
+
textInverseColor: string;
|
|
16
|
+
textMutedColor: string;
|
|
17
|
+
barTextColor: string;
|
|
18
|
+
barHoverColor: string;
|
|
19
|
+
barSelectedColor: string;
|
|
20
|
+
barBg: string;
|
|
21
|
+
buttonBg: string;
|
|
22
|
+
buttonBorder: string;
|
|
23
|
+
booleanBg: string;
|
|
24
|
+
booleanSelectedBg: string;
|
|
25
|
+
inputBg: string;
|
|
26
|
+
inputBorder: string;
|
|
27
|
+
inputTextColor: string;
|
|
28
|
+
inputBorderRadius: number;
|
|
29
|
+
brandTitle?: string;
|
|
30
|
+
brandUrl?: string;
|
|
31
|
+
brandImage?: string;
|
|
32
|
+
brandTarget?: string;
|
|
33
|
+
gridCellSize?: number;
|
|
34
|
+
};
|
|
35
|
+
light: {
|
|
36
|
+
appBg: string;
|
|
37
|
+
base: "light" | "dark";
|
|
38
|
+
colorPrimary: string;
|
|
39
|
+
colorSecondary: string;
|
|
40
|
+
appContentBg: string;
|
|
41
|
+
appPreviewBg: string;
|
|
42
|
+
appBorderColor: string;
|
|
43
|
+
appBorderRadius: number;
|
|
44
|
+
fontBase: string;
|
|
45
|
+
fontCode: string;
|
|
46
|
+
textColor: string;
|
|
47
|
+
textInverseColor: string;
|
|
48
|
+
textMutedColor: string;
|
|
49
|
+
barTextColor: string;
|
|
50
|
+
barHoverColor: string;
|
|
51
|
+
barSelectedColor: string;
|
|
52
|
+
barBg: string;
|
|
53
|
+
buttonBg: string;
|
|
54
|
+
buttonBorder: string;
|
|
55
|
+
booleanBg: string;
|
|
56
|
+
booleanSelectedBg: string;
|
|
57
|
+
inputBg: string;
|
|
58
|
+
inputBorder: string;
|
|
59
|
+
inputTextColor: string;
|
|
60
|
+
inputBorderRadius: number;
|
|
61
|
+
brandTitle?: string;
|
|
62
|
+
brandUrl?: string;
|
|
63
|
+
brandImage?: string;
|
|
64
|
+
brandTarget?: string;
|
|
65
|
+
gridCellSize?: number;
|
|
66
|
+
};
|
|
67
|
+
current: string;
|
|
68
|
+
stylePreview: boolean;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '../../stencil-public-runtime';
|
|
2
2
|
import "../../../../../../dist/packages/stencil/casino-engagement-suite-progress-bar/dist/types/index";
|
|
3
3
|
import "../../../../../../dist/packages/svelte/general-animation-loading/esnext/general-animation-loading";
|
|
4
|
-
import { LuckyWheel } from '../../
|
|
5
|
-
import { LuckyWheelHistory } from '../../models/luckywheel';
|
|
4
|
+
import { LuckyWheel, LuckyWheelHistory } from '../../models/luckywheel';
|
|
6
5
|
export declare class CasinoEngagementSuiteLuckyWheelList {
|
|
7
6
|
/**
|
|
8
7
|
* Client custom styling via string
|
|
@@ -61,7 +60,7 @@ export declare class CasinoEngagementSuiteLuckyWheelList {
|
|
|
61
60
|
LuckyWheelsCard: boolean;
|
|
62
61
|
LuckyWheelsEmptyNumber: boolean;
|
|
63
62
|
};
|
|
64
|
-
getLuckyWheelName(luckywheel: LuckyWheel):
|
|
63
|
+
getLuckyWheelName(luckywheel: LuckyWheel): string;
|
|
65
64
|
getLuckyWheelHeaderTemplate(luckywheel: LuckyWheel): any;
|
|
66
65
|
getLuckyWheelTemplate(luckywheel: LuckyWheel, index: number): any;
|
|
67
66
|
getHeaderTemplate(): any;
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* It contains typing information for all components that exist in this project.
|
|
6
6
|
*/
|
|
7
7
|
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
|
8
|
-
import {
|
|
9
|
-
export {
|
|
8
|
+
import { LuckyWheel } from "./models/luckywheel";
|
|
9
|
+
export { LuckyWheel } from "./models/luckywheel";
|
|
10
10
|
export namespace Components {
|
|
11
11
|
interface CasinoEngagementSuiteLuckywheelList {
|
|
12
12
|
/**
|
|
@@ -11,31 +11,31 @@ export declare enum LuckyWheelHistoryLevelStatus {
|
|
|
11
11
|
Forfeited = 2
|
|
12
12
|
}
|
|
13
13
|
export interface LuckyWheelHistory {
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
Draw: any;
|
|
15
|
+
Ticket: string;
|
|
16
16
|
}
|
|
17
17
|
export interface Reward {
|
|
18
18
|
RewardId: number;
|
|
19
19
|
Type: number;
|
|
20
20
|
}
|
|
21
21
|
export interface LuckyWheel {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
Program: LuckyWheelProgram;
|
|
23
|
+
Current?: Record<string, string | number>;
|
|
24
|
+
Next?: Record<string, string | number>;
|
|
25
25
|
}
|
|
26
26
|
export interface LuckyWheelProgram {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
27
|
+
BaseCurrency: string;
|
|
28
|
+
Editor: string;
|
|
29
|
+
Id: string;
|
|
30
|
+
Metadata: Record<string, string>;
|
|
31
|
+
Name: Record<string, string>;
|
|
32
|
+
Status: string;
|
|
33
|
+
Time: string;
|
|
34
|
+
Type: string;
|
|
35
|
+
Version: string;
|
|
36
36
|
[key: string]: any;
|
|
37
37
|
}
|
|
38
38
|
export interface LuckyWheelHistoryResult {
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
Outcomes: Array<any>;
|
|
40
|
+
WheelOfFortunePartitionIndex: number;
|
|
41
41
|
}
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{h as e,r as t,c as n,g as i}from"./p-b1637276.js";const r=["en"],o={en:{luckywheels:"LuckyWheels",join:"Join",unjoin:"Unjoin",new:"new",noluckywheels:"No Unlocked LuckyWheel",tryOtherGames:"Try winning LuckyWheel as rewards or launching other booster games",tooltip:"LuckyWheels where your real money bets contribute towards the level progress to achieve the level reward",history:"History",rewards:"Rewards",issued:"Issued",time:"Time",loading:"Loading...",noHistory:"No LuckyWheels’ history available (last 30 days)",freeSpins:"Free Spins",luckyWheel:"LuckyWheel",leaderboard:"Leaderboard",mission:"Mission",canceled:"The luckywheel has been canceled.",support:"Please, contact support."}},s=(e,t)=>{const n=t;return o[void 0!==n&&r.includes(n)?n:"en"][e]};function a(){}function u(e){return e()}function l(){return Object.create(null)}function c(e){e.forEach(u)}function d(e){return"function"==typeof e}function h(e,t){return e!=e?t==t:e!==t||e&&"object"==typeof e||"function"==typeof e}function p(e,t,n){e.insertBefore(t,n||null)}function f(e){e.parentNode&&e.parentNode.removeChild(e)}function m(e){return document.createElement(e)}let y;function g(e){y=e}const w=[],v=[];let b=[];const x=[],L=Promise.resolve();let k=!1;function W(e){b.push(e)}const H=new Set;let E=0;function S(){if(0!==E)return;const e=y;do{try{for(;E<w.length;){const e=w[E];E++,g(e),P(e.$$)}}catch(e){throw w.length=0,E=0,e}for(g(null),w.length=0,E=0;v.length;)v.pop()();for(let e=0;e<b.length;e+=1){const t=b[e];H.has(t)||(H.add(t),t())}b.length=0}while(w.length);for(;x.length;)x.pop()();k=!1,H.clear(),g(e)}function P(e){if(null!==e.fragment){e.update(),c(e.before_update);const t=e.dirty;e.dirty=[-1],e.fragment&&e.fragment.p(e.ctx,t),e.after_update.forEach(W)}}const T=new Set;function M(e,t,n,i,r,o,s=null,h=[-1]){const p=y;g(e);const m=e.$$={fragment:null,ctx:[],props:o,update:a,not_equal:r,bound:l(),on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(t.context||(p?p.$$.context:[])),callbacks:l(),dirty:h,skip_bound:!1,root:t.target||p.$$.root};s&&s(m.root);let v=!1;if(m.ctx=n?n(e,t.props||{},((t,n,...i)=>{const o=i.length?i[0]:n;return m.ctx&&r(m.ctx[t],m.ctx[t]=o)&&(!m.skip_bound&&m.bound[t]&&m.bound[t](o),v&&function(e,t){-1===e.$$.dirty[0]&&(w.push(e),k||(k=!0,L.then(S)),e.$$.dirty.fill(0)),e.$$.dirty[t/31|0]|=1<<t%31}(e,t)),n})):[],m.update(),v=!0,c(m.before_update),m.fragment=!!i&&i(m.ctx),t.target){if(t.hydrate){const e=function(e){return Array.from(e.childNodes)}(t.target);m.fragment&&m.fragment.l(e),e.forEach(f)}else m.fragment&&m.fragment.c();t.intro&&function(e){e&&e.i&&(T.delete(e),e.i(void 0))}(e.$$.fragment),function(e,t,n){const{fragment:i,after_update:r}=e.$$;i&&i.m(t,n),W((()=>{const t=e.$$.on_mount.map(u).filter(d);e.$$.on_destroy?e.$$.on_destroy.push(...t):c(t),e.$$.on_mount=[]})),r.forEach(W)}(e,t.target,t.anchor),S()}g(p)}let C;function I(e,t,n,i){const r=n[e]?.type;if(t="Boolean"===r&&"boolean"!=typeof t?null!=t:t,!i||!n[e])return t;if("toAttribute"===i)switch(r){case"Object":case"Array":return null==t?null:JSON.stringify(t);case"Boolean":return t?"":null;case"Number":return t??null;default:return t}else switch(r){case"Object":case"Array":return t&&JSON.parse(t);case"Boolean":default:return t;case"Number":return null!=t?+t:t}}"function"==typeof HTMLElement&&(C=class extends HTMLElement{$$ctor;$$s;$$c;$$cn=!1;$$d={};$$r=!1;$$p_d={};$$l={};$$l_u=new Map;constructor(e,t,n){super(),this.$$ctor=e,this.$$s=t,n&&this.attachShadow({mode:"open"})}addEventListener(e,t,n){if(this.$$l[e]=this.$$l[e]||[],this.$$l[e].push(t),this.$$c){const n=this.$$c.$on(e,t);this.$$l_u.set(t,n)}super.addEventListener(e,t,n)}removeEventListener(e,t,n){if(super.removeEventListener(e,t,n),this.$$c){const e=this.$$l_u.get(t);e&&(e(),this.$$l_u.delete(t))}}async connectedCallback(){if(this.$$cn=!0,!this.$$c){let e=function(e){return()=>{let t;return{c:function(){t=m("slot"),"default"!==e&&function(e,t,n){null==n?e.removeAttribute(t):e.getAttribute(t)!==n&&e.setAttribute(t,n)}(t,"name",e)},m:function(e,n){p(e,t,n)},d:function(e){e&&f(t)}}}};if(await Promise.resolve(),!this.$$cn||this.$$c)return;const t={},n=function(e){const t={};return e.childNodes.forEach((e=>{t[e.slot||"default"]=!0})),t}(this);for(const i of this.$$s)i in n&&(t[i]=[e(i)]);for(const e of this.attributes){const t=this.$$g_p(e.name);t in this.$$d||(this.$$d[t]=I(t,e.value,this.$$p_d,"toProp"))}for(const e in this.$$p_d)!(e in this.$$d)&&void 0!==this[e]&&(this.$$d[e]=this[e],delete this[e]);this.$$c=new this.$$ctor({target:this.shadowRoot||this,props:{...this.$$d,$$slots:t,$$scope:{ctx:[]}}});const i=()=>{this.$$r=!0;for(const e in this.$$p_d)if(this.$$d[e]=this.$$c.$$.ctx[this.$$c.$$.props[e]],this.$$p_d[e].reflect){const t=I(e,this.$$d[e],this.$$p_d,"toAttribute");null==t?this.removeAttribute(this.$$p_d[e].attribute||e):this.setAttribute(this.$$p_d[e].attribute||e,t)}this.$$r=!1};this.$$c.$$.after_update.push(i),i();for(const e in this.$$l)for(const t of this.$$l[e]){const n=this.$$c.$on(e,t);this.$$l_u.set(t,n)}this.$$l={}}}attributeChangedCallback(e,t,n){this.$$r||(e=this.$$g_p(e),this.$$d[e]=I(e,n,this.$$p_d,"toProp"),this.$$c?.$set({[e]:this.$$d[e]}))}disconnectedCallback(){this.$$cn=!1,Promise.resolve().then((()=>{!this.$$cn&&this.$$c&&(this.$$c.$destroy(),this.$$c=void 0)}))}$$g_p(e){return Object.keys(this.$$p_d).find((t=>this.$$p_d[t].attribute===e||!this.$$p_d[t].attribute&&t.toLowerCase()===e))||e}});class D{$$=void 0;$$set=void 0;$destroy(){(function(e,t){const n=e.$$;null!==n.fragment&&(function(e){const t=[],n=[];b.forEach((i=>-1===e.indexOf(i)?t.push(i):n.push(i))),n.forEach((e=>e())),b=t}(n.after_update),c(n.on_destroy),n.fragment&&n.fragment.d(t),n.on_destroy=n.fragment=null,n.ctx=[])})(this,1),this.$destroy=a}$on(e,t){if(!d(t))return a;const n=this.$$.callbacks[e]||(this.$$.callbacks[e]=[]);return n.push(t),()=>{const e=n.indexOf(t);-1!==e&&n.splice(e,1)}}$set(e){this.$$set&&0!==Object.keys(e).length&&(this.$$.skip_bound=!0,this.$$set(e),this.$$.skip_bound=!1)}}function z(e){!function(e,t,n){const i=function(e){if(!e)return document;const t=e.getRootNode?e.getRootNode():e.ownerDocument;return t&&t.host?t:e.ownerDocument}(e);if(!i.getElementById(t)){const e=m("style");e.id=t,e.textContent=n,function(e,t){!function(e,t){e.appendChild(t)}(e.head||e,t)}(i,e)}}(e,"svelte-gnt082",".LoaderContainer{display:flex;justify-content:center}.lds-ellipsis{display:inline-block;position:relative;width:80px;height:80px}.lds-ellipsis div{position:absolute;top:33px;width:13px;height:13px;border-radius:50%;background:#d1d1d1;animation-timing-function:cubic-bezier(0, 1, 1, 0)}.lds-ellipsis div:nth-child(1){left:8px;animation:lds-ellipsis1 0.6s infinite}.lds-ellipsis div:nth-child(2){left:8px;animation:lds-ellipsis2 0.6s infinite}.lds-ellipsis div:nth-child(3){left:32px;animation:lds-ellipsis2 0.6s infinite}.lds-ellipsis div:nth-child(4){left:56px;animation:lds-ellipsis3 0.6s infinite}@keyframes lds-ellipsis1{0%{transform:scale(0)}100%{transform:scale(1)}}@keyframes lds-ellipsis3{0%{transform:scale(1)}100%{transform:scale(0)}}@keyframes lds-ellipsis2{0%{transform:translate(0, 0)}100%{transform:translate(24px, 0)}}")}function j(e){let t;return{c(){t=m("div"),t.innerHTML='<section class="LoaderContainer"><div class="lds-ellipsis"><div></div><div></div><div></div><div></div></div></section>'},m(n,i){p(n,t,i),e[4](t)},p:a,i:a,o:a,d(n){n&&f(t),e[4](null)}}}function B(e,t,n){let i,{clientstyling:r=""}=t,{clientstylingurl:o=""}=t,{mbsource:s}=t;return function(e){(function(){if(!y)throw new Error("Function called outside component initialization");return y})().$$.on_mount.push(e)}((()=>()=>{})),e.$$set=e=>{"clientstyling"in e&&n(1,r=e.clientstyling),"clientstylingurl"in e&&n(2,o=e.clientstylingurl),"mbsource"in e&&n(3,s=e.mbsource)},e.$$.update=()=>{3&e.$$.dirty&&r&&i&&function(e,t){if(e){const n=document.createElement("style");n.innerHTML=t,e.appendChild(n)}}(i,r),5&e.$$.dirty&&o&&i&&function(e,t){const n=new URL(t);fetch(n.href).then((e=>e.text())).then((t=>{const n=document.createElement("style");n.innerHTML=t,e&&e.appendChild(n)})).catch((e=>{console.error("There was an error while trying to load client styling from URL",e)}))}(i,o),9&e.$$.dirty&&s&&i&&function(e,t){if(window.emMessageBus){const n=document.createElement("style");window.emMessageBus.subscribe(t,(t=>{n.innerHTML=t,e&&e.appendChild(n)}))}}(i,`${s}.Style`)},[i,r,o,s,function(e){v[e?"unshift":"push"]((()=>{i=e,n(0,i)}))}]}typeof window<"u"&&(window.__svelte||(window.__svelte={v:new Set})).v.add("4");class $ extends D{constructor(e){super(),M(this,e,B,j,h,{clientstyling:1,clientstylingurl:2,mbsource:3},z)}get clientstyling(){return this.$$.ctx[1]}set clientstyling(e){this.$$set({clientstyling:e}),S()}get clientstylingurl(){return this.$$.ctx[2]}set clientstylingurl(e){this.$$set({clientstylingurl:e}),S()}get mbsource(){return this.$$.ctx[3]}set mbsource(e){this.$$set({mbsource:e}),S()}}var N,O,R;function q(e){return q="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},q(e)}function Y(e){if(null===e||!0===e||!1===e)return NaN;var t=Number(e);return isNaN(t)?t:t<0?Math.ceil(t):Math.floor(t)}function A(e,t){if(t.length<e)throw new TypeError(e+" argument"+(e>1?"s":"")+" required, but only "+t.length+" present")}function G(e){A(1,arguments);var t=Object.prototype.toString.call(e);return e instanceof Date||"object"===q(e)&&"[object Date]"===t?new Date(e.getTime()):"number"==typeof e||"[object Number]"===t?new Date(e):("string"!=typeof e&&"[object String]"!==t||"undefined"==typeof console||(console.warn("Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments"),console.warn((new Error).stack)),new Date(NaN))}!function(e,t,n){let i=class extends C{constructor(){super(e,n,true),this.$$p_d=t}static get observedAttributes(){return Object.keys(t).map((e=>(t[e].attribute||e).toLowerCase()))}};Object.keys(t).forEach((e=>{Object.defineProperty(i.prototype,e,{get(){return this.$$c&&e in this.$$c?this.$$c[e]:this.$$d[e]},set(n){n=I(e,n,t),this.$$d[e]=n,this.$$c?.$set({[e]:n})}})})),[].forEach((e=>{Object.defineProperty(i.prototype,e,{get(){return this.$$c?.[e]}})})),e.element=i}($,{clientstyling:{},clientstylingurl:{},mbsource:{}},[]),customElements.define=(N=customElements.define,function(...e){try{return N.apply(this,e)}catch(e){if(e instanceof DOMException&&e.message.includes("has already been used with this registry")||e.message.includes("Cannot define multiple custom elements with the same tag name"))return!1;throw e}}),!customElements.get("general-animation-loading")&&customElements.define("general-animation-loading",$.element),function(e){e[e.FreeSpins=0]="FreeSpins",e[e.LuckyWheel=1]="LuckyWheel",e[e.Leaderboard=2]="Leaderboard",e[e.Challenge=3]="Challenge",e[e.Custom=4]="Custom"}(O||(O={})),function(e){e[e.Completed=0]="Completed",e[e.Expired=1]="Expired",e[e.Forfeited=2]="Forfeited"}(R||(R={}));var F={};function Q(){return F}function X(e){A(1,arguments);var t=G(e),n=t.getUTCDay(),i=(n<1?7:0)+n-1;return t.setUTCDate(t.getUTCDate()-i),t.setUTCHours(0,0,0,0),t}function J(e){A(1,arguments);var t=G(e),n=t.getUTCFullYear(),i=new Date(0);i.setUTCFullYear(n+1,0,4),i.setUTCHours(0,0,0,0);var r=X(i),o=new Date(0);o.setUTCFullYear(n,0,4),o.setUTCHours(0,0,0,0);var s=X(o);return t.getTime()>=r.getTime()?n+1:t.getTime()>=s.getTime()?n:n-1}function _(e,t){var n,i,r,o,s,a,u,l;A(1,arguments);var c=Q(),d=Y(null!==(n=null!==(i=null!==(r=null!==(o=null==t?void 0:t.weekStartsOn)&&void 0!==o?o:null==t||null===(s=t.locale)||void 0===s||null===(a=s.options)||void 0===a?void 0:a.weekStartsOn)&&void 0!==r?r:c.weekStartsOn)&&void 0!==i?i:null===(u=c.locale)||void 0===u||null===(l=u.options)||void 0===l?void 0:l.weekStartsOn)&&void 0!==n?n:0);if(!(d>=0&&d<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var h=G(e),p=h.getUTCDay(),f=(p<d?7:0)+p-d;return h.setUTCDate(h.getUTCDate()-f),h.setUTCHours(0,0,0,0),h}function U(e,t){var n,i,r,o,s,a,u,l;A(1,arguments);var c=G(e),d=c.getUTCFullYear(),h=Q(),p=Y(null!==(n=null!==(i=null!==(r=null!==(o=null==t?void 0:t.firstWeekContainsDate)&&void 0!==o?o:null==t||null===(s=t.locale)||void 0===s||null===(a=s.options)||void 0===a?void 0:a.firstWeekContainsDate)&&void 0!==r?r:h.firstWeekContainsDate)&&void 0!==i?i:null===(u=h.locale)||void 0===u||null===(l=u.options)||void 0===l?void 0:l.firstWeekContainsDate)&&void 0!==n?n:1);if(!(p>=1&&p<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var f=new Date(0);f.setUTCFullYear(d+1,0,p),f.setUTCHours(0,0,0,0);var m=_(f,t),y=new Date(0);y.setUTCFullYear(d,0,p),y.setUTCHours(0,0,0,0);var g=_(y,t);return c.getTime()>=m.getTime()?d+1:c.getTime()>=g.getTime()?d:d-1}function K(e,t){for(var n=e<0?"-":"",i=Math.abs(e).toString();i.length<t;)i="0"+i;return n+i}const Z=function(e,t){var n=e.getUTCFullYear(),i=n>0?n:1-n;return K("yy"===t?i%100:i,t.length)},V=function(e,t){var n=e.getUTCMonth();return"M"===t?String(n+1):K(n+1,2)},ee=function(e,t){return K(e.getUTCDate(),t.length)},te=function(e,t){return K(e.getUTCHours()%12||12,t.length)},ne=function(e,t){return K(e.getUTCHours(),t.length)},ie=function(e,t){return K(e.getUTCMinutes(),t.length)},re=function(e,t){return K(e.getUTCSeconds(),t.length)},oe=function(e,t){var n=t.length,i=e.getUTCMilliseconds();return K(Math.floor(i*Math.pow(10,n-3)),t.length)};var se={G:function(e,t,n){var i=e.getUTCFullYear()>0?1:0;switch(t){case"G":case"GG":case"GGG":return n.era(i,{width:"abbreviated"});case"GGGGG":return n.era(i,{width:"narrow"});default:return n.era(i,{width:"wide"})}},y:function(e,t,n){if("yo"===t){var i=e.getUTCFullYear();return n.ordinalNumber(i>0?i:1-i,{unit:"year"})}return Z(e,t)},Y:function(e,t,n,i){var r=U(e,i),o=r>0?r:1-r;return"YY"===t?K(o%100,2):"Yo"===t?n.ordinalNumber(o,{unit:"year"}):K(o,t.length)},R:function(e,t){return K(J(e),t.length)},u:function(e,t){return K(e.getUTCFullYear(),t.length)},Q:function(e,t,n){var i=Math.ceil((e.getUTCMonth()+1)/3);switch(t){case"Q":return String(i);case"QQ":return K(i,2);case"Qo":return n.ordinalNumber(i,{unit:"quarter"});case"QQQ":return n.quarter(i,{width:"abbreviated",context:"formatting"});case"QQQQQ":return n.quarter(i,{width:"narrow",context:"formatting"});default:return n.quarter(i,{width:"wide",context:"formatting"})}},q:function(e,t,n){var i=Math.ceil((e.getUTCMonth()+1)/3);switch(t){case"q":return String(i);case"qq":return K(i,2);case"qo":return n.ordinalNumber(i,{unit:"quarter"});case"qqq":return n.quarter(i,{width:"abbreviated",context:"standalone"});case"qqqqq":return n.quarter(i,{width:"narrow",context:"standalone"});default:return n.quarter(i,{width:"wide",context:"standalone"})}},M:function(e,t,n){var i=e.getUTCMonth();switch(t){case"M":case"MM":return V(e,t);case"Mo":return n.ordinalNumber(i+1,{unit:"month"});case"MMM":return n.month(i,{width:"abbreviated",context:"formatting"});case"MMMMM":return n.month(i,{width:"narrow",context:"formatting"});default:return n.month(i,{width:"wide",context:"formatting"})}},L:function(e,t,n){var i=e.getUTCMonth();switch(t){case"L":return String(i+1);case"LL":return K(i+1,2);case"Lo":return n.ordinalNumber(i+1,{unit:"month"});case"LLL":return n.month(i,{width:"abbreviated",context:"standalone"});case"LLLLL":return n.month(i,{width:"narrow",context:"standalone"});default:return n.month(i,{width:"wide",context:"standalone"})}},w:function(e,t,n,i){var r=function(e,t){A(1,arguments);var n=G(e),i=_(n,t).getTime()-function(e,t){var n,i,r,o,s,a,u,l;A(1,arguments);var c=Q(),d=Y(null!==(n=null!==(i=null!==(r=null!==(o=null==t?void 0:t.firstWeekContainsDate)&&void 0!==o?o:null==t||null===(s=t.locale)||void 0===s||null===(a=s.options)||void 0===a?void 0:a.firstWeekContainsDate)&&void 0!==r?r:c.firstWeekContainsDate)&&void 0!==i?i:null===(u=c.locale)||void 0===u||null===(l=u.options)||void 0===l?void 0:l.firstWeekContainsDate)&&void 0!==n?n:1),h=U(e,t),p=new Date(0);return p.setUTCFullYear(h,0,d),p.setUTCHours(0,0,0,0),_(p,t)}(n,t).getTime();return Math.round(i/6048e5)+1}(e,i);return"wo"===t?n.ordinalNumber(r,{unit:"week"}):K(r,t.length)},I:function(e,t,n){var i=function(e){A(1,arguments);var t=G(e),n=X(t).getTime()-function(e){A(1,arguments);var t=J(e),n=new Date(0);return n.setUTCFullYear(t,0,4),n.setUTCHours(0,0,0,0),X(n)}(t).getTime();return Math.round(n/6048e5)+1}(e);return"Io"===t?n.ordinalNumber(i,{unit:"week"}):K(i,t.length)},d:function(e,t,n){return"do"===t?n.ordinalNumber(e.getUTCDate(),{unit:"date"}):ee(e,t)},D:function(e,t,n){var i=function(e){A(1,arguments);var t=G(e),n=t.getTime();t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0);var i=t.getTime();return Math.floor((n-i)/864e5)+1}(e);return"Do"===t?n.ordinalNumber(i,{unit:"dayOfYear"}):K(i,t.length)},E:function(e,t,n){var i=e.getUTCDay();switch(t){case"E":case"EE":case"EEE":return n.day(i,{width:"abbreviated",context:"formatting"});case"EEEEE":return n.day(i,{width:"narrow",context:"formatting"});case"EEEEEE":return n.day(i,{width:"short",context:"formatting"});default:return n.day(i,{width:"wide",context:"formatting"})}},e:function(e,t,n,i){var r=e.getUTCDay(),o=(r-i.weekStartsOn+8)%7||7;switch(t){case"e":return String(o);case"ee":return K(o,2);case"eo":return n.ordinalNumber(o,{unit:"day"});case"eee":return n.day(r,{width:"abbreviated",context:"formatting"});case"eeeee":return n.day(r,{width:"narrow",context:"formatting"});case"eeeeee":return n.day(r,{width:"short",context:"formatting"});default:return n.day(r,{width:"wide",context:"formatting"})}},c:function(e,t,n,i){var r=e.getUTCDay(),o=(r-i.weekStartsOn+8)%7||7;switch(t){case"c":return String(o);case"cc":return K(o,t.length);case"co":return n.ordinalNumber(o,{unit:"day"});case"ccc":return n.day(r,{width:"abbreviated",context:"standalone"});case"ccccc":return n.day(r,{width:"narrow",context:"standalone"});case"cccccc":return n.day(r,{width:"short",context:"standalone"});default:return n.day(r,{width:"wide",context:"standalone"})}},i:function(e,t,n){var i=e.getUTCDay(),r=0===i?7:i;switch(t){case"i":return String(r);case"ii":return K(r,t.length);case"io":return n.ordinalNumber(r,{unit:"day"});case"iii":return n.day(i,{width:"abbreviated",context:"formatting"});case"iiiii":return n.day(i,{width:"narrow",context:"formatting"});case"iiiiii":return n.day(i,{width:"short",context:"formatting"});default:return n.day(i,{width:"wide",context:"formatting"})}},a:function(e,t,n){var i=e.getUTCHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return n.dayPeriod(i,{width:"abbreviated",context:"formatting"});case"aaa":return n.dayPeriod(i,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return n.dayPeriod(i,{width:"narrow",context:"formatting"});default:return n.dayPeriod(i,{width:"wide",context:"formatting"})}},b:function(e,t,n){var i,r=e.getUTCHours();switch(i=12===r?"noon":0===r?"midnight":r/12>=1?"pm":"am",t){case"b":case"bb":return n.dayPeriod(i,{width:"abbreviated",context:"formatting"});case"bbb":return n.dayPeriod(i,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return n.dayPeriod(i,{width:"narrow",context:"formatting"});default:return n.dayPeriod(i,{width:"wide",context:"formatting"})}},B:function(e,t,n){var i,r=e.getUTCHours();switch(i=r>=17?"evening":r>=12?"afternoon":r>=4?"morning":"night",t){case"B":case"BB":case"BBB":return n.dayPeriod(i,{width:"abbreviated",context:"formatting"});case"BBBBB":return n.dayPeriod(i,{width:"narrow",context:"formatting"});default:return n.dayPeriod(i,{width:"wide",context:"formatting"})}},h:function(e,t,n){if("ho"===t){var i=e.getUTCHours()%12;return 0===i&&(i=12),n.ordinalNumber(i,{unit:"hour"})}return te(e,t)},H:function(e,t,n){return"Ho"===t?n.ordinalNumber(e.getUTCHours(),{unit:"hour"}):ne(e,t)},K:function(e,t,n){var i=e.getUTCHours()%12;return"Ko"===t?n.ordinalNumber(i,{unit:"hour"}):K(i,t.length)},k:function(e,t,n){var i=e.getUTCHours();return 0===i&&(i=24),"ko"===t?n.ordinalNumber(i,{unit:"hour"}):K(i,t.length)},m:function(e,t,n){return"mo"===t?n.ordinalNumber(e.getUTCMinutes(),{unit:"minute"}):ie(e,t)},s:function(e,t,n){return"so"===t?n.ordinalNumber(e.getUTCSeconds(),{unit:"second"}):re(e,t)},S:function(e,t){return oe(e,t)},X:function(e,t,n,i){var r=(i._originalDate||e).getTimezoneOffset();if(0===r)return"Z";switch(t){case"X":return ue(r);case"XXXX":case"XX":return le(r);default:return le(r,":")}},x:function(e,t,n,i){var r=(i._originalDate||e).getTimezoneOffset();switch(t){case"x":return ue(r);case"xxxx":case"xx":return le(r);default:return le(r,":")}},O:function(e,t,n,i){var r=(i._originalDate||e).getTimezoneOffset();switch(t){case"O":case"OO":case"OOO":return"GMT"+ae(r,":");default:return"GMT"+le(r,":")}},z:function(e,t,n,i){var r=(i._originalDate||e).getTimezoneOffset();switch(t){case"z":case"zz":case"zzz":return"GMT"+ae(r,":");default:return"GMT"+le(r,":")}},t:function(e,t,n,i){return K(Math.floor((i._originalDate||e).getTime()/1e3),t.length)},T:function(e,t,n,i){return K((i._originalDate||e).getTime(),t.length)}};function ae(e,t){var n=e>0?"-":"+",i=Math.abs(e),r=Math.floor(i/60),o=i%60;if(0===o)return n+String(r);var s=t||"";return n+String(r)+s+K(o,2)}function ue(e,t){return e%60==0?(e>0?"-":"+")+K(Math.abs(e)/60,2):le(e,t)}function le(e,t){var n=t||"",i=e>0?"-":"+",r=Math.abs(e);return i+K(Math.floor(r/60),2)+n+K(r%60,2)}const ce=se;var de=function(e,t){switch(e){case"P":return t.date({width:"short"});case"PP":return t.date({width:"medium"});case"PPP":return t.date({width:"long"});default:return t.date({width:"full"})}},he=function(e,t){switch(e){case"p":return t.time({width:"short"});case"pp":return t.time({width:"medium"});case"ppp":return t.time({width:"long"});default:return t.time({width:"full"})}},pe={p:he,P:function(e,t){var n,i=e.match(/(P+)(p+)?/)||[],r=i[1],o=i[2];if(!o)return de(e,t);switch(r){case"P":n=t.dateTime({width:"short"});break;case"PP":n=t.dateTime({width:"medium"});break;case"PPP":n=t.dateTime({width:"long"});break;default:n=t.dateTime({width:"full"})}return n.replace("{{date}}",de(r,t)).replace("{{time}}",he(o,t))}};const fe=pe;var me=["D","DD"],ye=["YY","YYYY"];function ge(e,t,n){if("YYYY"===e)throw new RangeError("Use `yyyy` instead of `YYYY` (in `".concat(t,"`) for formatting years to the input `").concat(n,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if("YY"===e)throw new RangeError("Use `yy` instead of `YY` (in `".concat(t,"`) for formatting years to the input `").concat(n,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if("D"===e)throw new RangeError("Use `d` instead of `D` (in `".concat(t,"`) for formatting days of the month to the input `").concat(n,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if("DD"===e)throw new RangeError("Use `dd` instead of `DD` (in `".concat(t,"`) for formatting days of the month to the input `").concat(n,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"))}var we={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}};function ve(e){return function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=t.width?String(t.width):e.defaultWidth;return e.formats[n]||e.formats[e.defaultWidth]}}var be,xe={date:ve({formats:{full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},defaultWidth:"full"}),time:ve({formats:{full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},defaultWidth:"full"}),dateTime:ve({formats:{full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},defaultWidth:"full"})},Le={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"};function ke(e){return function(t,n){var i;if("formatting"===(null!=n&&n.context?String(n.context):"standalone")&&e.formattingValues){var r=e.defaultFormattingWidth||e.defaultWidth,o=null!=n&&n.width?String(n.width):r;i=e.formattingValues[o]||e.formattingValues[r]}else{var s=e.defaultWidth,a=null!=n&&n.width?String(n.width):e.defaultWidth;i=e.values[a]||e.values[s]}return i[e.argumentCallback?e.argumentCallback(t):t]}}function We(e){return function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=n.width,r=t.match(i&&e.matchPatterns[i]||e.matchPatterns[e.defaultMatchWidth]);if(!r)return null;var o,s=r[0],a=i&&e.parsePatterns[i]||e.parsePatterns[e.defaultParseWidth],u=Array.isArray(a)?function(e){for(var t=0;t<e.length;t++)if(e[t].test(s))return t}(a):function(e){for(var t in e)if(e.hasOwnProperty(t)&&e[t].test(s))return t}(a);return o=e.valueCallback?e.valueCallback(u):u,{value:o=n.valueCallback?n.valueCallback(o):o,rest:t.slice(s.length)}}}const He={code:"en-US",formatDistance:function(e,t,n){var i,r=we[e];return i="string"==typeof r?r:1===t?r.one:r.other.replace("{{count}}",t.toString()),null!=n&&n.addSuffix?n.comparison&&n.comparison>0?"in "+i:i+" ago":i},formatLong:xe,formatRelative:function(e){return Le[e]},localize:{ordinalNumber:function(e){var t=Number(e),n=t%100;if(n>20||n<10)switch(n%10){case 1:return t+"st";case 2:return t+"nd";case 3:return t+"rd"}return t+"th"},era:ke({values:{narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},defaultWidth:"wide"}),quarter:ke({values:{narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},defaultWidth:"wide",argumentCallback:function(e){return e-1}}),month:ke({values:{narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},defaultWidth:"wide"}),day:ke({values:{narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},defaultWidth:"wide"}),dayPeriod:ke({values:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},defaultWidth:"wide",formattingValues:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},defaultFormattingWidth:"wide"})},match:{ordinalNumber:(be={matchPattern:/^(\d+)(th|st|nd|rd)?/i,parsePattern:/\d+/i,valueCallback:function(e){return parseInt(e,10)}},function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.match(be.matchPattern);if(!n)return null;var i=n[0],r=e.match(be.parsePattern);if(!r)return null;var o=be.valueCallback?be.valueCallback(r[0]):r[0];return{value:o=t.valueCallback?t.valueCallback(o):o,rest:e.slice(i.length)}}),era:We({matchPatterns:{narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},defaultMatchWidth:"wide",parsePatterns:{any:[/^b/i,/^(a|c)/i]},defaultParseWidth:"any"}),quarter:We({matchPatterns:{narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},defaultMatchWidth:"wide",parsePatterns:{any:[/1/i,/2/i,/3/i,/4/i]},defaultParseWidth:"any",valueCallback:function(e){return e+1}}),month:We({matchPatterns:{narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},defaultParseWidth:"any"}),day:We({matchPatterns:{narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},defaultParseWidth:"any"}),dayPeriod:We({matchPatterns:{narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},defaultMatchWidth:"any",parsePatterns:{any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},defaultParseWidth:"any"})},options:{weekStartsOn:0,firstWeekContainsDate:1}};var Ee=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,Se=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,Pe=/^'([^]*?)'?$/,Te=/''/g,Me=/[a-zA-Z]/;function Ce(e,t,n){var i,r,o,s,a,u,l,c,d,h,p,f,m,y,g,w,v,b;A(2,arguments);var x=String(t),L=Q(),k=null!==(i=null!==(r=null==n?void 0:n.locale)&&void 0!==r?r:L.locale)&&void 0!==i?i:He,W=Y(null!==(o=null!==(s=null!==(a=null!==(u=null==n?void 0:n.firstWeekContainsDate)&&void 0!==u?u:null==n||null===(l=n.locale)||void 0===l||null===(c=l.options)||void 0===c?void 0:c.firstWeekContainsDate)&&void 0!==a?a:L.firstWeekContainsDate)&&void 0!==s?s:null===(d=L.locale)||void 0===d||null===(h=d.options)||void 0===h?void 0:h.firstWeekContainsDate)&&void 0!==o?o:1);if(!(W>=1&&W<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var H=Y(null!==(p=null!==(f=null!==(m=null!==(y=null==n?void 0:n.weekStartsOn)&&void 0!==y?y:null==n||null===(g=n.locale)||void 0===g||null===(w=g.options)||void 0===w?void 0:w.weekStartsOn)&&void 0!==m?m:L.weekStartsOn)&&void 0!==f?f:null===(v=L.locale)||void 0===v||null===(b=v.options)||void 0===b?void 0:b.weekStartsOn)&&void 0!==p?p:0);if(!(H>=0&&H<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");if(!k.localize)throw new RangeError("locale must contain localize property");if(!k.formatLong)throw new RangeError("locale must contain formatLong property");var E=G(e);if(!function(e){if(A(1,arguments),!function(e){return A(1,arguments),e instanceof Date||"object"===q(e)&&"[object Date]"===Object.prototype.toString.call(e)}(e)&&"number"!=typeof e)return!1;var t=G(e);return!isNaN(Number(t))}(E))throw new RangeError("Invalid time value");var S=function(e){var t=new Date(Date.UTC(e.getFullYear(),e.getMonth(),e.getDate(),e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds()));return t.setUTCFullYear(e.getFullYear()),e.getTime()-t.getTime()}(E),P=function(e,t){return A(2,arguments),function(e,t){A(2,arguments);var n=G(e).getTime(),i=Y(t);return new Date(n+i)}(e,-Y(t))}(E,S),T={firstWeekContainsDate:W,weekStartsOn:H,locale:k,_originalDate:E};return x.match(Se).map((function(e){var t=e[0];return"p"===t||"P"===t?(0,fe[t])(e,k.formatLong):e})).join("").match(Ee).map((function(i){if("''"===i)return"'";var r,o,s=i[0];if("'"===s)return(o=(r=i).match(Pe))?o[1].replace(Te,"'"):r;var a=ce[s];if(a)return null!=n&&n.useAdditionalWeekYearTokens||-1===ye.indexOf(i)||ge(i,t,String(e)),null!=n&&n.useAdditionalDayOfYearTokens||!(-1!==me.indexOf(i))||ge(i,t,String(e)),a(P,i,k.localize,T);if(s.match(Me))throw new RangeError("Format string contains an unescaped latin alphabet character `"+s+"`");return i})).join("")}const Ie=class{constructor(e){t(this,e),this.close=n(this,"close",7),this.setClientStyling=()=>{let e=document.createElement("style");e.innerHTML=this.clientStyling,this.host.prepend(e)},this.setClientStylingURL=()=>{let e=new URL(this.clientStylingUrl),t=document.createElement("style");fetch(e.href).then((e=>e.text())).then((e=>{t.innerHTML=e,setTimeout((()=>{this.host.prepend(t)}),1)})).catch((e=>{console.log("Error ",e)}))},this.handleCloseClick=()=>{this.close.emit(),this.tooltip=!1},this.handleLuckyWheelClick=e=>{const t=e.currentTarget.getAttribute("data-id"),n=e.currentTarget.getAttribute("data-index");window.postMessage({type:"LuckyWheelClick",id:t,index:n})},this.showTooltip=()=>{this.tooltip=!0},this.hideTooltip=()=>{this.tooltip=!1},this.handleTabChange=e=>{this.activeTab=+e.target.getAttribute("data-index"),2===this.activeTab&&this.sendHistoryRequest()},this.toggleLuckyWheelHistory=e=>{const t=e.currentTarget.getAttribute("data-id");this.openedHistoryIds.findIndex((e=>e===t))>-1?this.openedHistoryIds=this.openedHistoryIds.filter((e=>e!==t)):this.openedHistoryIds.push(t),this.openedHistoryIds=[...this.openedHistoryIds]},this.clientStyling="",this.clientStylingUrl="",this.language="en",this.device="Mobile",this.luckyWheels=[],this.translationUrl="",this.tooltip=!1,this.timers={},this.limitStylingAppends=!1,this.activeTab=1,this.historyLoading=!1,this.luckywheelHistory={},this.openedHistoryIds=[],this.historyLoaded=!1,this.isLoading=!1}handleEvent(e){const{type:t}=null==e?void 0:e.data;"BarLuckyWheelsClick"===t&&(this.activeTab=1,this.openedHistoryIds=[]),"LuckywheelHistoryResponse"===t&&(this.openedHistoryIds=[],this.luckywheelHistory=e.data.data||[],this.historyLoading=!1)}luckywheelsPropHandler(e){!this.interval&&e.length&&(this.updateTimers(),this.startCountdown()),this.interval&&!e.length&&clearInterval(this.interval)}async componentWillLoad(){var e;this.luckywheelsPropHandler(this.luckyWheels),this.translationUrl&&await(e=this.translationUrl,new Promise(((t,n)=>{fetch(e).then((e=>e.json())).then((e=>{Object.keys(e).forEach((t=>{for(let n in e[t])o[t][n]=e[t][n]})),t(o)})).catch((e=>{n(e)}))})))}componentDidRender(){!this.limitStylingAppends&&this.host&&(this.clientStyling&&this.setClientStyling(),this.clientStylingUrl&&this.setClientStylingURL(),this.limitStylingAppends=!0)}disconnectedCallback(){this.interval&&clearInterval(this.interval)}startCountdown(){this.interval=setInterval((()=>{this.updateTimers()}),1e3)}updateTimers(){const e=(new Date).getTime();this.timers=this.luckyWheels.reduce(((t,n)=>{var i;const r=new Date(null===(i=n.current)||void 0===i?void 0:i.endTime).getTime()-e;let o="00h:00m:00s";if(r<1)this.removeLuckyWheel(n.program.id);else{const{days:e,hours:t,minutes:n,seconds:i}={days:String(Math.floor(r/864e5)).padStart(2,"0"),hours:String(Math.floor(r%864e5/36e5)).padStart(2,"0"),minutes:String(Math.floor(r%36e5/6e4)).padStart(2,"0"),seconds:String(Math.floor(r%6e4/1e3)).padStart(2,"0")};o="00"===e?`${t}h:${n}m:${i}s`:`${e}d:${t}h:${n}m`}return Object.assign(Object.assign({},t),{[n.program.id]:o})}),{})}removeLuckyWheel(e){this.luckyWheels=this.luckyWheels.filter((t=>t.program.id!==e)),window.postMessage({type:"LuckyWheelHasExpired",id:e})}sendHistoryRequest(){this.historyLoading=!0,window.postMessage({type:"LuckywheelHistoryRequest"})}getLuckyWheelClasses(e){return{LuckyWheelsCard:!0,LuckyWheelsEmptyNumber:0===e.current.remainingTimes}}getLuckyWheelName(e){var t,n;return(null===(t=e.program)||void 0===t?void 0:t.name.en)||(null===(n=e.program)||void 0===n?void 0:n.name["*"])}getLuckyWheelHeaderTemplate(t){var n,i;return e("div",{class:"LuckyWheelsCardHeader"},e("div",{class:"LuckyWheelsName"},this.getLuckyWheelName(t)),e("div",{class:"LuckyWheelsCounter"},e("div",{class:(null===(n=t.current)||void 0===n?void 0:n.remainingTimes)?"LuckyWheelsHighlightedCounter":"LuckyWheelsEmptyCounter"},null===(i=t.current)||void 0===i?void 0:i.remainingTimes)))}getLuckyWheelTemplate(t,n){const i=this.timers[t.program.id],r=0===t.current.remainingTimes;return e("div",{class:this.getLuckyWheelClasses(t),onClick:this.handleLuckyWheelClick,key:t.program.id,"data-id":t.program.id,"data-index":n},this.getLuckyWheelHeaderTemplate(t),r?e("div",{class:"ForfeitedMessage"},e("div",null,s("canceled",this.language)),e("div",null,s("support",this.language))):e("div",{class:"LuckyWheelsCountdownWrapper"},e("span",{class:"LuckyWheelsCountdown"},i)))}getHeaderTemplate(){return e("header",{class:"LuckyWheelsListPopupHeader"},e("button",{onClick:this.showTooltip,class:"EngagementSuiteIconButton Help"}),e("div",{class:"LuckyWheelsListPopupHeaderName"},s("luckyWheel",this.language)),e("button",{class:"EngagementSuiteIconButton Close",onClick:this.handleCloseClick}))}getListTemplate(){return this.isLoading?e("general-animation-loading",null):this.luckyWheels.length?e("div",{class:"LuckyWheelsListWrapper"},e("div",{class:"LuckyWheelsList"},this.luckyWheels.map(((e,t)=>this.getLuckyWheelTemplate(e,t))))):e("div",{class:"LuckyWheelsListEmpty"},e("h2",null,s("noluckywheels",this.language)),e("p",null,s("tryOtherGames",this.language)))}getTooltipTemplate(){return this.tooltip?e("div",{class:"EngagementSuiteTooltipBackdrop"},e("div",{class:"EngagementSuiteTooltip"},e("button",{class:"EngagementSuiteIconButton Close",onClick:this.hideTooltip}),s("tooltip",this.language))):""}getTabsTemplate(){return e("div",{class:"EngagementSuiteTabsWrapper"},e("div",{class:"EngagementSuiteTabs"},e("div",{"data-index":"1",onClick:this.handleTabChange,class:"EngagementSuiteTab "+(1===this.activeTab?"Active":"")},s("luckywheels",this.language)),e("div",{"data-index":"2",onClick:this.handleTabChange,class:"EngagementSuiteTab "+(2===this.activeTab?"Active":"")},s("history",this.language))))}getHistoryTabTemplate(){return e("div",{class:"HistoryWrapper"},e("div",{class:"HistoryCols"},e("div",{class:"HistoryColName Rewards"},s("rewards",this.language)),e("div",{class:"HistoryColName Issued"},s("issued",this.language)),e("div",{class:"HistoryColName Time"},s("time",this.language))),this.historyLoading?(t=this.language,e("div",{class:"HistoryLoader"},e("casino-engagement-suite-progress-bar",{indeterminate:!0}),e("span",null,s("loading",t)))):((t,n,i,r,o)=>0===t.length?e("p",{class:"HistoryEmptyMessage"},s("noHistory",o)):e("div",{class:"HistoryList"},t.map((t=>e("div",{key:t.program.id,class:"HistoryListItem "+(i.includes(t.program.id)?"Opened":"Closed")},e("header",{class:"HistoryListItemHeader","data-id":t.program.id,onClick:r},t.program.name.en||t.program.name["*"],e("button",{class:"EngagementSuiteIconButton ArrowDown"})),e("div",{class:"HistoryListItemBody"},e("div",{class:"HistoryInfoRow"},Object.entries(n).map((n=>n[0]===t.program.id&&n[1].map((n=>e("div",{class:"HistoryInfo"},e("div",{class:"HistoryCol Rewards"},((t,n)=>{var i,r,o,s;const a=n.wheelOfFortunePartitionIndex||0,u=null===(r=null===(i=t.program.wheelOfFortune)||void 0===i?void 0:i.partitions[a])||void 0===r?void 0:r.name,l=null===(s=null===(o=t.program.wheelOfFortune)||void 0===o?void 0:o.partitions[a])||void 0===s?void 0:s.image1,c=l.en||l["*"],d=t.program.name.en||t.program.name["*"];return e("div",{class:"HistoryRewards"},u.en||u["*"]||(c?e("img",{src:c}):d))})(t,n.draw.result)),e("div",{class:"HistoryCol Issued"},"fulfilled"===n.draw.state?"Success":"Failed"),e("div",{class:"HistoryCol Time"},Ce(new Date(n.draw.time),"LLL d, yyyy HH:mm:ss"))))))))))))))(this.luckyWheels,this.luckywheelHistory,this.openedHistoryIds,this.toggleLuckyWheelHistory,this.language));var t}getTabsContentTemplate(){return 1===this.activeTab?this.getListTemplate():this.getHistoryTabTemplate()}render(){return e("div",{key:"6eec32518bc71966373704f59e9ad312fc5e3052",class:`LuckyWheelsListPopup ${this.device}`},this.getHeaderTemplate(),this.getTabsTemplate(),this.getTabsContentTemplate(),this.getTooltipTemplate())}get host(){return i(this)}static get watchers(){return{luckyWheels:["luckywheelsPropHandler"]}}};Ie.style=':host{display:block;font-family:inherit}*{box-sizing:border-box;margin:0;padding:0}button{border:none;background:none;cursor:pointer}button:focus{outline:none}.EngagementSuiteIconButton{width:16px;height:16px}.EngagementSuiteIconButton.Help{background:center/100% url(https://static.everymatrix.com/gic/img/engagement-suite/help.svg) no-repeat}.EngagementSuiteIconButton.Close{background:center/100% url(https://static.everymatrix.com/gic/img/engagement-suite/close.svg) no-repeat}.EngagementSuiteIconButton.ArrowDown{background:center/100% url(https://static.everymatrix.com/gic/img/engagement-suite/arrow-down.svg) no-repeat}.LuckyWheelsListPopup{display:flex;height:100%;background-color:var(--emw--color-background, #1e1638);border-radius:var(--emw--border-radius-large, 8px);overflow:hidden;flex-direction:column;position:relative;padding-bottom:20px}.LuckyWheelsListPopupHeader{display:flex;justify-content:space-between;align-items:center;padding:12px 8px 8px}.LuckyWheelsListPopupHeaderName{color:var(--emw--color-secondary, #bbb9c3);font-size:var(--emw--font-size-small, 14px);font-weight:var(--emw--font-weight-medium, 500);line-height:14px}.LuckyWheelsListWrapper{overflow-y:auto;-ms-overflow-style:none;scrollbar-width:none}.LuckyWheelsListWrapper::-webkit-scrollbar{display:none}.LuckyWheelsList{display:flex;flex-direction:column;row-gap:12px;padding:8px 19px 0}.LuckyWheelsRowWrapper{display:flex;justify-content:space-between;min-width:0}.LuckyWheelsCard{padding:15px 15px 19px;border:1px solid var(--emw--button-border-color, #403956);border-radius:var(--emw--border-radius-medium, 6px);position:relative;cursor:pointer}.LuckyWheelsCard.Forfeited{cursor:auto;pointer-events:none}.LuckyWheelsCardHeader{display:flex;justify-content:space-between;gap:24px;margin-bottom:12px;flex:1;min-width:0;align-items:flex-end}.LuckyWheelsName{color:var(--emw--color-typography, #ffffff);font-family:var(--emw--font-family-secondary, "Montserrat", sans-serif);line-height:22px;font-weight:var(--emw--font-weight-bold, 700);font-size:var(--emw--font-size-medium-plus, 18px);word-break:break-word;flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.LuckyWheelsCounter{display:flex;color:var(--emw--color-secondary, #bbb9c3);font-size:var(--emw--font-size-medium-plus, 18px);align-items:flex-end}.LuckyWheelsHighlightedCounter,.LuckyWheelsEmptyCounter{font-size:var(--emw--font-size-medium-plus, 18px);font-weight:var(--emw--font-weight-extra-bold, 800);margin-right:4px}.LuckyWheelsHighlightedCounter{background:var(--emw--engagement-suite-gradient-golden, linear-gradient(180deg, #ffb801 15.86%, #fef746 31.36%, #fbffe0 36.86%, #fffa60 47.86%, #ff9400 87.36%));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}.LuckyWheelsEmptyCounter{color:var(--emw--color-gray-150, #8f8b9c)}.LuckyWheelsListEmpty{padding:20px 32px}.LuckyWheelsListEmpty h2{margin:0 0 16px 0;text-align:center;font-weight:var(--emw--font-weight-semibold, 600);font-size:var(--emw--font-size-large, 20px);line-height:24px;font-family:var(--emw--font-family-secondary, "Montserrat", sans-serif);color:var(--emw--color-typography, #ffffff)}.LuckyWheelsListEmpty p{font-size:var(--emw--font-size-small, 14px);line-height:17px;color:var(--emw--color-secondary, #bbb9c3)}.LuckyWheelsCountdownWrapper{display:flex;justify-content:space-between;align-items:flex-start}.LuckyWheelsCountdown,.ForfeitedMessage{color:var(--emw--color-secondary, #bbb9c3);font-size:var(--emw--font-size-x-small, 12px);line-height:12px}.ForfeitedMessage{line-height:1.2}.LuckyWheelsBalCounter{display:flex;align-items:flex-end;color:var(--emw--color-secondary, #bbb9c3);font-size:var(--emw--font-size-x-small, 12px)}.LuckyWheelsRemainCounter{color:var(--emw--color-typography, #ffffff);font-weight:var(--emw--font-weight-bold, 700);margin-right:4px}.LuckyWheelLabel{min-width:35px;height:18px;background:var(--emw--engagement-suite-gradient-golden, linear-gradient(180deg, #ffb801 15.86%, #fef746 31.36%, #fbffe0 36.86%, #fffa60 47.86%, #ff9400 87.36%));border-radius:var(--emw--border-radius-x-small, 2px);display:none;position:absolute;top:-11px;right:11px;padding:0 2px;align-items:center;justify-content:center}.LuckyWheelLabel span{display:inline-block;text-transform:uppercase;font-size:var(--emw--font-size-2x-small, 10px);line-height:10px;font-weight:var(--emw--font-weight-bold, 700);font-family:var(--emw--font-family-secondary, "Montserrat", sans-serif);color:var(--emw--color-background, #1e1638)}.ShowLuckyWheelLabel{display:inline-flex}.EngagementSuiteTooltipBackdrop{padding:48px 30px 0;position:absolute;width:100%;height:100%;inset:0;background-color:rgba(0, 0, 0, 0.5)}.EngagementSuiteTooltipBackdrop .EngagementSuiteTooltip{border:1px solid var(--emw--button-border-color, #403956);background-color:var(--emw--color-background, #1e1638);border-radius:var(--emw--border-radius-large, 8px);padding:32px;font-size:var(--emw--font-size-small, 14px);line-height:17px;color:var(--emw--color-secondary, #bbb9c3);position:relative}.EngagementSuiteTooltipBackdrop .EngagementSuiteTooltip .EngagementSuiteIconButton{top:12px;right:12px;position:absolute}.LuckyWheelsEmptyNumber .LuckyWheelsName,.LuckyWheelsEmptyNumber .LuckyWheelsCountdown,.LuckyWheelsEmptyNumber .LuckyWheelsRemainCounter{color:var(--emw--color-gray-150, #8f8b9c)}.LuckyWheelsListPopup.Tablet .LuckyWheelsListPopupHeader,.LuckyWheelsListPopup.Desktop .LuckyWheelsListPopupHeader{padding-top:16px}.LuckyWheelsListPopup.Tablet .LuckyWheelsListPopupHeaderName,.LuckyWheelsListPopup.Desktop .LuckyWheelsListPopupHeaderName{font-size:var(--emw--font-size-medium, 16px);line-height:16px}.LuckyWheelsListPopup.Tablet .EngagementSuiteIconButton,.LuckyWheelsListPopup.Desktop .EngagementSuiteIconButton{width:24px;height:24px}.LuckyWheelsListPopup.Tablet .LuckyWheelsList,.LuckyWheelsListPopup.Desktop .LuckyWheelsList{padding:20px 24px 0;row-gap:20px}.LuckyWheelsListPopup.Tablet .LuckyWheelCardHeader,.LuckyWheelsListPopup.Desktop .LuckyWheelCardHeader{margin-bottom:16px}.LuckyWheelsListPopup.Tablet .LuckyWheelsName,.LuckyWheelsListPopup.Desktop .LuckyWheelsName{line-height:27px;font-size:var(--emw--font-size-large, 22px)}.LuckyWheelsListPopup.Tablet .LuckyWheelsCountdown,.LuckyWheelsListPopup.Desktop .LuckyWheelsCountdown{font-size:var(--emw--font-size-small, 14px);line-height:14px}.LuckyWheelsListPopup.Tablet .EngagementSuiteTooltipBackdrop,.LuckyWheelsListPopup.Desktop .EngagementSuiteTooltipBackdrop{padding:90px 75px 0}.LuckyWheelsListPopup.Tablet .EngagementSuiteTooltip,.LuckyWheelsListPopup.Desktop .EngagementSuiteTooltip{padding:60px 65px;font-size:var(--emw--font-size-medium, 16px);line-height:20px}.LuckyWheelsListPopup.Tablet .EngagementSuiteTooltip .EngagementSuiteIconButton,.LuckyWheelsListPopup.Desktop .EngagementSuiteTooltip .EngagementSuiteIconButton{top:24px;right:24px}.LuckyWheelsListPopup.Tablet .EngagementSuiteTabsWrapper .EngagementSuiteTabs .EngagementSuiteTab,.LuckyWheelsListPopup.Desktop .EngagementSuiteTabsWrapper .EngagementSuiteTabs .EngagementSuiteTab{font-size:var(--emw--font-size-medium, 16px)}.LuckyWheelsListPopup.Tablet .HistoryWrapper .HistoryCols,.LuckyWheelsListPopup.Desktop .HistoryWrapper .HistoryCols{font-size:var(--emw--font-size-medium, 16px)}.LuckyWheelsListPopup.Tablet .HistoryWrapper .HistoryCols .Rewards,.LuckyWheelsListPopup.Desktop .HistoryWrapper .HistoryCols .Rewards{flex-basis:140px}.LuckyWheelsListPopup.Tablet .HistoryWrapper .HistoryCols .Issued,.LuckyWheelsListPopup.Desktop .HistoryWrapper .HistoryCols .Issued{flex-basis:100px}.LuckyWheelsListPopup.Tablet .HistoryWrapper .HistoryListItem .HistoryListItemHeader,.LuckyWheelsListPopup.Desktop .HistoryWrapper .HistoryListItem .HistoryListItemHeader{font-size:var(--emw--font-size-large, 22px)}.LuckyWheelsListPopup.Tablet .HistoryWrapper .HistoryListItem .HistoryInfo,.LuckyWheelsListPopup.Desktop .HistoryWrapper .HistoryListItem .HistoryInfo{font-size:var(--emw--font-size-medium, 16px)}.LuckyWheelsListPopup.Tablet .HistoryWrapper .HistoryListItem .HistoryInfo .Rewards,.LuckyWheelsListPopup.Desktop .HistoryWrapper .HistoryListItem .HistoryInfo .Rewards{flex-basis:140px}.LuckyWheelsListPopup.Tablet .HistoryWrapper .HistoryListItem .HistoryInfo .Issued,.LuckyWheelsListPopup.Desktop .HistoryWrapper .HistoryListItem .HistoryInfo .Issued{flex-basis:100px}.EngagementSuiteTabsWrapper{padding:0 24px;margin:8px 0}.EngagementSuiteTabsWrapper .EngagementSuiteTabs{display:flex;position:relative;border-bottom:2px solid var(--emw--color-secondary, #666178)}.EngagementSuiteTabsWrapper .EngagementSuiteTabs .EngagementSuiteTab{padding:9px 16px 7px;font-weight:var(--emw--font-weight-medium, 500);font-size:var(--emw--font-size-x-small, 12px);line-height:15px;color:var(--emw--color-gray-300, #666178);cursor:pointer}.EngagementSuiteTabsWrapper .EngagementSuiteTabs .EngagementSuiteTab.Active{color:var(--emw--color-typography, #fff);border-bottom:2px solid var(--emw--color-typography, #fff);margin-bottom:-2px}.HistoryWrapper{padding:0 24px;display:flex;flex-direction:column;height:100%;overflow:hidden}.HistoryWrapper .HistoryEmptyMessage{margin-top:8px;font-size:var(--emw--font-size-small, 14px);color:var(--emw--color-secondary, #bbb9c3);line-height:30px}.HistoryWrapper .HistoryCols{padding:12px 10px;position:relative;display:flex;border-bottom:1px solid var(--emw--color-secondary, #666178);font-size:var(--emw--font-size-x-small, 12px)}.HistoryWrapper .HistoryCols .HistoryColName{color:var(--emw--color-secondary, #bbb9c3)}.HistoryWrapper .HistoryCols .Rewards{flex-basis:80px}.HistoryWrapper .HistoryCols .Issued{flex-basis:80px}.HistoryWrapper .HistoryLoader{display:flex;flex-direction:column;justify-content:center;align-items:center;height:inherit;font-size:var(--emw--font-size-medium, 16px);color:var(--emw--color-gray-150, #8f8b9c)}.HistoryWrapper .HistoryLoader casino-engagement-suite-progress-bar{margin-bottom:8px;width:100px}.HistoryWrapper .HistoryListItem{margin-top:8px}.HistoryWrapper .HistoryListItem.Opened .EngagementSuiteIconButton.ArrowDown{transform:rotate(180deg)}.HistoryWrapper .HistoryListItem.Opened .HistoryListItemBody{padding-bottom:8px;grid-template-rows:1fr;border-bottom:1px solid var(--emw--color-secondary, #666178)}.HistoryWrapper .HistoryListItem .HistoryListItemHeader{padding:16px 0;display:flex;justify-content:space-between;align-items:center;color:var(--emw--color-typography, #ffffff);font-size:var(--emw--font-size-medium, 14px)}.HistoryWrapper .HistoryListItem .EngagementSuiteIconButton.ArrowDown{transition:transform 0.3s ease-out;width:24px;height:24px}.HistoryWrapper .HistoryListItem .HistoryListItemBody{position:relative;display:grid;grid-template-rows:0fr;transition:grid-template-rows 0.3s ease-out}.HistoryWrapper .HistoryListItem .HistoryListItemBody>div{overflow:hidden}.HistoryWrapper .HistoryListItem .HistoryListItemCard{padding:12px 5px}.HistoryWrapper .HistoryListItem .HistoryInfoRow{display:flex;gap:10px;flex-direction:column}.HistoryWrapper .HistoryListItem .HistoryInfo{display:flex;padding:10px;font-size:var(--emw--font-size-x-small, 12px);color:var(--emw--color-secondary, #bbb9c3)}.HistoryWrapper .HistoryListItem .HistoryInfo .HistoryCol{text-overflow:ellipsis;overflow:hidden}.HistoryWrapper .HistoryListItem .HistoryInfo .Rewards{color:var(--emw--color-typography, #ffffff);flex-basis:80px;font-weight:600}.HistoryWrapper .HistoryListItem .HistoryInfo .Issued{flex-basis:80px}';export{Ie as C}
|