@seniorsistemas/angular-components 17.26.9-bugfix-sds-309-1338ba18 → 17.26.9-bugfix-sds-309-f709bce3

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.
Files changed (21) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +47 -34
  2. package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
  3. package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
  4. package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
  5. package/components/speech-recognition/speech-recognition/speech-recognition.component.d.ts +5 -2
  6. package/components/speech-recognition/speech-recognition.service.d.ts +2 -0
  7. package/components/text-area/text-area/text-area.component.d.ts +1 -3
  8. package/esm2015/components/speech-recognition/speech-recognition/speech-recognition.component.js +37 -19
  9. package/esm2015/components/speech-recognition/speech-recognition.service.js +5 -1
  10. package/esm2015/components/speech-recognition/text-to-speech.service.js +1 -1
  11. package/esm2015/components/text-area/text-area/text-area.component.js +3 -14
  12. package/esm5/components/speech-recognition/speech-recognition/speech-recognition.component.js +42 -18
  13. package/esm5/components/speech-recognition/speech-recognition.service.js +5 -1
  14. package/esm5/components/speech-recognition/text-to-speech.service.js +1 -1
  15. package/esm5/components/text-area/text-area/text-area.component.js +3 -18
  16. package/fesm2015/seniorsistemas-angular-components.js +42 -31
  17. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  18. package/fesm5/seniorsistemas-angular-components.js +47 -34
  19. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  20. package/package.json +1 -1
  21. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -11359,6 +11359,7 @@ var SpeechRecognitionService = /** @class */ (function () {
11359
11359
  this.translateService = translateService;
11360
11360
  this.hasSupportSpeechRecognition = false;
11361
11361
  this.isListening = false;
11362
+ this.microphoneStatus$ = new Subject();
11362
11363
  this.TIMEOUT_NO_MESSAGE = 3000;
11363
11364
  this.setRecognition();
11364
11365
  }
@@ -11374,6 +11375,7 @@ var SpeechRecognitionService = /** @class */ (function () {
11374
11375
  speechSubject.error('Microphone access is disabled');
11375
11376
  return;
11376
11377
  }
11378
+ _this.microphoneStatus$.next('active');
11377
11379
  _this.isListening = true;
11378
11380
  _this.recognition.continuous = true;
11379
11381
  _this.recognition.interimResults = true;
@@ -11413,6 +11415,7 @@ var SpeechRecognitionService = /** @class */ (function () {
11413
11415
  }
11414
11416
  _this.isListening = false;
11415
11417
  speechSubject.error('Speech recognition error');
11418
+ _this.microphoneStatus$.next('inactive');
11416
11419
  });
11417
11420
  };
11418
11421
  _this.recognition.onend = function () {
@@ -11423,6 +11426,7 @@ var SpeechRecognitionService = /** @class */ (function () {
11423
11426
  speechSubject.next({ text: fullTranscript + interimTranscript, isFinal: true });
11424
11427
  _this.isListening = false;
11425
11428
  speechSubject.complete();
11429
+ _this.microphoneStatus$.next('inactive');
11426
11430
  });
11427
11431
  };
11428
11432
  _this.recognition.start();
@@ -13506,21 +13510,6 @@ var TextAreaComponent = /** @class */ (function () {
13506
13510
  enumerable: true,
13507
13511
  configurable: true
13508
13512
  });
13509
- Object.defineProperty(TextAreaComponent.prototype, "placeholder", {
13510
- get: function () {
13511
- return this._placeholder;
13512
- },
13513
- set: function (value) {
13514
- if (value) {
13515
- this._placeholder = value;
13516
- }
13517
- else {
13518
- this._placeholder = '';
13519
- }
13520
- },
13521
- enumerable: true,
13522
- configurable: true
13523
- });
13524
13513
  Object.defineProperty(TextAreaComponent.prototype, "inputStyle", {
13525
13514
  get: function () {
13526
13515
  return this._inputStyle;
@@ -13585,7 +13574,7 @@ var TextAreaComponent = /** @class */ (function () {
13585
13574
  ], TextAreaComponent.prototype, "maxLength", void 0);
13586
13575
  __decorate([
13587
13576
  Input()
13588
- ], TextAreaComponent.prototype, "placeholder", null);
13577
+ ], TextAreaComponent.prototype, "placeholder", void 0);
13589
13578
  __decorate([
13590
13579
  Input()
13591
13580
  ], TextAreaComponent.prototype, "inputStyle", null);
@@ -13595,7 +13584,7 @@ var TextAreaComponent = /** @class */ (function () {
13595
13584
  TextAreaComponent = TextAreaComponent_1 = __decorate([
13596
13585
  Component({
13597
13586
  selector: 's-textarea',
13598
- template: "<textarea\n *ngIf=\"keyFilter\"\n #textArea\n class=\"textarea\"\n [pKeyFilter]=\"keyFilter\"\n [id]=\"inputId\"\n [rows]=\"rows\"\n [(ngModel)]=\"value\"\n [disabled]=\"disabled\"\n [ngStyle]=\"inputStyle\"\n [readOnly]=\"readOnly\"\n [placeholder]=\"placeholder\"\n [maxlength]=\"maxLength\"\n (ngModelChange)=\"setValue($event)\">\n</textarea>\n\n<textarea\n *ngIf=\"!keyFilter\"\n #textArea\n class=\"textarea\"\n [id]=\"inputId\"\n [rows]=\"rows\"\n [(ngModel)]=\"value\"\n [disabled]=\"disabled\"\n [ngStyle]=\"inputStyle\"\n [readOnly]=\"readOnly\"\n [placeholder]=\"placeholder\"\n [maxlength]=\"maxLength\"\n (ngModelChange)=\"setValue($event)\">\n</textarea>\n\n<s-speech-recognition\n *ngIf=\"speechRecognition && renderTextArea\"\n [textAreaElement]=\"textAreaElement.nativeElement\"\n [keepContext]=\"keepContext\"\n [speechRecognitionPlaceholder]=\"speechRecognitionPlaceholder\"\n (recognizedText)=\"handleRecognizedText($event)\">\n</s-speech-recognition>\n",
13587
+ template: "<textarea\n *ngIf=\"keyFilter\"\n #textArea\n class=\"textarea\"\n [pKeyFilter]=\"keyFilter\"\n [id]=\"inputId\"\n [rows]=\"rows\"\n [(ngModel)]=\"value\"\n [disabled]=\"disabled\"\n [ngStyle]=\"inputStyle\"\n [readOnly]=\"readOnly\"\n [placeholder]=\"placeholder ? placeholder : ''\"\n [maxlength]=\"maxLength\"\n (ngModelChange)=\"setValue($event)\">\n</textarea>\n\n<textarea\n *ngIf=\"!keyFilter\"\n #textArea\n class=\"textarea\"\n [id]=\"inputId\"\n [rows]=\"rows\"\n [(ngModel)]=\"value\"\n [disabled]=\"disabled\"\n [ngStyle]=\"inputStyle\"\n [readOnly]=\"readOnly\"\n [placeholder]=\"placeholder ? placeholder : ''\"\n [maxlength]=\"maxLength\"\n (ngModelChange)=\"setValue($event)\">\n</textarea>\n\n<s-speech-recognition\n *ngIf=\"speechRecognition && renderTextArea\"\n [textAreaElement]=\"textAreaElement.nativeElement\"\n [keepContext]=\"keepContext\"\n [speechRecognitionPlaceholder]=\"speechRecognitionPlaceholder\"\n (recognizedText)=\"handleRecognizedText($event)\">\n</s-speech-recognition>\n",
13599
13588
  providers: [
13600
13589
  {
13601
13590
  provide: NG_VALUE_ACCESSOR,
@@ -13705,7 +13694,7 @@ var SpeechRecognitionComponent = /** @class */ (function () {
13705
13694
  this.speechRecognitionPlaceholder = '';
13706
13695
  this._recognizedText = '';
13707
13696
  this.originalTextAreaElementText = '';
13708
- this.isDoneSpeaking = false;
13697
+ this.isDoneTextToSpeech = false;
13709
13698
  this.onDestroy$ = new Subject();
13710
13699
  this.VOICE_SPEEDS = [0.5, 1, 1.5, 2];
13711
13700
  this.keydownEventListener = function (event) {
@@ -13714,7 +13703,7 @@ var SpeechRecognitionComponent = /** @class */ (function () {
13714
13703
  }
13715
13704
  };
13716
13705
  this.disabled = false;
13717
- this.isSpeaking = false;
13706
+ this.isListeningUserVoice = false;
13718
13707
  this.voiceSpeed = 1;
13719
13708
  this.isDisabledMicrophone = false;
13720
13709
  this.canRenderMicrophone = true;
@@ -13726,7 +13715,9 @@ var SpeechRecognitionComponent = /** @class */ (function () {
13726
13715
  this.isPlayingTextToSpeech = false;
13727
13716
  this.recognizedText = new EventEmitter();
13728
13717
  }
13718
+ SpeechRecognitionComponent_1 = SpeechRecognitionComponent;
13729
13719
  SpeechRecognitionComponent.prototype.ngOnInit = function () {
13720
+ var _this = this;
13730
13721
  if (!this.hasSpeechRecognitionBrowserApi) {
13731
13722
  return;
13732
13723
  }
@@ -13735,18 +13726,26 @@ var SpeechRecognitionComponent = /** @class */ (function () {
13735
13726
  }
13736
13727
  this.textAreaElement.placeholder = this.speechRecognitionPlaceholder ? this.speechRecognitionPlaceholder : this.translateService.instant("platform.angular_components.text_area_speech_recognition_placeholder");
13737
13728
  this.textAreaElement.addEventListener('keydown', this.keydownEventListener);
13729
+ this.speechRecognitionService.microphoneStatus$.pipe(takeUntil(this.onDestroy$)).subscribe(function (status) {
13730
+ if (status === 'active') {
13731
+ _this.onCloseToolbar();
13732
+ }
13733
+ });
13738
13734
  };
13739
13735
  SpeechRecognitionComponent.prototype.onListen = function () {
13740
13736
  var _this = this;
13741
13737
  if (this.isDisabledMicrophone || this.isListening) {
13742
13738
  return;
13743
13739
  }
13740
+ // if (this.isPlayingTextToSpeech) {
13741
+ // this.onCloseToolbar();
13742
+ // }
13744
13743
  this.disabled = true;
13745
13744
  this.canRenderMicrophone = false;
13746
13745
  this.canRenderListeningText = true;
13747
13746
  this.originalTextAreaElementText = this.textAreaElement.value;
13748
13747
  this.textAreaElement.value = '';
13749
- this.isSpeaking = true;
13748
+ this.isListeningUserVoice = true;
13750
13749
  this.speechRecognitionService.listen()
13751
13750
  .pipe(takeUntil(this.onDestroy$))
13752
13751
  .subscribe(function (_a) {
@@ -13758,10 +13757,10 @@ var SpeechRecognitionComponent = /** @class */ (function () {
13758
13757
  _this.canRenderAprove = true;
13759
13758
  _this.canRenderDiscard = true;
13760
13759
  _this.canRenderListeningText = false;
13761
- _this.isSpeaking = false;
13760
+ _this.isListeningUserVoice = false;
13762
13761
  }
13763
13762
  }, function () {
13764
- _this.isSpeaking = false;
13763
+ _this.isListeningUserVoice = false;
13765
13764
  _this.canRenderMicrophone = true;
13766
13765
  _this.isDisabledMicrophone = false;
13767
13766
  _this.canRenderListeningText = false;
@@ -13780,15 +13779,15 @@ var SpeechRecognitionComponent = /** @class */ (function () {
13780
13779
  }
13781
13780
  this.canRenderTextToSpeechToolbar = true;
13782
13781
  this.canRenderTextToSpeech = false;
13783
- this.isPlayingTextToSpeech = true;
13782
+ SpeechRecognitionComponent_1.TOOLBAR_ACTIVE = true;
13784
13783
  this.speak();
13785
13784
  };
13786
13785
  SpeechRecognitionComponent.prototype.onCloseToolbar = function () {
13787
13786
  this.canRenderTextToSpeechToolbar = false;
13788
13787
  this.canRenderTextToSpeech = true;
13789
- this.isPlayingTextToSpeech = false;
13790
- this.textToSpeechService.cancel();
13788
+ this.stopTextToSpeech();
13791
13789
  this.voiceSpeed = 1;
13790
+ SpeechRecognitionComponent_1.TOOLBAR_ACTIVE = false;
13792
13791
  };
13793
13792
  SpeechRecognitionComponent.prototype.onDiscard = function () {
13794
13793
  this.canRenderAprove = false;
@@ -13799,7 +13798,8 @@ var SpeechRecognitionComponent = /** @class */ (function () {
13799
13798
  this._recognizedText = '';
13800
13799
  this.setTextAreaValue(this.originalTextAreaElementText);
13801
13800
  this.disabled = false;
13802
- this.textToSpeechService.cancel();
13801
+ this.stopTextToSpeech();
13802
+ SpeechRecognitionComponent_1.TOOLBAR_ACTIVE = false;
13803
13803
  };
13804
13804
  SpeechRecognitionComponent.prototype.onAprove = function () {
13805
13805
  this.canRenderAprove = false;
@@ -13829,7 +13829,7 @@ var SpeechRecognitionComponent = /** @class */ (function () {
13829
13829
  this.textToSpeechService.pause();
13830
13830
  }
13831
13831
  else {
13832
- if (this.isDoneSpeaking) {
13832
+ if (this.isDoneTextToSpeech) {
13833
13833
  this.speak();
13834
13834
  }
13835
13835
  else {
@@ -13839,7 +13839,6 @@ var SpeechRecognitionComponent = /** @class */ (function () {
13839
13839
  this.isPlayingTextToSpeech = !this.isPlayingTextToSpeech;
13840
13840
  };
13841
13841
  SpeechRecognitionComponent.prototype.restartTextToSpeech = function () {
13842
- this.isPlayingTextToSpeech = true;
13843
13842
  this.textToSpeechService.cancel();
13844
13843
  this.speak();
13845
13844
  };
@@ -13870,7 +13869,7 @@ var SpeechRecognitionComponent = /** @class */ (function () {
13870
13869
  Object.defineProperty(SpeechRecognitionComponent.prototype, "isDisabledTextToSpeech", {
13871
13870
  get: function () {
13872
13871
  var hasTextToSpeechVoice = this.textToSpeechService.hasVoice;
13873
- return !this._recognizedText || !hasTextToSpeechVoice || this.isListening;
13872
+ return !this.textToSpeech || !hasTextToSpeechVoice || this.isListening || SpeechRecognitionComponent_1.TOOLBAR_ACTIVE;
13874
13873
  },
13875
13874
  enumerable: true,
13876
13875
  configurable: true
@@ -13878,14 +13877,28 @@ var SpeechRecognitionComponent = /** @class */ (function () {
13878
13877
  SpeechRecognitionComponent.prototype.setTextAreaValue = function (value) {
13879
13878
  this.textAreaElement.value = value;
13880
13879
  };
13880
+ SpeechRecognitionComponent.prototype.stopTextToSpeech = function () {
13881
+ this.isPlayingTextToSpeech = false;
13882
+ this.textToSpeechService.cancel();
13883
+ };
13881
13884
  SpeechRecognitionComponent.prototype.speak = function () {
13882
13885
  var _this = this;
13883
- this.isDoneSpeaking = false;
13884
- this.textToSpeechService.speak(this._recognizedText, this.voiceSpeed).then(function () {
13886
+ this.isDoneTextToSpeech = false;
13887
+ this.isPlayingTextToSpeech = true;
13888
+ this.textToSpeechService.speak(this.textToSpeech, this.voiceSpeed).then(function () {
13885
13889
  _this.isPlayingTextToSpeech = false;
13886
- _this.isDoneSpeaking = true;
13890
+ _this.isDoneTextToSpeech = true;
13887
13891
  });
13888
13892
  };
13893
+ Object.defineProperty(SpeechRecognitionComponent.prototype, "textToSpeech", {
13894
+ get: function () {
13895
+ return this.textAreaElement.value;
13896
+ },
13897
+ enumerable: true,
13898
+ configurable: true
13899
+ });
13900
+ var SpeechRecognitionComponent_1;
13901
+ SpeechRecognitionComponent.TOOLBAR_ACTIVE = false;
13889
13902
  SpeechRecognitionComponent.ctorParameters = function () { return [
13890
13903
  { type: SpeechRecognitionService },
13891
13904
  { type: TextToSpeechService },
@@ -13903,10 +13916,10 @@ var SpeechRecognitionComponent = /** @class */ (function () {
13903
13916
  __decorate([
13904
13917
  Output()
13905
13918
  ], SpeechRecognitionComponent.prototype, "recognizedText", void 0);
13906
- SpeechRecognitionComponent = __decorate([
13919
+ SpeechRecognitionComponent = SpeechRecognitionComponent_1 = __decorate([
13907
13920
  Component({
13908
13921
  selector: 's-speech-recognition',
13909
- template: "<section class=\"speech-recognition\" *ngIf=\"hasSpeechRecognitionBrowserApi\">\n <div class=\"speech-recognition-text\">\n <ng-container *ngIf=\"canRenderMicrophone\">\n {{ 'platform.angular_components.text_area_before_speech' | translate }}\n </ng-container>\n\n <ng-container *ngIf=\"isSpeaking\">\n {{ 'platform.angular_components.text_area_while_speech' | translate }}\n </ng-container>\n\n <ng-container *ngIf=\"canRenderAprove && canRenderDiscard\">\n {{ 'platform.angular_components.text_area_end_speech' | translate }}\n </ng-container>\n </div>\n <div class=\"speech-recognition-buttons\">\n <span\n *ngIf=\"canRenderListeningText\"\n (click)=\"stopListening()\"\n class=\"speech-recognition-item speech-recognition-item-regular\">\n <i class=\"far fa-ellipsis-h\"></i>\n </span>\n\n <span\n *ngIf=\"canRenderMicrophone\"\n (click)=\"onListen()\"\n class=\"speech-recognition-item speech-recognition-item-microphone\"\n [class.speech-recognition-item-disabled]=\"isDisabledMicrophone || isListening || disabled\">\n <i class=\"fas fa-microphone\"></i>\n </span>\n\n <span\n *ngIf=\"canRenderAprove\"\n (click)=\"onAprove()\"\n class=\"speech-recognition-item speech-recognition-item-aprove\">\n <i class=\"fas fa-check\"></i>\n </span>\n\n <span *ngIf=\"canRenderDiscard\"\n (click)=\"onDiscard()\"\n class=\"speech-recognition-item speech-recognition-item-discard\">\n <i class=\"fas fa-times\"></i>\n </span>\n\n <span\n *ngIf=\"canRenderTextToSpeech\"\n (click)=\"onOpenToolbar()\"\n class=\"speech-recognition-item speech-recognition-item-regular\"\n [class.speech-recognition-item-disabled]=\"isDisabledTextToSpeech\">\n <i class=\"fas fa-volume-down\"></i>\n </span>\n\n <span\n *ngIf=\"canRenderTextToSpeechToolbar\"\n class=\"speech-recognition-item-toolbar\">\n <i class=\"fas\" [class.fa-pause]=\"isPlayingTextToSpeech\" [class.fa-play]=\"!isPlayingTextToSpeech\"\n (click)=\"toggleTextToSpeech()\"></i>\n <i class=\"fas fa-backward\" (click)=\"restartTextToSpeech()\"></i>\n <span (click)=\"updateVoiceSpeed()\">\n {{ voiceSpeed }}x\n </span>\n <i class=\"fas fa-times\" (click)=\"onCloseToolbar()\"></i>\n </span>\n </div>\n</section>\n",
13922
+ template: "<section class=\"speech-recognition\" *ngIf=\"hasSpeechRecognitionBrowserApi\">\n <div class=\"speech-recognition-text\">\n <ng-container *ngIf=\"canRenderMicrophone\">\n {{ 'platform.angular_components.text_area_before_speech' | translate }}\n </ng-container>\n\n <ng-container *ngIf=\"isListeningUserVoice\">\n {{ 'platform.angular_components.text_area_while_speech' | translate }}\n </ng-container>\n\n <ng-container *ngIf=\"canRenderAprove && canRenderDiscard\">\n {{ 'platform.angular_components.text_area_end_speech' | translate }}\n </ng-container>\n </div>\n <div class=\"speech-recognition-buttons\">\n <span\n *ngIf=\"canRenderListeningText\"\n (click)=\"stopListening()\"\n class=\"speech-recognition-item speech-recognition-item-regular\">\n <i class=\"far fa-ellipsis-h\"></i>\n </span>\n\n <span\n *ngIf=\"canRenderMicrophone\"\n (click)=\"onListen()\"\n class=\"speech-recognition-item speech-recognition-item-microphone\"\n [class.speech-recognition-item-disabled]=\"isDisabledMicrophone || isListening || disabled\">\n <i class=\"fas fa-microphone\"></i>\n </span>\n\n <span\n *ngIf=\"canRenderAprove\"\n (click)=\"onAprove()\"\n class=\"speech-recognition-item speech-recognition-item-aprove\">\n <i class=\"fas fa-check\"></i>\n </span>\n\n <span *ngIf=\"canRenderDiscard\"\n (click)=\"onDiscard()\"\n class=\"speech-recognition-item speech-recognition-item-discard\">\n <i class=\"fas fa-times\"></i>\n </span>\n\n <span\n *ngIf=\"canRenderTextToSpeech\"\n (click)=\"onOpenToolbar()\"\n class=\"speech-recognition-item speech-recognition-item-regular\"\n [class.speech-recognition-item-disabled]=\"isDisabledTextToSpeech\">\n <i class=\"fas fa-volume-down\"></i>\n </span>\n\n <span\n *ngIf=\"canRenderTextToSpeechToolbar\"\n class=\"speech-recognition-item-toolbar\">\n <i class=\"fas\" [class.fa-pause]=\"isPlayingTextToSpeech\" [class.fa-play]=\"!isPlayingTextToSpeech\"\n (click)=\"toggleTextToSpeech()\"></i>\n <i class=\"fas fa-backward\" (click)=\"restartTextToSpeech()\"></i>\n <span (click)=\"updateVoiceSpeed()\">\n {{ voiceSpeed }}x\n </span>\n <i class=\"fas fa-times\" (click)=\"onCloseToolbar()\"></i>\n </span>\n </div>\n</section>\n",
13910
13923
  styles: [".speech-recognition{display:-ms-flexbox;display:flex;gap:10px;-ms-flex-pack:justify;justify-content:space-between;width:100%}.speech-recognition-buttons{display:-ms-flexbox;display:flex;gap:10px;position:relative;bottom:15px;margin-right:16px}.speech-recognition-item{display:-ms-inline-flexbox;display:inline-flex;height:25px;padding:4px 12px;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;gap:8px;border-radius:15px;cursor:pointer;transition:background .1s ease-in}.speech-recognition-item i,.speech-recognition-item span{color:#fff}.speech-recognition-item-disabled{cursor:default!important}.speech-recognition-item-disabled *{opacity:.5}.speech-recognition-item-microphone{background:#428bca}.speech-recognition-item-microphone:not(.speech-recognition-item-disabled):hover{background:#063951}.speech-recognition-item-regular{background:#7892a1}.speech-recognition-item-regular:not(.speech-recognition-item-disabled):hover{background:#697882}.speech-recognition-item-aprove{background:#0c9348}.speech-recognition-item-aprove:not(.speech-recognition-item-disabled):hover{background:#063951}.speech-recognition-item-discard{background:#c13018}.speech-recognition-item-discard:not(.speech-recognition-item-disabled):hover{background:#063951}.speech-recognition-item-toolbar{background:#7892a1;display:-ms-flexbox;display:flex;border-radius:15px;-ms-flex-align:center;align-items:center;color:#fff}.speech-recognition-item-toolbar i,.speech-recognition-item-toolbar span{cursor:pointer}.speech-recognition-item-toolbar i:not(:first-child),.speech-recognition-item-toolbar i:not(:last-child){padding:6px}.speech-recognition-item-toolbar i:first-child{padding-left:10px}.speech-recognition-item-toolbar i:last-child{padding-right:10px}.speech-recognition-item-toolbar span{height:25px}.speech-recognition-text{color:#212533;font-size:12px;font-style:normal;font-weight:400;word-break:break-word}"]
13911
13924
  })
13912
13925
  ], SpeechRecognitionComponent);