@bnsights/bbsf-controls 1.0.111 → 1.0.112

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 (149) hide show
  1. package/README.md +4 -0
  2. package/esm2022/lib/Shared/Components/app-base-component.mjs +7 -7
  3. package/esm2022/lib/Shared/Enums/StartView.mjs +1 -1
  4. package/esm2022/lib/Shared/Enums/map-enums.mjs +7 -7
  5. package/esm2022/lib/Shared/Models/AutocompleteOptions.mjs +9 -9
  6. package/esm2022/lib/Shared/Models/CalendarOptions.mjs +7 -7
  7. package/esm2022/lib/Shared/Models/CheckBoxOptions.mjs +3 -3
  8. package/esm2022/lib/Shared/Models/ConfirmationModalOptions.mjs +16 -16
  9. package/esm2022/lib/Shared/Models/ControlOptionsBase.mjs +5 -5
  10. package/esm2022/lib/Shared/Models/DatePickerOptions.mjs +24 -0
  11. package/esm2022/lib/Shared/Models/DropdownOptions.mjs +6 -6
  12. package/esm2022/lib/Shared/Models/EnglishArabicDTO.mjs +3 -3
  13. package/esm2022/lib/Shared/Models/FileUploadModel.mjs +1 -1
  14. package/esm2022/lib/Shared/Models/FileUploadOptions.mjs +3 -3
  15. package/esm2022/lib/Shared/Models/FormOptions.mjs +13 -13
  16. package/esm2022/lib/Shared/Models/HtmlEditorOptions.mjs +3 -3
  17. package/esm2022/lib/Shared/Models/ImageUploadOptions.mjs +4 -4
  18. package/esm2022/lib/Shared/Models/MapAutoCompleteOptions.mjs +1 -3
  19. package/esm2022/lib/Shared/Models/MapAutocompleteDTO.mjs +2 -2
  20. package/esm2022/lib/Shared/Models/MultiLingualHtmlEditorOptions.mjs +2 -2
  21. package/esm2022/lib/Shared/Models/MultiLingualTextAreaOptions.mjs +2 -2
  22. package/esm2022/lib/Shared/Models/{MultilingualTextBoxOptions.mjs → MultiLingualTextBoxOptions.mjs} +5 -5
  23. package/esm2022/lib/Shared/Models/MultilingualControlOptionsBase.mjs +6 -6
  24. package/esm2022/lib/Shared/Models/MultipleFileUploadModel.mjs +5 -5
  25. package/esm2022/lib/Shared/Models/PagingOptions.mjs +22 -22
  26. package/esm2022/lib/Shared/Models/PhoneOptions.mjs +4 -4
  27. package/esm2022/lib/Shared/Models/ProfileImageUploadOptions.mjs +3 -3
  28. package/esm2022/lib/Shared/Models/ProfilePictureDTO.mjs +1 -1
  29. package/esm2022/lib/Shared/Models/RadioButtonItem.mjs +1 -1
  30. package/esm2022/lib/Shared/Models/RadioButtonOptions.mjs +1 -1
  31. package/esm2022/lib/Shared/Models/RangeNumber.mjs +1 -1
  32. package/esm2022/lib/Shared/Models/Recaptcha.mjs +2 -2
  33. package/esm2022/lib/Shared/Models/RecaptchaOptions.mjs +9 -9
  34. package/esm2022/lib/Shared/Models/RepeaterField.mjs +1 -1
  35. package/esm2022/lib/Shared/Models/RepeaterOptions.mjs +9 -9
  36. package/esm2022/lib/Shared/Models/TagsInputDTO.mjs +1 -1
  37. package/esm2022/lib/Shared/Models/TagsInputOptions.mjs +19 -19
  38. package/esm2022/lib/Shared/Models/TextAreaOptions.mjs +1 -1
  39. package/esm2022/lib/Shared/Models/TextBoxOptions.mjs +9 -9
  40. package/esm2022/lib/Shared/Models/{ToggleslideOptions.mjs → ToggleSlideOptions.mjs} +2 -2
  41. package/esm2022/lib/Shared/Models/filter-options.mjs +5 -5
  42. package/esm2022/lib/Shared/Models/page-header-options.mjs +32 -32
  43. package/esm2022/lib/Shared/services/ControlUtility.mjs +37 -37
  44. package/esm2022/lib/Shared/services/GlobalSettings.service.mjs +9 -9
  45. package/esm2022/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.mjs +81 -81
  46. package/esm2022/lib/controls/Calendar/Calendar.component.mjs +40 -40
  47. package/esm2022/lib/controls/CheckBox/CheckBox.component.mjs +35 -35
  48. package/esm2022/lib/controls/ConfirmationModal/ConfirmationModal.component.mjs +30 -30
  49. package/esm2022/lib/controls/DateTimePicker/DateTimePicker.component.mjs +90 -97
  50. package/esm2022/lib/controls/DropdownList/DropdownList.component.mjs +74 -74
  51. package/esm2022/lib/controls/FileUplaod/FileUplaod.component.mjs +155 -155
  52. package/esm2022/lib/controls/Form/Form.component.mjs +24 -24
  53. package/esm2022/lib/controls/HtmlEditor/HtmlEditor.component.mjs +55 -55
  54. package/esm2022/lib/controls/ImageUpload/ImageUpload.component.mjs +113 -113
  55. package/esm2022/lib/controls/MapAutoComplete/MapAutoComplete.component.mjs +62 -66
  56. package/esm2022/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.mjs +163 -163
  57. package/esm2022/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.mjs +193 -193
  58. package/esm2022/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.mjs +210 -210
  59. package/esm2022/lib/controls/Paging/Paging.component.mjs +85 -85
  60. package/esm2022/lib/controls/Phone/Phone.component.mjs +42 -42
  61. package/esm2022/lib/controls/ProfileImageUploader/ProfileImageUploader.component.mjs +112 -112
  62. package/esm2022/lib/controls/RadioButton/RadioButton.component.mjs +38 -38
  63. package/esm2022/lib/controls/Recaptcha/Recaptcha.component.mjs +46 -46
  64. package/esm2022/lib/controls/Repeater/repeater/repeater.component.mjs +12 -12
  65. package/esm2022/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.mjs +556 -556
  66. package/esm2022/lib/controls/Repeater/repeater-table/repeater-table.component.mjs +15 -15
  67. package/esm2022/lib/controls/TagsInput/TagsInput.component.mjs +100 -100
  68. package/esm2022/lib/controls/TextArea/TextArea.component.mjs +71 -71
  69. package/esm2022/lib/controls/TextBox/TextBox.component.mjs +116 -116
  70. package/esm2022/lib/controls/Toggleslide/Toggleslide.component.mjs +90 -0
  71. package/esm2022/lib/controls/bbsf-controls.module.mjs +2 -2
  72. package/esm2022/lib/controls/page-header-component/page-header-component.component.mjs +4 -4
  73. package/esm2022/public-api.mjs +7 -7
  74. package/fesm2022/bnsights-bbsf-controls.mjs +2801 -2813
  75. package/fesm2022/bnsights-bbsf-controls.mjs.map +1 -1
  76. package/lib/Shared/Enums/map-enums.d.ts +1 -1
  77. package/lib/Shared/Models/AutocompleteOptions.d.ts +20 -20
  78. package/lib/Shared/Models/CalendarOptions.d.ts +10 -10
  79. package/lib/Shared/Models/CheckBoxOptions.d.ts +2 -2
  80. package/lib/Shared/Models/ConfirmationModalOptions.d.ts +14 -14
  81. package/lib/Shared/Models/ControlOptionsBase.d.ts +17 -17
  82. package/lib/Shared/Models/{datePickerOptions.d.ts → DatePickerOptions.d.ts} +12 -13
  83. package/lib/Shared/Models/DropdownOptions.d.ts +15 -15
  84. package/lib/Shared/Models/EnglishArabicDTO.d.ts +2 -2
  85. package/lib/Shared/Models/FileUploadModel.d.ts +1 -1
  86. package/lib/Shared/Models/FileUploadOptions.d.ts +8 -8
  87. package/lib/Shared/Models/FormOptions.d.ts +11 -11
  88. package/lib/Shared/Models/HtmlEditorOptions.d.ts +11 -11
  89. package/lib/Shared/Models/ImageUploadOptions.d.ts +9 -9
  90. package/lib/Shared/Models/MapAutoCompleteOptions.d.ts +1 -2
  91. package/lib/Shared/Models/MapAutocompleteDTO.d.ts +5 -5
  92. package/lib/Shared/Models/MultiLingualHtmlEditorOptions.d.ts +7 -7
  93. package/lib/Shared/Models/MultiLingualTextAreaOptions.d.ts +5 -5
  94. package/lib/Shared/Models/{MultilingualTextBoxOptions.d.ts → MultiLingualTextBoxOptions.d.ts} +6 -6
  95. package/lib/Shared/Models/MultilingualControlOptionsBase.d.ts +34 -34
  96. package/lib/Shared/Models/MultipleFileUploadModel.d.ts +4 -4
  97. package/lib/Shared/Models/PagingOptions.d.ts +25 -25
  98. package/lib/Shared/Models/PhoneOptions.d.ts +9 -9
  99. package/lib/Shared/Models/ProfileImageUploadOptions.d.ts +10 -10
  100. package/lib/Shared/Models/ProfilePictureDTO.d.ts +9 -9
  101. package/lib/Shared/Models/RadioButtonItem.d.ts +2 -2
  102. package/lib/Shared/Models/RadioButtonOptions.d.ts +2 -2
  103. package/lib/Shared/Models/RangeNumber.d.ts +2 -2
  104. package/lib/Shared/Models/Recaptcha.d.ts +4 -4
  105. package/lib/Shared/Models/RecaptchaOptions.d.ts +10 -10
  106. package/lib/Shared/Models/RepeaterField.d.ts +4 -4
  107. package/lib/Shared/Models/RepeaterOptions.d.ts +16 -16
  108. package/lib/Shared/Models/TagsInputDTO.d.ts +4 -4
  109. package/lib/Shared/Models/TagsInputOptions.d.ts +29 -29
  110. package/lib/Shared/Models/TextAreaOptions.d.ts +11 -11
  111. package/lib/Shared/Models/TextBoxOptions.d.ts +18 -18
  112. package/lib/Shared/Models/{ToggleslideOptions.d.ts → ToggleSlideOptions.d.ts} +3 -3
  113. package/lib/Shared/Models/filter-options.d.ts +4 -4
  114. package/lib/Shared/Models/page-header-options.d.ts +43 -43
  115. package/lib/Shared/services/ControlUtility.d.ts +8 -8
  116. package/lib/Shared/services/GlobalSettings.service.d.ts +8 -8
  117. package/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.d.ts +11 -11
  118. package/lib/controls/Calendar/Calendar.component.d.ts +7 -7
  119. package/lib/controls/CheckBox/CheckBox.component.d.ts +10 -10
  120. package/lib/controls/DateTimePicker/DateTimePicker.component.d.ts +20 -24
  121. package/lib/controls/DropdownList/DropdownList.component.d.ts +13 -13
  122. package/lib/controls/FileUplaod/FileUplaod.component.d.ts +11 -11
  123. package/lib/controls/Form/Form.component.d.ts +2 -2
  124. package/lib/controls/HtmlEditor/HtmlEditor.component.d.ts +12 -12
  125. package/lib/controls/ImageUpload/ImageUpload.component.d.ts +16 -16
  126. package/lib/controls/MapAutoComplete/MapAutoComplete.component.d.ts +6 -9
  127. package/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.d.ts +25 -25
  128. package/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.d.ts +24 -24
  129. package/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.d.ts +32 -32
  130. package/lib/controls/Paging/Paging.component.d.ts +9 -9
  131. package/lib/controls/Phone/Phone.component.d.ts +12 -12
  132. package/lib/controls/ProfileImageUploader/ProfileImageUploader.component.d.ts +18 -18
  133. package/lib/controls/RadioButton/RadioButton.component.d.ts +11 -11
  134. package/lib/controls/Recaptcha/Recaptcha.component.d.ts +10 -10
  135. package/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.d.ts +5 -5
  136. package/lib/controls/Repeater/repeater-table/repeater-table.component.d.ts +1 -1
  137. package/lib/controls/TagsInput/TagsInput.component.d.ts +17 -17
  138. package/lib/controls/TextArea/TextArea.component.d.ts +14 -14
  139. package/lib/controls/TextBox/TextBox.component.d.ts +25 -25
  140. package/lib/controls/Toggleslide/{toggleslide.component.d.ts → Toggleslide.component.d.ts} +10 -10
  141. package/lib/controls/bbsf-controls.module.d.ts +1 -1
  142. package/package.json +3 -2
  143. package/public-api.d.ts +4 -4
  144. package/src/lib/assets/images/marker-pin.svg +4 -4
  145. package/esm2022/bnsights-test-test-controls.mjs +0 -5
  146. package/esm2022/lib/Shared/Models/datePickerOptions.mjs +0 -23
  147. package/esm2022/lib/controls/Toggleslide/toggleslide.component.mjs +0 -90
  148. package/fesm2022/bnsights-test-test-controls.mjs +0 -9164
  149. package/fesm2022/bnsights-test-test-controls.mjs.map +0 -1
@@ -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
- MultiLingualTextAreaFormControlHost: FormGroupDirective;
9
+ multiLingualTextAreaFormControlHost: FormGroupDirective;
10
10
  private controlContainer;
11
11
  private controlUtility;
12
- private UtilityService;
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(MultiLingualTextAreaFormControlHost: FormGroupDirective, controlContainer: ControlContainer, controlUtility: ControlUtility, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
18
+ constructor(multiLingualTextAreaFormControlHost: FormGroupDirective, controlContainer: ControlContainer, controlUtility: ControlUtility, utilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
19
19
  group: FormGroup;
20
20
  options: MultiLingualTextAreaOptions;
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[];
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
- IsShowArabicWordCount: boolean;
40
- IsShowEnglishWordCount: boolean;
39
+ isShowArabicWordCount: boolean;
40
+ isShowEnglishWordCount: boolean;
41
41
  markAllAsTouched: boolean;
42
- ArabicLetterOnly: string;
43
- EnglishLetterOnly: string;
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; }; }, { "OnChange": "OnChange"; }, never, never, false, never>;
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/MultilingualTextBoxOptions';
6
+ import { MultiLingualTextBoxOptions } from '../../Shared/Models/MultiLingualTextBoxOptions';
7
7
  import * as i0 from "@angular/core";
8
8
  export declare class MultiLingualTextBoxComponent implements OnInit {
9
- MultiLingualTextBoxFormControlHost: FormGroupDirective;
9
+ multiLingualTextBoxFormControlHost: FormGroupDirective;
10
10
  private controlContainer;
11
11
  private controlUtility;
12
- private UtilityService;
12
+ private utilityService;
13
13
  private translate;
14
14
  private controlValidationService;
15
15
  private globalSettings;
16
16
  static controlContainerstatic: any;
17
- constructor(MultiLingualTextBoxFormControlHost: FormGroupDirective, controlContainer: ControlContainer, controlUtility: ControlUtility, UtilityService: UtilityService, translate: BBSFTranslateService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
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
- 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;
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
- ArabicLetterOnly: string;
42
- EnglishLetterOnly: string;
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
- RemoveRequiredValidation: () => void;
59
- AddRequiredValidation: () => void;
60
- RemoveCustomValidation: (CustomValidation: any) => void;
61
- AddCustomValidation: (CustomValidation: any) => void;
62
- IsValid: () => void;
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; }; }, { "OnChange": "OnChange"; }, never, never, false, never>;
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
- CurrentPage: any;
26
- ShowPageSizeOption: boolean;
27
- ShowFirstAndLast: boolean;
25
+ currentPage: any;
26
+ showPageSizeOption: boolean;
27
+ showFirstAndLast: boolean;
28
28
  hidePaginationWhenPageSizeEqualOne: boolean;
29
- Sum: number;
30
- Throttle: number;
31
- ScrollDistance: number;
32
- ScrollUpDistance: number;
29
+ sum: number;
30
+ throttle: number;
31
+ scrollDistance: number;
32
+ scrollUpDistance: number;
33
33
  direction: string;
34
- Headers: HttpHeaders;
35
- IsFirstCall: boolean;
34
+ headers: HttpHeaders;
35
+ isFirstCall: boolean;
36
36
  Items: EventEmitter<T[]>;
37
37
  options: PagingOptions;
38
38
  group: FormGroup;
@@ -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
- PhoneControlHost: FormGroupDirective;
14
- private UtilityService;
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, PhoneControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
18
+ constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, phoneControlHost: FormGroupDirective, utilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
19
19
  group: FormGroup;
20
20
  options: PhoneOptions;
21
- OnChange: EventEmitter<any>;
22
- PhoneFormControl: AbstractControl;
23
- SearchCountryField: typeof SearchCountryField;
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
- RemoveRequiredValidation: () => void;
37
- AddRequiredValidation: () => void;
38
- RemoveCustomValidation: (CustomValidation: any) => void;
39
- AddCustomValidation: (CustomValidation: any) => void;
40
- IsValid: () => void;
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; }; }, { "OnChange": "OnChange"; }, never, never, false, never>;
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
- ProfileImageUploaderControlHost: FormGroupDirective;
16
- UtilityService: UtilityService;
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
- ImageSource: string;
22
+ imageSource: string;
23
23
  isSubmitted: boolean;
24
24
  group: FormGroup;
25
25
  options: ProfileImageUploadOptions;
26
- OnChange: EventEmitter<any>;
27
- ProfileImageUploadFormControl: AbstractControl;
28
- ValidationMessage: string;
26
+ onChange: EventEmitter<any>;
27
+ profileImageUploadFormControl: AbstractControl;
28
+ validationMessage: string;
29
29
  uploader: FileUploader;
30
30
  hasAnotherDropZoneOver: boolean;
31
- AcceptedType: string;
32
- AcceptedTypeArray: string[];
33
- ToolTipTypeArray: string[];
34
- FileLikeObject: FileLikeObject;
35
- ProfilePictureDTO: ProfilePictureDTO;
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, ProfileImageUploaderControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
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
- RemoveRequiredValidation: () => void;
63
- AddRequiredValidation: () => void;
64
- RemoveCustomValidation: (CustomValidation: any) => void;
65
- AddCustomValidation: (CustomValidation: any) => void;
66
- IsValid: () => void;
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; }; }, { "OnChange": "OnChange"; }, never, never, false, never>;
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
- RadioButtonControlHost: FormGroupDirective;
12
- private UtilityService;
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, RadioButtonControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
16
+ constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, radioButtonControlHost: FormGroupDirective, utilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
17
17
  group: FormGroup;
18
18
  options: RadioButtonOptions;
19
- OnChange: EventEmitter<any>;
20
- RadioButtonFormControl: AbstractControl;
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
- RemoveRequiredValidation: () => void;
31
- AddRequiredValidation: () => void;
32
- RemoveCustomValidation: (CustomValidation: any) => void;
33
- AddCustomValidation: (CustomValidation: any) => void;
34
- IsValid: () => void;
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; }; }, { "OnChange": "OnChange"; }, never, never, false, never>;
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
- UtilityService: UtilityService;
13
+ utilityService: UtilityService;
14
14
  private controlValidationService;
15
15
  private globalSettings;
16
16
  markAllAsTouched: boolean;
17
- constructor(controlUtility: ControlUtility, requestHandlerService: RequestHandlerService, recaptchaControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
17
+ constructor(controlUtility: ControlUtility, requestHandlerService: RequestHandlerService, recaptchaControlHost: FormGroupDirective, utilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
18
18
  group: FormGroup;
19
19
  options: RecaptchaOptions;
20
- OnChange: EventEmitter<any>;
21
- ReCaptchaFormControl: AbstractControl;
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
- RemoveRequiredValidation: () => void;
35
- AddRequiredValidation: () => void;
36
- RemoveCustomValidation: (CustomValidation: any) => void;
37
- AddCustomValidation: (CustomValidation: any) => void;
38
- IsValid: () => void;
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; }; }, { "OnChange": "OnChange"; }, never, never, false, never>;
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
- TextControlHost: FormGroupDirective;
9
- Item: ViewContainerRef;
8
+ textControlHost: FormGroupDirective;
9
+ item: ViewContainerRef;
10
10
  group: FormGroup;
11
11
  itemNumber: number;
12
12
  controlNumber: number;
13
- RepeaterField: RepeaterField;
13
+ repeaterField: RepeaterField;
14
14
  itemsValue: any[];
15
15
  itemValue: any;
16
16
  value: any;
17
- constructor(renderComponentService: RenderComponentService, TextControlHost: FormGroupDirective);
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; }; "RepeaterField": { "alias": "RepeaterField"; "required": false; }; "itemsValue": { "alias": "itemsValue"; "required": false; }; }, {}, never, never, false, 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; }; "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(Index: any): void;
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 UtilityService;
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, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
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
- OnChange: EventEmitter<any>;
24
- SearchKey: any;
25
- SelectedId: any[];
23
+ onChange: EventEmitter<any>;
24
+ searchKey: any;
25
+ selectedId: any[];
26
26
  tags: any[];
27
- NewSelectionValidationKey: string;
28
- TagsFormGroup: FormGroup;
29
- TagsFormControl: AbstractControl;
30
- IsNoMatch: any;
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
- SearchResultHasItems: boolean;
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
- AddTag(event: any, key: any): void;
46
+ addTag(event: any, key: any): void;
47
47
  onTagsChanged(result: any): void;
48
48
  onNoOptionsMatch(event: any): void;
49
- RemoveRequiredValidation: () => void;
50
- AddRequiredValidation: () => void;
51
- RemoveCustomValidation: (CustomValidation: any) => void;
52
- AddCustomValidation: (CustomValidation: any) => void;
53
- IsValid: () => void;
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; }; }, { "OnChange": "OnChange"; }, never, never, false, never>;
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
  }
@@ -8,19 +8,19 @@ import * as i0 from "@angular/core";
8
8
  export declare class TextAreaComponent implements OnInit {
9
9
  private controlUtility;
10
10
  private controlContainer;
11
- TextAreaControlHost: FormGroupDirective;
12
- private UtilityService;
11
+ textAreaControlHost: FormGroupDirective;
12
+ private utilityService;
13
13
  private controlValidationService;
14
14
  private globalSettings;
15
15
  static controlContainerstatic: any;
16
- constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, TextAreaControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
16
+ constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, textAreaControlHost: FormGroupDirective, utilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
17
17
  group: FormGroup;
18
18
  options: TextAreaOptions;
19
- OnChange: EventEmitter<any>;
20
- TextAreaFormControl: AbstractControl;
21
- WordCount: number;
22
- WordCountArray: number;
23
- IsShowWordCount: boolean;
19
+ onChange: EventEmitter<any>;
20
+ textAreaFormControl: AbstractControl;
21
+ wordCount: number;
22
+ wordCountArray: number;
23
+ isShowWordCount: boolean;
24
24
  markAllAsTouched: boolean;
25
25
  validationRules: any[];
26
26
  validationRulesasync: any[];
@@ -41,11 +41,11 @@ export declare class TextAreaComponent implements OnInit {
41
41
  copyInputMessage(inputElement: any): void;
42
42
  onTextChange(): void;
43
43
  onFocus(isFocus: boolean): void;
44
- RemoveRequiredValidation: () => void;
45
- AddRequiredValidation: () => void;
46
- RemoveCustomValidation: (CustomValidation: any) => void;
47
- AddCustomValidation: (CustomValidation: any) => void;
48
- IsValid: () => void;
44
+ removeRequiredValidation: () => void;
45
+ addRequiredValidation: () => void;
46
+ removeCustomValidation: (customValidation: any) => void;
47
+ addCustomValidation: (customValidation: any) => void;
48
+ isValid: () => void;
49
49
  static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, [null, { optional: true; }, null, null, null, null]>;
50
- static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "BBSF-TextArea", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never, false, never>;
50
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "BBSF-TextArea", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
51
51
  }
@@ -9,31 +9,31 @@ import * as i0 from "@angular/core";
9
9
  export declare class TextboxComponent implements OnInit {
10
10
  private controlUtility;
11
11
  private controlContainer;
12
- TextControlHost: FormGroupDirective;
13
- UtilityService: UtilityService;
12
+ textControlHost: FormGroupDirective;
13
+ utilityService: UtilityService;
14
14
  private controlValidationService;
15
15
  private globalSettings;
16
16
  static controlContainerstatic: any;
17
- constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, TextControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
17
+ constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, textControlHost: FormGroupDirective, utilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
18
18
  group: FormGroup;
19
19
  options: TextBoxOptions;
20
- OnChange: EventEmitter<any>;
21
- OnBlur: EventEmitter<any>;
20
+ onChange: EventEmitter<any>;
21
+ onBlur: EventEmitter<any>;
22
22
  inputType: typeof InputType;
23
- TextBoxFormControl: AbstractControl;
24
- MaskPattern: string;
25
- WordCount: number;
26
- WordCountArray: number;
27
- EmailValidationKey: string;
28
- URLValidationKey: string;
29
- PasswordComplexityHasNumber: string;
30
- ArabicLetterOnly: string;
31
- EnglishLetterOnly: string;
32
- PasswordComplexityHasCapitalLetter: string;
33
- PasswordComplexityHasSmallLetter: string;
34
- PasswordComplexityHasSpecialLetter: string;
35
- MaxWordCountValidationKey: string;
36
- IsShowWordCount: boolean;
23
+ textBoxFormControl: AbstractControl;
24
+ maskPattern: string;
25
+ wordCount: number;
26
+ wordCountArray: number;
27
+ emailValidationKey: string;
28
+ uRLValidationKey: string;
29
+ passwordComplexityHasNumber: string;
30
+ arabicLetterOnly: string;
31
+ englishLetterOnly: string;
32
+ passwordComplexityHasCapitalLetter: string;
33
+ passwordComplexityHasSmallLetter: string;
34
+ passwordComplexityHasSpecialLetter: string;
35
+ maxWordCountValidationKey: string;
36
+ isShowWordCount: boolean;
37
37
  markAllAsTouched: boolean;
38
38
  validationRules: any[];
39
39
  validationRulesasync: any[];
@@ -55,12 +55,12 @@ export declare class TextboxComponent implements OnInit {
55
55
  getCustomErrorsMassages(): void;
56
56
  onTextChange(): void;
57
57
  onFocus(isFocus: boolean): void;
58
- RemoveRequiredValidation: () => void;
59
- AddRequiredValidation: () => void;
60
- RemoveCustomValidation: (CustomValidation: any) => void;
61
- AddCustomValidation: (CustomValidation: any) => void;
62
- IsValid: () => void;
58
+ removeRequiredValidation: () => void;
59
+ addRequiredValidation: () => void;
60
+ removeCustomValidation: (customValidation: any) => void;
61
+ addCustomValidation: (customValidation: any) => void;
62
+ isValid: () => void;
63
63
  onTextBlur(): void;
64
64
  static ɵfac: i0.ɵɵFactoryDeclaration<TextboxComponent, [null, { optional: true; }, null, null, null, null]>;
65
- static ɵcmp: i0.ɵɵComponentDeclaration<TextboxComponent, "BBSF-TextBox", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; "OnBlur": "OnBlur"; }, never, never, false, never>;
65
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextboxComponent, "BBSF-TextBox", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; "onBlur": "onBlur"; }, never, never, false, never>;
66
66
  }