wally-ui 1.12.0 → 1.12.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.12.0",
3
+ "version": "1.12.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"
@@ -1,5 +1,5 @@
1
1
  import { ApplicationConfig, provideBrowserGlobalErrorListeners, provideZoneChangeDetection } from '@angular/core';
2
- import { provideRouter } from '@angular/router';
2
+ import { provideRouter, withInMemoryScrolling } from '@angular/router';
3
3
 
4
4
  import { routes } from './app.routes';
5
5
  import { provideClientHydration, withEventReplay } from '@angular/platform-browser';
@@ -8,6 +8,13 @@ export const appConfig: ApplicationConfig = {
8
8
  providers: [
9
9
  provideBrowserGlobalErrorListeners(),
10
10
  provideZoneChangeDetection({ eventCoalescing: true }),
11
- provideRouter(routes), provideClientHydration(withEventReplay())
11
+ provideRouter(
12
+ routes,
13
+ withInMemoryScrolling({
14
+ scrollPositionRestoration: 'top',
15
+ anchorScrolling: 'enabled'
16
+ })
17
+ ),
18
+ provideClientHydration(withEventReplay())
12
19
  ]
13
20
  };
@@ -1,4 +1,4 @@
1
- <textarea #textarea id="ai-prompt-input" class="w-full h-auto max-h-60 text-sm placeholder:text-neutral-400 dark:text-white dark:placeholder:text-neutral-500 resize-none focus:outline-none focus:ring-0 overflow-y-auto [&::-webkit-scrollbar]:w-2
1
+ <textarea #textarea id="ai-prompt-input" class="w-full h-auto max-h-60 text-base placeholder:text-neutral-400 dark:text-white dark:placeholder:text-neutral-500 resize-none focus:outline-none focus:ring-0 overflow-y-auto [&::-webkit-scrollbar]:w-2
2
2
  [&::-webkit-scrollbar-track]:bg-transparent
3
3
  [&::-webkit-scrollbar-thumb]:bg-neutral-300
4
4
  [&::-webkit-scrollbar-thumb]:rounded-full
@@ -144,7 +144,7 @@
144
144
  </span>
145
145
  </div>
146
146
  <p class="text-xs sm:text-sm text-neutral-600 dark:text-neutral-400 group-hover:text-neutral-300 dark:group-hover:text-neutral-600 transition-colors duration-150">
147
- Smart tooltip with auto-positioning, overflow detection, smooth animations, and arrow indicator. Wraps any element with full ARIA support and keyboard navigation. Rich content support coming in v2.0.
147
+ Smart tooltip with auto-positioning, overflow detection, and smooth animations. Wraps any element with full ARIA support and keyboard navigation. Rich content support coming in v2.0.
148
148
  </p>
149
149
  </div>
150
150
  </div>
@@ -444,10 +444,6 @@
444
444
  <td class="p-4 font-mono text-blue-600 dark:text-blue-400">Overflow Detection</td>
445
445
  <td class="p-4 text-gray-700 dark:text-gray-300">Automatically shifts tooltip horizontally/vertically when near viewport edges (8px padding)</td>
446
446
  </tr>
447
- <tr>
448
- <td class="p-4 font-mono text-blue-600 dark:text-blue-400">Arrow Indicator</td>
449
- <td class="p-4 text-gray-700 dark:text-gray-300">Dynamic arrow that points to target element, adjusts based on position</td>
450
- </tr>
451
447
  <tr>
452
448
  <td class="p-4 font-mono text-blue-600 dark:text-blue-400">Smooth Animation</td>
453
449
  <td class="p-4 text-gray-700 dark:text-gray-300">GPU-accelerated fade transitions (150ms show, 100ms hide)</td>