@everymatrix/cashier-verifications 1.43.1 → 1.43.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/cashier-verifications",
|
|
3
|
-
"version": "1.43.
|
|
3
|
+
"version": "1.43.3",
|
|
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": "4723f5370b2d6fc913a8cf6770f9f492038e54e8"
|
|
39
39
|
}
|
|
@@ -301,7 +301,7 @@
|
|
|
301
301
|
|
|
302
302
|
<div class="CashierVerifications" class:CashierVerificationsDesktop={desktopView} bind:this={customStylingContainer}>
|
|
303
303
|
{#if displayMessages}
|
|
304
|
-
<div>
|
|
304
|
+
<div class="CashierVerificationsWrapper">
|
|
305
305
|
{#each displayMessages as message, index}
|
|
306
306
|
<div class="CashierVerificationMessage" class:ShowAll={allVerificationsVisible} on:click={(e) => showAllVerifications(e, index)}>
|
|
307
307
|
<div class="IconVerification"><svg width="64px" height="64px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M4.39254 16.2614C2.64803 13.1941 1.66074 9.71783 1.51646 6.15051C1.50127 5.77507 1.70918 5.42812 2.04153 5.25282L11.5335 0.246091C11.8254 0.0920859 12.1746 0.0920859 12.4665 0.246091L21.9585 5.25282C22.2908 5.42812 22.4987 5.77507 22.4835 6.15051C22.3393 9.71783 21.352 13.1941 19.6075 16.2614C17.8618 19.3307 15.4169 21.8869 12.4986 23.7001C12.1931 23.8899 11.8069 23.8899 11.5014 23.7001C8.58313 21.8869 6.13817 19.3307 4.39254 16.2614Z" fill="#fa9200"></path> <path d="M8.25 12.75L11.25 15L17.25 9" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> </g></svg></div>
|
|
@@ -337,12 +337,7 @@
|
|
|
337
337
|
}
|
|
338
338
|
|
|
339
339
|
.CashierVerifications {
|
|
340
|
-
display: flex;
|
|
341
|
-
flex-direction: column;
|
|
342
340
|
box-shadow: 0 0 4px $color-black-transparency-10;
|
|
343
|
-
width: 100%;
|
|
344
|
-
container-name: method-list;
|
|
345
|
-
container-type: inline-size;
|
|
346
341
|
&.CashierVerificationsDesktop {
|
|
347
342
|
border-radius: $border-radius-medium-plus;
|
|
348
343
|
overflow: hidden;
|
|
@@ -351,6 +346,13 @@
|
|
|
351
346
|
}
|
|
352
347
|
}
|
|
353
348
|
}
|
|
349
|
+
|
|
350
|
+
.CashierVerificationsWrapper {
|
|
351
|
+
display: flex;
|
|
352
|
+
flex-direction: column;
|
|
353
|
+
width: 100%;
|
|
354
|
+
}
|
|
355
|
+
|
|
354
356
|
.IconVerification {
|
|
355
357
|
width: 30px;
|
|
356
358
|
display: flex;
|
|
@@ -426,11 +428,4 @@
|
|
|
426
428
|
transform:rotate(180deg);
|
|
427
429
|
}
|
|
428
430
|
|
|
429
|
-
@container method-list (width < 450px) {
|
|
430
|
-
p {
|
|
431
|
-
font-size: var(--emw--font-size-x-small, 12px);
|
|
432
|
-
line-height: calc(var(--emw--size-small, 12px) + 3px);
|
|
433
|
-
}
|
|
434
|
-
}
|
|
435
|
-
|
|
436
431
|
</style>
|