@bnsights/bbsf-controls 1.0.190 → 1.0.192
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/README.md +18 -1
- package/esm2022/lib/Shared/Enums/Enums.mjs +2 -1
- package/esm2022/lib/Shared/Models/RepeaterOptions.mjs +2 -1
- package/esm2022/lib/controls/ConfirmationModal/ConfirmationModal.component.mjs +1 -1
- package/esm2022/lib/controls/DropdownList/DropdownList.component.mjs +11 -6
- package/esm2022/lib/controls/FileUpload/FileUpload.component.mjs +15 -5
- package/esm2022/lib/controls/HtmlEditor/HtmlEditor.component.mjs +2 -2
- package/esm2022/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.mjs +74 -50
- package/esm2022/lib/controls/Paging/Paging.component.mjs +6 -5
- package/esm2022/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.mjs +639 -148
- package/esm2022/lib/controls/Repeater/repeater-table/repeater-table.component.mjs +8 -6
- package/esm2022/lib/controls/TextArea/TextArea.component.mjs +29 -6
- package/fesm2022/bnsights-bbsf-controls.mjs +771 -215
- package/fesm2022/bnsights-bbsf-controls.mjs.map +1 -1
- package/lib/Shared/Enums/Enums.d.ts +1 -0
- package/lib/Shared/Models/RepeaterOptions.d.ts +1 -0
- package/lib/controls/TextArea/TextArea.component.d.ts +6 -1
- package/package.json +2 -2
- package/src/lib/assets/sass/confirmation-modal.scss +1 -5
- package/src/lib/assets/sass/textarea.scss +18 -0
|
@@ -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
|
-
|
|
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.
|
|
3
|
+
"version": "1.0.192",
|
|
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.
|
|
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",
|
|
@@ -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
|
}
|