@bnsights/bbsf-controls 1.0.111 → 1.0.113
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 +9 -0
- package/bnsights-bbsf-controls-1.0.113.tgz +0 -0
- package/esm2022/lib/Shared/Components/app-base-component.mjs +11 -11
- package/esm2022/lib/Shared/Enums/StartView.mjs +1 -1
- package/esm2022/lib/Shared/Enums/map-enums.mjs +7 -7
- package/esm2022/lib/Shared/Models/Attribute.mjs +1 -1
- package/esm2022/lib/Shared/Models/AutocompleteOptions.mjs +9 -9
- package/esm2022/lib/Shared/Models/CalendarOptions.mjs +7 -7
- package/esm2022/lib/Shared/Models/CancelDTO.mjs +3 -3
- package/esm2022/lib/Shared/Models/CheckBoxOptions.mjs +3 -3
- package/esm2022/lib/Shared/Models/ConfirmationModalOptions.mjs +16 -16
- package/esm2022/lib/Shared/Models/ControlOptionsBase.mjs +5 -5
- package/esm2022/lib/Shared/Models/DatePickerOptions.mjs +24 -0
- package/esm2022/lib/Shared/Models/DropdownOptions.mjs +6 -6
- package/esm2022/lib/Shared/Models/EnglishArabicDTO.mjs +3 -3
- package/esm2022/lib/Shared/Models/FileDTO.mjs +22 -2
- package/esm2022/lib/Shared/Models/FileUploadModel.mjs +1 -1
- package/esm2022/lib/Shared/Models/FileUploadOptions.mjs +5 -3
- package/esm2022/lib/Shared/Models/FilterItem.mjs +2 -2
- package/esm2022/lib/Shared/Models/FormOptions.mjs +13 -13
- package/esm2022/lib/Shared/Models/HtmlEditorOptions.mjs +3 -3
- package/esm2022/lib/Shared/Models/ImageUploadOptions.mjs +4 -4
- package/esm2022/lib/Shared/Models/MapAutoCompleteOptions.mjs +1 -3
- package/esm2022/lib/Shared/Models/MapAutocompleteDTO.mjs +2 -2
- package/esm2022/lib/Shared/Models/MultiLingualHtmlEditorOptions.mjs +2 -2
- package/esm2022/lib/Shared/Models/MultiLingualTextAreaOptions.mjs +2 -2
- package/esm2022/lib/Shared/Models/{MultilingualTextBoxOptions.mjs → MultiLingualTextBoxOptions.mjs} +5 -5
- package/esm2022/lib/Shared/Models/MultilingualControlOptionsBase.mjs +6 -6
- package/esm2022/lib/Shared/Models/MultipleFileUploadModel.mjs +5 -5
- package/esm2022/lib/Shared/Models/PagingOptions.mjs +22 -22
- package/esm2022/lib/Shared/Models/PhoneOptions.mjs +4 -4
- package/esm2022/lib/Shared/Models/ProfileImageUploadOptions.mjs +3 -3
- package/esm2022/lib/Shared/Models/ProfilePictureDTO.mjs +1 -1
- package/esm2022/lib/Shared/Models/RadioButtonItem.mjs +1 -1
- package/esm2022/lib/Shared/Models/RadioButtonOptions.mjs +1 -1
- package/esm2022/lib/Shared/Models/RangeNumber.mjs +1 -1
- package/esm2022/lib/Shared/Models/Recaptcha.mjs +2 -2
- package/esm2022/lib/Shared/Models/RecaptchaOptions.mjs +9 -9
- package/esm2022/lib/Shared/Models/RepeaterField.mjs +1 -1
- package/esm2022/lib/Shared/Models/RepeaterOptions.mjs +9 -9
- package/esm2022/lib/Shared/Models/TagsInputDTO.mjs +1 -1
- package/esm2022/lib/Shared/Models/TagsInputOptions.mjs +19 -19
- package/esm2022/lib/Shared/Models/TextAreaOptions.mjs +1 -1
- package/esm2022/lib/Shared/Models/TextBoxOptions.mjs +9 -9
- package/esm2022/lib/Shared/Models/{ToggleslideOptions.mjs → ToggleSlideOptions.mjs} +2 -2
- package/esm2022/lib/Shared/Models/UploadPersonalImage.mjs +3 -3
- package/esm2022/lib/Shared/Models/filter-options.mjs +5 -5
- package/esm2022/lib/Shared/Models/page-header-options.mjs +32 -32
- package/esm2022/lib/Shared/services/ControlUtility.mjs +37 -37
- package/esm2022/lib/Shared/services/GlobalSettings.service.mjs +9 -9
- package/esm2022/lib/Shared/services/file-upload.service.mjs +29 -0
- package/esm2022/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.mjs +81 -81
- package/esm2022/lib/controls/Calendar/Calendar.component.mjs +40 -40
- package/esm2022/lib/controls/CheckBox/CheckBox.component.mjs +35 -35
- package/esm2022/lib/controls/ConfirmationModal/ConfirmationModal.component.mjs +30 -30
- package/esm2022/lib/controls/DateTimePicker/DateTimePicker.component.mjs +98 -97
- package/esm2022/lib/controls/DropdownList/DropdownList.component.mjs +74 -74
- package/esm2022/lib/controls/FileUplaod/FileUplaod.component.mjs +258 -191
- package/esm2022/lib/controls/Form/Form.component.mjs +24 -24
- package/esm2022/lib/controls/HtmlEditor/HtmlEditor.component.mjs +55 -55
- package/esm2022/lib/controls/ImageUpload/ImageUpload.component.mjs +126 -126
- package/esm2022/lib/controls/MapAutoComplete/MapAutoComplete.component.mjs +62 -66
- package/esm2022/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.mjs +163 -163
- package/esm2022/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.mjs +193 -193
- package/esm2022/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.mjs +210 -210
- package/esm2022/lib/controls/Paging/Paging.component.mjs +88 -88
- package/esm2022/lib/controls/Phone/Phone.component.mjs +42 -42
- package/esm2022/lib/controls/ProfileImageUploader/ProfileImageUploader.component.mjs +127 -127
- package/esm2022/lib/controls/RadioButton/RadioButton.component.mjs +38 -38
- package/esm2022/lib/controls/Recaptcha/Recaptcha.component.mjs +46 -46
- package/esm2022/lib/controls/Repeater/repeater/repeater.component.mjs +12 -12
- package/esm2022/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.mjs +556 -556
- package/esm2022/lib/controls/Repeater/repeater-table/repeater-table.component.mjs +15 -15
- package/esm2022/lib/controls/TagsInput/TagsInput.component.mjs +100 -100
- package/esm2022/lib/controls/TextArea/TextArea.component.mjs +71 -71
- package/esm2022/lib/controls/TextBox/TextBox.component.mjs +116 -116
- package/esm2022/lib/controls/Toggleslide/Toggleslide.component.mjs +90 -0
- package/esm2022/lib/controls/bbsf-controls.module.mjs +2 -2
- package/esm2022/lib/controls/page-header-component/page-header-component.component.mjs +4 -4
- package/esm2022/public-api.mjs +7 -7
- package/fesm2022/bnsights-bbsf-controls.mjs +3001 -2892
- package/fesm2022/bnsights-bbsf-controls.mjs.map +1 -1
- package/lib/Shared/Enums/map-enums.d.ts +1 -1
- package/lib/Shared/Models/Attribute.d.ts +1 -1
- package/lib/Shared/Models/AutocompleteOptions.d.ts +20 -20
- package/lib/Shared/Models/CalendarOptions.d.ts +10 -10
- package/lib/Shared/Models/CancelDTO.d.ts +2 -2
- package/lib/Shared/Models/CheckBoxOptions.d.ts +2 -2
- package/lib/Shared/Models/ConfirmationModalOptions.d.ts +14 -14
- package/lib/Shared/Models/ControlOptionsBase.d.ts +17 -17
- package/lib/Shared/Models/{datePickerOptions.d.ts → DatePickerOptions.d.ts} +12 -13
- package/lib/Shared/Models/DropdownOptions.d.ts +15 -15
- package/lib/Shared/Models/EnglishArabicDTO.d.ts +2 -2
- package/lib/Shared/Models/FileDTO.d.ts +18 -18
- package/lib/Shared/Models/FileUploadModel.d.ts +1 -1
- package/lib/Shared/Models/FileUploadOptions.d.ts +10 -8
- package/lib/Shared/Models/FilterItem.d.ts +4 -4
- package/lib/Shared/Models/FormOptions.d.ts +11 -11
- package/lib/Shared/Models/HtmlEditorOptions.d.ts +11 -11
- package/lib/Shared/Models/ImageUploadOptions.d.ts +9 -9
- package/lib/Shared/Models/MapAutoCompleteOptions.d.ts +1 -2
- package/lib/Shared/Models/MapAutocompleteDTO.d.ts +5 -5
- package/lib/Shared/Models/MultiLingualHtmlEditorOptions.d.ts +7 -7
- package/lib/Shared/Models/MultiLingualTextAreaOptions.d.ts +5 -5
- package/lib/Shared/Models/{MultilingualTextBoxOptions.d.ts → MultiLingualTextBoxOptions.d.ts} +6 -6
- package/lib/Shared/Models/MultilingualControlOptionsBase.d.ts +34 -34
- package/lib/Shared/Models/MultipleFileUploadModel.d.ts +4 -4
- package/lib/Shared/Models/PagingOptions.d.ts +25 -25
- package/lib/Shared/Models/PhoneOptions.d.ts +9 -9
- package/lib/Shared/Models/ProfileImageUploadOptions.d.ts +10 -10
- package/lib/Shared/Models/ProfilePictureDTO.d.ts +9 -9
- package/lib/Shared/Models/RadioButtonItem.d.ts +2 -2
- package/lib/Shared/Models/RadioButtonOptions.d.ts +2 -2
- package/lib/Shared/Models/RangeNumber.d.ts +2 -2
- package/lib/Shared/Models/Recaptcha.d.ts +4 -4
- package/lib/Shared/Models/RecaptchaOptions.d.ts +10 -10
- package/lib/Shared/Models/RepeaterField.d.ts +4 -4
- package/lib/Shared/Models/RepeaterOptions.d.ts +16 -16
- package/lib/Shared/Models/TagsInputDTO.d.ts +4 -4
- package/lib/Shared/Models/TagsInputOptions.d.ts +29 -29
- package/lib/Shared/Models/TextAreaOptions.d.ts +11 -11
- package/lib/Shared/Models/TextBoxOptions.d.ts +18 -18
- package/lib/Shared/Models/{ToggleslideOptions.d.ts → ToggleSlideOptions.d.ts} +3 -3
- package/lib/Shared/Models/UploadPersonalImage.d.ts +2 -2
- package/lib/Shared/Models/filter-options.d.ts +4 -4
- package/lib/Shared/Models/page-header-options.d.ts +43 -43
- package/lib/Shared/services/ControlUtility.d.ts +8 -8
- package/lib/Shared/services/GlobalSettings.service.d.ts +8 -8
- package/lib/Shared/services/file-upload.service.d.ts +11 -0
- package/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.d.ts +11 -11
- package/lib/controls/Calendar/Calendar.component.d.ts +7 -7
- package/lib/controls/CheckBox/CheckBox.component.d.ts +10 -10
- package/lib/controls/DateTimePicker/DateTimePicker.component.d.ts +22 -24
- package/lib/controls/DropdownList/DropdownList.component.d.ts +13 -13
- package/lib/controls/FileUplaod/FileUplaod.component.d.ts +20 -16
- package/lib/controls/Form/Form.component.d.ts +2 -2
- package/lib/controls/HtmlEditor/HtmlEditor.component.d.ts +12 -12
- package/lib/controls/ImageUpload/ImageUpload.component.d.ts +16 -16
- package/lib/controls/MapAutoComplete/MapAutoComplete.component.d.ts +6 -9
- package/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.d.ts +25 -25
- package/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.d.ts +24 -24
- package/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.d.ts +32 -32
- package/lib/controls/Paging/Paging.component.d.ts +11 -11
- package/lib/controls/Phone/Phone.component.d.ts +12 -12
- package/lib/controls/ProfileImageUploader/ProfileImageUploader.component.d.ts +18 -18
- package/lib/controls/RadioButton/RadioButton.component.d.ts +11 -11
- package/lib/controls/Recaptcha/Recaptcha.component.d.ts +10 -10
- package/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.d.ts +5 -5
- package/lib/controls/Repeater/repeater-table/repeater-table.component.d.ts +1 -1
- package/lib/controls/TagsInput/TagsInput.component.d.ts +17 -17
- package/lib/controls/TextArea/TextArea.component.d.ts +14 -14
- package/lib/controls/TextBox/TextBox.component.d.ts +25 -25
- package/lib/controls/Toggleslide/{toggleslide.component.d.ts → Toggleslide.component.d.ts} +10 -10
- package/lib/controls/bbsf-controls.module.d.ts +1 -1
- package/package.json +4 -3
- package/public-api.d.ts +4 -4
- package/src/lib/assets/Style-rtl.scss +16 -0
- package/src/lib/assets/images/marker-pin.svg +4 -4
- package/src/lib/assets/sass/file-upload.scss +39 -1
- package/src/lib/assets/sass/image-upload.scss +5 -6
- package/esm2022/bnsights-test-test-controls.mjs +0 -5
- package/esm2022/lib/Shared/Models/datePickerOptions.mjs +0 -23
- package/esm2022/lib/controls/Toggleslide/toggleslide.component.mjs +0 -90
- package/fesm2022/bnsights-test-test-controls.mjs +0 -9164
- package/fesm2022/bnsights-test-test-controls.mjs.map +0 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="google.maps" />
|
|
2
|
-
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
2
|
import { OnInit, NgZone, ElementRef, EventEmitter } from '@angular/core';
|
|
4
3
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
5
4
|
import { MapAutoCompleteOptions } from '../../Shared/Models/MapAutoCompleteOptions';
|
|
@@ -19,27 +18,25 @@ export declare class MapAutoCompleteComponent implements OnInit {
|
|
|
19
18
|
private controlValidationService;
|
|
20
19
|
private globalSettings;
|
|
21
20
|
private scriptService;
|
|
22
|
-
private modalService;
|
|
23
21
|
static controlContainerStatic: any;
|
|
24
|
-
constructor(ngZone: NgZone, controlUtility: ControlUtility, controlContainer: ControlContainer, mapAutoCompleteControlHost: FormGroupDirective, UtilityService: UtilityService, translate: BBSFTranslateService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings, scriptService: ScriptService
|
|
22
|
+
constructor(ngZone: NgZone, controlUtility: ControlUtility, controlContainer: ControlContainer, mapAutoCompleteControlHost: FormGroupDirective, UtilityService: UtilityService, translate: BBSFTranslateService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings, scriptService: ScriptService);
|
|
25
23
|
group: FormGroup;
|
|
26
24
|
options: MapAutoCompleteOptions;
|
|
27
25
|
OnChange: EventEmitter<any>;
|
|
26
|
+
searchElementRef: ElementRef;
|
|
27
|
+
advancedMapModal: any;
|
|
28
28
|
mapAutoCompleteFormControl: AbstractControl;
|
|
29
29
|
mapAutoCompleteModel: MapAutocompleteDTO;
|
|
30
30
|
currentLanguage: string;
|
|
31
31
|
markAllAsTouched: boolean;
|
|
32
32
|
validationRules: any[];
|
|
33
33
|
validationRulesAsync: any[];
|
|
34
|
-
place: any;
|
|
35
34
|
showMap: boolean;
|
|
36
|
-
markerPosition:
|
|
35
|
+
markerPosition: google.maps.LatLngLiteral;
|
|
37
36
|
mapCenter: google.maps.LatLngLiteral;
|
|
38
37
|
modalIsOpen: boolean;
|
|
39
|
-
searchElementRef: ElementRef;
|
|
40
|
-
advancedMapModal: any;
|
|
41
|
-
gMap: google.maps.Map;
|
|
42
38
|
markerOptions: google.maps.MarkerOptions;
|
|
39
|
+
place: any;
|
|
43
40
|
selectedPin: any;
|
|
44
41
|
ngOnInit(): void;
|
|
45
42
|
ngAfterViewInit(): void;
|
|
@@ -65,6 +62,6 @@ export declare class MapAutoCompleteComponent implements OnInit {
|
|
|
65
62
|
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
66
63
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
67
64
|
IsValid: () => void;
|
|
68
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MapAutoCompleteComponent, [null, null, { optional: true; }, null, null, null, null, null, null
|
|
65
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapAutoCompleteComponent, [null, null, { optional: true; }, null, null, null, null, null, null]>;
|
|
69
66
|
static ɵcmp: i0.ɵɵComponentDeclaration<MapAutoCompleteComponent, "BBSF-MapAutoComplete", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never, false, never>;
|
|
70
67
|
}
|
|
@@ -7,25 +7,25 @@ import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utiliti
|
|
|
7
7
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class MultiLingualHtmlEditorComponent implements OnInit {
|
|
10
|
-
|
|
10
|
+
multiLingualHtmlEditorFormControlHost: FormGroupDirective;
|
|
11
11
|
private controlContainer;
|
|
12
12
|
private controlUtility;
|
|
13
|
-
private
|
|
13
|
+
private utilityService;
|
|
14
14
|
private controlValidationService;
|
|
15
15
|
private globalSettings;
|
|
16
16
|
static controlContainerstatic: any;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
constructor(
|
|
17
|
+
isShowAsteriskInArabic: boolean;
|
|
18
|
+
isShowAsteriskInEnglish: boolean;
|
|
19
|
+
constructor(multiLingualHtmlEditorFormControlHost: FormGroupDirective, controlContainer: ControlContainer, controlUtility: ControlUtility, utilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
|
|
20
20
|
group: FormGroup;
|
|
21
21
|
options: MultiLingualHtmlEditorOptions;
|
|
22
22
|
OnChange: EventEmitter<any>;
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
23
|
+
arabicHtmlEditorFormControl: AbstractControl;
|
|
24
|
+
englishHtmlEditorFormControl: AbstractControl;
|
|
25
|
+
multiTextAreaFormControl: AbstractControl;
|
|
26
|
+
multilingualHtmlEditorgroup: FormGroup;
|
|
27
|
+
arabicConfig: any;
|
|
28
|
+
englishConfig: any;
|
|
29
29
|
editorEnglishConfig: AngularEditorConfig;
|
|
30
30
|
editorArabicConfig: AngularEditorConfig;
|
|
31
31
|
miscList: any;
|
|
@@ -33,18 +33,18 @@ export declare class MultiLingualHtmlEditorComponent implements OnInit {
|
|
|
33
33
|
fontsizeList: any;
|
|
34
34
|
paraList: any;
|
|
35
35
|
insertList: any;
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
36
|
+
currentLanguage: string;
|
|
37
|
+
showArabicHtmlEditor: boolean;
|
|
38
|
+
showEnglishHtmlEditor: boolean;
|
|
39
|
+
arabicValidationRules: any[];
|
|
40
|
+
arabicValidationRulesasync: any[];
|
|
41
|
+
englishValidationRules: any[];
|
|
42
|
+
englishValidationRulesasync: any[];
|
|
43
43
|
markAllAsTouched: boolean;
|
|
44
44
|
validationRules: any[];
|
|
45
45
|
validationRulesasync: any[];
|
|
46
|
-
|
|
47
|
-
|
|
46
|
+
arabicLetterOnly: string;
|
|
47
|
+
englishLetterOnly: string;
|
|
48
48
|
englishValue: any;
|
|
49
49
|
arabicValue: any;
|
|
50
50
|
getCustomErrorsMassages(): void;
|
|
@@ -55,11 +55,11 @@ export declare class MultiLingualHtmlEditorComponent implements OnInit {
|
|
|
55
55
|
showGlobalError(): void;
|
|
56
56
|
getErrorValidation(ErrorList: any): string;
|
|
57
57
|
showInputUsingLanguageMode(): void;
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
58
|
+
removeRequiredValidation: () => void;
|
|
59
|
+
addRequiredValidation: () => void;
|
|
60
|
+
removeCustomValidation: (customValidation: any) => void;
|
|
61
|
+
addCustomValidation: (customValidation: any) => void;
|
|
62
|
+
isValid: () => void;
|
|
63
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiLingualHtmlEditorComponent, [null, { optional: true; }, null, null, null, null]>;
|
|
64
64
|
static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualHtmlEditorComponent, "BBSF-MultiLingualHtmlEditor", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never, false, never>;
|
|
65
65
|
}
|
|
@@ -6,41 +6,41 @@ import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utiliti
|
|
|
6
6
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MultiLingualTextAreaComponent implements OnInit {
|
|
9
|
-
|
|
9
|
+
multiLingualTextAreaFormControlHost: FormGroupDirective;
|
|
10
10
|
private controlContainer;
|
|
11
11
|
private controlUtility;
|
|
12
|
-
private
|
|
12
|
+
private utilityService;
|
|
13
13
|
private controlValidationService;
|
|
14
14
|
private globalSettings;
|
|
15
15
|
static controlContainerstatic: any;
|
|
16
16
|
IsShowAsteriskInArabic: boolean;
|
|
17
17
|
IsShowAsteriskInEnglish: boolean;
|
|
18
|
-
constructor(
|
|
18
|
+
constructor(multiLingualTextAreaFormControlHost: FormGroupDirective, controlContainer: ControlContainer, controlUtility: ControlUtility, utilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
|
|
19
19
|
group: FormGroup;
|
|
20
20
|
options: MultiLingualTextAreaOptions;
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
21
|
+
onChange: EventEmitter<any>;
|
|
22
|
+
arabicTextAreaFormControl: AbstractControl;
|
|
23
|
+
englishTextAreaFormControl: AbstractControl;
|
|
24
|
+
multiTextAreaFormControl: AbstractControl;
|
|
25
|
+
multiLanguageTextAreagroup: FormGroup;
|
|
26
|
+
arabicWordCount: number;
|
|
27
|
+
arabicWordCountArray: number;
|
|
28
|
+
englishWordCount: number;
|
|
29
|
+
englishWordCountArray: number;
|
|
30
|
+
currentLanguage: string;
|
|
31
|
+
showArabicTextArea: boolean;
|
|
32
|
+
showEngishTextArea: boolean;
|
|
33
|
+
arabicValidationRules: any[];
|
|
34
|
+
arabicValidationRulesasync: any[];
|
|
35
|
+
englishValidationRules: any[];
|
|
36
|
+
englishValidationRulesasync: any[];
|
|
37
37
|
validationRules: any[];
|
|
38
38
|
validationRulesasync: any[];
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
isShowArabicWordCount: boolean;
|
|
40
|
+
isShowEnglishWordCount: boolean;
|
|
41
41
|
markAllAsTouched: boolean;
|
|
42
|
-
|
|
43
|
-
|
|
42
|
+
arabicLetterOnly: string;
|
|
43
|
+
englishLetterOnly: string;
|
|
44
44
|
minCharsLimit: number;
|
|
45
45
|
englishCurrentCharsCount: number;
|
|
46
46
|
arabicCurrentCharsCount: number;
|
|
@@ -70,5 +70,5 @@ export declare class MultiLingualTextAreaComponent implements OnInit {
|
|
|
70
70
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
71
71
|
IsValid: () => void;
|
|
72
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiLingualTextAreaComponent, [null, { optional: true; }, null, null, null, null]>;
|
|
73
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualTextAreaComponent, "BBSF-MultiLingualTextArea", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "
|
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualTextAreaComponent, "BBSF-MultiLingualTextArea", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
74
74
|
}
|
|
@@ -3,43 +3,43 @@ import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from
|
|
|
3
3
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
4
4
|
import { BBSFTranslateService, ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
5
5
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
6
|
-
import { MultiLingualTextBoxOptions } from '../../Shared/Models/
|
|
6
|
+
import { MultiLingualTextBoxOptions } from '../../Shared/Models/MultiLingualTextBoxOptions';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MultiLingualTextBoxComponent implements OnInit {
|
|
9
|
-
|
|
9
|
+
multiLingualTextBoxFormControlHost: FormGroupDirective;
|
|
10
10
|
private controlContainer;
|
|
11
11
|
private controlUtility;
|
|
12
|
-
private
|
|
12
|
+
private utilityService;
|
|
13
13
|
private translate;
|
|
14
14
|
private controlValidationService;
|
|
15
15
|
private globalSettings;
|
|
16
16
|
static controlContainerstatic: any;
|
|
17
|
-
constructor(
|
|
17
|
+
constructor(multiLingualTextBoxFormControlHost: FormGroupDirective, controlContainer: ControlContainer, controlUtility: ControlUtility, utilityService: UtilityService, translate: BBSFTranslateService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
|
|
18
18
|
group: FormGroup;
|
|
19
19
|
options: MultiLingualTextBoxOptions;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
20
|
+
onChange: EventEmitter<any>;
|
|
21
|
+
arabicFormControl: AbstractControl;
|
|
22
|
+
englishFormControl: AbstractControl;
|
|
23
|
+
multiFormControl: AbstractControl;
|
|
24
|
+
multiLanguagegroup: FormGroup;
|
|
25
|
+
arabicWordCount: number;
|
|
26
|
+
arabicWordCountArray: number;
|
|
27
|
+
englishWordCount: number;
|
|
28
|
+
englishWordCountArray: number;
|
|
29
|
+
currentLanguage: string;
|
|
30
|
+
showArabicTextBox: boolean;
|
|
31
|
+
showEnglishTextBox: boolean;
|
|
32
|
+
arabicValidationRules: any[];
|
|
33
|
+
arabicValidationRulesasync: any[];
|
|
34
|
+
englishValidationRules: any[];
|
|
35
|
+
englishValidationRulesasync: any[];
|
|
36
|
+
isShowArabicWordCount: boolean;
|
|
37
|
+
isShowEnglishWordCount: boolean;
|
|
38
|
+
isShowAsteriskInArabic: boolean;
|
|
39
|
+
isShowAsteriskInEnglish: boolean;
|
|
40
40
|
markAllAsTouched: boolean;
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
arabicLetterOnly: string;
|
|
42
|
+
englishLetterOnly: string;
|
|
43
43
|
minCharsLimit: number;
|
|
44
44
|
englishCurrentCharsCount: number;
|
|
45
45
|
arabicCurrentCharsCount: number;
|
|
@@ -55,11 +55,11 @@ export declare class MultiLingualTextBoxComponent implements OnInit {
|
|
|
55
55
|
ngOnInit(): Promise<void>;
|
|
56
56
|
onTextChange(): void;
|
|
57
57
|
resetError(): void;
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
58
|
+
removeRequiredValidation: () => void;
|
|
59
|
+
addRequiredValidation: () => void;
|
|
60
|
+
removeCustomValidation: (customValidation: any) => void;
|
|
61
|
+
addCustomValidation: (customValidation: any) => void;
|
|
62
|
+
isValid: () => void;
|
|
63
63
|
showGlobalError(): void;
|
|
64
64
|
getErrorValidation(ErrorList: any): string;
|
|
65
65
|
getInputType(type: number): string;
|
|
@@ -69,5 +69,5 @@ export declare class MultiLingualTextBoxComponent implements OnInit {
|
|
|
69
69
|
onArabicFocus(isFocus: boolean): void;
|
|
70
70
|
onEnglishFocus(isFocus: boolean): void;
|
|
71
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiLingualTextBoxComponent, [null, { optional: true; }, null, null, null, null, null]>;
|
|
72
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualTextBoxComponent, "BBSF-MultiLingualTextBox", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "
|
|
72
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualTextBoxComponent, "BBSF-MultiLingualTextBox", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
73
73
|
}
|
|
@@ -22,17 +22,17 @@ export declare class PagingComponent<T> implements OnInit, OnDestroy {
|
|
|
22
22
|
Pages: any;
|
|
23
23
|
pagesText: string;
|
|
24
24
|
itemsText: string;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
currentPage: any;
|
|
26
|
+
showPageSizeOption: boolean;
|
|
27
|
+
showFirstAndLast: boolean;
|
|
28
28
|
hidePaginationWhenPageSizeEqualOne: boolean;
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
29
|
+
sum: number;
|
|
30
|
+
throttle: number;
|
|
31
|
+
scrollDistance: number;
|
|
32
|
+
scrollUpDistance: number;
|
|
33
33
|
direction: string;
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
headers: HttpHeaders;
|
|
35
|
+
isFirstCall: boolean;
|
|
36
36
|
Items: EventEmitter<T[]>;
|
|
37
37
|
options: PagingOptions;
|
|
38
38
|
group: FormGroup;
|
|
@@ -46,8 +46,8 @@ export declare class PagingComponent<T> implements OnInit, OnDestroy {
|
|
|
46
46
|
changePageSize(e: any): void;
|
|
47
47
|
onScrollDown(): void;
|
|
48
48
|
getItemList(page: any, IsFilterUpdated?: boolean): void;
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
reinitializePaging: () => void;
|
|
50
|
+
updatePaging: () => void;
|
|
51
51
|
castItems(objectArr: any[]): T[];
|
|
52
52
|
setText(pagesNumber: number, itemsNumber: number): void;
|
|
53
53
|
clearFilters(): void;
|
|
@@ -10,17 +10,17 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
export declare class PhoneComponent implements OnInit {
|
|
11
11
|
private controlUtility;
|
|
12
12
|
private controlContainer;
|
|
13
|
-
|
|
14
|
-
private
|
|
13
|
+
phoneControlHost: FormGroupDirective;
|
|
14
|
+
private utilityService;
|
|
15
15
|
private controlValidationService;
|
|
16
16
|
private globalSettings;
|
|
17
17
|
static controlContainerstatic: any;
|
|
18
|
-
constructor(controlUtility: ControlUtility, controlContainer: ControlContainer,
|
|
18
|
+
constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, phoneControlHost: FormGroupDirective, utilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
|
|
19
19
|
group: FormGroup;
|
|
20
20
|
options: PhoneOptions;
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
onChange: EventEmitter<any>;
|
|
22
|
+
phoneFormControl: AbstractControl;
|
|
23
|
+
searchCountryField: typeof SearchCountryField;
|
|
24
24
|
markAllAsTouched: boolean;
|
|
25
25
|
validationRules: any[];
|
|
26
26
|
validationRulesasync: any[];
|
|
@@ -33,11 +33,11 @@ export declare class PhoneComponent implements OnInit {
|
|
|
33
33
|
getErrorValidation(ErrorList: any): string;
|
|
34
34
|
onValueChanged(): void;
|
|
35
35
|
getSelectedCountry(selectedCountry: Country): CountryISO;
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
36
|
+
removeRequiredValidation: () => void;
|
|
37
|
+
addRequiredValidation: () => void;
|
|
38
|
+
removeCustomValidation: (customValidation: any) => void;
|
|
39
|
+
addCustomValidation: (customValidation: any) => void;
|
|
40
|
+
isValid: () => void;
|
|
41
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneComponent, [null, { optional: true; }, null, null, null, null]>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneComponent, "BBSF-Phone", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneComponent, "BBSF-Phone", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
43
43
|
}
|
|
@@ -12,27 +12,27 @@ export declare class ProfileImageUploaderComponent implements OnInit {
|
|
|
12
12
|
private zone;
|
|
13
13
|
private controlUtility;
|
|
14
14
|
private controlContainer;
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
profileImageUploaderControlHost: FormGroupDirective;
|
|
16
|
+
utilityService: UtilityService;
|
|
17
17
|
private controlValidationService;
|
|
18
18
|
private globalSettings;
|
|
19
19
|
static controlContainerstatic: any;
|
|
20
20
|
fileInput: ElementRef;
|
|
21
21
|
files: File[];
|
|
22
|
-
|
|
22
|
+
imageSource: string;
|
|
23
23
|
isSubmitted: boolean;
|
|
24
24
|
group: FormGroup;
|
|
25
25
|
options: ProfileImageUploadOptions;
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
onChange: EventEmitter<any>;
|
|
27
|
+
profileImageUploadFormControl: AbstractControl;
|
|
28
|
+
validationMessage: string;
|
|
29
29
|
uploader: FileUploader;
|
|
30
30
|
hasAnotherDropZoneOver: boolean;
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
31
|
+
acceptedType: string;
|
|
32
|
+
acceptedTypeArray: string[];
|
|
33
|
+
toolTipTypeArray: string[];
|
|
34
|
+
fileLikeObject: FileLikeObject;
|
|
35
|
+
profilePictureDTO: ProfilePictureDTO;
|
|
36
36
|
control: FormControl;
|
|
37
37
|
markAllAsTouched: boolean;
|
|
38
38
|
angularCropper: CropperComponent;
|
|
@@ -44,7 +44,7 @@ export declare class ProfileImageUploaderComponent implements OnInit {
|
|
|
44
44
|
mdlSampleIsOpen: boolean;
|
|
45
45
|
validationRules: any[];
|
|
46
46
|
validationRulesasync: any[];
|
|
47
|
-
constructor(zone: NgZone, controlUtility: ControlUtility, controlContainer: ControlContainer,
|
|
47
|
+
constructor(zone: NgZone, controlUtility: ControlUtility, controlContainer: ControlContainer, profileImageUploaderControlHost: FormGroupDirective, utilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
|
|
48
48
|
ngOnInit(): void;
|
|
49
49
|
ngAfterViewInit(): void;
|
|
50
50
|
showImageUploader(element: HTMLElement): void;
|
|
@@ -59,11 +59,11 @@ export declare class ProfileImageUploaderComponent implements OnInit {
|
|
|
59
59
|
moveImage(offsetX: number, offsetY: number): void;
|
|
60
60
|
zoomImage(ratio: number): void;
|
|
61
61
|
openModal(open: boolean): void;
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
62
|
+
removeRequiredValidation: () => void;
|
|
63
|
+
addRequiredValidation: () => void;
|
|
64
|
+
removeCustomValidation: (customValidation: any) => void;
|
|
65
|
+
addCustomValidation: (customValidation: any) => void;
|
|
66
|
+
isValid: () => void;
|
|
67
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileImageUploaderComponent, [null, null, { optional: true; }, null, null, null, null]>;
|
|
68
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileImageUploaderComponent, "BBSF-ProfileImageUploader", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileImageUploaderComponent, "BBSF-ProfileImageUploader", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
69
69
|
}
|
|
@@ -8,16 +8,16 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
export declare class RadioButtonComponent implements OnInit {
|
|
9
9
|
private controlUtility;
|
|
10
10
|
private controlContainer;
|
|
11
|
-
|
|
12
|
-
private
|
|
11
|
+
radioButtonControlHost: FormGroupDirective;
|
|
12
|
+
private utilityService;
|
|
13
13
|
private controlValidationService;
|
|
14
14
|
private globalSettings;
|
|
15
15
|
static controlContainerstatic: any;
|
|
16
|
-
constructor(controlUtility: ControlUtility, controlContainer: ControlContainer,
|
|
16
|
+
constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, radioButtonControlHost: FormGroupDirective, utilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
|
|
17
17
|
group: FormGroup;
|
|
18
18
|
options: RadioButtonOptions;
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
onChange: EventEmitter<any>;
|
|
20
|
+
radioButtonFormControl: AbstractControl;
|
|
21
21
|
markAllAsTouched: boolean;
|
|
22
22
|
validationRules: any[];
|
|
23
23
|
validationRulesasync: any[];
|
|
@@ -27,11 +27,11 @@ export declare class RadioButtonComponent implements OnInit {
|
|
|
27
27
|
getErrorValidation(ErrorList: any): string;
|
|
28
28
|
onValueChanged(): void;
|
|
29
29
|
getSelectedItemValue(value: any): string;
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
30
|
+
removeRequiredValidation: () => void;
|
|
31
|
+
addRequiredValidation: () => void;
|
|
32
|
+
removeCustomValidation: (customValidation: any) => void;
|
|
33
|
+
addCustomValidation: (customValidation: any) => void;
|
|
34
|
+
isValid: () => void;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, [null, { optional: true; }, null, null, null, null]>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "BBSF-RadioButton", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "BBSF-RadioButton", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
37
37
|
}
|
|
@@ -10,15 +10,15 @@ export declare class RecaptchaComponent implements OnInit {
|
|
|
10
10
|
private controlUtility;
|
|
11
11
|
private requestHandlerService;
|
|
12
12
|
recaptchaControlHost: FormGroupDirective;
|
|
13
|
-
|
|
13
|
+
utilityService: UtilityService;
|
|
14
14
|
private controlValidationService;
|
|
15
15
|
private globalSettings;
|
|
16
16
|
markAllAsTouched: boolean;
|
|
17
|
-
constructor(controlUtility: ControlUtility, requestHandlerService: RequestHandlerService, recaptchaControlHost: FormGroupDirective,
|
|
17
|
+
constructor(controlUtility: ControlUtility, requestHandlerService: RequestHandlerService, recaptchaControlHost: FormGroupDirective, utilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
|
|
18
18
|
group: FormGroup;
|
|
19
19
|
options: RecaptchaOptions;
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
onChange: EventEmitter<any>;
|
|
21
|
+
reCaptchaFormControl: AbstractControl;
|
|
22
22
|
validationRules: any[];
|
|
23
23
|
validationRulesAsync: any[];
|
|
24
24
|
image: string;
|
|
@@ -31,11 +31,11 @@ export declare class RecaptchaComponent implements OnInit {
|
|
|
31
31
|
showGlobalError(): void;
|
|
32
32
|
getErrorValidation(ErrorList: any): string;
|
|
33
33
|
onTextChange(valueText: any): void;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
34
|
+
removeRequiredValidation: () => void;
|
|
35
|
+
addRequiredValidation: () => void;
|
|
36
|
+
removeCustomValidation: (customValidation: any) => void;
|
|
37
|
+
addCustomValidation: (customValidation: any) => void;
|
|
38
|
+
isValid: () => void;
|
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<RecaptchaComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RecaptchaComponent, "BBSF-Recaptcha", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RecaptchaComponent, "BBSF-Recaptcha", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
41
41
|
}
|
|
@@ -5,19 +5,19 @@ import { RenderComponentService } from '../../../Shared/services/render-componen
|
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class RepeaterFieldBuilderComponent implements OnInit, AfterViewInit {
|
|
7
7
|
private renderComponentService;
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
textControlHost: FormGroupDirective;
|
|
9
|
+
item: ViewContainerRef;
|
|
10
10
|
group: FormGroup;
|
|
11
11
|
itemNumber: number;
|
|
12
12
|
controlNumber: number;
|
|
13
|
-
|
|
13
|
+
repeaterField: RepeaterField;
|
|
14
14
|
itemsValue: any[];
|
|
15
15
|
itemValue: any;
|
|
16
16
|
value: any;
|
|
17
|
-
constructor(renderComponentService: RenderComponentService,
|
|
17
|
+
constructor(renderComponentService: RenderComponentService, textControlHost: FormGroupDirective);
|
|
18
18
|
ngOnInit(): void;
|
|
19
19
|
ngAfterViewInit(): void;
|
|
20
20
|
ngOnChanges(changes: SimpleChanges): void;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<RepeaterFieldBuilderComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterFieldBuilderComponent, "repeater-field-builder", never, { "group": { "alias": "group"; "required": false; }; "itemNumber": { "alias": "itemNumber"; "required": false; }; "controlNumber": { "alias": "controlNumber"; "required": false; }; "
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterFieldBuilderComponent, "repeater-field-builder", never, { "group": { "alias": "group"; "required": false; }; "itemNumber": { "alias": "itemNumber"; "required": false; }; "controlNumber": { "alias": "controlNumber"; "required": false; }; "repeaterField": { "alias": "repeaterField"; "required": false; }; "itemsValue": { "alias": "itemsValue"; "required": false; }; }, {}, never, never, false, never>;
|
|
23
23
|
}
|
|
@@ -12,7 +12,7 @@ export declare class RepeaterTableComponent implements OnInit {
|
|
|
12
12
|
originalItems: any[];
|
|
13
13
|
constructor(utilityService: UtilityService);
|
|
14
14
|
ngOnInit(): void;
|
|
15
|
-
deleteItem(
|
|
15
|
+
deleteItem(index: any): void;
|
|
16
16
|
addItem(): void;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<RepeaterTableComponent, never>;
|
|
18
18
|
static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterTableComponent, "BBSF-repeater-table", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -13,26 +13,26 @@ export declare class TagsInputComponent implements OnInit, OnDestroy {
|
|
|
13
13
|
private requestHandlerService;
|
|
14
14
|
private controlContainer;
|
|
15
15
|
TagsInputControlHost: FormGroupDirective;
|
|
16
|
-
private
|
|
16
|
+
private utilityService;
|
|
17
17
|
private controlValidationService;
|
|
18
18
|
private globalSettings;
|
|
19
19
|
static controlContainerstatic: any;
|
|
20
|
-
constructor(http: HttpClient, controlUtility: ControlUtility, requestHandlerService: RequestHandlerService, controlContainer: ControlContainer, TagsInputControlHost: FormGroupDirective,
|
|
20
|
+
constructor(http: HttpClient, controlUtility: ControlUtility, requestHandlerService: RequestHandlerService, controlContainer: ControlContainer, TagsInputControlHost: FormGroupDirective, utilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
|
|
21
21
|
group: FormGroup;
|
|
22
22
|
options: TagsInputOptions;
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
onChange: EventEmitter<any>;
|
|
24
|
+
searchKey: any;
|
|
25
|
+
selectedId: any[];
|
|
26
26
|
tags: any[];
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
newSelectionValidationKey: string;
|
|
28
|
+
tagsFormGroup: FormGroup;
|
|
29
|
+
tagsFormControl: AbstractControl;
|
|
30
|
+
isNoMatch: any;
|
|
31
31
|
markAllAsTouched: boolean;
|
|
32
32
|
validationRules: any[];
|
|
33
33
|
validationRulesasync: any[];
|
|
34
34
|
changeValueSubscription: Subscription;
|
|
35
|
-
|
|
35
|
+
searchResultHasItems: boolean;
|
|
36
36
|
textDir: any;
|
|
37
37
|
static showErrorOfInputs(errors: any): void;
|
|
38
38
|
ngOnDestroy(): void;
|
|
@@ -43,16 +43,16 @@ export declare class TagsInputComponent implements OnInit, OnDestroy {
|
|
|
43
43
|
getErrorValidation(ErrorList: any): string;
|
|
44
44
|
copyInputMessage(inputElement: any): void;
|
|
45
45
|
searchFunctionFactory(Text: any): Observable<object>;
|
|
46
|
-
|
|
46
|
+
addTag(event: any, key: any): void;
|
|
47
47
|
onTagsChanged(result: any): void;
|
|
48
48
|
onNoOptionsMatch(event: any): void;
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
49
|
+
removeRequiredValidation: () => void;
|
|
50
|
+
addRequiredValidation: () => void;
|
|
51
|
+
removeCustomValidation: (customValidation: any) => void;
|
|
52
|
+
addCustomValidation: (customValidation: any) => void;
|
|
53
|
+
isValid: () => void;
|
|
54
54
|
onTagsInputBlur(SearchKey: any): void;
|
|
55
55
|
getTagsValue(): any[];
|
|
56
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<TagsInputComponent, [null, null, null, { optional: true; }, null, null, null, null]>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TagsInputComponent, "BBSF-TagsInput", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "
|
|
57
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagsInputComponent, "BBSF-TagsInput", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
58
58
|
}
|