@bnsights/bbsf-controls 1.0.192 → 1.0.194-beta.0
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 +338 -1
- package/esm2022/lib/Shared/Components/app-base-component.mjs +3 -3
- package/esm2022/lib/Shared/Components/ng-tag-input.mjs +12 -7
- package/esm2022/lib/Shared/Directives/appPreventDoubleClick.directive.mjs +3 -2
- package/esm2022/lib/Shared/Directives/template-name.directive.mjs +4 -3
- package/esm2022/lib/Shared/Models/AutocompleteOptions.mjs +2 -2
- package/esm2022/lib/Shared/Models/DatePickerOptions.mjs +4 -4
- package/esm2022/lib/Shared/Models/DropdownOptions.mjs +2 -2
- package/esm2022/lib/Shared/Models/TagsInputOptions.mjs +2 -2
- package/esm2022/lib/Shared/Pipes/bbsf-date-time.pipe.mjs +4 -3
- package/esm2022/lib/Shared/Pipes/bbsf-date.pipe.mjs +4 -3
- package/esm2022/lib/Shared/default_intl.mjs +2 -2
- package/esm2022/lib/Shared/services/ControlUtility.mjs +2 -2
- package/esm2022/lib/Shared/services/file-upload.service.mjs +3 -3
- package/esm2022/lib/Shared/services/validationErrorMassage.service.mjs +2 -2
- package/esm2022/lib/Shared/utils/date-formatter.mjs +48 -0
- package/esm2022/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.mjs +24 -16
- package/esm2022/lib/controls/Calendar/Calendar.component.mjs +19 -12
- package/esm2022/lib/controls/CheckBox/CheckBox.component.mjs +14 -10
- package/esm2022/lib/controls/ConfirmationModal/ConfirmationModal.component.mjs +8 -5
- package/esm2022/lib/controls/DateTimePicker/DateTimePicker.component.mjs +21 -14
- package/esm2022/lib/controls/DropdownList/DropdownList.component.mjs +12 -6
- package/esm2022/lib/controls/FileUpload/FileUpload.component.mjs +15 -7
- package/esm2022/lib/controls/Form/Form.component.mjs +22 -6
- package/esm2022/lib/controls/HtmlEditor/HtmlEditor.component.mjs +14 -9
- package/esm2022/lib/controls/ImageUpload/ImageUpload.component.mjs +17 -9
- package/esm2022/lib/controls/MapAutoComplete/MapAutoComplete.component.mjs +22 -13
- package/esm2022/lib/controls/MarkdownEditor/markdown-editor.component.mjs +16 -8
- package/esm2022/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.mjs +14 -9
- package/esm2022/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.mjs +12 -7
- package/esm2022/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.mjs +18 -12
- package/esm2022/lib/controls/Paging/JwPagination.component.mjs +8 -4
- package/esm2022/lib/controls/Paging/Paging.component.mjs +25 -12
- package/esm2022/lib/controls/Phone/Phone.component.mjs +14 -9
- package/esm2022/lib/controls/ProfileImageUploader/ProfileImageUploader.component.mjs +17 -9
- package/esm2022/lib/controls/RadioButton/RadioButton.component.mjs +10 -6
- package/esm2022/lib/controls/Recaptcha/Recaptcha.component.mjs +13 -14
- package/esm2022/lib/controls/Repeater/repeater/repeater.component.mjs +13 -7
- package/esm2022/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.mjs +6 -4
- package/esm2022/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.mjs +5 -4
- package/esm2022/lib/controls/Repeater/repeater-table/repeater-table.component.mjs +13 -7
- package/esm2022/lib/controls/TagsInput/TagsInput.component.mjs +19 -14
- package/esm2022/lib/controls/TextArea/TextArea.component.mjs +20 -12
- package/esm2022/lib/controls/TextBox/TextBox.component.mjs +16 -10
- package/esm2022/lib/controls/Toggleslide/Toggleslide.component.mjs +13 -7
- package/esm2022/lib/controls/bbsf-controls.module.mjs +70 -333
- package/esm2022/lib/controls/page-header-component/page-header-component.component.mjs +15 -11
- package/esm2022/lib/modules/bbsf-core.module.mjs +210 -0
- package/esm2022/lib/modules/bbsf-datetime.module.mjs +90 -0
- package/esm2022/lib/modules/bbsf-dropdown.module.mjs +57 -0
- package/esm2022/lib/modules/bbsf-editors.module.mjs +97 -0
- package/esm2022/lib/modules/bbsf-forms-basic.module.mjs +79 -0
- package/esm2022/lib/modules/bbsf-multilingual.module.mjs +60 -0
- package/esm2022/lib/modules/bbsf-phone.module.mjs +57 -0
- package/esm2022/lib/modules/bbsf-specialized.module.mjs +160 -0
- package/esm2022/lib/modules/bbsf-uploads.module.mjs +106 -0
- package/esm2022/lib/modules/bbsf-utility.module.mjs +103 -0
- package/esm2022/public-api.mjs +38 -2
- package/fesm2022/bnsights-bbsf-controls.mjs +8670 -7747
- package/fesm2022/bnsights-bbsf-controls.mjs.map +1 -1
- package/lib/Shared/Components/app-base-component.d.ts +2 -2
- package/lib/Shared/Components/ng-tag-input.d.ts +2 -3
- package/lib/Shared/Directives/appPreventDoubleClick.directive.d.ts +1 -1
- package/lib/Shared/Directives/template-name.directive.d.ts +1 -1
- package/lib/Shared/Pipes/bbsf-date-time.pipe.d.ts +1 -1
- package/lib/Shared/Pipes/bbsf-date.pipe.d.ts +1 -1
- package/lib/Shared/default_intl.d.ts +1 -1
- package/lib/Shared/services/ControlUtility.d.ts +1 -1
- package/lib/Shared/services/file-upload.service.d.ts +1 -1
- package/lib/Shared/services/validationErrorMassage.service.d.ts +1 -1
- package/lib/Shared/utils/date-formatter.d.ts +23 -0
- package/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.d.ts +5 -4
- package/lib/controls/Calendar/Calendar.component.d.ts +5 -4
- package/lib/controls/CheckBox/CheckBox.component.d.ts +3 -2
- package/lib/controls/ConfirmationModal/ConfirmationModal.component.d.ts +2 -2
- package/lib/controls/DateTimePicker/DateTimePicker.component.d.ts +3 -3
- package/lib/controls/DropdownList/DropdownList.component.d.ts +2 -2
- package/lib/controls/FileUpload/FileUpload.component.d.ts +3 -4
- package/lib/controls/Form/Form.component.d.ts +2 -2
- package/lib/controls/HtmlEditor/HtmlEditor.component.d.ts +3 -3
- package/lib/controls/ImageUpload/ImageUpload.component.d.ts +4 -4
- package/lib/controls/MapAutoComplete/MapAutoComplete.component.d.ts +5 -4
- package/lib/controls/MarkdownEditor/markdown-editor.component.d.ts +2 -2
- package/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.d.ts +3 -3
- package/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.d.ts +2 -2
- package/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.d.ts +3 -2
- package/lib/controls/Paging/JwPagination.component.d.ts +1 -1
- package/lib/controls/Paging/Paging.component.d.ts +5 -4
- package/lib/controls/Phone/Phone.component.d.ts +2 -2
- package/lib/controls/ProfileImageUploader/ProfileImageUploader.component.d.ts +3 -3
- package/lib/controls/RadioButton/RadioButton.component.d.ts +2 -2
- package/lib/controls/Recaptcha/Recaptcha.component.d.ts +3 -2
- package/lib/controls/Repeater/repeater/repeater.component.d.ts +1 -1
- package/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.d.ts +1 -1
- package/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.d.ts +1 -1
- package/lib/controls/Repeater/repeater-table/repeater-table.component.d.ts +2 -2
- package/lib/controls/TagsInput/TagsInput.component.d.ts +5 -4
- package/lib/controls/TextArea/TextArea.component.d.ts +3 -2
- package/lib/controls/TextBox/TextBox.component.d.ts +2 -2
- package/lib/controls/Toggleslide/Toggleslide.component.d.ts +2 -2
- package/lib/controls/bbsf-controls.module.d.ts +35 -66
- package/lib/controls/page-header-component/page-header-component.component.d.ts +2 -2
- package/lib/modules/bbsf-core.module.d.ts +90 -0
- package/lib/modules/bbsf-datetime.module.d.ts +41 -0
- package/lib/modules/bbsf-dropdown.module.d.ts +33 -0
- package/lib/modules/bbsf-editors.module.d.ts +47 -0
- package/lib/modules/bbsf-forms-basic.module.d.ts +35 -0
- package/lib/modules/bbsf-multilingual.module.d.ts +31 -0
- package/lib/modules/bbsf-phone.module.d.ts +33 -0
- package/lib/modules/bbsf-specialized.module.d.ts +63 -0
- package/lib/modules/bbsf-uploads.module.d.ts +50 -0
- package/lib/modules/bbsf-utility.module.d.ts +45 -0
- package/package.json +2 -13
- package/public-api.d.ts +12 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { EnvironmentService } from '@bnsights/bbsf-utilities';
|
|
3
|
+
import { UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
3
4
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
4
5
|
import { AbstractControl, FormGroup } from '@angular/forms';
|
|
5
6
|
import { FilterItem } from '../Models/FilterItem';
|
|
6
7
|
import { CustomValidation } from '../Models/CustomValidation';
|
|
7
8
|
import { EnglishArabicDTO } from '../Models/EnglishArabicDTO';
|
|
8
|
-
import { EnvironmentService } from '@bnsights/bbsf-utilities';
|
|
9
9
|
import { FormOptions } from '../Models/FormOptions';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare abstract class AppBaseComponent {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { TagInputView } from '../Enums/TagInputView';
|
|
4
|
-
import { TypeaheadMatch } from 'ngx-bootstrap/typeahead';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
export interface TagsChangedEvent {
|
|
7
6
|
change: string;
|
|
@@ -38,7 +37,7 @@ export declare class BTagsInputComponent implements ControlValueAccessor {
|
|
|
38
37
|
removeTag(tagToRemove: any): void;
|
|
39
38
|
maximumOfTagsReached(): boolean;
|
|
40
39
|
isDeleteable(tag: any): boolean;
|
|
41
|
-
typeaheadOnSelect(e:
|
|
40
|
+
typeaheadOnSelect(e: any): void;
|
|
42
41
|
typeaheadOnNoMatch(e: any): void;
|
|
43
42
|
writeValue(value: any): void;
|
|
44
43
|
registerOnChange(fn: any): void;
|
|
@@ -46,5 +45,5 @@ export declare class BTagsInputComponent implements ControlValueAccessor {
|
|
|
46
45
|
calculateInitials(name: string): string;
|
|
47
46
|
onBlur(): void;
|
|
48
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<BTagsInputComponent, never>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BTagsInputComponent, "b-tags-input", never, { "maxTags": { "alias": "maxTags"; "required": false; }; "removeLastOnBackspace": { "alias": "removeLastOnBackspace"; "required": false; }; "canDeleteTags": { "alias": "canDeleteTags"; "required": false; }; "canAddTags": { "alias": "canAddTags"; "required": false; }; "ViewMode": { "alias": "ViewMode"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "showDescription": { "alias": "showDescription"; "required": false; }; "options": { "alias": "options"; "required": false; }; "defaultImageURL": { "alias": "defaultImageURL"; "required": false; }; "minLengthBeforeOptions": { "alias": "minLengthBeforeOptions"; "required": false; }; "scrollableOptions": { "alias": "scrollableOptions"; "required": false; }; "scrollableOptionsInView": { "alias": "scrollableOptionsInView"; "required": false; }; }, { "onTagsChanged": "onTagsChanged"; "onMaxTagsReached": "onMaxTagsReached"; "onNoOptionsMatch": "onNoOptionsMatch"; "onBlurInput": "onBlurInput"; }, never, never,
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BTagsInputComponent, "b-tags-input", never, { "maxTags": { "alias": "maxTags"; "required": false; }; "removeLastOnBackspace": { "alias": "removeLastOnBackspace"; "required": false; }; "canDeleteTags": { "alias": "canDeleteTags"; "required": false; }; "canAddTags": { "alias": "canAddTags"; "required": false; }; "ViewMode": { "alias": "ViewMode"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "showDescription": { "alias": "showDescription"; "required": false; }; "options": { "alias": "options"; "required": false; }; "defaultImageURL": { "alias": "defaultImageURL"; "required": false; }; "minLengthBeforeOptions": { "alias": "minLengthBeforeOptions"; "required": false; }; "scrollableOptions": { "alias": "scrollableOptions"; "required": false; }; "scrollableOptionsInView": { "alias": "scrollableOptionsInView"; "required": false; }; }, { "onTagsChanged": "onTagsChanged"; "onMaxTagsReached": "onMaxTagsReached"; "onNoOptionsMatch": "onNoOptionsMatch"; "onBlurInput": "onBlurInput"; }, never, never, true, never>;
|
|
50
49
|
}
|
|
@@ -8,5 +8,5 @@ export declare class PreventDoubleClickDirective {
|
|
|
8
8
|
constructor(renderer: Renderer2, elementRef: ElementRef);
|
|
9
9
|
onClick(event: Event): void;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<PreventDoubleClickDirective, never>;
|
|
11
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PreventDoubleClickDirective, "[appPreventDoubleClick]", never, { "debounceTime": { "alias": "debounceTime"; "required": false; }; }, {}, never, never,
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PreventDoubleClickDirective, "[appPreventDoubleClick]", never, { "debounceTime": { "alias": "debounceTime"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
12
|
}
|
|
@@ -5,5 +5,5 @@ export declare class NgTemplateNameDirective {
|
|
|
5
5
|
name: string;
|
|
6
6
|
constructor(template: TemplateRef<any>);
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgTemplateNameDirective, never>;
|
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NgTemplateNameDirective, "ng-template[name]", never, { "name": { "alias": "name"; "required": false; }; }, {}, never, never,
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NgTemplateNameDirective, "ng-template[name]", never, { "name": { "alias": "name"; "required": false; }; }, {}, never, never, true, never>;
|
|
9
9
|
}
|
|
@@ -6,5 +6,5 @@ export declare class BBSFDateTimePipe implements PipeTransform {
|
|
|
6
6
|
constructor(datePipe: DatePipe);
|
|
7
7
|
transform(value: Date): string;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<BBSFDateTimePipe, never>;
|
|
9
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<BBSFDateTimePipe, "bbsfDateTime",
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<BBSFDateTimePipe, "bbsfDateTime", true>;
|
|
10
10
|
}
|
|
@@ -6,5 +6,5 @@ export declare class BBSFDatePipe implements PipeTransform {
|
|
|
6
6
|
constructor(datePipe: DatePipe);
|
|
7
7
|
transform(value: Date): string;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<BBSFDatePipe, never>;
|
|
9
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<BBSFDatePipe, "bbsfDate",
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<BBSFDatePipe, "bbsfDate", true>;
|
|
10
10
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
1
|
+
import { UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
2
2
|
import { OwlDateTimeIntl } from '@danielmoncada/angular-datetime-picker';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class DefaultIntl extends OwlDateTimeIntl {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CustomValidation } from '../Models/CustomValidation';
|
|
2
2
|
import { ErrorMassageValidation } from './validationErrorMassage.service';
|
|
3
3
|
import { ValidationErrors, ValidatorFn, AbstractControl } from '@angular/forms';
|
|
4
|
-
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
4
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class ControlUtility {
|
|
7
7
|
private ErrorHandler;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ControlContainer } from '@angular/forms';
|
|
2
|
-
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
2
|
+
import { UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ErrorMassageValidation {
|
|
5
5
|
private controlContainer;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lightweight date formatting utility
|
|
3
|
+
* Replaces moment.js for simple date formatting operations
|
|
4
|
+
*/
|
|
5
|
+
export declare class DateFormatter {
|
|
6
|
+
/**
|
|
7
|
+
* Format date to ISO string with milliseconds
|
|
8
|
+
* Output: YYYY-MM-DDTHH:mm:ss.SSS
|
|
9
|
+
* @param date - Date object or string
|
|
10
|
+
* @returns Formatted date string
|
|
11
|
+
* @example
|
|
12
|
+
* DateFormatter.toISOWithMillis(new Date()) // '2024-10-27T10:30:45.123'
|
|
13
|
+
*/
|
|
14
|
+
static toISOWithMillis(date: Date | string): string;
|
|
15
|
+
/**
|
|
16
|
+
* Format date to DD-MM-YYYY
|
|
17
|
+
* @param date - Date object or string
|
|
18
|
+
* @returns Formatted date string
|
|
19
|
+
* @example
|
|
20
|
+
* DateFormatter.toDDMMYYYY(new Date()) // '27-10-2024'
|
|
21
|
+
*/
|
|
22
|
+
static toDDMMYYYY(date: Date | string): string;
|
|
23
|
+
}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
2
|
import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import { RequestHandlerService } from '@bnsights/bbsf-utilities/http';
|
|
6
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
3
7
|
import { ErrorMassageValidation } from '../../Shared/services/validationErrorMassage.service';
|
|
4
8
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
5
9
|
import { AutocompleteOptions } from '../../Shared/Models/AutocompleteOptions';
|
|
6
|
-
import { Observable } from 'rxjs';
|
|
7
|
-
import { HttpClient } from '@angular/common/http';
|
|
8
|
-
import { ControlValidationService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
9
10
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
10
11
|
import { CustomValidation } from '../../Shared/Models/CustomValidation';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
@@ -61,5 +62,5 @@ export declare class AutocompleteTextBoxComponent implements OnInit {
|
|
|
61
62
|
isValid: () => void;
|
|
62
63
|
checkIsAutocomplateInFilter(): void;
|
|
63
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteTextBoxComponent, [null, null, null, null, { optional: true; }, null, null, null, null]>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteTextBoxComponent, "BBSF-AutocompleteTextBox", never, { "group": { "alias": "group"; "required": false; }; "name": { "alias": "name"; "required": false; }; "options": { "alias": "options"; "required": false; }; "DropdownTemplateVariable": { "alias": "DropdownTemplateVariable"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never,
|
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteTextBoxComponent, "BBSF-AutocompleteTextBox", never, { "group": { "alias": "group"; "required": false; }; "name": { "alias": "name"; "required": false; }; "options": { "alias": "options"; "required": false; }; "DropdownTemplateVariable": { "alias": "DropdownTemplateVariable"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never, true, never>;
|
|
65
66
|
}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import { FullCalendarComponent } from '@fullcalendar/angular';
|
|
2
|
-
import * as core from '@fullcalendar/core';
|
|
3
1
|
import { OnInit } from '@angular/core';
|
|
4
2
|
import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
|
|
3
|
+
import { FullCalendarComponent } from '@fullcalendar/angular';
|
|
4
|
+
import * as core from '@fullcalendar/core';
|
|
5
|
+
import { BBSFTranslateService } from '@bnsights/bbsf-utilities/translate';
|
|
6
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
5
7
|
import { ErrorMassageValidation } from '../../Shared/services/validationErrorMassage.service';
|
|
6
8
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
7
9
|
import { CalendarOptions } from '../../Shared/Models/CalendarOptions';
|
|
8
|
-
import { BBSFTranslateService, ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class CalendarComponent implements OnInit {
|
|
11
12
|
private ErrorHandler;
|
|
@@ -38,5 +39,5 @@ export declare class CalendarComponent implements OnInit {
|
|
|
38
39
|
OnDayClickFunction(arg: any): void;
|
|
39
40
|
OnEventClickFunction(arg: any): void;
|
|
40
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, [null, null, { optional: true; }, null, null, null, null]>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "BBSF-Calendar", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never,
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "BBSF-Calendar", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, true, never>;
|
|
42
43
|
}
|
|
@@ -2,7 +2,8 @@ import { OnInit, EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
|
|
3
3
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
4
4
|
import { CheckBoxOptions } from '../../Shared/Models/CheckBoxOptions';
|
|
5
|
-
import { BBSFTranslateService
|
|
5
|
+
import { BBSFTranslateService } from '@bnsights/bbsf-utilities/translate';
|
|
6
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class CheckBoxComponent implements OnInit {
|
|
8
9
|
private controlUtility;
|
|
@@ -33,5 +34,5 @@ export declare class CheckBoxComponent implements OnInit {
|
|
|
33
34
|
addCustomValidation: (customValidation: any) => void;
|
|
34
35
|
isValid: () => void;
|
|
35
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckBoxComponent, [null, { optional: true; }, null, null, null, null]>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckBoxComponent, "BBSF-CheckBox", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never,
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckBoxComponent, "BBSF-CheckBox", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
37
38
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { ElementRef, OnInit } from '@angular/core';
|
|
4
4
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
5
|
-
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
5
|
+
import { UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
6
6
|
import { ConfirmationModalOptions } from '../../Shared/Models/ConfirmationModalOptions';
|
|
7
7
|
import { SweetAlertIcon } from 'sweetalert2/dist/sweetalert2.js';
|
|
8
8
|
import { StyleConfirmationMode } from '../../Shared/Enums/StyleConfirmationMode';
|
|
@@ -26,5 +26,5 @@ export declare class ConfirmationModalComponent implements OnInit {
|
|
|
26
26
|
submit(): void;
|
|
27
27
|
private handleError;
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmationModalComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmationModalComponent, "BBSF-ConfirmationModal", never, { "options": { "alias": "options"; "required": false; }; }, {}, never, never,
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmationModalComponent, "BBSF-ConfirmationModal", never, { "options": { "alias": "options"; "required": false; }; }, {}, never, never, true, never>;
|
|
30
30
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
2
|
import { FormGroup, AbstractControl, FormGroupDirective, ControlContainer } from '@angular/forms';
|
|
3
|
-
import { DatePickerOptions } from '../../Shared/Models
|
|
3
|
+
import { DatePickerOptions } from '../../Shared/Models';
|
|
4
4
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
5
5
|
import { OnPagingFiltersChangeService } from '../../Shared/services/OnPagingFiltersChange.service';
|
|
6
|
-
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
7
7
|
import { DateTimeAdapter, DateViewType } from '@danielmoncada/angular-datetime-picker';
|
|
8
8
|
import * as dateTimeClass from '@danielmoncada/angular-datetime-picker';
|
|
9
9
|
import { Direction } from '@angular/cdk/bidi';
|
|
@@ -55,5 +55,5 @@ export declare class DateInputComponent implements OnInit {
|
|
|
55
55
|
addCustomValidation: (customValidation: any) => void;
|
|
56
56
|
isValid: () => void;
|
|
57
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateInputComponent, [null, null, { optional: true; }, null, null, null, null]>;
|
|
58
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateInputComponent, "BBSF-DateTimePicker", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; "DropdownTemplateVariable": { "alias": "DropdownTemplateVariable"; "required": false; }; }, { "onChange": "onChange"; }, never, never,
|
|
58
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateInputComponent, "BBSF-DateTimePicker", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; "DropdownTemplateVariable": { "alias": "DropdownTemplateVariable"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
59
59
|
}
|
|
@@ -4,7 +4,7 @@ import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
|
4
4
|
import { DropdownOptions } from '../../Shared/Models/DropdownOptions';
|
|
5
5
|
import { DropdownListItem } from '../../Shared/Models/DropdownListItem';
|
|
6
6
|
import { OnPagingFiltersChangeService } from '../../Shared/services/OnPagingFiltersChange.service';
|
|
7
|
-
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
7
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
8
8
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
9
9
|
import { ForceDirection } from '../../Shared/Enums/ForceDirection';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
@@ -54,5 +54,5 @@ export declare class DropdownListComponent implements OnInit {
|
|
|
54
54
|
isAllSelected(): boolean;
|
|
55
55
|
hasSelectedItems(): boolean;
|
|
56
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownListComponent, [null, null, { optional: true; }, null, null, null, null]>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownListComponent, "BBSF-DropdownList", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; "DropdownTemplateVariable": { "alias": "DropdownTemplateVariable"; "required": false; }; }, { "onChange": "onChange"; "onClear": "onClear"; }, never, never,
|
|
57
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownListComponent, "BBSF-DropdownList", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; "DropdownTemplateVariable": { "alias": "DropdownTemplateVariable"; "required": false; }; }, { "onChange": "onChange"; "onClear": "onClear"; }, never, never, true, never>;
|
|
58
58
|
}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import { OnInit, AfterViewInit, ElementRef, EventEmitter } from '@angular/core';
|
|
1
|
+
import { OnInit, AfterViewInit, ElementRef, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
2
|
import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
|
|
3
3
|
import { FileUploader, FileLikeObject, FileItem } from 'ng2-file-upload';
|
|
4
|
-
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
5
|
-
import { OnDestroy } from '@angular/core';
|
|
4
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
6
5
|
import { FileDTO, FileUploadModel, FileUploadOptions, MultipleFileUploadModel } from '../../Shared/Models';
|
|
7
6
|
import { ControlUtility, FileUploadService, GlobalSettings } from '../../Shared/services';
|
|
8
7
|
import * as i0 from "@angular/core";
|
|
@@ -62,5 +61,5 @@ export declare class FileUploadComponent implements OnInit, AfterViewInit, OnDes
|
|
|
62
61
|
private isFileTypeAccepted;
|
|
63
62
|
private setValuePreservingErrors;
|
|
64
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, [{ optional: true; }, null, null, null, null, null, null]>;
|
|
65
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "BBSF-FileUpload", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; "isUploadComplete": "isUploadComplete"; }, never, never,
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "BBSF-FileUpload", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; "isUploadComplete": "isUploadComplete"; }, never, never, true, never>;
|
|
66
65
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
2
|
import { NgbActiveModal, NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
-
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
3
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
4
4
|
import { FormOptions } from '../../Shared/Models/FormOptions';
|
|
5
5
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
6
6
|
import { Router } from '@angular/router';
|
|
@@ -24,5 +24,5 @@ export declare class FormComponent implements OnInit {
|
|
|
24
24
|
showGlobalError(): void;
|
|
25
25
|
randomString(length: any): string;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormComponent, "BBSF-Form", never, { "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"],
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormComponent, "BBSF-Form", never, { "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"], true, never>;
|
|
28
28
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { OnInit, NgZone, EventEmitter } from '@angular/core';
|
|
2
2
|
import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
|
|
3
|
+
import { AngularEditorConfig } from '@kolkov/angular-editor';
|
|
3
4
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
4
5
|
import { HtmlEditorOptions } from '../../Shared/Models/HtmlEditorOptions';
|
|
5
|
-
import {
|
|
6
|
-
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
7
7
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class HtmlEditorComponent implements OnInit {
|
|
@@ -45,5 +45,5 @@ export declare class HtmlEditorComponent implements OnInit {
|
|
|
45
45
|
addCustomValidation: (customValidation: any) => void;
|
|
46
46
|
isValid: () => void;
|
|
47
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<HtmlEditorComponent, [null, null, { optional: true; }, null, null, null, null]>;
|
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HtmlEditorComponent, "BBSF-HtmlEditor", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never,
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HtmlEditorComponent, "BBSF-HtmlEditor", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never, true, never>;
|
|
49
49
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { OnInit, ElementRef, NgZone, EventEmitter } from '@angular/core';
|
|
2
2
|
import { FormControl, FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
|
|
3
|
-
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
4
3
|
import { FileUploader, FileLikeObject } from 'ng2-file-upload';
|
|
5
|
-
import { ImageUploadOptions } from '../../Shared/Models/ImageUploadOptions';
|
|
6
4
|
import { CropperComponent } from 'angular-cropperjs';
|
|
7
|
-
import {
|
|
5
|
+
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
6
|
+
import { ImageUploadOptions } from '../../Shared/Models/ImageUploadOptions';
|
|
7
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
8
8
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
9
9
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
@@ -66,5 +66,5 @@ export declare class ImageUploaderComponent implements OnInit {
|
|
|
66
66
|
addCustomValidation: (customValidation: any) => void;
|
|
67
67
|
isValid: () => void;
|
|
68
68
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageUploaderComponent, [null, null, { optional: true; }, null, null, null, null, null]>;
|
|
69
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ImageUploaderComponent, "BBSF-ImageUpload", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never,
|
|
69
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImageUploaderComponent, "BBSF-ImageUpload", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
70
70
|
}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
/// <reference types="google.maps" />
|
|
2
2
|
import { OnInit, NgZone, ElementRef, EventEmitter } from '@angular/core';
|
|
3
|
+
import { AbstractControl, ControlContainer, FormGroup, FormGroupDirective } from '@angular/forms';
|
|
4
|
+
import { ScriptService } from 'ngx-script-loader';
|
|
5
|
+
import { BBSFTranslateService } from '@bnsights/bbsf-utilities/translate';
|
|
6
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
3
7
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
4
8
|
import { MapAutoCompleteOptions } from '../../Shared/Models/MapAutoCompleteOptions';
|
|
5
9
|
import { MapAutocompleteDTO } from '../../Shared/Models/MapAutocompleteDTO';
|
|
6
|
-
import { BBSFTranslateService, ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
7
10
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
8
|
-
import { AbstractControl, ControlContainer, FormGroup, FormGroupDirective } from '@angular/forms';
|
|
9
|
-
import { ScriptService } from 'ngx-script-loader';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class MapAutoCompleteComponent implements OnInit {
|
|
12
13
|
private ngZone;
|
|
@@ -69,5 +70,5 @@ export declare class MapAutoCompleteComponent implements OnInit {
|
|
|
69
70
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
70
71
|
IsValid: () => void;
|
|
71
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapAutoCompleteComponent, [null, null, { optional: true; }, null, null, null, null, null, null]>;
|
|
72
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MapAutoCompleteComponent, "BBSF-MapAutoComplete", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never,
|
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapAutoCompleteComponent, "BBSF-MapAutoComplete", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never, true, never>;
|
|
73
74
|
}
|
|
@@ -2,7 +2,7 @@ import { EventEmitter, OnInit } from '@angular/core';
|
|
|
2
2
|
import { AbstractControl, ControlContainer, FormGroup, FormGroupDirective } from '@angular/forms';
|
|
3
3
|
import { MdEditorOption } from "ngx-markdown-editor";
|
|
4
4
|
import { MarkdownEditorOptions } from '../../Shared/Models/MarkdownEditorOptions';
|
|
5
|
-
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
5
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
6
6
|
import { MdEditorLocaleOptions } from 'ngx-markdown-editor/lib/md-editor.types';
|
|
7
7
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
8
8
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
@@ -90,5 +90,5 @@ export declare class MarkdownEditorComponent implements OnInit {
|
|
|
90
90
|
onEditorLoaded(editor: any): void;
|
|
91
91
|
onDragFile(files: Array<File>): Promise<Array<any>>;
|
|
92
92
|
static ɵfac: i0.ɵɵFactoryDeclaration<MarkdownEditorComponent, [null, null, null, null, null, null, { optional: true; }]>;
|
|
93
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MarkdownEditorComponent, "BBSF-MarkdownEditor", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never,
|
|
93
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MarkdownEditorComponent, "BBSF-MarkdownEditor", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never, true, never>;
|
|
94
94
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
2
|
import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
|
|
3
|
+
import { AngularEditorConfig } from '@kolkov/angular-editor';
|
|
3
4
|
import { MultiLingualHtmlEditorOptions } from '../../Shared/Models/MultiLingualHtmlEditorOptions';
|
|
4
5
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
5
|
-
import {
|
|
6
|
-
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
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 {
|
|
@@ -61,5 +61,5 @@ export declare class MultiLingualHtmlEditorComponent implements OnInit {
|
|
|
61
61
|
addCustomValidation: (customValidation: any) => void;
|
|
62
62
|
isValid: () => void;
|
|
63
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiLingualHtmlEditorComponent, [null, { optional: true; }, null, null, null, null]>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualHtmlEditorComponent, "BBSF-MultiLingualHtmlEditor", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never,
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualHtmlEditorComponent, "BBSF-MultiLingualHtmlEditor", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never, true, never>;
|
|
65
65
|
}
|
|
@@ -2,7 +2,7 @@ import { OnInit, EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
|
|
3
3
|
import { MultiLingualTextAreaOptions } from '../../Shared/Models/MultiLingualTextAreaOptions';
|
|
4
4
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
5
|
-
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
5
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
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 {
|
|
@@ -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,
|
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualTextAreaComponent, "BBSF-MultiLingualTextArea", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
74
74
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
2
|
import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
|
|
3
3
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
4
|
-
import { BBSFTranslateService
|
|
4
|
+
import { BBSFTranslateService } from '@bnsights/bbsf-utilities/translate';
|
|
5
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
5
6
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
6
7
|
import { ControlLayout } from '../../Shared/Enums/ControlLayout';
|
|
7
8
|
import { MultiLingualTextBoxOptions } from '../../Shared/Models/MultiLingualTextBoxOptions';
|
|
@@ -75,5 +76,5 @@ export declare class MultiLingualTextBoxComponent implements OnInit {
|
|
|
75
76
|
onArabicFocus(isFocus: boolean): void;
|
|
76
77
|
onEnglishFocus(isFocus: boolean): void;
|
|
77
78
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiLingualTextBoxComponent, [null, { optional: true; }, null, null, null, null, null]>;
|
|
78
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualTextBoxComponent, "BBSF-MultiLingualTextBox", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never,
|
|
79
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualTextBoxComponent, "BBSF-MultiLingualTextBox", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
79
80
|
}
|
|
@@ -23,5 +23,5 @@ export declare class JwPaginationComponent implements OnInit, OnChanges {
|
|
|
23
23
|
pages: any[];
|
|
24
24
|
};
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<JwPaginationComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<JwPaginationComponent, "jw-pagination", never, { "items": { "alias": "items"; "required": false; }; "initialPage": { "alias": "initialPage"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "maxPages": { "alias": "maxPages"; "required": false; }; "ShowFirstAndLast": { "alias": "ShowFirstAndLast"; "required": false; }; }, { "changePage": "changePage"; }, never, never,
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<JwPaginationComponent, "jw-pagination", never, { "items": { "alias": "items"; "required": false; }; "initialPage": { "alias": "initialPage"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "maxPages": { "alias": "maxPages"; "required": false; }; "ShowFirstAndLast": { "alias": "ShowFirstAndLast"; "required": false; }; }, { "changePage": "changePage"; }, never, never, true, never>;
|
|
27
27
|
}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { OnInit, EventEmitter, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { Location } from '@angular/common';
|
|
2
3
|
import { Router, ActivatedRoute } from '@angular/router';
|
|
3
4
|
import { HttpClient, HttpHeaders } from '@angular/common/http';
|
|
5
|
+
import { FormGroup } from '@angular/forms';
|
|
4
6
|
import { PagingOptions } from '../../Shared/Models/PagingOptions';
|
|
5
7
|
import { Subscription } from 'rxjs';
|
|
6
|
-
import { FormGroup } from '@angular/forms';
|
|
7
8
|
import { OnPagingFiltersChangeService } from '../../Shared/services/OnPagingFiltersChange.service';
|
|
8
|
-
import { RequestHandlerService
|
|
9
|
-
import {
|
|
9
|
+
import { RequestHandlerService } from '@bnsights/bbsf-utilities/http';
|
|
10
|
+
import { UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class PagingComponent<T> implements OnInit, OnDestroy {
|
|
12
13
|
utilityService: UtilityService;
|
|
@@ -106,5 +107,5 @@ export declare class PagingComponent<T> implements OnInit, OnDestroy {
|
|
|
106
107
|
private clearHistoryState;
|
|
107
108
|
getFiltersValue(): {};
|
|
108
109
|
static ɵfac: i0.ɵɵFactoryDeclaration<PagingComponent<any>, never>;
|
|
109
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PagingComponent<any>, "BBSF-Paging", never, { "options": { "alias": "options"; "required": false; }; "group": { "alias": "group"; "required": false; }; }, { "Items": "Items"; "pageStateRestored": "pageStateRestored"; }, never, never,
|
|
110
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PagingComponent<any>, "BBSF-Paging", never, { "options": { "alias": "options"; "required": false; }; "group": { "alias": "group"; "required": false; }; }, { "Items": "Items"; "pageStateRestored": "pageStateRestored"; }, never, never, true, never>;
|
|
110
111
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { AbstractControl, ControlContainer, FormGroup, FormGroupDirective } from '@angular/forms';
|
|
3
|
-
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
3
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
4
4
|
import { CountryISO, SearchCountryField } from 'ngx-intl-tel-input';
|
|
5
5
|
import { Country } from '../../Shared/Enums/Countries';
|
|
6
6
|
import { PhoneOptions } from '../../Shared/Models/PhoneOptions';
|
|
@@ -39,5 +39,5 @@ export declare class PhoneComponent implements OnInit {
|
|
|
39
39
|
addCustomValidation: (customValidation: any) => void;
|
|
40
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,
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneComponent, "BBSF-Phone", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
43
43
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { OnInit, ElementRef, NgZone, EventEmitter } from '@angular/core';
|
|
2
2
|
import { FormControl, FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
|
|
3
|
-
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
4
3
|
import { FileUploader, FileLikeObject } from 'ng2-file-upload';
|
|
5
4
|
import { CropperComponent } from 'angular-cropperjs';
|
|
5
|
+
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
6
6
|
import { ProfileImageUploadOptions } from '../../Shared/Models/ProfileImageUploadOptions';
|
|
7
7
|
import { ProfilePictureDTO } from '../../Shared/Models/ProfilePictureDTO';
|
|
8
|
-
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
8
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
9
9
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class ProfileImageUploaderComponent implements OnInit {
|
|
@@ -65,5 +65,5 @@ export declare class ProfileImageUploaderComponent implements OnInit {
|
|
|
65
65
|
addCustomValidation: (customValidation: any) => void;
|
|
66
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,
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileImageUploaderComponent, "BBSF-ProfileImageUploader", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
69
69
|
}
|
|
@@ -2,7 +2,7 @@ import { OnInit, EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
|
|
3
3
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
4
4
|
import { RadioButtonOptions } from '../../Shared/Models/RadioButtonOptions';
|
|
5
|
-
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
5
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
6
6
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class RadioButtonComponent implements OnInit {
|
|
@@ -33,5 +33,5 @@ export declare class RadioButtonComponent implements OnInit {
|
|
|
33
33
|
addCustomValidation: (customValidation: any) => void;
|
|
34
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,
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "BBSF-RadioButton", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
37
37
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
2
|
import { FormGroup, AbstractControl, FormGroupDirective } from '@angular/forms';
|
|
3
3
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
4
|
-
import {
|
|
4
|
+
import { RequestHandlerService } from '@bnsights/bbsf-utilities/http';
|
|
5
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
5
6
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
6
7
|
import { RecaptchaOptions } from '../../Shared/Models/RecaptchaOptions';
|
|
7
8
|
import { RecaptchaModel } from '../../Shared/Models/Recaptcha';
|
|
@@ -37,5 +38,5 @@ export declare class RecaptchaComponent implements OnInit {
|
|
|
37
38
|
addCustomValidation: (customValidation: any) => void;
|
|
38
39
|
isValid: () => void;
|
|
39
40
|
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,
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RecaptchaComponent, "BBSF-Recaptcha", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
41
42
|
}
|
|
@@ -25,5 +25,5 @@ export declare class RepeaterComponent implements OnInit, AfterViewInit {
|
|
|
25
25
|
addItem(): void;
|
|
26
26
|
setCurrentIndex(i: number): void;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<RepeaterComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterComponent, "BBSF-repeater", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; "initialTemplate": { "alias": "initialTemplate"; "required": false; }; }, {}, never, never,
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterComponent, "BBSF-repeater", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; "initialTemplate": { "alias": "initialTemplate"; "required": false; }; }, {}, never, never, true, never>;
|
|
29
29
|
}
|
|
@@ -19,5 +19,5 @@ export declare class RepeaterFieldBuilderComponent implements OnInit, AfterViewI
|
|
|
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,
|
|
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, true, never>;
|
|
23
23
|
}
|
|
@@ -7,5 +7,5 @@ export declare class RepeaterItemFieldComponent implements OnInit {
|
|
|
7
7
|
constructor();
|
|
8
8
|
ngOnInit(): void;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<RepeaterItemFieldComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterItemFieldComponent, "repeater-item-field", never, { "templates": { "alias": "templates"; "required": false; }; "filedIndex": { "alias": "filedIndex"; "required": false; }; "itemIndex": { "alias": "itemIndex"; "required": false; }; }, {}, never, never,
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterItemFieldComponent, "repeater-item-field", never, { "templates": { "alias": "templates"; "required": false; }; "filedIndex": { "alias": "filedIndex"; "required": false; }; "itemIndex": { "alias": "itemIndex"; "required": false; }; }, {}, never, never, true, never>;
|
|
11
11
|
}
|