@everymatrix/casino-page-nd 1.43.4 → 1.45.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/components/CasinoCalendar-BaOBa8QA.cjs +6 -0
- package/components/CasinoCalendar-Cy33jV__.js +4944 -0
- package/components/CasinoCalendarDailyDetails-DQQpSkBs.js +605 -0
- package/components/CasinoCalendarDailyDetails-GkvtCgJ7.cjs +1 -0
- package/components/CasinoCalendarDailyItem-CLTZq-09.cjs +1 -0
- package/components/CasinoCalendarDailyItem-DRjYmQvY.js +220 -0
- package/components/CasinoCollectionsProviders-BRMP9Loe.js +659 -0
- package/components/CasinoCollectionsProviders-BVrM9_-J.cjs +1 -0
- package/components/CasinoFavoritesSectionNd-AXQ2JUS4.cjs +1 -0
- package/components/CasinoFavoritesSectionNd-lR4QQgd8.js +418 -0
- package/components/CasinoFilter-CoIMk2Uk.js +628 -0
- package/components/CasinoFilter-Dtfc6EDd.cjs +1 -0
- package/components/CasinoGameThumbnailNd-DqBttZLW.cjs +39 -0
- package/components/CasinoGameThumbnailNd-ibSrwQHV.js +4403 -0
- package/components/CasinoGamesCategorySectionNd-D0S49tBe.js +3022 -0
- package/components/CasinoGamesCategorySectionNd-gNimye8Z.cjs +1 -0
- package/components/CasinoJackpotBanner-C1PFzuTK.js +619 -0
- package/components/CasinoJackpotBanner-CLzxeM6r.cjs +1 -0
- package/components/CasinoLastPlayedSectionNd-BDeLZhj5.js +563 -0
- package/components/CasinoLastPlayedSectionNd-BW2xLmkm.cjs +1 -0
- package/components/CasinoMostPlayedSectionNd-B-MVHU_k.cjs +1 -0
- package/components/CasinoMostPlayedSectionNd-D_44BcJt.js +580 -0
- package/components/CasinoMyGamesNd-CBKbxt--.js +1312 -0
- package/components/CasinoMyGamesNd-D6CSTig2.cjs +1 -0
- package/components/CasinoPageNd-BTu3kJYN.js +3524 -0
- package/components/CasinoPageNd-DdncSxLp.cjs +1 -0
- package/components/CasinoRandomGame-DjPEoghb.js +641 -0
- package/components/CasinoRandomGame-Dpvg_Gex.cjs +2 -0
- package/components/CasinoSearchNd-BuG6WXHV.cjs +1 -0
- package/components/CasinoSearchNd-CEBR6Dyh.js +1066 -0
- package/components/CasinoSort-C_BKJyhx.js +425 -0
- package/components/CasinoSort-xGpk7scM.cjs +1 -0
- package/components/CasinoWinners-BOUVtu8N.cjs +1 -0
- package/components/CasinoWinners-DcIZJcp-.js +884 -0
- package/components/GeneralAnimationLoading-CEONZ0El.cjs +1 -0
- package/components/GeneralAnimationLoading-Ci69lr1N.js +75 -0
- package/es2015/casino-page-nd.cjs +1 -0
- package/es2015/casino-page-nd.js +16 -0
- package/package.json +25 -32
- package/CHANGELOG.md +0 -13
- package/README.md +0 -30
- package/dist/casino-page-nd.js +0 -31
- package/dist/casino-page-nd.js.map +0 -1
- package/index.html +0 -37
- package/index.js +0 -1
- package/public/favicon.png +0 -0
- package/public/reset.css +0 -48
- package/rollup.config.js +0 -67
- package/src/CasinoPage.svelte +0 -850
- package/src/CasinoPage.types.ts +0 -92
- package/src/i18n.js +0 -27
- package/src/index.ts +0 -4
- package/src/translations.js +0 -214
- package/stories/CasinoPage.stories.js +0 -13
- package/tsconfig.json +0 -6
package/src/CasinoPage.types.ts
DELETED
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
export interface CategoriesData {
|
|
2
|
-
count: number,
|
|
3
|
-
items: Array<CategoriesItems>,
|
|
4
|
-
pages: CategoriesPages,
|
|
5
|
-
total: number ,
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
export interface CategoriesItems {
|
|
9
|
-
id: number,
|
|
10
|
-
name: String,
|
|
11
|
-
href: String,
|
|
12
|
-
games: Array<GamesItem>
|
|
13
|
-
};
|
|
14
|
-
|
|
15
|
-
interface GamesItem {
|
|
16
|
-
count: number,
|
|
17
|
-
items: Array<Object>,
|
|
18
|
-
pages: PagesItem,
|
|
19
|
-
total: number
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
interface PagesItem {
|
|
23
|
-
first: String,
|
|
24
|
-
last: String,
|
|
25
|
-
next: String,
|
|
26
|
-
previous: String
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
interface CategoriesPages {
|
|
30
|
-
first: String,
|
|
31
|
-
last: String,
|
|
32
|
-
next: String,
|
|
33
|
-
previous: String,
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
export interface CasinoData {
|
|
37
|
-
count: number,
|
|
38
|
-
items: CasinoItems[],
|
|
39
|
-
pages: CasinoPages,
|
|
40
|
-
total: number
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export interface CasinoItems {
|
|
44
|
-
name: string,
|
|
45
|
-
games: CasinoGames,
|
|
46
|
-
moreBtn?: boolean
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
interface CasinoGames {
|
|
50
|
-
count: number,
|
|
51
|
-
items: [{href: string}],
|
|
52
|
-
pages: CasinoPages,
|
|
53
|
-
total: number
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
interface CasinoPages {
|
|
57
|
-
first: string,
|
|
58
|
-
last: string,
|
|
59
|
-
next: null,
|
|
60
|
-
previous: null
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
export interface CasinoGameData {
|
|
64
|
-
backgroundImageUrl: string,
|
|
65
|
-
categories: CasinoBaseData,
|
|
66
|
-
defaultThumbnail: string,
|
|
67
|
-
groups: CasinoGroups,
|
|
68
|
-
hasAnonymousFunMode: boolean,
|
|
69
|
-
hasFunMode: boolean,
|
|
70
|
-
href: string,
|
|
71
|
-
id: string,
|
|
72
|
-
isNew: boolean,
|
|
73
|
-
launchURL: string,
|
|
74
|
-
name: string,
|
|
75
|
-
platform: string[],
|
|
76
|
-
popularity: number,
|
|
77
|
-
thumbnail: string,
|
|
78
|
-
vendor: {href: string, name:string},
|
|
79
|
-
cellSize?: string
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
interface CasinoBaseData {
|
|
83
|
-
count: number,
|
|
84
|
-
items: [{href: string}],
|
|
85
|
-
pagination: CasinoPages,
|
|
86
|
-
total: number
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
interface CasinoGroups {
|
|
90
|
-
count: number,
|
|
91
|
-
items: string[]
|
|
92
|
-
}
|
package/src/i18n.js
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
dictionary,
|
|
3
|
-
locale,
|
|
4
|
-
addMessages,
|
|
5
|
-
_
|
|
6
|
-
} from 'svelte-i18n';
|
|
7
|
-
|
|
8
|
-
function setupI18n({ withLocale: _locale, translations }) {
|
|
9
|
-
locale.subscribe((data) => {
|
|
10
|
-
if (data == null) {
|
|
11
|
-
dictionary.set(translations);
|
|
12
|
-
locale.set(_locale);
|
|
13
|
-
}
|
|
14
|
-
}); // maybe we will need this to make sure that the i18n is set up only once
|
|
15
|
-
/*dictionary.set(translations);
|
|
16
|
-
locale.set(_locale);*/
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
function addNewMessages(lang, dict) {
|
|
20
|
-
addMessages(lang, dict);
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
function setLocale(_locale) {
|
|
24
|
-
locale.set(_locale);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export { _, setupI18n, addNewMessages, setLocale };
|
package/src/index.ts
DELETED
package/src/translations.js
DELETED
|
@@ -1,214 +0,0 @@
|
|
|
1
|
-
export const TRANSLATIONS = {
|
|
2
|
-
"en": {
|
|
3
|
-
"500": "500 Error - Internal Server Error",
|
|
4
|
-
"search": "Search",
|
|
5
|
-
"loading": "Loading",
|
|
6
|
-
"searchMobile": "Search",
|
|
7
|
-
"break": "Take 1 day break from playing",
|
|
8
|
-
"breakButton": "Hold button for 3 seconds to take 24-hours instant lock",
|
|
9
|
-
"searchGames": "Search casino games",
|
|
10
|
-
"noGamesPlayed": "You have no games played!",
|
|
11
|
-
"filters": "Filters",
|
|
12
|
-
"clear": "Clear"
|
|
13
|
-
},
|
|
14
|
-
"zh-hk": {
|
|
15
|
-
"500": "500 錯誤 - 內部服務器錯誤",
|
|
16
|
-
"search": "搜索",
|
|
17
|
-
"loading": "正在加載",
|
|
18
|
-
"searchMobile": "搜索",
|
|
19
|
-
"break": "休息 1 天",
|
|
20
|
-
"breakButton": "24 小時冷卻",
|
|
21
|
-
"searchGames": "搜索賭場遊戲",
|
|
22
|
-
"noGamesPlayed": "你沒有玩過遊戲!",
|
|
23
|
-
"filters": "過濾器",
|
|
24
|
-
"clear": "清除"
|
|
25
|
-
},
|
|
26
|
-
"de": {
|
|
27
|
-
"500": "500-Fehler – Interner Serverfehler",
|
|
28
|
-
"search": "Suche",
|
|
29
|
-
"loading": "Loading",
|
|
30
|
-
"searchMobile": "Suche",
|
|
31
|
-
"break": "Mach mal einen Tag Pause!",
|
|
32
|
-
"breakButton": "Für 24 Std. Games Sofortpause, 3 Sekunden drücken",
|
|
33
|
-
"searchGames": "Casinospiele suchen",
|
|
34
|
-
"noGamesPlayed": "Sie haben keine Spiele gespielt!",
|
|
35
|
-
"filters": "Filter",
|
|
36
|
-
"clear": "Zurücksetzen"
|
|
37
|
-
},
|
|
38
|
-
"it": {
|
|
39
|
-
"500": "Errore 500 - Errore interno del server",
|
|
40
|
-
"search": "Cerca",
|
|
41
|
-
"loading": "Loading",
|
|
42
|
-
"searchMobile": "Cerca",
|
|
43
|
-
"break": "Take 1 day break from playing",
|
|
44
|
-
"breakButton": "24-hour Cool Off",
|
|
45
|
-
"searchGames": "Cerca giochi da casinò",
|
|
46
|
-
"noGamesPlayed": "Non hai giochi giocati!",
|
|
47
|
-
"filters": "Filtri",
|
|
48
|
-
"clear": "Azzera"
|
|
49
|
-
},
|
|
50
|
-
"fr": {
|
|
51
|
-
"500": "Erreur - erreur de serveur interne",
|
|
52
|
-
"search": "Recherche",
|
|
53
|
-
"loading": "Chargement",
|
|
54
|
-
"searchMobile": "Recherche",
|
|
55
|
-
"break": "Faire une pause d'un jour dans le jeu",
|
|
56
|
-
"breakButton": "Refroidissement de 24 heures",
|
|
57
|
-
"searchGames": "Recherche de jeux de casino",
|
|
58
|
-
"noGamesPlayed": "Vous n'avez aucune partie jouée",
|
|
59
|
-
"filters": "Filtres",
|
|
60
|
-
"clear": "Clair"
|
|
61
|
-
},
|
|
62
|
-
"es": {
|
|
63
|
-
"500": "500 Error - Error Servidor Interno",
|
|
64
|
-
"search": "Buscar ...",
|
|
65
|
-
"loading": "Cargando ...",
|
|
66
|
-
"searchMobile": "Buscar",
|
|
67
|
-
"break": "Tomar 1 día de descanso de juego",
|
|
68
|
-
"breakButton": "Dar clic durante 3 segundos para bloquear instantaneamente tu cuenta por 24 horas",
|
|
69
|
-
"searchGames": "Buscar juegos de casino",
|
|
70
|
-
"noGamesPlayed": "No has jugado ningún juego! Juega Ya",
|
|
71
|
-
"filters": "Filtros",
|
|
72
|
-
"clear": "Borrar"
|
|
73
|
-
},
|
|
74
|
-
"tr": {
|
|
75
|
-
"500": "500 Hatası - Dahili Sunucu Hatası",
|
|
76
|
-
"search": "Arama",
|
|
77
|
-
"loading": "Yükleniyor",
|
|
78
|
-
"searchMobile": "Arama",
|
|
79
|
-
"break": "Oyuna 1 gün ara verin",
|
|
80
|
-
"breakButton": "24 saatlik kilit için düğmeyi 3 saniye basılı tutun",
|
|
81
|
-
"searchGames": "Casino oyunları ara",
|
|
82
|
-
"noGamesPlayed": "Oynadığın oyun yok!",
|
|
83
|
-
"filters": "Filtreler",
|
|
84
|
-
"clear": "Temizle"
|
|
85
|
-
},
|
|
86
|
-
"ru": {
|
|
87
|
-
"500": "Ошибка 500 — внутренняя ошибка сервера",
|
|
88
|
-
"search": "Искать игры ...",
|
|
89
|
-
"loading": "Загрузка ...",
|
|
90
|
-
"searchMobile": "Поиск",
|
|
91
|
-
"break": "Take 1 day break from playing",
|
|
92
|
-
"breakButton": "24-hour Cool Off",
|
|
93
|
-
"searchGames": "Поиск игр казино",
|
|
94
|
-
"noGamesPlayed": "У вас нет сыгранных игр!",
|
|
95
|
-
"filters": "Фильтры",
|
|
96
|
-
"clear": "Прозрачный"
|
|
97
|
-
},
|
|
98
|
-
"ro": {
|
|
99
|
-
"500": "500 Error - Internal Server Error",
|
|
100
|
-
"search": "Cautare jocuri...",
|
|
101
|
-
"loading": "Se incarca ...",
|
|
102
|
-
"searchMobile": "Cauta",
|
|
103
|
-
"break": "Take 1 day break from playing",
|
|
104
|
-
"breakButton": "24-hour Cool Off",
|
|
105
|
-
"searchGames": "Cauta jocuri de casino",
|
|
106
|
-
"noGamesPlayed": "Nu ai jucat niciun joc!",
|
|
107
|
-
"filters": "Filtrare",
|
|
108
|
-
"clear": "Sterge"
|
|
109
|
-
},
|
|
110
|
-
"hr": {
|
|
111
|
-
"500": "500 Error - Internal Server Error",
|
|
112
|
-
"search": "Pretraga",
|
|
113
|
-
"loading": "Učitavanje",
|
|
114
|
-
"searchMobile": "Pretraga",
|
|
115
|
-
"break": "Uzmi 1 dan pauze od igranja",
|
|
116
|
-
"breakButton": "Držite gumb 3 sekunde za trenutno zaključavanje na 24 sata",
|
|
117
|
-
"searchGames": "Pretražite casino igre",
|
|
118
|
-
"noGamesPlayed": "Nemate odigranih igara!",
|
|
119
|
-
"filters": "Filteri",
|
|
120
|
-
"clear": "Čisto"
|
|
121
|
-
},
|
|
122
|
-
"hu": {
|
|
123
|
-
"500": "500 Error - Internal Server Error",
|
|
124
|
-
"search": "Keresés",
|
|
125
|
-
"loading": "betöltés",
|
|
126
|
-
"searchMobile": "Keresés",
|
|
127
|
-
"break": "Take 1 day break from playing",
|
|
128
|
-
"breakButton": "24-hour Cool Off",
|
|
129
|
-
"searchGames": "Kaszinó játékok keresése",
|
|
130
|
-
"noGamesPlayed": "Nincsenek lejátszott játékok!",
|
|
131
|
-
"filters": "Szűrők",
|
|
132
|
-
"clear": "Visszaállítás"
|
|
133
|
-
},
|
|
134
|
-
"pl": {
|
|
135
|
-
"500": "500 Error - Internal Server Error",
|
|
136
|
-
"search": "Szukaj",
|
|
137
|
-
"loading": "Ładowanie",
|
|
138
|
-
"searchMobile": "Szukaj",
|
|
139
|
-
"break": "Take 1 day break from playing",
|
|
140
|
-
"breakButton": "24-hour Cool Off",
|
|
141
|
-
"searchGames": "Wyszukaj gry kasynowe",
|
|
142
|
-
"noGamesPlayed": "Nie grałeś w żadne gry!",
|
|
143
|
-
"filters": "Filtry",
|
|
144
|
-
"clear": "Przywróć"
|
|
145
|
-
},
|
|
146
|
-
"pt": {
|
|
147
|
-
"500": "Erro 500 - Erro interno do servidor",
|
|
148
|
-
"search": "Procurar ...",
|
|
149
|
-
"loading": "Carregando ...",
|
|
150
|
-
"searchMobile": "Procurar",
|
|
151
|
-
"break": "Faça uma pausa de 1 dia no jogo",
|
|
152
|
-
"breakButton": "Faça uma pausa de 24 horas no jogo",
|
|
153
|
-
"searchGames": "Pesquisar jogos de cassino",
|
|
154
|
-
"noGamesPlayed": "Você não experimentou nenhum jogo!",
|
|
155
|
-
"filters": "Filtros",
|
|
156
|
-
"clear": "Limpar"
|
|
157
|
-
},
|
|
158
|
-
"sl": {
|
|
159
|
-
"500": "500 Error - Internal Server Error",
|
|
160
|
-
"search": "Iskanje",
|
|
161
|
-
"loading": "Loading",
|
|
162
|
-
"searchMobile": "Iskanje",
|
|
163
|
-
"break": "Take 1 day break from playing",
|
|
164
|
-
"breakButton": "24-hour Cool Off",
|
|
165
|
-
"searchGames": "Search casino games",
|
|
166
|
-
"noGamesPlayed": "You have no games played!",
|
|
167
|
-
"filters": "Filters",
|
|
168
|
-
"clear": "Ponastavitev"
|
|
169
|
-
},
|
|
170
|
-
"sr": {
|
|
171
|
-
"500": "500 Error - Internal Server Error",
|
|
172
|
-
"search": "Pretraži",
|
|
173
|
-
"loading": "Loading",
|
|
174
|
-
"searchMobile": "Pretraži",
|
|
175
|
-
"break": "Take 1 day break from playing",
|
|
176
|
-
"breakButton": "24-hour Cool Off",
|
|
177
|
-
"searchGames": "Search casino games",
|
|
178
|
-
"noGamesPlayed": "You have no games played!",
|
|
179
|
-
"filters": "Filters",
|
|
180
|
-
"clear": "Resetuj"
|
|
181
|
-
},
|
|
182
|
-
"pt-br": {
|
|
183
|
-
"500": "Erro 500 – Erro interno do servidor",
|
|
184
|
-
"search": "Procurar",
|
|
185
|
-
"loading": "Carregando",
|
|
186
|
-
"searchMobile": "Procurar",
|
|
187
|
-
"break": "Faça uma pausa a de jogo por um día",
|
|
188
|
-
"breakButton": "Pressione o botão por 3 segundos para um bloqueio instantâneo de 24 horas",
|
|
189
|
-
"searchGames": "Pesquise jogos de cassino",
|
|
190
|
-
"noGamesPlayed": "Você ainda não jogou!",
|
|
191
|
-
"Search": "Procurar",
|
|
192
|
-
"Loading": "Carregando",
|
|
193
|
-
"SearchMobile": "Procurar",
|
|
194
|
-
"SearchGames": "Pesquise jogos de cassino",
|
|
195
|
-
"filters": "Filtros",
|
|
196
|
-
"clear": "Eliminar"
|
|
197
|
-
},
|
|
198
|
-
"es-mx": {
|
|
199
|
-
"500": "500 Error - Error interno del servidor",
|
|
200
|
-
"search": "Buscar",
|
|
201
|
-
"loading": "Cargando",
|
|
202
|
-
"searchMobile": "Buscar",
|
|
203
|
-
"break": "Tomar un descanso de un día de juego",
|
|
204
|
-
"breakButton": "Presiona el botón por 3 segundos para un bloqueo instantáneo de 24 horas",
|
|
205
|
-
"searchGames": "Buscar juegos de casino",
|
|
206
|
-
"noGamesPlayed": "No has jugado aún!",
|
|
207
|
-
"Search": "Buscar",
|
|
208
|
-
"Loading": "Cargando",
|
|
209
|
-
"SearchMobile": "Buscar",
|
|
210
|
-
"SearchGames": "Buscar juegos de casino",
|
|
211
|
-
"filters": "Filtros",
|
|
212
|
-
"clear": "Eliminar"
|
|
213
|
-
}
|
|
214
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { html } from 'lit-element';
|
|
2
|
-
|
|
3
|
-
import CasinoPage from '../src/CasinoPage';
|
|
4
|
-
|
|
5
|
-
// This default export determines where your story goes in the story list
|
|
6
|
-
export default {
|
|
7
|
-
title: 'CasinoPage',
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
// 👇 We create a “template” of how args map to rendering
|
|
11
|
-
const CasinoPage = ({ aProperty }) => html`<casino-page></casino-page>`;
|
|
12
|
-
|
|
13
|
-
export const FirstStory = CasinoPage.bind({});
|