pylogue 0.3.29__tar.gz → 0.3.31__tar.gz

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 (35) hide show
  1. {pylogue-0.3.29 → pylogue-0.3.31}/PKG-INFO +1 -1
  2. {pylogue-0.3.29 → pylogue-0.3.31}/pyproject.toml +1 -1
  3. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/shell.py +22 -6
  4. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue.egg-info/PKG-INFO +1 -1
  5. {pylogue-0.3.29 → pylogue-0.3.31}/AUTHORS.md +0 -0
  6. {pylogue-0.3.29 → pylogue-0.3.31}/CONTRIBUTING.md +0 -0
  7. {pylogue-0.3.29 → pylogue-0.3.31}/LICENSE +0 -0
  8. {pylogue-0.3.29 → pylogue-0.3.31}/MANIFEST.in +0 -0
  9. {pylogue-0.3.29 → pylogue-0.3.31}/README.md +0 -0
  10. {pylogue-0.3.29 → pylogue-0.3.31}/setup.cfg +0 -0
  11. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/core.py +0 -0
  12. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/embeds.py +0 -0
  13. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/integrations/__init__.py +0 -0
  14. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/integrations/pydantic_ai.py +0 -0
  15. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/legacy/__init__.py +0 -0
  16. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/legacy/__pre_init__.py +0 -0
  17. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/legacy/_modidx.py +0 -0
  18. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/legacy/cards.py +0 -0
  19. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/legacy/chat.py +0 -0
  20. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/legacy/chatapp.py +0 -0
  21. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/legacy/design_system.py +0 -0
  22. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/legacy/health.py +0 -0
  23. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/legacy/renderer.py +0 -0
  24. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/legacy/service.py +0 -0
  25. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/legacy/session.py +0 -0
  26. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/static/pylogue-core.css +0 -0
  27. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/static/pylogue-core.js +0 -0
  28. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue/static/pylogue-markdown.js +0 -0
  29. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue.egg-info/SOURCES.txt +0 -0
  30. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue.egg-info/dependency_links.txt +0 -0
  31. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue.egg-info/entry_points.txt +0 -0
  32. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue.egg-info/requires.txt +0 -0
  33. {pylogue-0.3.29 → pylogue-0.3.31}/src/pylogue.egg-info/top_level.txt +0 -0
  34. {pylogue-0.3.29 → pylogue-0.3.31}/tests/__init__.py +0 -0
  35. {pylogue-0.3.29 → pylogue-0.3.31}/tests/test_pylogue.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pylogue
3
- Version: 0.3.29
3
+ Version: 0.3.31
4
4
  Summary: A Chatbot UI built for AI agents
5
5
  Author-email: Yeshwanth Reddy <yyeshr@gmail.com>
6
6
  Maintainer-email: Yeshwanth Reddy <yyeshr@gmail.com>
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pylogue"
7
- version = "0.3.29"
7
+ version = "0.3.31"
8
8
  description = "A Chatbot UI built for AI agents"
9
9
  readme = "README.rst"
10
10
  authors = [
@@ -236,12 +236,21 @@ def app_factory(
236
236
  return Div(
237
237
  Div(
238
238
  H1(sidebar_title, cls="text-xl font-semibold"),
239
- A(
240
- UkIcon("sign-out"),
241
- Span("Logout"),
242
- href=logout_href,
243
- cls=(ButtonT.secondary, "text-xs"),
244
- ) if show_logout else None,
239
+ Div(
240
+ Button(
241
+ "Close",
242
+ type="button",
243
+ id="close-sidebar-btn",
244
+ cls=(ButtonT.secondary, "text-xs mobile-only-inline"),
245
+ ),
246
+ A(
247
+ UkIcon("sign-out"),
248
+ Span("Logout"),
249
+ href=logout_href,
250
+ cls=(ButtonT.secondary, "text-xs"),
251
+ ) if show_logout else None,
252
+ cls="flex items-center gap-2",
253
+ ),
245
254
  cls="sidebar-header",
246
255
  ),
247
256
  Button(
@@ -263,6 +272,12 @@ def app_factory(
263
272
  cls="space-y-2",
264
273
  ),
265
274
  Div(
275
+ Button(
276
+ "Chats",
277
+ type="button",
278
+ id="sidebar-toggle-btn",
279
+ cls=(ButtonT.secondary, "mobile-only-inline"),
280
+ ),
266
281
  Button(
267
282
  UkIcon("download"),
268
283
  cls="uk-button uk-button-text copy-chat-btn",
@@ -318,6 +333,7 @@ def app_factory(
318
333
 
319
334
  def _shell(request: Request):
320
335
  return Div(
336
+ Div(id="sidebar-backdrop", cls="sidebar-backdrop"),
321
337
  _sidebar(request),
322
338
  _main_panel(),
323
339
  cls="app-shell",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pylogue
3
- Version: 0.3.29
3
+ Version: 0.3.31
4
4
  Summary: A Chatbot UI built for AI agents
5
5
  Author-email: Yeshwanth Reddy <yyeshr@gmail.com>
6
6
  Maintainer-email: Yeshwanth Reddy <yyeshr@gmail.com>
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes