@pairbo/ui-kit 0.3.25 → 0.3.26
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 +24 -12
- package/package.json +1 -1
package/dist/ui-kit.js
CHANGED
|
@@ -2477,13 +2477,20 @@
|
|
|
2477
2477
|
<div class="back-button" part="back-button">
|
|
2478
2478
|
${this.currentPage!=="selection"?L`<button @click=${this.goToSelector} class="icon-button">
|
|
2479
2479
|
<svg
|
|
2480
|
+
part="back-icon icon"
|
|
2480
2481
|
xmlns="http://www.w3.org/2000/svg"
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
fill="
|
|
2482
|
+
width="24"
|
|
2483
|
+
height="24"
|
|
2484
|
+
viewBox="0 0 24 24"
|
|
2485
|
+
fill="none"
|
|
2486
|
+
stroke="currentColor"
|
|
2487
|
+
stroke-width="2"
|
|
2488
|
+
stroke-linecap="round"
|
|
2489
|
+
stroke-linejoin="round"
|
|
2490
|
+
class="lucide lucide-arrow-left-icon lucide-arrow-left"
|
|
2485
2491
|
>
|
|
2486
|
-
<path d="
|
|
2492
|
+
<path d="m12 19-7-7 7-7" />
|
|
2493
|
+
<path d="M19 12H5" />
|
|
2487
2494
|
</svg>
|
|
2488
2495
|
</button>`:""}
|
|
2489
2496
|
</div>
|
|
@@ -2493,15 +2500,20 @@
|
|
|
2493
2500
|
<div class="close-button" part="close-button">
|
|
2494
2501
|
<button @click=${this.onClose} class="icon-button">
|
|
2495
2502
|
<svg
|
|
2503
|
+
part="close-icon icon"
|
|
2496
2504
|
xmlns="http://www.w3.org/2000/svg"
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
fill="
|
|
2505
|
+
width="24"
|
|
2506
|
+
height="24"
|
|
2507
|
+
viewBox="0 0 24 24"
|
|
2508
|
+
fill="none"
|
|
2509
|
+
stroke="currentColor"
|
|
2510
|
+
stroke-width="2"
|
|
2511
|
+
stroke-linecap="round"
|
|
2512
|
+
stroke-linejoin="round"
|
|
2513
|
+
class="lucide lucide-x-icon lucide-x"
|
|
2501
2514
|
>
|
|
2502
|
-
<path
|
|
2503
|
-
|
|
2504
|
-
/>
|
|
2515
|
+
<path d="M18 6 6 18" />
|
|
2516
|
+
<path d="m6 6 12 12" />
|
|
2505
2517
|
</svg>
|
|
2506
2518
|
</button>
|
|
2507
2519
|
</div>
|