@bnsights/bbsf-controls 1.0.50 → 1.0.51
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 +5 -0
- package/bnsights-bbsf-controls-1.0.51.tgz +0 -0
- package/bnsights-bbsf-controls.metadata.json +1 -1
- package/bundles/bnsights-bbsf-controls.umd.js +49 -20
- package/bundles/bnsights-bbsf-controls.umd.js.map +1 -1
- package/esm2015/lib/Shared/Enums/LanguageMode.js +8 -8
- package/esm2015/lib/Shared/Models/DropdownOptions.js +2 -1
- package/esm2015/lib/Shared/Models/HtmlEditorOptions.js +2 -2
- package/esm2015/lib/controls/DateTimePicker/DateTimePicker.component.js +3 -1
- package/esm2015/lib/controls/DropdownList/DropdownList.component.js +2 -2
- package/esm2015/lib/controls/HtmlEditor/HtmlEditor.component.js +3 -3
- package/esm2015/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.js +10 -2
- package/esm2015/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.js +12 -4
- package/esm2015/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.js +14 -4
- package/esm2015/lib/controls/TextArea/TextArea.component.js +2 -2
- package/esm2015/lib/controls/TextBox/TextBox.component.js +2 -2
- package/fesm2015/bnsights-bbsf-controls.js +49 -20
- package/fesm2015/bnsights-bbsf-controls.js.map +1 -1
- package/lib/Shared/Enums/LanguageMode.d.ts +7 -7
- package/lib/Shared/Models/DropdownOptions.d.ts +1 -0
- package/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.d.ts +2 -0
- package/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.d.ts +2 -0
- package/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.d.ts +2 -0
- package/package.json +2 -2
- package/bnsights-bbsf-controls-1.0.50.tgz +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export declare enum LanguageMode {
|
|
2
|
-
Both_Languages_are_visible =
|
|
3
|
-
English_Language_only_is_visible =
|
|
4
|
-
Arabic_Language_only_is_visible =
|
|
5
|
-
Both_Languages_but_only_English_is_required =
|
|
6
|
-
Both_Languages_but_only_Arabic_is_required =
|
|
7
|
-
Current_Language_only_is_visible_and_required =
|
|
8
|
-
Both_Languages_are_visible_but_only_current_language_is_required =
|
|
2
|
+
Both_Languages_are_visible = "3c6dbffe-da7f-4108-b44d-4b216a22f701",
|
|
3
|
+
English_Language_only_is_visible = "84cc1d57-1f07-42a1-a38f-1a376c12a367",
|
|
4
|
+
Arabic_Language_only_is_visible = "6a3e59e0-9510-4b16-9080-9313f5c9f229",
|
|
5
|
+
Both_Languages_but_only_English_is_required = "260c38bb-c90c-4aa7-895d-31aba9311a05",
|
|
6
|
+
Both_Languages_but_only_Arabic_is_required = "a1f2e15f-2691-4118-975f-ac21caf8ad5a",
|
|
7
|
+
Current_Language_only_is_visible_and_required = "e2ba1f44-68f3-4035-b84f-9f1b6c2b0c05",
|
|
8
|
+
Both_Languages_are_visible_but_only_current_language_is_required = "b26431f2-b209-4c41-ab04-2d71361847c2"
|
|
9
9
|
}
|
|
@@ -13,6 +13,8 @@ export declare class MultiLingualHtmlEditorComponent implements OnInit {
|
|
|
13
13
|
private controlValidationService;
|
|
14
14
|
private globalSettings;
|
|
15
15
|
static controlContainerstatic: any;
|
|
16
|
+
IsShowAsteriskInArabic: boolean;
|
|
17
|
+
IsShowAsteriskInEnglish: boolean;
|
|
16
18
|
constructor(MultiLingualHtmlEditorFormControlHost: FormGroupDirective, controlContainer: ControlContainer, controlUtility: ControlUtility, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
|
|
17
19
|
group: FormGroup;
|
|
18
20
|
options: MultiLingualHtmlEditorOptions;
|
|
@@ -12,6 +12,8 @@ export declare class MultiLingualTextAreaComponent implements OnInit {
|
|
|
12
12
|
private controlValidationService;
|
|
13
13
|
private globalSettings;
|
|
14
14
|
static controlContainerstatic: any;
|
|
15
|
+
IsShowAsteriskInArabic: boolean;
|
|
16
|
+
IsShowAsteriskInEnglish: boolean;
|
|
15
17
|
constructor(MultiLingualTextAreaFormControlHost: FormGroupDirective, controlContainer: ControlContainer, controlUtility: ControlUtility, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
|
|
16
18
|
group: FormGroup;
|
|
17
19
|
options: MultiLingualTextAreaOptions;
|
|
@@ -34,6 +34,8 @@ export declare class MultiLingualTextBoxComponent implements OnInit {
|
|
|
34
34
|
EnglishValidationRulesasync: any[];
|
|
35
35
|
IsShowArabicWordCount: boolean;
|
|
36
36
|
IsShowEnglishWordCount: boolean;
|
|
37
|
+
IsShowAsteriskInArabic: boolean;
|
|
38
|
+
IsShowAsteriskInEnglish: boolean;
|
|
37
39
|
markAllAsTouched: boolean;
|
|
38
40
|
ArabicLetterOnly: string;
|
|
39
41
|
EnglishLetterOnly: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bnsights/bbsf-controls",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.51",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "~12.2.12",
|
|
6
6
|
"@angular/core": "~12.2.12"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@angular/platform-browser": "~12.2.12",
|
|
22
22
|
"@angular/platform-browser-dynamic": "~12.2.12",
|
|
23
23
|
"@angular/router": "~12.2.12",
|
|
24
|
-
"@bnsights/bbsf-utilities": "1.0.
|
|
24
|
+
"@bnsights/bbsf-utilities": "1.0.24",
|
|
25
25
|
"@fortawesome/fontawesome-free": "^5.15.2",
|
|
26
26
|
"google-libphonenumber": "^3.2.17",
|
|
27
27
|
"@fullcalendar/angular": "^5.5.0",
|
|
Binary file
|