@evelan/jexity-widget 0.11.1 → 0.11.8

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 (84) hide show
  1. package/dist/index.mjs +2378 -2065
  2. package/dist/index.mjs.map +1 -1
  3. package/dist/react.mjs +2403 -2090
  4. package/dist/react.mjs.map +1 -1
  5. package/dist/types/features/chat/components/BotMessage.d.ts.map +1 -1
  6. package/dist/types/features/chat/components/ChatScreen.d.ts.map +1 -1
  7. package/dist/types/features/chat/components/EscalationFormScreen.d.ts.map +1 -1
  8. package/dist/types/features/chat/components/FormMessage.d.ts.map +1 -1
  9. package/dist/types/features/chat/components/HumanHandoffAction.d.ts.map +1 -1
  10. package/dist/types/features/chat/components/MessageList.d.ts.map +1 -1
  11. package/dist/types/features/chat/components/SourcesRow.d.ts.map +1 -1
  12. package/dist/types/features/chat/{components → composer/components}/ChatInput.d.ts +1 -1
  13. package/dist/types/features/chat/composer/components/ChatInput.d.ts.map +1 -0
  14. package/dist/types/features/chat/composer/components/ComposerRow.d.ts +27 -0
  15. package/dist/types/features/chat/composer/components/ComposerRow.d.ts.map +1 -0
  16. package/dist/types/features/chat/composer/components/RateLimitNotice.d.ts +9 -0
  17. package/dist/types/features/chat/composer/components/RateLimitNotice.d.ts.map +1 -0
  18. package/dist/types/features/chat/composer/components/SessionErrorNotice.d.ts +11 -0
  19. package/dist/types/features/chat/composer/components/SessionErrorNotice.d.ts.map +1 -0
  20. package/dist/types/features/chat/composer/hooks/useComposerInput.d.ts +35 -0
  21. package/dist/types/features/chat/composer/hooks/useComposerInput.d.ts.map +1 -0
  22. package/dist/types/features/chat/composer/hooks/useRateLimitCountdown.d.ts +23 -0
  23. package/dist/types/features/chat/composer/hooks/useRateLimitCountdown.d.ts.map +1 -0
  24. package/dist/types/features/chat/composer/hooks/useSendMessage.d.ts +27 -0
  25. package/dist/types/features/chat/composer/hooks/useSendMessage.d.ts.map +1 -0
  26. package/dist/types/features/chat/composer/index.d.ts +16 -0
  27. package/dist/types/features/chat/composer/index.d.ts.map +1 -0
  28. package/dist/types/features/chat/composer/state/attachments.d.ts +26 -0
  29. package/dist/types/features/chat/composer/state/attachments.d.ts.map +1 -0
  30. package/dist/types/features/chat/{composer.state.d.ts → composer/state/draft.d.ts} +3 -8
  31. package/dist/types/features/chat/composer/state/draft.d.ts.map +1 -0
  32. package/dist/types/features/chat/composer/state/index.d.ts +17 -0
  33. package/dist/types/features/chat/composer/state/index.d.ts.map +1 -0
  34. package/dist/types/features/chat/composer/state/rate-limit.d.ts +10 -0
  35. package/dist/types/features/chat/composer/state/rate-limit.d.ts.map +1 -0
  36. package/dist/types/features/chat/hooks/useConversation.d.ts +27 -0
  37. package/dist/types/features/chat/hooks/useConversation.d.ts.map +1 -0
  38. package/dist/types/features/chat/hooks/useConvexSession.d.ts.map +1 -1
  39. package/dist/types/features/chat/hooks/useEscalation.d.ts +25 -0
  40. package/dist/types/features/chat/hooks/useEscalation.d.ts.map +1 -0
  41. package/dist/types/features/chat/hooks/useHandoff.d.ts +23 -0
  42. package/dist/types/features/chat/hooks/useHandoff.d.ts.map +1 -0
  43. package/dist/types/features/chat/index.d.ts +18 -0
  44. package/dist/types/features/chat/index.d.ts.map +1 -0
  45. package/dist/types/features/chat/state/index.d.ts +13 -0
  46. package/dist/types/features/chat/state/index.d.ts.map +1 -0
  47. package/dist/types/features/chat/state/session-error.d.ts +16 -0
  48. package/dist/types/features/chat/state/session-error.d.ts.map +1 -0
  49. package/dist/types/features/chat/types.d.ts +19 -0
  50. package/dist/types/features/chat/types.d.ts.map +1 -0
  51. package/dist/types/features/home/components/HomeScreen.d.ts.map +1 -1
  52. package/dist/types/i18n/locales/de.d.ts.map +1 -1
  53. package/dist/types/i18n/locales/en.d.ts +23 -0
  54. package/dist/types/i18n/locales/en.d.ts.map +1 -1
  55. package/dist/types/lib/refreshBootstrap.d.ts +10 -0
  56. package/dist/types/lib/refreshBootstrap.d.ts.map +1 -0
  57. package/dist/types/module/screens/ScreenRouter.d.ts +1 -1
  58. package/dist/types/module/screens/ScreenRouter.d.ts.map +1 -1
  59. package/dist/types/module/shell/WidgetShell.d.ts.map +1 -1
  60. package/dist/types/module/shell/hooks/useBootstrap.d.ts +3 -1
  61. package/dist/types/module/shell/hooks/useBootstrap.d.ts.map +1 -1
  62. package/dist/types/module/shell/shell.state.d.ts +10 -0
  63. package/dist/types/module/shell/shell.state.d.ts.map +1 -1
  64. package/dist/types/module/visitor/idle-lock.d.ts +27 -0
  65. package/dist/types/module/visitor/idle-lock.d.ts.map +1 -0
  66. package/dist/types/module/visitor/visitor.state.d.ts +2 -0
  67. package/dist/types/module/visitor/visitor.state.d.ts.map +1 -1
  68. package/dist/types/shared/ui/Header.d.ts +8 -2
  69. package/dist/types/shared/ui/Header.d.ts.map +1 -1
  70. package/dist/types/shared/ui/HeaderActions.d.ts +11 -0
  71. package/dist/types/shared/ui/HeaderActions.d.ts.map +1 -0
  72. package/dist/types/shared/ui/HeaderCloseButton.d.ts +10 -0
  73. package/dist/types/shared/ui/HeaderCloseButton.d.ts.map +1 -0
  74. package/dist/types/shared/ui/HeaderLeft.d.ts +9 -0
  75. package/dist/types/shared/ui/HeaderLeft.d.ts.map +1 -0
  76. package/dist/types/shared/ui/HeaderTitle.d.ts +7 -0
  77. package/dist/types/shared/ui/HeaderTitle.d.ts.map +1 -0
  78. package/dist/widget.js +47 -39
  79. package/dist/widget.js.map +1 -1
  80. package/package.json +1 -1
  81. package/dist/types/features/chat/components/ChatInput.d.ts.map +0 -1
  82. package/dist/types/features/chat/components/RateLimitNotice.d.ts +0 -9
  83. package/dist/types/features/chat/components/RateLimitNotice.d.ts.map +0 -1
  84. package/dist/types/features/chat/composer.state.d.ts.map +0 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.