@hivegpt/hiveai-angular 0.0.217 → 0.0.218
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 -0
- 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/esm2015/lib/components/chat-drawer/chat-drawer.component.js +4 -1
- package/fesm2015/hivegpt-hiveai-angular.js +3 -0
- package/fesm2015/hivegpt-hiveai-angular.js.map +1 -1
- package/lib/components/chat-drawer/chat-drawer.component.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -769,8 +769,11 @@
|
|
|
769
769
|
// }
|
|
770
770
|
}
|
|
771
771
|
ChatDrawerComponent.prototype.ngOnChanges = function (changes) {
|
|
772
|
+
console.log('ng on changes');
|
|
772
773
|
if (changes.s27Token) {
|
|
774
|
+
console.log('s27Token changed:', changes.s27Token);
|
|
773
775
|
if (changes.s27Token.currentValue != changes.s27Token.previousValue) {
|
|
776
|
+
console.log('s27Token changed previous:', changes.s27Token.previousValue, ' current:', changes.s27Token.currentValue);
|
|
774
777
|
this.s27Token = changes.s27Token.currentValue;
|
|
775
778
|
if (this.is401) {
|
|
776
779
|
if (this.isFetchDataFor) {
|