@everymatrix/cashier-page 1.28.5 → 1.28.7
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/cashier-page.js +72 -72
- package/dist/cashier-page.js.map +1 -1
- package/package.json +2 -2
- package/src/CashierPage.svelte +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/cashier-page",
|
|
3
|
-
"version": "1.28.
|
|
3
|
+
"version": "1.28.7",
|
|
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": "4be294aae17b0e8d5a7eec74883137c4b34bc12e"
|
|
39
39
|
}
|
package/src/CashierPage.svelte
CHANGED
|
@@ -169,10 +169,10 @@
|
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
</script>
|
|
172
|
-
{#if isProcessingTxn}
|
|
173
|
-
<div class="DisablePage"></div>
|
|
174
|
-
{/if}
|
|
175
172
|
<div class={showMethodDetailsPage ? "CashierPageWidget BothSections" : "CashierPageWidget"} bind:this={customStylingContainer}>
|
|
173
|
+
{#if isProcessingTxn}
|
|
174
|
+
<div class="DisablePage"></div>
|
|
175
|
+
{/if}
|
|
176
176
|
{#if lang}
|
|
177
177
|
<div class="Header">{ $_(`header.${type.toLowerCase()}`)}</div>
|
|
178
178
|
{/if}
|
|
@@ -236,7 +236,7 @@
|
|
|
236
236
|
}
|
|
237
237
|
}
|
|
238
238
|
@mixin container-height {
|
|
239
|
-
height: calc(100% -
|
|
239
|
+
height: calc(100% - 66px);
|
|
240
240
|
overflow: auto;
|
|
241
241
|
padding: var(--emw--spacing-x-small, 7px) var(--emw--spacing-small, 12px) var(--emw--spacing-small, 12px) var(--emw--spacing-small, 12px);
|
|
242
242
|
box-sizing: border-box;
|
|
@@ -256,6 +256,7 @@
|
|
|
256
256
|
container-type: inline-size;
|
|
257
257
|
container-name: deposit-page;
|
|
258
258
|
height: inherit;
|
|
259
|
+
position: relative;
|
|
259
260
|
}
|
|
260
261
|
.BothSections {
|
|
261
262
|
.Header {
|