@pairbo/ui-kit 0.3.25 → 0.3.27
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/ui-kit.js +19 -14
- package/package.json +1 -1
package/dist/ui-kit.js
CHANGED
|
@@ -2341,12 +2341,13 @@
|
|
|
2341
2341
|
justify-content: start;
|
|
2342
2342
|
overflow: visible;
|
|
2343
2343
|
}
|
|
2344
|
-
|
|
2344
|
+
|
|
2345
|
+
/* .icon-button svg {
|
|
2345
2346
|
height: var(--icon-button-size);
|
|
2346
2347
|
width: var(--icon-button-size);
|
|
2347
2348
|
max-height: var(--header-height);
|
|
2348
2349
|
max-width: var(--header-height);
|
|
2349
|
-
}
|
|
2350
|
+
} */
|
|
2350
2351
|
|
|
2351
2352
|
.close-button {
|
|
2352
2353
|
display: flex;
|
|
@@ -2477,13 +2478,17 @@
|
|
|
2477
2478
|
<div class="back-button" part="back-button">
|
|
2478
2479
|
${this.currentPage!=="selection"?L`<button @click=${this.goToSelector} class="icon-button">
|
|
2479
2480
|
<svg
|
|
2481
|
+
part="back-icon icon"
|
|
2482
|
+
width="15"
|
|
2483
|
+
height="9"
|
|
2484
|
+
viewBox="0 0 15 9"
|
|
2485
|
+
fill="none"
|
|
2480
2486
|
xmlns="http://www.w3.org/2000/svg"
|
|
2481
|
-
height="24px"
|
|
2482
|
-
viewBox="0 -960 960 960"
|
|
2483
|
-
width="24px"
|
|
2484
|
-
fill="currentColor"
|
|
2485
2487
|
>
|
|
2486
|
-
<path
|
|
2488
|
+
<path
|
|
2489
|
+
d="M0.146447 4.14645C-0.0488155 4.34171 -0.0488155 4.65829 0.146447 4.85355L3.32843 8.03553C3.52369 8.2308 3.84027 8.2308 4.03553 8.03553C4.2308 7.84027 4.2308 7.52369 4.03553 7.32843L1.20711 4.5L4.03553 1.67157C4.2308 1.47631 4.2308 1.15973 4.03553 0.964466C3.84027 0.769204 3.52369 0.769204 3.32843 0.964466L0.146447 4.14645ZM14.5 4.5V4H0.5V4.5V5H14.5V4.5Z"
|
|
2490
|
+
fill="#1F3438"
|
|
2491
|
+
/>
|
|
2487
2492
|
</svg>
|
|
2488
2493
|
</button>`:""}
|
|
2489
2494
|
</div>
|
|
@@ -2493,15 +2498,15 @@
|
|
|
2493
2498
|
<div class="close-button" part="close-button">
|
|
2494
2499
|
<button @click=${this.onClose} class="icon-button">
|
|
2495
2500
|
<svg
|
|
2501
|
+
part="close-icon icon"
|
|
2502
|
+
width="11.5"
|
|
2503
|
+
height="11.5"
|
|
2504
|
+
viewBox="0 0 13 13"
|
|
2505
|
+
fill="none"
|
|
2496
2506
|
xmlns="http://www.w3.org/2000/svg"
|
|
2497
|
-
height="24px"
|
|
2498
|
-
viewBox="0 -960 960 960"
|
|
2499
|
-
width="24px"
|
|
2500
|
-
fill="currentColor"
|
|
2501
2507
|
>
|
|
2502
|
-
<path
|
|
2503
|
-
|
|
2504
|
-
/>
|
|
2508
|
+
<path d="M1 0.5L12.5 12" stroke="#1F3438" />
|
|
2509
|
+
<path d="M12.5 0.5L1 12" stroke="#1F3438" />
|
|
2505
2510
|
</svg>
|
|
2506
2511
|
</button>
|
|
2507
2512
|
</div>
|