wally-ui 1.13.1 → 1.14.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.
Files changed (31) hide show
  1. package/package.json +1 -1
  2. package/playground/showcase/package-lock.json +48 -0
  3. package/playground/showcase/package.json +1 -0
  4. package/playground/showcase/src/app/app.routes.server.ts +4 -0
  5. package/playground/showcase/src/app/components/ai/ai-chat/ai-chat.html +7 -2
  6. package/playground/showcase/src/app/components/ai/ai-chat/ai-chat.ts +12 -1
  7. package/playground/showcase/src/app/components/ai/ai-chat.service.spec.ts +16 -0
  8. package/playground/showcase/src/app/components/ai/ai-chat.service.ts +6 -0
  9. package/playground/showcase/src/app/components/ai/ai-composer/ai-composer.html +14 -7
  10. package/playground/showcase/src/app/components/ai/ai-composer/ai-composer.ts +3 -1
  11. package/playground/showcase/src/app/components/ai/ai-message/ai-message.css +0 -0
  12. package/playground/showcase/src/app/components/ai/ai-message/ai-message.html +165 -0
  13. package/playground/showcase/src/app/components/ai/ai-message/ai-message.spec.ts +23 -0
  14. package/playground/showcase/src/app/components/ai/ai-message/ai-message.ts +51 -0
  15. package/playground/showcase/src/app/components/button/button.html +1 -1
  16. package/playground/showcase/src/app/components/button/button.ts +3 -3
  17. package/playground/showcase/src/app/components/selection-popover/selection-popover.css +0 -0
  18. package/playground/showcase/src/app/components/selection-popover/selection-popover.html +33 -0
  19. package/playground/showcase/src/app/components/selection-popover/selection-popover.spec.ts +23 -0
  20. package/playground/showcase/src/app/components/selection-popover/selection-popover.ts +269 -0
  21. package/playground/showcase/src/app/pages/documentation/chat-sdk/chat-sdk.html +1 -1
  22. package/playground/showcase/src/app/pages/documentation/components/button-docs/button-docs.examples.ts +10 -10
  23. package/playground/showcase/src/app/pages/documentation/components/button-docs/button-docs.html +2 -2
  24. package/playground/showcase/src/app/pages/documentation/components/components.html +27 -0
  25. package/playground/showcase/src/app/pages/documentation/components/components.routes.ts +4 -0
  26. package/playground/showcase/src/app/pages/documentation/components/selection-popover-docs/selection-popover-docs.css +1 -0
  27. package/playground/showcase/src/app/pages/documentation/components/selection-popover-docs/selection-popover-docs.examples.ts +328 -0
  28. package/playground/showcase/src/app/pages/documentation/components/selection-popover-docs/selection-popover-docs.html +555 -0
  29. package/playground/showcase/src/app/pages/documentation/components/selection-popover-docs/selection-popover-docs.ts +97 -0
  30. package/playground/showcase/src/app/pages/home/home.html +2 -2
  31. package/playground/showcase/src/styles.css +1 -0
@@ -1,8 +1,8 @@
1
1
  <main class="min-h-dvh subpixel-antialiased font-mono bg-white dark:bg-[#0a0a0a]" role="main">
2
2
  <div class="w-full min-h-dvh flex flex-col items-center justify-center px-4 py-12 sm:px-6 md:px-8 lg:px-12">
3
- <div class="w-full max-w-4xl">
3
+ <!-- <div class="w-full max-w-4xl">
4
4
  <wally-ai-chat></wally-ai-chat>
5
- </div>
5
+ </div> -->
6
6
 
7
7
  <article class="w-full max-w-3xl">
8
8
  <header class="w-full mb-10 sm:mb-12 space-y-6">
@@ -1,5 +1,6 @@
1
1
  /* You can add global styles to this file, and also import other style files */
2
2
  @import "tailwindcss";
3
+ @plugin "@tailwindcss/typography";
3
4
 
4
5
  @custom-variant dark (&:where(.dark, .dark *));
5
6