@bnsights/bbsf-controls 1.0.191 → 1.0.193

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.
@@ -7,6 +7,7 @@ export declare enum DataType {
7
7
  Text = "7F35E246-7C93-4666-8031-3CE9D2262DB9",
8
8
  Email = "E4F974F6-682F-4CAC-8597-C94E8BF60539",
9
9
  Number = "962060E2-539C-4257-88E5-0259EB8A64F4",
10
+ URL = "4A2E8C91-B7D3-4F5E-A9C2-1D6E3F8B4C7A",
10
11
  Name = "54FE6A3E-1F71-42B8-8C99-06279ED8AA2F",
11
12
  Mobile = "266E2903-D105-4847-AC9B-002AE884A31E",
12
13
  MultilineText = "97F904E0-991B-4F68-B227-217A7B87B8B3",
@@ -9,7 +9,7 @@ export declare class TextAreaComponent implements OnInit, OnDestroy {
9
9
  private controlUtility;
10
10
  private controlContainer;
11
11
  textAreaControlHost: FormGroupDirective;
12
- private utilityService;
12
+ utilityService: UtilityService;
13
13
  private controlValidationService;
14
14
  private globalSettings;
15
15
  private speechRecognitionService;
@@ -38,6 +38,8 @@ export declare class TextAreaComponent implements OnInit, OnDestroy {
38
38
  subscription: Subscription;
39
39
  valueChangesSubscription: Subscription;
40
40
  selectedSpeechLanguageDisplayText: string;
41
+ isLanguageSelectFocusVisible: boolean;
42
+ isMicFocusVisible: boolean;
41
43
  ariaDescribedBy: string;
42
44
  errorMessageId: string;
43
45
  characterCountId: string;
@@ -68,6 +70,9 @@ export declare class TextAreaComponent implements OnInit, OnDestroy {
68
70
  fireOnChange(text: any): void;
69
71
  ngOnDestroy(): void;
70
72
  onMicKeydown(event: KeyboardEvent, action: 'start' | 'stop'): void;
73
+ onLanguageSelectFocus(isFocused: boolean): void;
74
+ onLanguageSelectKeydown(event: KeyboardEvent): void;
75
+ onMicFocus(isFocused: boolean): void;
71
76
  onCopyKeydown(event: KeyboardEvent, inputElement: HTMLTextAreaElement): void;
72
77
  onSpeechLanguageChange(event: Event): void;
73
78
  enableOrDisableLanguageSelect(isEnabled?: boolean): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bnsights/bbsf-controls",
3
- "version": "1.0.191",
3
+ "version": "1.0.193",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^17.0.5",
6
6
  "@angular/cdk": "^17.0.2",
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "dependencies": {
15
15
  "@angular/google-maps": "^17.0.3",
16
- "@bnsights/bbsf-utilities": "^1.0.68",
16
+ "@bnsights/bbsf-utilities": "^1.0.69",
17
17
  "@danielmoncada/angular-datetime-picker": "^17.0.0",
18
18
  "@fullcalendar/angular": "^6.1.10",
19
19
  "@fullcalendar/core": "^6.1.10",
@@ -32,10 +32,6 @@
32
32
  color: #a0a0a0;
33
33
  }
34
34
 
35
- .swal2-cancel {
36
- color: #9a9a9a;
37
- }
38
-
39
35
  .swal2-styled {
40
36
  &:focus {
41
37
  box-shadow: none !important
@@ -50,4 +46,4 @@
50
46
  width: 24em;
51
47
  }
52
48
  }
53
- }
49
+ }
@@ -60,4 +60,22 @@
60
60
  scroll-behavior: auto !important;
61
61
  }
62
62
  }
63
+
64
+ .language-controls {
65
+ &.focus-visible {
66
+ outline: 1px solid #ccc;
67
+ scale: 1.01;
68
+ outline-offset: 1px;
69
+ border-radius: 4px;
70
+ }
71
+ }
72
+
73
+ .speech-control-btn {
74
+ &.focus-visible {
75
+ outline: 1px solid #ccc;
76
+ scale: 1.01;
77
+ outline-offset: 1px;
78
+ border-radius: 4px;
79
+ }
80
+ }
63
81
  }