wally-ui 1.18.0 → 1.18.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wally-ui",
3
- "version": "1.18.0",
3
+ "version": "1.18.1",
4
4
  "description": "About Where’s Wally? Right here — bringing you ready-to-use Angular components with Wally-UI. Stop searching, start building.",
5
5
  "bin": {
6
6
  "wally": "dist/cli.js"
@@ -27,7 +27,7 @@
27
27
  <input
28
28
  #inputElement
29
29
  type="text"
30
- class="flex-1 min-w-[120px] outline-none bg-transparent text-[#0a0a0a] dark:text-white placeholder-neutral-400 dark:placeholder-neutral-500 text-sm"
30
+ class="flex-1 min-w-[120px] outline-none bg-transparent text-[#0a0a0a] dark:text-white placeholder-neutral-400 dark:placeholder-neutral-500 text-base md:text-sm"
31
31
  [placeholder]="comboboxService.selectedItems().length === 0 ? comboboxService.placeholder() : ''"
32
32
  [value]="comboboxService.searchQuery()"
33
33
  [disabled]="comboboxService.disabled()"
@@ -1,7 +1,7 @@
1
1
  <div class="p-2 border-b border-neutral-200 dark:border-neutral-700">
2
2
  <input
3
3
  type="text"
4
- class="w-full px-3 py-2 text-sm bg-neutral-50 dark:bg-neutral-800 border border-neutral-300 dark:border-neutral-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 text-[#0a0a0a] dark:text-white placeholder-neutral-400 dark:placeholder-neutral-500 transition-all duration-200"
4
+ class="w-full px-3 py-2 text-base md:text-sm bg-neutral-50 dark:bg-neutral-800 border border-neutral-300 dark:border-neutral-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 text-[#0a0a0a] dark:text-white placeholder-neutral-400 dark:placeholder-neutral-500 transition-all duration-200"
5
5
  [placeholder]="comboboxService.placeholder()"
6
6
  [value]="comboboxService.searchQuery()"
7
7
  (input)="onInput($event)"