@hivegpt/hiveai-angular 0.0.175 → 0.0.178
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/bundles/hivegpt-hiveai-angular.umd.js +3 -1
- package/bundles/hivegpt-hiveai-angular.umd.js.map +1 -1
- package/bundles/hivegpt-hiveai-angular.umd.min.js +1 -1
- package/bundles/hivegpt-hiveai-angular.umd.min.js.map +1 -1
- package/environments/environment.d.ts.map +1 -1
- package/esm2015/environments/environment.js +1 -1
- package/esm2015/hivegpt-hiveai-angular.js +1 -1
- package/esm2015/lib/components/NotificationSocket.js +1 -1
- package/esm2015/lib/components/chat-drawer/chat-drawer.component.js +4 -2
- package/esm2015/lib/components/chatbot/chatbot.component.js +1 -1
- package/esm2015/lib/components/conversation.service.js +1 -1
- package/esm2015/lib/components/socket-service.service.js +1 -1
- package/esm2015/lib/components/video-player/video-player.component.js +1 -1
- package/esm2015/lib/hivegpt.module.js +1 -1
- package/esm2015/lib/models/video.js +1 -1
- package/esm2015/lib/pipes/safe-html.pipe.js +1 -1
- package/esm2015/lib/utils/utils.js +1 -1
- package/esm2015/public-api.js +1 -1
- package/fesm2015/hivegpt-hiveai-angular.js +3 -1
- package/fesm2015/hivegpt-hiveai-angular.js.map +1 -1
- package/hivegpt-hiveai-angular.d.ts.map +1 -1
- package/lib/components/NotificationSocket.d.ts.map +1 -1
- package/lib/components/chat-drawer/chat-drawer.component.d.ts.map +1 -1
- package/lib/components/chatbot/chatbot.component.d.ts.map +1 -1
- package/lib/components/conversation.service.d.ts.map +1 -1
- package/lib/components/socket-service.service.d.ts.map +1 -1
- package/lib/components/video-player/video-player.component.d.ts.map +1 -1
- package/lib/hivegpt.module.d.ts.map +1 -1
- package/lib/models/video.d.ts.map +1 -1
- package/lib/pipes/safe-html.pipe.d.ts.map +1 -1
- package/lib/utils/utils.d.ts.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts.map +1 -1
|
@@ -841,7 +841,7 @@
|
|
|
841
841
|
_this.sourcesList = web_results;
|
|
842
842
|
_this.displayedSources = (_c = _this.sourcesList) === null || _c === void 0 ? void 0 : _c.slice(0, 3); // First 3 cards
|
|
843
843
|
_this.remainingSources = (_d = _this.sourcesList) === null || _d === void 0 ? void 0 : _d.slice(3); // Remaining items
|
|
844
|
-
|
|
844
|
+
_this.cdr.detectChanges();
|
|
845
845
|
}
|
|
846
846
|
if (financial_graphs && Array.isArray(financial_graphs)) {
|
|
847
847
|
console.log('Financial Graphs:', financial_graphs);
|
|
@@ -851,10 +851,12 @@
|
|
|
851
851
|
console.log('Execution Graphs:', execution_graphs);
|
|
852
852
|
// Process execution graphs as needed
|
|
853
853
|
_this.executionPathImages = execution_graphs;
|
|
854
|
+
_this.cdr.detectChanges();
|
|
854
855
|
}
|
|
855
856
|
if (online_search_terms && Array.isArray(online_search_terms)) {
|
|
856
857
|
console.log('Online Search Terms:', online_search_terms);
|
|
857
858
|
_this.searchTerms = online_search_terms;
|
|
859
|
+
_this.cdr.detectChanges();
|
|
858
860
|
// Process online search terms as needed
|
|
859
861
|
}
|
|
860
862
|
// Add any other fields and their processing here
|