@pairbo/ui-kit 0.3.26 → 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 +17 -24
- 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;
|
|
@@ -2478,19 +2479,16 @@
|
|
|
2478
2479
|
${this.currentPage!=="selection"?L`<button @click=${this.goToSelector} class="icon-button">
|
|
2479
2480
|
<svg
|
|
2480
2481
|
part="back-icon icon"
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
viewBox="0 0 24 24"
|
|
2482
|
+
width="15"
|
|
2483
|
+
height="9"
|
|
2484
|
+
viewBox="0 0 15 9"
|
|
2485
2485
|
fill="none"
|
|
2486
|
-
|
|
2487
|
-
stroke-width="2"
|
|
2488
|
-
stroke-linecap="round"
|
|
2489
|
-
stroke-linejoin="round"
|
|
2490
|
-
class="lucide lucide-arrow-left-icon lucide-arrow-left"
|
|
2486
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2491
2487
|
>
|
|
2492
|
-
<path
|
|
2493
|
-
|
|
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
|
+
/>
|
|
2494
2492
|
</svg>
|
|
2495
2493
|
</button>`:""}
|
|
2496
2494
|
</div>
|
|
@@ -2501,19 +2499,14 @@
|
|
|
2501
2499
|
<button @click=${this.onClose} class="icon-button">
|
|
2502
2500
|
<svg
|
|
2503
2501
|
part="close-icon icon"
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
viewBox="0 0 24 24"
|
|
2502
|
+
width="11.5"
|
|
2503
|
+
height="11.5"
|
|
2504
|
+
viewBox="0 0 13 13"
|
|
2508
2505
|
fill="none"
|
|
2509
|
-
|
|
2510
|
-
stroke-width="2"
|
|
2511
|
-
stroke-linecap="round"
|
|
2512
|
-
stroke-linejoin="round"
|
|
2513
|
-
class="lucide lucide-x-icon lucide-x"
|
|
2506
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2514
2507
|
>
|
|
2515
|
-
<path d="
|
|
2516
|
-
<path d="
|
|
2508
|
+
<path d="M1 0.5L12.5 12" stroke="#1F3438" />
|
|
2509
|
+
<path d="M12.5 0.5L1 12" stroke="#1F3438" />
|
|
2517
2510
|
</svg>
|
|
2518
2511
|
</button>
|
|
2519
2512
|
</div>
|