@sprout_ai_labs/sidekick 1.0.3 → 1.0.4
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/index.d.ts +18 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -100,11 +100,25 @@ import type { App, Plugin } from 'vue'
|
|
|
100
100
|
duration?: number
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
-
//
|
|
103
|
+
// Unified Components (with store integration)
|
|
104
|
+
export declare const UnifiedSidekickChat: any
|
|
105
|
+
export declare const UnifiedSidekickChatPlugin: any
|
|
106
|
+
export declare const UnifiedSidekickChatInput: any
|
|
107
|
+
|
|
108
|
+
// Standalone Components (no store dependencies)
|
|
109
|
+
export declare const SidekickMessages: any
|
|
110
|
+
export declare const SidekickChatInput: any
|
|
111
|
+
export declare const SidekickCollapsibleThought: any
|
|
112
|
+
export declare const SidekickCollapsibleThoughtStreaming: any
|
|
113
|
+
|
|
114
|
+
// Reusable Components
|
|
115
|
+
export declare const SidekickLoader: any
|
|
116
|
+
export declare const SidekickLogo: any
|
|
117
|
+
export declare const SidekickChatSources: any
|
|
118
|
+
|
|
119
|
+
// Backward compatibility exports
|
|
104
120
|
export declare const SidekickChat: any
|
|
105
121
|
export declare const SidekickChatPlugin: any
|
|
106
|
-
export declare const SidekickLoader: any
|
|
107
|
-
export declare const SidekickChatInput: any
|
|
108
122
|
|
|
109
123
|
// Store composable
|
|
110
124
|
export declare function useChatStore(options?: SidekickChatOptions): any
|
|
@@ -114,6 +128,7 @@ import type { App, Plugin } from 'vue'
|
|
|
114
128
|
|
|
115
129
|
// Storage utilities
|
|
116
130
|
export declare const storageUtils: any
|
|
131
|
+
export declare const chatStorageUtils: any
|
|
117
132
|
|
|
118
133
|
// Plugin exports
|
|
119
134
|
declare const SproutSidekickPlugin: Plugin<[SidekickChatOptions]>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sprout_ai_labs/sidekick",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "A Vue 3 plugin providing responsive chat components with custom Sidekick branding and shared state management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/sprout-sidekick.umd.cjs",
|