@everymatrix/casino-sort 1.13.15 → 1.13.17
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-sort.js +18 -18
- package/dist/casino-sort.js.map +1 -1
- package/package.json +2 -2
- package/src/CasinoSort.svelte +20 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-sort",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.17",
|
|
4
4
|
"main": "dist/casino-sort.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": "8b0b2bd7cdef9f325e39e95baf9a25dd09ad69b3"
|
|
39
39
|
}
|
package/src/CasinoSort.svelte
CHANGED
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
|
|
130
130
|
<div bind:this={customStylingContainer}>
|
|
131
131
|
{#if hasErrors}
|
|
132
|
-
<p class="SearchLoading"
|
|
132
|
+
<p class="SearchLoading">{$_('500')}</p>
|
|
133
133
|
{:else}
|
|
134
134
|
{#if !isLoading}
|
|
135
135
|
<div class="SorterContainer">
|
|
@@ -176,14 +176,25 @@
|
|
|
176
176
|
|
|
177
177
|
|
|
178
178
|
<style lang="scss">
|
|
179
|
+
*,
|
|
180
|
+
*::before,
|
|
181
|
+
*::after {
|
|
182
|
+
margin: 0;
|
|
183
|
+
padding: 0;
|
|
184
|
+
box-sizing: border-box;
|
|
185
|
+
}
|
|
186
|
+
.SearchLoading {
|
|
187
|
+
color: var(--emfe-w-casino-typography, var(--emfe-w-color-white, #FFFFFF));
|
|
188
|
+
}
|
|
189
|
+
|
|
179
190
|
.SorterContainer {
|
|
180
|
-
color: #
|
|
191
|
+
color: var(--emfe-w-casino-typography, var(--emfe-w-color-white, #FFFFFF));
|
|
181
192
|
position: relative;
|
|
182
193
|
z-index: 16;
|
|
183
194
|
}
|
|
184
195
|
|
|
185
196
|
.SorterSelector {
|
|
186
|
-
background-color: #58586B;
|
|
197
|
+
background-color: var(--emfe-w-color-gray-300, #58586B);
|
|
187
198
|
display: flex;
|
|
188
199
|
position: relative;
|
|
189
200
|
padding: 10px 16px;
|
|
@@ -207,7 +218,7 @@
|
|
|
207
218
|
.SorterName {
|
|
208
219
|
font-size: 11px;
|
|
209
220
|
line-height: 12px;
|
|
210
|
-
color: #
|
|
221
|
+
color: var(--emfe-w-color-gray-100, #E6E6E6);
|
|
211
222
|
text-transform: uppercase;
|
|
212
223
|
}
|
|
213
224
|
|
|
@@ -324,7 +335,7 @@
|
|
|
324
335
|
.CustomRadioButton input[type="radio"]+span:before {
|
|
325
336
|
content: '';
|
|
326
337
|
background: transparent;
|
|
327
|
-
border: 1px solid #
|
|
338
|
+
border: 1px solid var(--emfe-w-color-white, #FFFFFF);
|
|
328
339
|
height: 18px;
|
|
329
340
|
width: 18px;
|
|
330
341
|
border-radius: 50%;
|
|
@@ -333,7 +344,7 @@
|
|
|
333
344
|
|
|
334
345
|
.CustomRadioButton input[type="radio"]+span:after {
|
|
335
346
|
content: '';
|
|
336
|
-
background: var(--emfe-w-color-primary, #D0046C);
|
|
347
|
+
background: var(--emfe-w-casino-color-primary, var(--emfe-w-color-pink-500, #D0046C));
|
|
337
348
|
width: 14px;
|
|
338
349
|
height: 14px;
|
|
339
350
|
border-radius: 50%;
|
|
@@ -366,9 +377,9 @@
|
|
|
366
377
|
.ClearSorters {
|
|
367
378
|
margin: 20px auto;
|
|
368
379
|
border: 0;
|
|
369
|
-
color: #
|
|
370
|
-
background-color: var(--emfe-w-color-primary, #D0046C);
|
|
371
|
-
border: 1px solid var(--emfe-w-color-primary, #D0046C);
|
|
380
|
+
color: var(--emfe-w-button-typography, var(--emfe-w-color-white, #FFFFFF));
|
|
381
|
+
background-color: var(--emfe-w-casino-color-primary, var(--emfe-w-color-pink-500, #D0046C));
|
|
382
|
+
border: 1px solid var(--emfe-w-casino-color-primary, var(--emfe-w-color-pink-500, #D0046C));
|
|
372
383
|
font-size: 18px;
|
|
373
384
|
padding: 10px 50px;
|
|
374
385
|
border-radius: 5px;
|