revotech-ui-kit 0.0.31 → 0.0.32
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/revotech-ui-kit.js
CHANGED
@@ -8434,6 +8434,7 @@ let G = class extends h {
|
|
8434
8434
|
<div class="relative" data-hs-combo-box="">
|
8435
8435
|
<div class="relative">
|
8436
8436
|
<input
|
8437
|
+
part="select-input"
|
8437
8438
|
class="inline-flex justify-between items-center w-full h-10 px-4 py-2 whitespace-nowrap rounded-md
|
8438
8439
|
text-sm font-medium border border-input cursor-pointer
|
8439
8440
|
ring-offset-background
|
@@ -8462,6 +8463,7 @@ let G = class extends h {
|
|
8462
8463
|
class="absolute z-50 w-full max-h-72 p-1 bg-white border border-gray-200 rounded-lg overflow-hidden overflow-y-auto [&::-webkit-scrollbar]:w-2 [&::-webkit-scrollbar-thumb]:rounded-full [&::-webkit-scrollbar-track]:bg-gray-100 [&::-webkit-scrollbar-thumb]:bg-gray-300 dark:[&::-webkit-scrollbar-track]:bg-neutral-700 dark:[&::-webkit-scrollbar-thumb]:bg-neutral-500 dark:bg-neutral-900 dark:border-neutral-700"
|
8463
8464
|
style="display: ${this.isOpen ? "block" : "none"}; top:115%"
|
8464
8465
|
data-hs-combo-box-output=""
|
8466
|
+
part="select-list"
|
8465
8467
|
@keydown="${this.handleKeyDown}"
|
8466
8468
|
>
|
8467
8469
|
${this.filteredItems.length === 0 ? l`
|
@@ -3714,6 +3714,7 @@ body {
|
|
3714
3714
|
<div class="relative" data-hs-combo-box="">
|
3715
3715
|
<div class="relative">
|
3716
3716
|
<input
|
3717
|
+
part="select-input"
|
3717
3718
|
class="inline-flex justify-between items-center w-full h-10 px-4 py-2 whitespace-nowrap rounded-md
|
3718
3719
|
text-sm font-medium border border-input cursor-pointer
|
3719
3720
|
ring-offset-background
|
@@ -3742,6 +3743,7 @@ body {
|
|
3742
3743
|
class="absolute z-50 w-full max-h-72 p-1 bg-white border border-gray-200 rounded-lg overflow-hidden overflow-y-auto [&::-webkit-scrollbar]:w-2 [&::-webkit-scrollbar-thumb]:rounded-full [&::-webkit-scrollbar-track]:bg-gray-100 [&::-webkit-scrollbar-thumb]:bg-gray-300 dark:[&::-webkit-scrollbar-track]:bg-neutral-700 dark:[&::-webkit-scrollbar-thumb]:bg-neutral-500 dark:bg-neutral-900 dark:border-neutral-700"
|
3743
3744
|
style="display: ${this.isOpen?"block":"none"}; top:115%"
|
3744
3745
|
data-hs-combo-box-output=""
|
3746
|
+
part="select-list"
|
3745
3747
|
@keydown="${this.handleKeyDown}"
|
3746
3748
|
>
|
3747
3749
|
${this.filteredItems.length===0?l.html`
|
package/package.json
CHANGED