@everymatrix/casino-search-nd 1.37.9 → 1.37.10
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/index.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
<title>casino-search</title>
|
|
8
8
|
<link rel="stylesheet" href="public/reset.css" />
|
|
9
|
-
<script src="dist/casino-search.js"></script>
|
|
9
|
+
<script src="dist/casino-search-nd.js"></script>
|
|
10
10
|
</head>
|
|
11
11
|
|
|
12
12
|
<body>
|
|
@@ -91,11 +91,11 @@
|
|
|
91
91
|
<h1 class="header__name"><span>WEBCOMPONENT:</span> casino-search</h1>
|
|
92
92
|
</header>
|
|
93
93
|
|
|
94
|
-
<casino-search
|
|
94
|
+
<casino-search-nd
|
|
95
95
|
endpoint="https://demo-api.stage.norway.everymatrix.com"
|
|
96
96
|
datasource="RNG"
|
|
97
97
|
lang="en"
|
|
98
98
|
showfavorites="true"
|
|
99
|
-
></casino-search>
|
|
99
|
+
></casino-search-nd>
|
|
100
100
|
</body>
|
|
101
101
|
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-search-nd",
|
|
3
|
-
"version": "1.37.
|
|
3
|
+
"version": "1.37.10",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"svelte": "src/index.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "c46e8ef303dafce06506b9b0d639e64f81148ae6"
|
|
39
39
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { getDevice } from 'rvhelper';
|
|
7
7
|
import { onMount } from 'svelte';
|
|
8
8
|
|
|
9
|
-
import '@everymatrix/casino-game-thumbnail';
|
|
9
|
+
import '@everymatrix/casino-game-thumbnail-nd';
|
|
10
10
|
import moment from 'moment';
|
|
11
11
|
|
|
12
12
|
export let endpoint:string = '';
|
|
@@ -413,7 +413,7 @@
|
|
|
413
413
|
<div class="SearchResultsContainer {searchActive == true ? '': 'NotVisible'}">
|
|
414
414
|
{#if searchCancelled === false}
|
|
415
415
|
{#each searchArray as game}
|
|
416
|
-
<casino-game-thumbnail
|
|
416
|
+
<casino-game-thumbnail-nd
|
|
417
417
|
endpoint={endpoint}
|
|
418
418
|
session = {sessionID}
|
|
419
419
|
userid = {playerID}
|
|
@@ -436,7 +436,7 @@
|
|
|
436
436
|
{clientstyling}
|
|
437
437
|
{clientstylingurl}
|
|
438
438
|
{gamepagemodalurl}
|
|
439
|
-
></casino-game-thumbnail>
|
|
439
|
+
></casino-game-thumbnail-nd>
|
|
440
440
|
{/each}
|
|
441
441
|
{/if}
|
|
442
442
|
{#if searchValue.length >= 2 && searchArray.length == 0}
|
package/src/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import CasinoSearchNd from './CasinoSearchNd.svelte';
|
|
2
2
|
|
|
3
|
-
!customElements.get('casino-search-nd') && customElements.define('casino-search-nd',
|
|
4
|
-
export default
|
|
3
|
+
!customElements.get('casino-search-nd') && customElements.define('casino-search-nd', CasinoSearchNd);
|
|
4
|
+
export default CasinoSearchNd;
|