@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.
- package/dist/autoui.css +1 -0
- package/dist/index.cjs +286 -40
- package/dist/index.mjs +3947 -2628
- package/dist/lib/index.d.ts +1 -0
- package/dist/lib/plugin.d.ts +2 -0
- package/dist/plugin.cjs +42160 -0
- package/dist/plugin.d.ts +2 -0
- package/dist/plugin.mjs +223418 -0
- package/package.json +14 -4
- package/dist/lib/bin/index.d.ts +0 -1
- package/dist/lib/components/chat/context/chatContext.d.ts +0 -3
- package/dist/lib/components/chat/context/modalChatContext.d.ts +0 -9
- package/dist/lib/components/chat/hooks/useAutoUiChat.d.ts +0 -4
- package/dist/lib/components/chat/hooks/useChat.d.ts +0 -3
- package/dist/lib/components/chat/hooks/useChatState.d.ts +0 -7
- package/dist/lib/components/chat/hooks/useRendering.d.ts +0 -7
- package/dist/lib/components/chat/hooks/useSpeechToText.d.ts +0 -9
- package/dist/lib/components/chat/hooks/useTheme.d.ts +0 -6
- package/dist/lib/components/chat/index.d.ts +0 -2
- package/dist/lib/components/chat/types/index.d.ts +0 -114
- package/dist/lib/components/chat/ui/Chat.d.ts +0 -3
- package/dist/lib/components/chat/ui/ChatHeader.d.ts +0 -1
- package/dist/lib/components/chat/ui/ChatInput.d.ts +0 -4
- package/dist/lib/components/chat/ui/ChatMenu.d.ts +0 -1
- package/dist/lib/components/chat/ui/ChatMessageList.d.ts +0 -3
- package/dist/lib/components/chat/ui/ChatMessageListItem.d.ts +0 -6
- package/dist/lib/components/chat/ui/ChatTextBox.d.ts +0 -5
- package/dist/lib/components/chat/ui/MicButton.d.ts +0 -4
- package/dist/lib/components/chat/ui/ModalChat.d.ts +0 -2
- package/dist/lib/components/chat/ui/ScrollToBottomButton.d.ts +0 -7
- package/dist/lib/components/chat/ui/SendButton.d.ts +0 -1
- package/dist/lib/components/chat/ui/btnOpenChat/index.d.ts +0 -3
- package/dist/lib/components/index.d.ts +0 -2
- package/dist/lib/components/menu/index.d.ts +0 -1
- package/dist/lib/components/menu/ui/Menu.d.ts +0 -6
- package/dist/lib/components/menu/ui/MenuItem.d.ts +0 -16
- package/dist/lib/components/menu/ui/MenuSelectedIcon.d.ts +0 -4
- package/dist/lib/components/popover/index.d.ts +0 -2
- package/dist/lib/components/popover/ui/Popover.d.ts +0 -10
- package/dist/lib/components/popover/ui/PopoverMenu.d.ts +0 -10
- package/dist/lib/components/spinner/index.d.ts +0 -1
- package/dist/lib/components/spinner/ui/Spinner.d.ts +0 -16
- package/dist/lib/components/switch/index.d.ts +0 -1
- package/dist/lib/components/switch/ui/Switch.d.ts +0 -30
- package/dist/lib/core/buildDataAnalyzingPrompt.d.ts +0 -3
- package/dist/lib/core/buildIntentPrompt.d.ts +0 -2
- package/dist/lib/core/extraDataAnalyzingWithLLM.d.ts +0 -3
- package/dist/lib/core/index.d.ts +0 -1
- package/dist/lib/core/llmClient.d.ts +0 -3
- package/dist/lib/core/sseParser.d.ts +0 -1
- package/dist/lib/runtime/index.d.ts +0 -1
- package/dist/lib/runtime/rerenderChatFromHistory.d.ts +0 -3
- package/dist/lib/runtime/runtimeEngine.d.ts +0 -9
- package/dist/lib/runtime/stepExecutor.d.ts +0 -7
- package/dist/lib/types/index.d.ts +0 -79
- package/dist/lib/types/llmTypes.d.ts +0 -21
- package/dist/lib/utils/clsx.d.ts +0 -1
- package/dist/lib/utils/debounce.d.ts +0 -11
- package/dist/lib/utils/index.d.ts +0 -1
- package/dist/lib/utils/resolveProps.d.ts +0 -2
- package/dist/stats.html +0 -4949
package/dist/lib/index.d.ts
CHANGED
|
@@ -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';
|