@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.
Files changed (2) hide show
  1. package/dist/ui-kit.js +24 -12
  2. 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
- height="24px"
2482
- viewBox="0 -960 960 960"
2483
- width="24px"
2484
- fill="currentColor"
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="m313-440 224 224-57 56-320-320 320-320 57 56-224 224h487v80H313Z" />
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
- height="24px"
2498
- viewBox="0 -960 960 960"
2499
- width="24px"
2500
- fill="currentColor"
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
- d="m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z"
2504
- />
2515
+ <path d="M18 6 6 18" />
2516
+ <path d="m6 6 12 12" />
2505
2517
  </svg>
2506
2518
  </button>
2507
2519
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pairbo/ui-kit",
3
- "version": "0.3.25",
3
+ "version": "0.3.26",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "readme": "./README-NPM.md",