@bnsights/bbsf-controls 1.0.185 → 1.0.187
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 +11 -0
- package/esm2022/lib/Shared/services/ControlUtility.mjs +11 -11
- package/esm2022/lib/Shared/services/validationErrorMassage.service.mjs +19 -67
- package/esm2022/lib/controls/TextBox/TextBox.component.mjs +9 -10
- package/fesm2022/bnsights-bbsf-controls.mjs +34 -83
- package/fesm2022/bnsights-bbsf-controls.mjs.map +1 -1
- package/lib/Shared/services/ControlUtility.d.ts +1 -1
- package/lib/Shared/services/validationErrorMassage.service.d.ts +1 -1
- package/lib/controls/TextBox/TextBox.component.d.ts +2 -2
- package/package.json +2 -2
|
@@ -8,7 +8,7 @@ export declare class ControlUtility {
|
|
|
8
8
|
private controlValidationService;
|
|
9
9
|
private utilityService;
|
|
10
10
|
constructor(ErrorHandler: ErrorMassageValidation, controlValidationService: ControlValidationService, utilityService: UtilityService);
|
|
11
|
-
getErrorValidation(
|
|
11
|
+
getErrorValidation(ErrorsItem: any[], customValidation?: CustomValidation): string;
|
|
12
12
|
patternValidator(regex: RegExp, error: ValidationErrors): ValidatorFn;
|
|
13
13
|
patchControlValue(originalValue: any, PatchFunction: any, PatchPath: any): void;
|
|
14
14
|
arabicValidator(error: ValidationErrors): ValidatorFn;
|
|
@@ -4,7 +4,7 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class ErrorMassageValidation {
|
|
5
5
|
private controlContainer;
|
|
6
6
|
private utilityService;
|
|
7
|
-
static
|
|
7
|
+
static controlContainerStatic: any;
|
|
8
8
|
constructor(controlContainer: ControlContainer, utilityService: UtilityService);
|
|
9
9
|
url: string;
|
|
10
10
|
static showerror(FormControlName: string): void;
|
|
@@ -13,7 +13,7 @@ export declare class TextboxComponent implements OnInit {
|
|
|
13
13
|
utilityService: UtilityService;
|
|
14
14
|
private controlValidationService;
|
|
15
15
|
private globalSettings;
|
|
16
|
-
static
|
|
16
|
+
static controlContainerStatic: any;
|
|
17
17
|
constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, textControlHost: FormGroupDirective, utilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
|
|
18
18
|
group: FormGroup;
|
|
19
19
|
options: TextBoxOptions;
|
|
@@ -36,7 +36,7 @@ export declare class TextboxComponent implements OnInit {
|
|
|
36
36
|
isShowWordCount: boolean;
|
|
37
37
|
markAllAsTouched: boolean;
|
|
38
38
|
validationRules: any[];
|
|
39
|
-
|
|
39
|
+
validationRulesAsync: any[];
|
|
40
40
|
currentCharsCount: number;
|
|
41
41
|
showCharsLimitMsg: boolean;
|
|
42
42
|
hasCharsLimitValidationError: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bnsights/bbsf-controls",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.187",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/animations": "^17.0.5",
|
|
6
6
|
"@angular/cdk": "^17.0.2",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@angular/google-maps": "^17.0.3",
|
|
16
|
-
"@bnsights/bbsf-utilities": "^1.0.
|
|
16
|
+
"@bnsights/bbsf-utilities": "^1.0.67",
|
|
17
17
|
"@danielmoncada/angular-datetime-picker": "^17.0.0",
|
|
18
18
|
"@fullcalendar/angular": "^6.1.10",
|
|
19
19
|
"@fullcalendar/core": "^6.1.10",
|