@ai12z/react 3.9.1-alpha.1 → 3.10.0
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.
|
@@ -287,6 +287,7 @@ export const SearchResultsPage = createComponent({
|
|
|
287
287
|
events: {
|
|
288
288
|
onMessageSent: 'messageSent',
|
|
289
289
|
onMessageReceived: 'messageReceived',
|
|
290
|
+
onErrored: 'errored',
|
|
290
291
|
onStartStream: 'startStream'
|
|
291
292
|
},
|
|
292
293
|
defineCustomElement: defineSearchResultsPage
|
|
@@ -179,6 +179,7 @@ export declare const PrivacyModal: StencilReactComponent<PrivacyModalElement, Pr
|
|
|
179
179
|
export type SearchResultsPageEvents = {
|
|
180
180
|
onMessageSent: EventName<CustomEvent<any>>;
|
|
181
181
|
onMessageReceived: EventName<CustomEvent<any>>;
|
|
182
|
+
onErrored: EventName<CustomEvent<any>>;
|
|
182
183
|
onStartStream: EventName<CustomEvent<any>>;
|
|
183
184
|
};
|
|
184
185
|
export declare const SearchResultsPage: StencilReactComponent<SearchResultsPageElement, SearchResultsPageEvents>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai12z/react",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.10.0",
|
|
4
4
|
"description": "ai12z React Library",
|
|
5
5
|
"author": "Alpesh Patel <alpesh@ai12z.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"tsc": "tsc -p . --outDir ./dist"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"ai12z": "^3.
|
|
23
|
+
"ai12z": "^3.10.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/react": "^18.3.0",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "45616a3b72e5657739c82a981656d6791baeea7a"
|
|
36
36
|
}
|