@bnsights/bbsf-controls 1.0.17 → 1.0.21
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/bnsights-bbsf-controls-1.0.21.tgz +0 -0
- package/bnsights-bbsf-controls.metadata.json +1 -1
- package/bundles/bnsights-bbsf-controls.umd.js +38 -20
- package/bundles/bnsights-bbsf-controls.umd.js.map +1 -1
- package/esm2015/lib/Shared/Models/MultipleFileUploadModel.js +3 -3
- package/esm2015/lib/Shared/services/ControlUtility.js +5 -1
- package/esm2015/lib/controls/DateTimePicker/DateTimePicker.component.js +8 -4
- package/esm2015/lib/controls/FileUplaod/FileUplaod.component.js +12 -11
- package/esm2015/lib/controls/Form/Form.component.js +2 -2
- package/esm2015/lib/controls/Paging/Paging.component.js +4 -2
- package/esm2015/lib/controls/TextBox/TextBox.component.js +3 -2
- package/esm2015/lib/controls/Toggleslide/toggleslide.component.js +6 -3
- package/esm2015/lib/controls/bbsf-controls.module.js +8 -4
- package/fesm2015/bnsights-bbsf-controls.js +40 -23
- package/fesm2015/bnsights-bbsf-controls.js.map +1 -1
- package/lib/Shared/Models/MultipleFileUploadModel.d.ts +2 -2
- package/lib/Shared/services/ControlUtility.d.ts +1 -0
- package/lib/controls/DateTimePicker/DateTimePicker.component.d.ts +3 -1
- package/lib/controls/Paging/Paging.component.d.ts +1 -1
- package/lib/controls/Toggleslide/toggleslide.component.d.ts +2 -1
- package/package.json +3 -3
- package/bnsights-bbsf-controls-1.0.17.tgz +0 -0
|
@@ -21,5 +21,6 @@ export declare class ControlUtility {
|
|
|
21
21
|
removeRequiredFromControl(FormControl: AbstractControl, Options: any): void;
|
|
22
22
|
RemoveCustomValidation(FormControl: AbstractControl, ValidationRole: any[], CustomValidation: CustomValidation): void;
|
|
23
23
|
AddCustomValidation(FormControl: AbstractControl, ValidationRole: any[], CustomValidation: CustomValidation): void;
|
|
24
|
+
static getLocal(): string;
|
|
24
25
|
IsValid(FormControl: AbstractControl): void;
|
|
25
26
|
}
|
|
@@ -5,7 +5,9 @@ import { ErrorMassageValidation } from '../../Shared/services/validationErrorMas
|
|
|
5
5
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
6
6
|
import { OnPagingFiltersChangeService } from '../../Shared/services/OnPagingFiltersChange.service';
|
|
7
7
|
import { BBSFTranslateService, ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
8
|
+
import { DatePipe } from '@angular/common';
|
|
8
9
|
export declare class DateInputComponent implements OnInit {
|
|
10
|
+
datepipe: DatePipe;
|
|
9
11
|
private onChangeService;
|
|
10
12
|
private ErrorHandler;
|
|
11
13
|
private controlUtility;
|
|
@@ -15,7 +17,7 @@ export declare class DateInputComponent implements OnInit {
|
|
|
15
17
|
private translate;
|
|
16
18
|
private controlValidationService;
|
|
17
19
|
static controlContainerstatic: any;
|
|
18
|
-
constructor(onChangeService: OnPagingFiltersChangeService, ErrorHandler: ErrorMassageValidation, controlUtility: ControlUtility, controlContainer: ControlContainer, DateInputControlHost: FormGroupDirective, UtilityService: UtilityService, translate: BBSFTranslateService, controlValidationService: ControlValidationService);
|
|
20
|
+
constructor(datepipe: DatePipe, onChangeService: OnPagingFiltersChangeService, ErrorHandler: ErrorMassageValidation, controlUtility: ControlUtility, controlContainer: ControlContainer, DateInputControlHost: FormGroupDirective, UtilityService: UtilityService, translate: BBSFTranslateService, controlValidationService: ControlValidationService);
|
|
19
21
|
group: FormGroup;
|
|
20
22
|
options: DatePickerOptions;
|
|
21
23
|
DatePickerFormControl: AbstractControl;
|
|
@@ -34,7 +34,7 @@ export declare class PagingComponent<T> implements OnInit {
|
|
|
34
34
|
group: FormGroup;
|
|
35
35
|
constructor(utilityService: UtilityService, http: HttpClient, router: Router, onChangeService: OnPagingFiltersChangeService, requestHandlerService: RequestHandlerService);
|
|
36
36
|
ngOnInit(): void;
|
|
37
|
-
|
|
37
|
+
ngAfterViewChecked(): void;
|
|
38
38
|
onDropDownChange(result: any): void;
|
|
39
39
|
onChangePage(Page: any): void;
|
|
40
40
|
changePageSize(e: any): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
2
|
import { FormGroup, ControlContainer, FormGroupDirective, AbstractControl } from '@angular/forms';
|
|
3
3
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
4
4
|
import { ToggleSlideOptions } from '../../Shared/Models/ToggleslideOptions';
|
|
@@ -16,6 +16,7 @@ export declare class ToggleslideComponent implements OnInit {
|
|
|
16
16
|
constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, ToggleslideControlHost: FormGroupDirective, TextControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
|
|
17
17
|
group: FormGroup;
|
|
18
18
|
options: ToggleSlideOptions;
|
|
19
|
+
OnChange: EventEmitter<any>;
|
|
19
20
|
ToggleslideFormControl: AbstractControl;
|
|
20
21
|
SlideValue: boolean;
|
|
21
22
|
ngOnInit(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bnsights/bbsf-controls",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.21",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "~12.2.12",
|
|
6
6
|
"@angular/core": "~12.2.12"
|
|
@@ -21,8 +21,9 @@
|
|
|
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.11",
|
|
25
25
|
"@fortawesome/fontawesome-free": "^5.15.2",
|
|
26
|
+
"google-libphonenumber": "^3.2.17",
|
|
26
27
|
"@fullcalendar/angular": "^5.5.0",
|
|
27
28
|
"@fullcalendar/core": "^5.5.0",
|
|
28
29
|
"@fullcalendar/daygrid": "^5.5.0",
|
|
@@ -49,7 +50,6 @@
|
|
|
49
50
|
"font-awesome": "^4.7.0",
|
|
50
51
|
"froala-editor": "^3.2.6-1",
|
|
51
52
|
"fullcalendar": "^5.5.1",
|
|
52
|
-
"google-libphonenumber": "^3.2.17",
|
|
53
53
|
"intl-tel-input": "^17.0.12",
|
|
54
54
|
"jquery": "^3.5.1",
|
|
55
55
|
"ng-block-ui": "^3.0.2",
|
|
Binary file
|