@autoai-ui/autoui 0.2.2 → 0.2.3

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 (61) hide show
  1. package/dist/autoui.css +1 -0
  2. package/dist/index.cjs +286 -40
  3. package/dist/index.mjs +3947 -2628
  4. package/dist/lib/index.d.ts +1 -0
  5. package/dist/lib/plugin.d.ts +2 -0
  6. package/dist/plugin.cjs +42160 -0
  7. package/dist/plugin.d.ts +2 -0
  8. package/dist/plugin.mjs +223418 -0
  9. package/package.json +14 -4
  10. package/dist/lib/bin/index.d.ts +0 -1
  11. package/dist/lib/components/chat/context/chatContext.d.ts +0 -3
  12. package/dist/lib/components/chat/context/modalChatContext.d.ts +0 -9
  13. package/dist/lib/components/chat/hooks/useAutoUiChat.d.ts +0 -4
  14. package/dist/lib/components/chat/hooks/useChat.d.ts +0 -3
  15. package/dist/lib/components/chat/hooks/useChatState.d.ts +0 -7
  16. package/dist/lib/components/chat/hooks/useRendering.d.ts +0 -7
  17. package/dist/lib/components/chat/hooks/useSpeechToText.d.ts +0 -9
  18. package/dist/lib/components/chat/hooks/useTheme.d.ts +0 -6
  19. package/dist/lib/components/chat/index.d.ts +0 -2
  20. package/dist/lib/components/chat/types/index.d.ts +0 -114
  21. package/dist/lib/components/chat/ui/Chat.d.ts +0 -3
  22. package/dist/lib/components/chat/ui/ChatHeader.d.ts +0 -1
  23. package/dist/lib/components/chat/ui/ChatInput.d.ts +0 -4
  24. package/dist/lib/components/chat/ui/ChatMenu.d.ts +0 -1
  25. package/dist/lib/components/chat/ui/ChatMessageList.d.ts +0 -3
  26. package/dist/lib/components/chat/ui/ChatMessageListItem.d.ts +0 -6
  27. package/dist/lib/components/chat/ui/ChatTextBox.d.ts +0 -5
  28. package/dist/lib/components/chat/ui/MicButton.d.ts +0 -4
  29. package/dist/lib/components/chat/ui/ModalChat.d.ts +0 -2
  30. package/dist/lib/components/chat/ui/ScrollToBottomButton.d.ts +0 -7
  31. package/dist/lib/components/chat/ui/SendButton.d.ts +0 -1
  32. package/dist/lib/components/chat/ui/btnOpenChat/index.d.ts +0 -3
  33. package/dist/lib/components/index.d.ts +0 -2
  34. package/dist/lib/components/menu/index.d.ts +0 -1
  35. package/dist/lib/components/menu/ui/Menu.d.ts +0 -6
  36. package/dist/lib/components/menu/ui/MenuItem.d.ts +0 -16
  37. package/dist/lib/components/menu/ui/MenuSelectedIcon.d.ts +0 -4
  38. package/dist/lib/components/popover/index.d.ts +0 -2
  39. package/dist/lib/components/popover/ui/Popover.d.ts +0 -10
  40. package/dist/lib/components/popover/ui/PopoverMenu.d.ts +0 -10
  41. package/dist/lib/components/spinner/index.d.ts +0 -1
  42. package/dist/lib/components/spinner/ui/Spinner.d.ts +0 -16
  43. package/dist/lib/components/switch/index.d.ts +0 -1
  44. package/dist/lib/components/switch/ui/Switch.d.ts +0 -30
  45. package/dist/lib/core/buildDataAnalyzingPrompt.d.ts +0 -3
  46. package/dist/lib/core/buildIntentPrompt.d.ts +0 -2
  47. package/dist/lib/core/extraDataAnalyzingWithLLM.d.ts +0 -3
  48. package/dist/lib/core/index.d.ts +0 -1
  49. package/dist/lib/core/llmClient.d.ts +0 -3
  50. package/dist/lib/core/sseParser.d.ts +0 -1
  51. package/dist/lib/runtime/index.d.ts +0 -1
  52. package/dist/lib/runtime/rerenderChatFromHistory.d.ts +0 -3
  53. package/dist/lib/runtime/runtimeEngine.d.ts +0 -9
  54. package/dist/lib/runtime/stepExecutor.d.ts +0 -7
  55. package/dist/lib/types/index.d.ts +0 -79
  56. package/dist/lib/types/llmTypes.d.ts +0 -21
  57. package/dist/lib/utils/clsx.d.ts +0 -1
  58. package/dist/lib/utils/debounce.d.ts +0 -11
  59. package/dist/lib/utils/index.d.ts +0 -1
  60. package/dist/lib/utils/resolveProps.d.ts +0 -2
  61. package/dist/stats.html +0 -4949
@@ -3,3 +3,4 @@ export type { ChatContextType, ChatMessage, ChatMessageListProps, ChatProps, Cha
3
3
  export type { AutoUIComponent, AutoUIConfig, AutoUIFunction, AutoUIMetadata, LLMConfig, RuntimeConfig, } from './types/index';
4
4
  export type { InstructionPlan, InstructionStep, ComponentStep, FunctionStep, TextStep } from './types/llmTypes';
5
5
  export type { SpinnerProps } from './components/spinner/ui/Spinner';
6
+ export { autouiRegisterComponentPropsSchema, autouiRegisterFunctionParamsSchema } from './registration';
@@ -0,0 +1,2 @@
1
+ export { autouiTypeSchemaPlugin } from './build-time/typeSchemaPlugin';
2
+ export type * from './build-time/typeSchemaPlugin/types';