@everymatrix/cashier-session-expiration-modal 1.39.0 → 1.39.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/cashier-session-expiration-modal",
|
|
3
|
-
"version": "1.39.
|
|
3
|
+
"version": "1.39.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": "fb533d03670d53bd356680ae1d7e216c391909d0"
|
|
39
39
|
}
|
|
@@ -207,66 +207,65 @@
|
|
|
207
207
|
justify-content: center;
|
|
208
208
|
width: 100%;
|
|
209
209
|
height: 100%;
|
|
210
|
-
z-index:
|
|
210
|
+
z-index: 101;
|
|
211
211
|
top: 0;
|
|
212
212
|
left: 0;
|
|
213
213
|
background-color: var(--mmw--color-black-transparency-4, rgba(0, 0, 0, .04));
|
|
214
214
|
container-type: inline-size;
|
|
215
215
|
container-name: session-expiration-modal-window;
|
|
216
|
+
}
|
|
216
217
|
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
218
|
+
.CashierSessionExpirationModalWrapper {
|
|
219
|
+
background: var(--emw--color-white, #fff);
|
|
220
|
+
border-radius: var(--emw--border-radius-medium, 4px);
|
|
221
|
+
width: 400px;
|
|
222
|
+
}
|
|
223
|
+
.CashierSessionExpirationModalHeader {
|
|
224
|
+
display: flex;
|
|
225
|
+
align-items: center;
|
|
226
|
+
position: relative;
|
|
227
|
+
height: var(--mmw--header-height, 32px);
|
|
228
|
+
background-color: var(--mmw--color-grey-105, #E8E9EB);
|
|
229
|
+
width: 100%;
|
|
230
|
+
border-radius: var(--emw--border-radius-medium, 4px) var(--emw--border-radius-medium, 4px) 0 0;
|
|
231
|
+
}
|
|
232
|
+
.CashierSessionExpirationModalHeaderTitle {
|
|
233
|
+
display: flex;
|
|
234
|
+
text-align: center;
|
|
235
|
+
color: var(--mmw--color-grey-10, #111);
|
|
236
|
+
font-size: var(--emw--font-size-small, 14px);
|
|
237
|
+
font-weight: var(--emw--font-weight-semibold, 500);
|
|
238
|
+
margin: auto;
|
|
239
|
+
max-width: calc(100% - 150px);
|
|
240
|
+
overflow: hidden;
|
|
241
|
+
text-overflow: ellipsis;
|
|
242
|
+
line-height: calc(var(--emw--font-size-small, 14px) + 2px);
|
|
243
|
+
}
|
|
244
|
+
.CashierSessionExpirationModalContainer {
|
|
245
|
+
padding: var(--emw--spacing-large, 20px);
|
|
246
|
+
}
|
|
247
|
+
.CashierSessionExpirationModalCloseBtn {
|
|
248
|
+
position: absolute;
|
|
249
|
+
display: flex;
|
|
250
|
+
align-items: center;
|
|
251
|
+
justify-content: center;
|
|
252
|
+
top: 10px;
|
|
253
|
+
right: 10px;
|
|
254
|
+
padding: var(--emw--spacing-small-minus, 10px);
|
|
255
|
+
border-radius: 50%;
|
|
256
|
+
color: var(--emw--color-white, #fff);
|
|
257
|
+
background: var(--mmw--color-gray-transparency-85, rgba(255, 255, 255, .85));
|
|
258
|
+
cursor: pointer;
|
|
259
|
+
transition: all 150ms ease-in-out;
|
|
260
|
+
svg {
|
|
261
|
+
width: 32px;
|
|
262
|
+
height: 32px;
|
|
245
263
|
}
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
display: flex;
|
|
249
|
-
align-items: center;
|
|
250
|
-
justify-content: center;
|
|
251
|
-
top: 10px;
|
|
252
|
-
right: 10px;
|
|
253
|
-
padding: var(--emw--spacing-small-minus, 10px);
|
|
254
|
-
border-radius: 50%;
|
|
255
|
-
color: var(--emw--color-white, #fff);
|
|
256
|
-
background: var(--mmw--color-gray-transparency-85, rgba(255, 255, 255, .85));
|
|
257
|
-
cursor: pointer;
|
|
258
|
-
transition: all 150ms ease-in-out;
|
|
259
|
-
|
|
260
|
-
svg {
|
|
261
|
-
width: 32px;
|
|
262
|
-
height: 32px;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
&:hover {
|
|
266
|
-
background: var(--emw--color-gray-transparency-20, rgba(255, 255, 255, .2));
|
|
267
|
-
}
|
|
264
|
+
&:hover {
|
|
265
|
+
background: var(--emw--color-gray-transparency-20, rgba(255, 255, 255, .2));
|
|
268
266
|
}
|
|
269
267
|
}
|
|
268
|
+
|
|
270
269
|
.CashierSessionExpiration {
|
|
271
270
|
width: 100%;
|
|
272
271
|
display: flex;
|