@everymatrix/casino-search 1.26.0 → 1.27.2
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-search.js +117 -76
- package/dist/casino-search.js.map +1 -1
- package/index.html +1 -1
- package/package.json +2 -2
- package/src/CasinoSearch.svelte +3 -1
package/index.html
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-search",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.27.2",
|
|
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": "0c03a79deed2ad6c051e5842c9c172ccdfee2b46"
|
|
39
39
|
}
|
package/src/CasinoSearch.svelte
CHANGED
|
@@ -389,7 +389,9 @@
|
|
|
389
389
|
<p class="LoadingContent">{$_('loading')}</p>
|
|
390
390
|
{:else}
|
|
391
391
|
{#if searchActive == true && searchValue.length < 2}
|
|
392
|
-
|
|
392
|
+
{#if searchArray.length !== 0}
|
|
393
|
+
<p class="SearchMessage">{$_('recentSearch')}</p>
|
|
394
|
+
{/if}
|
|
393
395
|
{#if searchArray.length == 0}
|
|
394
396
|
<div class="ResultsContainerError {notfoundicon == 'true' ? 'WithIcon': ''}">
|
|
395
397
|
{#if notfoundicon === 'true'}
|