@everymatrix/casino-search 0.0.365 → 0.0.367
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/README.md +30 -30
- package/dist/casino-search.js +418 -418
- package/dist/casino-search.js.map +1 -1
- package/index.html +100 -100
- package/index.js +1 -1
- package/package.json +2 -2
- package/public/reset.css +47 -47
- package/rollup.config.js +59 -59
- package/src/CasinoSearch.svelte +415 -415
- package/src/i18n.js +27 -27
- package/src/index.ts +4 -4
- package/src/translations.js +193 -193
- package/stories/CasinoSearch.stories.js +13 -13
- package/tsconfig.json +6 -6
package/src/i18n.js
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
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 };
|
|
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
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import CasinoSearch from './CasinoSearch.svelte';
|
|
2
|
-
|
|
3
|
-
!customElements.get('casino-search') && customElements.define('casino-search', CasinoSearch);
|
|
4
|
-
export default CasinoSearch;
|
|
1
|
+
import CasinoSearch from './CasinoSearch.svelte';
|
|
2
|
+
|
|
3
|
+
!customElements.get('casino-search') && customElements.define('casino-search', CasinoSearch);
|
|
4
|
+
export default CasinoSearch;
|
package/src/translations.js
CHANGED
|
@@ -1,193 +1,193 @@
|
|
|
1
|
-
export const Translations = {
|
|
2
|
-
en: {
|
|
3
|
-
Translations: {
|
|
4
|
-
recentSearch: "Recent search",
|
|
5
|
-
loading: "Loading, please wait",
|
|
6
|
-
searchResult: "Search result",
|
|
7
|
-
cancel: "Cancel",
|
|
8
|
-
notFound: "Game not found!",
|
|
9
|
-
notFoundText:
|
|
10
|
-
"Please type the correct name of the game to start to play.",
|
|
11
|
-
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
12
|
-
},
|
|
13
|
-
},
|
|
14
|
-
zh: {
|
|
15
|
-
Translations: {
|
|
16
|
-
recentSearch: "最近的搜索",
|
|
17
|
-
loading: "加载请稍候",
|
|
18
|
-
searchResult: "搜索结果",
|
|
19
|
-
cancel: "取消",
|
|
20
|
-
notFound: "找不到游戏!",
|
|
21
|
-
notFoundText:
|
|
22
|
-
"请输入正确的游戏名称开始玩。",
|
|
23
|
-
noRecentSearches: "还没有最近的搜索。 搜索我们的任何游戏。",
|
|
24
|
-
},
|
|
25
|
-
},
|
|
26
|
-
de: {
|
|
27
|
-
Translations: {
|
|
28
|
-
recentSearch: "Kürzlich gesucht",
|
|
29
|
-
loading: "Es lädt, bitte warten...",
|
|
30
|
-
searchResult: "Suchresultat",
|
|
31
|
-
cancel: "Verwerfen",
|
|
32
|
-
notFound: "Spiel wurde nicht gefunden!",
|
|
33
|
-
notFoundText: "Bitte den korrekten Spielnamen eingeben um zu spielen",
|
|
34
|
-
noRecentSearches:
|
|
35
|
-
"Suche ohne Ergebnisse. Bitte erneut nach einem unserer Spiele suchen.",
|
|
36
|
-
},
|
|
37
|
-
},
|
|
38
|
-
it: {
|
|
39
|
-
Translations: {
|
|
40
|
-
recentSearch: "Recent search",
|
|
41
|
-
loading: "Loading, please wait",
|
|
42
|
-
searchResult: "Search result",
|
|
43
|
-
cancel: "Cancel",
|
|
44
|
-
notFound: "Game not found!",
|
|
45
|
-
notFoundText:
|
|
46
|
-
"Please type the correct name of the game to start to play.",
|
|
47
|
-
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
48
|
-
},
|
|
49
|
-
},
|
|
50
|
-
fr: {
|
|
51
|
-
Translations: {
|
|
52
|
-
recentSearch: "Recherche récente",
|
|
53
|
-
loading: "Chargement, veuillez patienter",
|
|
54
|
-
searchResult: "Résultat de la recherche",
|
|
55
|
-
cancel: "Annuler",
|
|
56
|
-
notFound: "Jeu non trouvé!",
|
|
57
|
-
notFoundText:
|
|
58
|
-
"Veuillez saisir le nom correct du jeu pour commencer à jouer.",
|
|
59
|
-
noRecentSearches: "Pas encore de recherches récentes. Recherchez l'un de nos jeux.",
|
|
60
|
-
},
|
|
61
|
-
},
|
|
62
|
-
es: {
|
|
63
|
-
Translations: {
|
|
64
|
-
recentSearch: "Recent search",
|
|
65
|
-
loading: "Loading, please wait",
|
|
66
|
-
searchResult: "Search result",
|
|
67
|
-
cancel: "Cancel",
|
|
68
|
-
notFound: "Game not found!",
|
|
69
|
-
notFoundText:
|
|
70
|
-
"Please type the correct name of the game to start to play.",
|
|
71
|
-
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
72
|
-
},
|
|
73
|
-
},
|
|
74
|
-
gr: {
|
|
75
|
-
Translations: {
|
|
76
|
-
recentSearch: "Recent search",
|
|
77
|
-
loading: "Loading, please wait",
|
|
78
|
-
searchResult: "Search result",
|
|
79
|
-
cancel: "Cancel",
|
|
80
|
-
notFound: "Game not found!",
|
|
81
|
-
notFoundText:
|
|
82
|
-
"Please type the correct name of the game to start to play.",
|
|
83
|
-
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
84
|
-
},
|
|
85
|
-
},
|
|
86
|
-
tr: {
|
|
87
|
-
Translations: {
|
|
88
|
-
recentSearch: "Recent search",
|
|
89
|
-
loading: "Loading, please wait",
|
|
90
|
-
searchResult: "Search result",
|
|
91
|
-
cancel: "Cancel",
|
|
92
|
-
notFound: "Game not found!",
|
|
93
|
-
notFoundText:
|
|
94
|
-
"Please type the correct name of the game to start to play.",
|
|
95
|
-
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
96
|
-
},
|
|
97
|
-
},
|
|
98
|
-
ru: {
|
|
99
|
-
Translations: {
|
|
100
|
-
recentSearch: "Recent search",
|
|
101
|
-
loading: "Loading, please wait",
|
|
102
|
-
searchResult: "Search result",
|
|
103
|
-
cancel: "Cancel",
|
|
104
|
-
notFound: "Game not found!",
|
|
105
|
-
notFoundText:
|
|
106
|
-
"Please type the correct name of the game to start to play.",
|
|
107
|
-
},
|
|
108
|
-
},
|
|
109
|
-
ro: {
|
|
110
|
-
Translations: {
|
|
111
|
-
recentSearch: "Cautari recente",
|
|
112
|
-
loading: "Se incarca, te rugam asteapta…",
|
|
113
|
-
searchResult: "Rezultat cautare",
|
|
114
|
-
cancel: "Anuleaza",
|
|
115
|
-
notFound: "Nu am gasit niciun rezultat!",
|
|
116
|
-
notFoundText: "Te rugam sa introduci corect numele jocului. ",
|
|
117
|
-
noRecentSearches:
|
|
118
|
-
"Nu sunt cautari recente. Cauta oricare din jocurile noastre.",
|
|
119
|
-
},
|
|
120
|
-
},
|
|
121
|
-
hr: {
|
|
122
|
-
Translations: {
|
|
123
|
-
recentSearch: "Recent search",
|
|
124
|
-
loading: "Loading, please wait",
|
|
125
|
-
searchResult: "Search result",
|
|
126
|
-
cancel: "Cancel",
|
|
127
|
-
notFound: "Game not found!",
|
|
128
|
-
notFoundText:
|
|
129
|
-
"Please type the correct name of the game to start to play.",
|
|
130
|
-
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
131
|
-
},
|
|
132
|
-
},
|
|
133
|
-
hu: {
|
|
134
|
-
Translations: {
|
|
135
|
-
recentSearch: "Recent search",
|
|
136
|
-
loading: "Loading, please wait",
|
|
137
|
-
searchResult: "Search result",
|
|
138
|
-
cancel: "Cancel",
|
|
139
|
-
notFound: "Game not found!",
|
|
140
|
-
notFoundText:
|
|
141
|
-
"Please type the correct name of the game to start to play.",
|
|
142
|
-
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
143
|
-
},
|
|
144
|
-
},
|
|
145
|
-
pl: {
|
|
146
|
-
Translations: {
|
|
147
|
-
recentSearch: "Recent search",
|
|
148
|
-
loading: "Loading, please wait",
|
|
149
|
-
searchResult: "Search result",
|
|
150
|
-
cancel: "Cancel",
|
|
151
|
-
notFound: "Game not found!",
|
|
152
|
-
notFoundText:
|
|
153
|
-
"Please type the correct name of the game to start to play.",
|
|
154
|
-
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
155
|
-
},
|
|
156
|
-
},
|
|
157
|
-
pt: {
|
|
158
|
-
Translations: {
|
|
159
|
-
recentSearch: "Recent search",
|
|
160
|
-
loading: "Loading, please wait",
|
|
161
|
-
searchResult: "Search result",
|
|
162
|
-
cancel: "Cancel",
|
|
163
|
-
notFound: "Game not found!",
|
|
164
|
-
notFoundText:
|
|
165
|
-
"Please type the correct name of the game to start to play.",
|
|
166
|
-
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
167
|
-
},
|
|
168
|
-
},
|
|
169
|
-
sl: {
|
|
170
|
-
Translations: {
|
|
171
|
-
recentSearch: "Recent search",
|
|
172
|
-
loading: "Loading, please wait",
|
|
173
|
-
searchResult: "Search result",
|
|
174
|
-
cancel: "Cancel",
|
|
175
|
-
notFound: "Game not found!",
|
|
176
|
-
notFoundText:
|
|
177
|
-
"Please type the correct name of the game to start to play.",
|
|
178
|
-
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
179
|
-
},
|
|
180
|
-
},
|
|
181
|
-
sr: {
|
|
182
|
-
Translations: {
|
|
183
|
-
recentSearch: "Recent search",
|
|
184
|
-
loading: "Loading, please wait",
|
|
185
|
-
searchResult: "Search result",
|
|
186
|
-
cancel: "Cancel",
|
|
187
|
-
notFound: "Game not found!",
|
|
188
|
-
notFoundText:
|
|
189
|
-
"Please type the correct name of the game to start to play.",
|
|
190
|
-
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
191
|
-
},
|
|
192
|
-
},
|
|
193
|
-
};
|
|
1
|
+
export const Translations = {
|
|
2
|
+
en: {
|
|
3
|
+
Translations: {
|
|
4
|
+
recentSearch: "Recent search",
|
|
5
|
+
loading: "Loading, please wait",
|
|
6
|
+
searchResult: "Search result",
|
|
7
|
+
cancel: "Cancel",
|
|
8
|
+
notFound: "Game not found!",
|
|
9
|
+
notFoundText:
|
|
10
|
+
"Please type the correct name of the game to start to play.",
|
|
11
|
+
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
12
|
+
},
|
|
13
|
+
},
|
|
14
|
+
zh: {
|
|
15
|
+
Translations: {
|
|
16
|
+
recentSearch: "最近的搜索",
|
|
17
|
+
loading: "加载请稍候",
|
|
18
|
+
searchResult: "搜索结果",
|
|
19
|
+
cancel: "取消",
|
|
20
|
+
notFound: "找不到游戏!",
|
|
21
|
+
notFoundText:
|
|
22
|
+
"请输入正确的游戏名称开始玩。",
|
|
23
|
+
noRecentSearches: "还没有最近的搜索。 搜索我们的任何游戏。",
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
de: {
|
|
27
|
+
Translations: {
|
|
28
|
+
recentSearch: "Kürzlich gesucht",
|
|
29
|
+
loading: "Es lädt, bitte warten...",
|
|
30
|
+
searchResult: "Suchresultat",
|
|
31
|
+
cancel: "Verwerfen",
|
|
32
|
+
notFound: "Spiel wurde nicht gefunden!",
|
|
33
|
+
notFoundText: "Bitte den korrekten Spielnamen eingeben um zu spielen",
|
|
34
|
+
noRecentSearches:
|
|
35
|
+
"Suche ohne Ergebnisse. Bitte erneut nach einem unserer Spiele suchen.",
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
it: {
|
|
39
|
+
Translations: {
|
|
40
|
+
recentSearch: "Recent search",
|
|
41
|
+
loading: "Loading, please wait",
|
|
42
|
+
searchResult: "Search result",
|
|
43
|
+
cancel: "Cancel",
|
|
44
|
+
notFound: "Game not found!",
|
|
45
|
+
notFoundText:
|
|
46
|
+
"Please type the correct name of the game to start to play.",
|
|
47
|
+
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
48
|
+
},
|
|
49
|
+
},
|
|
50
|
+
fr: {
|
|
51
|
+
Translations: {
|
|
52
|
+
recentSearch: "Recherche récente",
|
|
53
|
+
loading: "Chargement, veuillez patienter",
|
|
54
|
+
searchResult: "Résultat de la recherche",
|
|
55
|
+
cancel: "Annuler",
|
|
56
|
+
notFound: "Jeu non trouvé!",
|
|
57
|
+
notFoundText:
|
|
58
|
+
"Veuillez saisir le nom correct du jeu pour commencer à jouer.",
|
|
59
|
+
noRecentSearches: "Pas encore de recherches récentes. Recherchez l'un de nos jeux.",
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
es: {
|
|
63
|
+
Translations: {
|
|
64
|
+
recentSearch: "Recent search",
|
|
65
|
+
loading: "Loading, please wait",
|
|
66
|
+
searchResult: "Search result",
|
|
67
|
+
cancel: "Cancel",
|
|
68
|
+
notFound: "Game not found!",
|
|
69
|
+
notFoundText:
|
|
70
|
+
"Please type the correct name of the game to start to play.",
|
|
71
|
+
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
gr: {
|
|
75
|
+
Translations: {
|
|
76
|
+
recentSearch: "Recent search",
|
|
77
|
+
loading: "Loading, please wait",
|
|
78
|
+
searchResult: "Search result",
|
|
79
|
+
cancel: "Cancel",
|
|
80
|
+
notFound: "Game not found!",
|
|
81
|
+
notFoundText:
|
|
82
|
+
"Please type the correct name of the game to start to play.",
|
|
83
|
+
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
tr: {
|
|
87
|
+
Translations: {
|
|
88
|
+
recentSearch: "Recent search",
|
|
89
|
+
loading: "Loading, please wait",
|
|
90
|
+
searchResult: "Search result",
|
|
91
|
+
cancel: "Cancel",
|
|
92
|
+
notFound: "Game not found!",
|
|
93
|
+
notFoundText:
|
|
94
|
+
"Please type the correct name of the game to start to play.",
|
|
95
|
+
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
96
|
+
},
|
|
97
|
+
},
|
|
98
|
+
ru: {
|
|
99
|
+
Translations: {
|
|
100
|
+
recentSearch: "Recent search",
|
|
101
|
+
loading: "Loading, please wait",
|
|
102
|
+
searchResult: "Search result",
|
|
103
|
+
cancel: "Cancel",
|
|
104
|
+
notFound: "Game not found!",
|
|
105
|
+
notFoundText:
|
|
106
|
+
"Please type the correct name of the game to start to play.",
|
|
107
|
+
},
|
|
108
|
+
},
|
|
109
|
+
ro: {
|
|
110
|
+
Translations: {
|
|
111
|
+
recentSearch: "Cautari recente",
|
|
112
|
+
loading: "Se incarca, te rugam asteapta…",
|
|
113
|
+
searchResult: "Rezultat cautare",
|
|
114
|
+
cancel: "Anuleaza",
|
|
115
|
+
notFound: "Nu am gasit niciun rezultat!",
|
|
116
|
+
notFoundText: "Te rugam sa introduci corect numele jocului. ",
|
|
117
|
+
noRecentSearches:
|
|
118
|
+
"Nu sunt cautari recente. Cauta oricare din jocurile noastre.",
|
|
119
|
+
},
|
|
120
|
+
},
|
|
121
|
+
hr: {
|
|
122
|
+
Translations: {
|
|
123
|
+
recentSearch: "Recent search",
|
|
124
|
+
loading: "Loading, please wait",
|
|
125
|
+
searchResult: "Search result",
|
|
126
|
+
cancel: "Cancel",
|
|
127
|
+
notFound: "Game not found!",
|
|
128
|
+
notFoundText:
|
|
129
|
+
"Please type the correct name of the game to start to play.",
|
|
130
|
+
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
131
|
+
},
|
|
132
|
+
},
|
|
133
|
+
hu: {
|
|
134
|
+
Translations: {
|
|
135
|
+
recentSearch: "Recent search",
|
|
136
|
+
loading: "Loading, please wait",
|
|
137
|
+
searchResult: "Search result",
|
|
138
|
+
cancel: "Cancel",
|
|
139
|
+
notFound: "Game not found!",
|
|
140
|
+
notFoundText:
|
|
141
|
+
"Please type the correct name of the game to start to play.",
|
|
142
|
+
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
143
|
+
},
|
|
144
|
+
},
|
|
145
|
+
pl: {
|
|
146
|
+
Translations: {
|
|
147
|
+
recentSearch: "Recent search",
|
|
148
|
+
loading: "Loading, please wait",
|
|
149
|
+
searchResult: "Search result",
|
|
150
|
+
cancel: "Cancel",
|
|
151
|
+
notFound: "Game not found!",
|
|
152
|
+
notFoundText:
|
|
153
|
+
"Please type the correct name of the game to start to play.",
|
|
154
|
+
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
155
|
+
},
|
|
156
|
+
},
|
|
157
|
+
pt: {
|
|
158
|
+
Translations: {
|
|
159
|
+
recentSearch: "Recent search",
|
|
160
|
+
loading: "Loading, please wait",
|
|
161
|
+
searchResult: "Search result",
|
|
162
|
+
cancel: "Cancel",
|
|
163
|
+
notFound: "Game not found!",
|
|
164
|
+
notFoundText:
|
|
165
|
+
"Please type the correct name of the game to start to play.",
|
|
166
|
+
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
167
|
+
},
|
|
168
|
+
},
|
|
169
|
+
sl: {
|
|
170
|
+
Translations: {
|
|
171
|
+
recentSearch: "Recent search",
|
|
172
|
+
loading: "Loading, please wait",
|
|
173
|
+
searchResult: "Search result",
|
|
174
|
+
cancel: "Cancel",
|
|
175
|
+
notFound: "Game not found!",
|
|
176
|
+
notFoundText:
|
|
177
|
+
"Please type the correct name of the game to start to play.",
|
|
178
|
+
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
179
|
+
},
|
|
180
|
+
},
|
|
181
|
+
sr: {
|
|
182
|
+
Translations: {
|
|
183
|
+
recentSearch: "Recent search",
|
|
184
|
+
loading: "Loading, please wait",
|
|
185
|
+
searchResult: "Search result",
|
|
186
|
+
cancel: "Cancel",
|
|
187
|
+
notFound: "Game not found!",
|
|
188
|
+
notFoundText:
|
|
189
|
+
"Please type the correct name of the game to start to play.",
|
|
190
|
+
noRecentSearches: "No recent searches yet. Search for any of our games.",
|
|
191
|
+
},
|
|
192
|
+
},
|
|
193
|
+
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { html } from 'lit-element';
|
|
2
|
-
|
|
3
|
-
import CasinoSearch from '../src/CasinoSearch';
|
|
4
|
-
|
|
5
|
-
// This default export determines where your story goes in the story list
|
|
6
|
-
export default {
|
|
7
|
-
title: 'CasinoSearch',
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
// 👇 We create a “template” of how args map to rendering
|
|
11
|
-
const CasinoSearch = ({ aProperty }) => html`<casino-search></casino-search>`;
|
|
12
|
-
|
|
13
|
-
export const FirstStory = CasinoSearch.bind({});
|
|
1
|
+
import { html } from 'lit-element';
|
|
2
|
+
|
|
3
|
+
import CasinoSearch from '../src/CasinoSearch';
|
|
4
|
+
|
|
5
|
+
// This default export determines where your story goes in the story list
|
|
6
|
+
export default {
|
|
7
|
+
title: 'CasinoSearch',
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
// 👇 We create a “template” of how args map to rendering
|
|
11
|
+
const CasinoSearch = ({ aProperty }) => html`<casino-search></casino-search>`;
|
|
12
|
+
|
|
13
|
+
export const FirstStory = CasinoSearch.bind({});
|
package/tsconfig.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
3
|
-
|
|
4
|
-
"include": ["src/**/*"],
|
|
5
|
-
"exclude": ["node_modules/*", "__sapper__/*", "public/*"]
|
|
6
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
3
|
+
|
|
4
|
+
"include": ["src/**/*"],
|
|
5
|
+
"exclude": ["node_modules/*", "__sapper__/*", "public/*"]
|
|
6
|
+
}
|