@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,7 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
3
4
|
import { RepeaterOptions } from '../../../Shared/Models/RepeaterOptions';
|
|
4
|
-
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class RepeaterTableComponent implements OnInit {
|
|
7
7
|
utilityService: UtilityService;
|
|
@@ -15,5 +15,5 @@ export declare class RepeaterTableComponent implements OnInit {
|
|
|
15
15
|
deleteItem(deletedIndex: string | number): void;
|
|
16
16
|
addItem(): void;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<RepeaterTableComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterTableComponent, "BBSF-repeater-table", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never,
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterTableComponent, "BBSF-repeater-table", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, true, never>;
|
|
19
19
|
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { OnInit, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
2
|
import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
|
|
3
|
-
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
4
|
-
import { TagsInputOptions } from '../../Shared/Models/TagsInputOptions';
|
|
5
3
|
import { HttpClient } from '@angular/common/http';
|
|
6
4
|
import { Observable, Subscription } from 'rxjs';
|
|
7
|
-
import {
|
|
5
|
+
import { RequestHandlerService } from '@bnsights/bbsf-utilities/http';
|
|
6
|
+
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
7
|
+
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
8
|
+
import { TagsInputOptions } from '../../Shared/Models/TagsInputOptions';
|
|
8
9
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class TagsInputComponent implements OnInit, OnDestroy {
|
|
@@ -58,5 +59,5 @@ export declare class TagsInputComponent implements OnInit, OnDestroy {
|
|
|
58
59
|
getTagsValue(): any[];
|
|
59
60
|
checkIsTagInFilter(): void;
|
|
60
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<TagsInputComponent, [null, null, null, { optional: true; }, null, null, null, null]>;
|
|
61
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TagsInputComponent, "BBSF-TagsInput", 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,
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagsInputComponent, "BBSF-TagsInput", 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>;
|
|
62
63
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit, OnDestroy, EventEmitter } from '@angular/core';
|
|
2
2
|
import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
|
|
3
|
-
import {
|
|
3
|
+
import { LanguageService } from '@bnsights/bbsf-utilities/translate';
|
|
4
|
+
import { ControlValidationService, UtilityService, SpeechRecognitionService } from '@bnsights/bbsf-utilities/ui';
|
|
4
5
|
import { Subscription } from 'rxjs';
|
|
5
6
|
import { ControlUtility, GlobalSettings } from '../../Shared/services';
|
|
6
7
|
import { TextAreaOptions } from '../../Shared/Models';
|
|
@@ -77,5 +78,5 @@ export declare class TextAreaComponent implements OnInit, OnDestroy {
|
|
|
77
78
|
onSpeechLanguageChange(event: Event): void;
|
|
78
79
|
enableOrDisableLanguageSelect(isEnabled?: boolean): void;
|
|
79
80
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, [null, { optional: true; skipSelf: true; }, { optional: true; }, null, null, null, null, null]>;
|
|
80
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "BBSF-TextArea", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never,
|
|
81
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "BBSF-TextArea", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
81
82
|
}
|
|
@@ -3,7 +3,7 @@ import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from
|
|
|
3
3
|
import { TextBoxOptions } from '../../Shared/Models/TextBoxOptions';
|
|
4
4
|
import { InputType } from '../../Shared/Enums/InputType';
|
|
5
5
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
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 TextboxComponent implements OnInit {
|
|
@@ -71,5 +71,5 @@ export declare class TextboxComponent implements OnInit {
|
|
|
71
71
|
onTextBlur(): void;
|
|
72
72
|
checkPasswordComplexity(password: string): void;
|
|
73
73
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextboxComponent, [null, { optional: true; }, null, null, null, null]>;
|
|
74
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextboxComponent, "BBSF-TextBox", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; "onBlur": "onBlur"; }, never, never,
|
|
74
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextboxComponent, "BBSF-TextBox", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; "onBlur": "onBlur"; }, never, never, true, never>;
|
|
75
75
|
}
|
|
@@ -2,7 +2,7 @@ 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';
|
|
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 ToggleslideComponent implements OnInit {
|
|
@@ -29,5 +29,5 @@ export declare class ToggleslideComponent implements OnInit {
|
|
|
29
29
|
getErrorValidation(errorList: any[]): string;
|
|
30
30
|
changeValueToggle(): void;
|
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleslideComponent, [null, { optional: true; }, null, null, null, null, null]>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleslideComponent, "BBSF-Toggleslide", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never,
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleslideComponent, "BBSF-Toggleslide", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
33
33
|
}
|
|
@@ -1,73 +1,42 @@
|
|
|
1
1
|
import { IConfig } from 'ngx-mask';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "
|
|
4
|
-
import * as i2 from "
|
|
5
|
-
import * as i3 from "
|
|
6
|
-
import * as i4 from "
|
|
7
|
-
import * as i5 from "./TextArea/TextArea.component";
|
|
8
|
-
import * as i6 from "./MultiLingualTextArea/MultiLingualTextArea.component";
|
|
9
|
-
import * as i7 from "./CheckBox/CheckBox.component";
|
|
10
|
-
import * as i8 from "./DropdownList/DropdownList.component";
|
|
11
|
-
import * as i9 from "./Phone/Phone.component";
|
|
12
|
-
import * as i10 from "./Toggleslide/Toggleslide.component";
|
|
13
|
-
import * as i11 from "./HtmlEditor/HtmlEditor.component";
|
|
14
|
-
import * as i12 from "./MultiLingualHtmlEditor/MultiLingualHtmlEditor.component";
|
|
15
|
-
import * as i13 from "./ImageUpload/ImageUpload.component";
|
|
16
|
-
import * as i14 from "./ProfileImageUploader/ProfileImageUploader.component";
|
|
17
|
-
import * as i15 from "./Calendar/Calendar.component";
|
|
18
|
-
import * as i16 from "./MapAutoComplete/MapAutoComplete.component";
|
|
19
|
-
import * as i17 from "./AutocompleteTextBox/AutocompleteTextBox.component";
|
|
20
|
-
import * as i18 from "./TagsInput/TagsInput.component";
|
|
21
|
-
import * as i19 from "./Paging/Paging.component";
|
|
22
|
-
import * as i20 from "./Paging/JwPagination.component";
|
|
23
|
-
import * as i21 from "./RadioButton/RadioButton.component";
|
|
24
|
-
import * as i22 from "./Form/Form.component";
|
|
25
|
-
import * as i23 from "./ConfirmationModal/ConfirmationModal.component";
|
|
26
|
-
import * as i24 from "./Repeater/repeater/repeater.component";
|
|
27
|
-
import * as i25 from "./Repeater/repeater-field-builder/repeater-field-builder.component";
|
|
28
|
-
import * as i26 from "../Shared/Directives/template-name.directive";
|
|
29
|
-
import * as i27 from "./Repeater/repeater-item-field/repeater-item-field.component";
|
|
30
|
-
import * as i28 from "./Repeater/repeater-table/repeater-table.component";
|
|
31
|
-
import * as i29 from "../Shared/Pipes/bbsf-date-time.pipe";
|
|
32
|
-
import * as i30 from "../Shared/Pipes/bbsf-date.pipe";
|
|
33
|
-
import * as i31 from "../Shared/Components/ng-tag-input";
|
|
34
|
-
import * as i32 from "./Recaptcha/Recaptcha.component";
|
|
35
|
-
import * as i33 from "./page-header-component/page-header-component.component";
|
|
36
|
-
import * as i34 from "./MarkdownEditor/markdown-editor.component";
|
|
37
|
-
import * as i35 from "../Shared/Directives/appPreventDoubleClick.directive";
|
|
38
|
-
import * as i36 from "@angular/common";
|
|
39
|
-
import * as i37 from "ngx-infinite-scroll";
|
|
40
|
-
import * as i38 from "@ng-select/ng-select";
|
|
41
|
-
import * as i39 from "@fullcalendar/angular";
|
|
42
|
-
import * as i40 from "angular-cropperjs";
|
|
43
|
-
import * as i41 from "@ng-bootstrap/ng-bootstrap";
|
|
44
|
-
import * as i42 from "ngx-dropzone";
|
|
45
|
-
import * as i43 from "ng2-file-upload";
|
|
46
|
-
import * as i44 from "ngx-mask";
|
|
47
|
-
import * as i45 from "ngx-summernote";
|
|
48
|
-
import * as i46 from "@angular/material/slide-toggle";
|
|
49
|
-
import * as i47 from "ngx-intl-tel-input";
|
|
50
|
-
import * as i48 from "@danielmoncada/angular-datetime-picker";
|
|
51
|
-
import * as i49 from "ng-block-ui";
|
|
52
|
-
import * as i50 from "@angular/forms";
|
|
53
|
-
import * as i51 from "@angular/router";
|
|
54
|
-
import * as i52 from "ngx-toastr";
|
|
55
|
-
import * as i53 from "@angular/common/http";
|
|
56
|
-
import * as i54 from "@angular/cdk/overlay";
|
|
57
|
-
import * as i55 from "@ngrx/store-devtools";
|
|
58
|
-
import * as i56 from "ngx-bootstrap/datepicker";
|
|
59
|
-
import * as i57 from "ngx-bootstrap/typeahead";
|
|
60
|
-
import * as i58 from "@kolkov/angular-editor";
|
|
61
|
-
import * as i59 from "angular-ng-autocomplete";
|
|
62
|
-
import * as i60 from "@bnsights/bbsf-utilities";
|
|
63
|
-
import * as i61 from "ng-inline-svg-2";
|
|
64
|
-
import * as i62 from "@sweetalert2/ngx-sweetalert2";
|
|
65
|
-
import * as i63 from "ngx-script-loader";
|
|
66
|
-
import * as i64 from "@angular/google-maps";
|
|
67
|
-
import * as i65 from "ngx-markdown-editor";
|
|
3
|
+
import * as i1 from "../modules/bbsf-core.module";
|
|
4
|
+
import * as i2 from "../modules/bbsf-editors.module";
|
|
5
|
+
import * as i3 from "../modules/bbsf-uploads.module";
|
|
6
|
+
import * as i4 from "../modules/bbsf-specialized.module";
|
|
68
7
|
export declare let options: Partial<IConfig> | (() => Partial<IConfig>);
|
|
8
|
+
/**
|
|
9
|
+
* BBSF Controls Module (Legacy - For Backward Compatibility)
|
|
10
|
+
*
|
|
11
|
+
* @deprecated This module imports ALL controls and should only be used for backward compatibility.
|
|
12
|
+
* For better bundle optimization, use the new grouped modules instead:
|
|
13
|
+
*
|
|
14
|
+
* - BBSFCoreModule: Common controls (~650 KB) - Use this for 80%+ of use cases
|
|
15
|
+
* - BBSFEditorsModule: Rich text editors (~800 KB)
|
|
16
|
+
* - BBSFUploadsModule: File/Image uploads (~360 KB)
|
|
17
|
+
* - BBSFSpecializedModule: Advanced controls (~300 KB)
|
|
18
|
+
*
|
|
19
|
+
* @example New way (Recommended):
|
|
20
|
+
* ```typescript
|
|
21
|
+
* import { BBSFCoreModule } from '@bnsights/bbsf-controls/core';
|
|
22
|
+
* import { BBSFEditorsModule } from '@bnsights/bbsf-controls/editors';
|
|
23
|
+
*
|
|
24
|
+
* @NgModule({
|
|
25
|
+
* imports: [BBSFCoreModule, BBSFEditorsModule]
|
|
26
|
+
* })
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
29
|
+
* @example Old way (Still works but not recommended):
|
|
30
|
+
* ```typescript
|
|
31
|
+
* import { BBSFControlsModule } from '@bnsights/bbsf-controls';
|
|
32
|
+
*
|
|
33
|
+
* @NgModule({
|
|
34
|
+
* imports: [BBSFControlsModule]
|
|
35
|
+
* })
|
|
36
|
+
* ```
|
|
37
|
+
*/
|
|
69
38
|
export declare class BBSFControlsModule {
|
|
70
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<BBSFControlsModule, never>;
|
|
71
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BBSFControlsModule, [typeof i1.
|
|
40
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BBSFControlsModule, never, [typeof i1.BBSFCoreModule, typeof i2.BBSFEditorsModule, typeof i3.BBSFUploadsModule, typeof i4.BBSFSpecializedModule], [typeof i1.BBSFCoreModule, typeof i2.BBSFEditorsModule, typeof i3.BBSFUploadsModule, typeof i4.BBSFSpecializedModule]>;
|
|
72
41
|
static ɵinj: i0.ɵɵInjectorDeclaration<BBSFControlsModule>;
|
|
73
42
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
3
|
import { Router } from '@angular/router';
|
|
4
|
-
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
4
|
+
import { UtilityService } from '@bnsights/bbsf-utilities/ui';
|
|
5
5
|
import { DataType } from '../../Shared/Enums/Enums';
|
|
6
6
|
import { PageHeaderOptions } from '../../Shared/Models/page-header-options';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
@@ -16,5 +16,5 @@ export declare class PageHeaderComponentComponent implements OnInit {
|
|
|
16
16
|
translate(key: string): string;
|
|
17
17
|
ngOnInit(): void;
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageHeaderComponentComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PageHeaderComponentComponent, "bbsf-page-header-component", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never,
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageHeaderComponentComponent, "bbsf-page-header-component", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, true, never>;
|
|
20
20
|
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "@angular/forms";
|
|
4
|
+
import * as i3 from "@angular/router";
|
|
5
|
+
import * as i4 from "./bbsf-forms-basic.module";
|
|
6
|
+
import * as i5 from "./bbsf-dropdown.module";
|
|
7
|
+
import * as i6 from "./bbsf-datetime.module";
|
|
8
|
+
import * as i7 from "./bbsf-phone.module";
|
|
9
|
+
import * as i8 from "./bbsf-utility.module";
|
|
10
|
+
import * as i9 from "./bbsf-multilingual.module";
|
|
11
|
+
import * as i10 from "@ngrx/store-devtools";
|
|
12
|
+
/**
|
|
13
|
+
* BBSF Core Module (Legacy - For Backward Compatibility)
|
|
14
|
+
*
|
|
15
|
+
* ⚠️ **DEPRECATED**: This module imports ALL core controls (~650-800 KB) and should only be used for backward compatibility.
|
|
16
|
+
*
|
|
17
|
+
* **For better bundle optimization, use the new granular modules instead:**
|
|
18
|
+
*
|
|
19
|
+
* | Module | Size | Contains |
|
|
20
|
+
* |--------|------|----------|
|
|
21
|
+
* | **BBSFFormsBasicModule** | ~30 KB | TextBox, TextArea, CheckBox, Radio, Toggle |
|
|
22
|
+
* | **BBSFDropdownModule** | ~130 KB | DropdownList (includes ng-select ~100 KB) |
|
|
23
|
+
* | **BBSFDateTimeModule** | ~220 KB | DateTimePicker (includes Owl DateTime ~200 KB) + Date pipes |
|
|
24
|
+
* | **BBSFPhoneModule** | ~90 KB | Phone input (includes intl-tel-input ~80 KB) |
|
|
25
|
+
* | **BBSFUtilityModule** | ~80 KB | Form, Modals, Paging, PageHeader, Recaptcha |
|
|
26
|
+
* | **BBSFMultilingualModule** | ~15 KB | Multilingual text controls |
|
|
27
|
+
* | **BBSFCoreModule** | **~650-800 KB** | **ALL of the above** |
|
|
28
|
+
*
|
|
29
|
+
* **Bundle Size Comparison:**
|
|
30
|
+
* ```typescript
|
|
31
|
+
* // ❌ Old way (BBSFCoreModule): ~650-800 KB
|
|
32
|
+
* import { BBSFCoreModule } from '@bnsights/bbsf-controls';
|
|
33
|
+
*
|
|
34
|
+
* // ✅ New way (Only what you need): ~160 KB (74% smaller!)
|
|
35
|
+
* import { BBSFFormsBasicModule, BBSFDropdownModule } from '@bnsights/bbsf-controls';
|
|
36
|
+
* ```
|
|
37
|
+
*
|
|
38
|
+
* **Migration Example:**
|
|
39
|
+
* ```typescript
|
|
40
|
+
* // Before: Import everything (~650 KB)
|
|
41
|
+
* import { BBSFCoreModule } from '@bnsights/bbsf-controls';
|
|
42
|
+
*
|
|
43
|
+
* @NgModule({
|
|
44
|
+
* imports: [BBSFCoreModule]
|
|
45
|
+
* })
|
|
46
|
+
* export class MyModule { }
|
|
47
|
+
*
|
|
48
|
+
* // After: Import only what you need (~160 KB for basic forms + dropdown)
|
|
49
|
+
* import { BBSFFormsBasicModule, BBSFDropdownModule } from '@bnsights/bbsf-controls';
|
|
50
|
+
*
|
|
51
|
+
* @NgModule({
|
|
52
|
+
* imports: [
|
|
53
|
+
* BBSFFormsBasicModule, // ~30 KB - TextBox, CheckBox, etc.
|
|
54
|
+
* BBSFDropdownModule // ~130 KB - Dropdown
|
|
55
|
+
* ]
|
|
56
|
+
* })
|
|
57
|
+
* export class MyModule { }
|
|
58
|
+
* ```
|
|
59
|
+
*
|
|
60
|
+
* **Common Use Cases:**
|
|
61
|
+
* ```typescript
|
|
62
|
+
* // Use case 1: Basic forms only (~30 KB)
|
|
63
|
+
* import { BBSFFormsBasicModule } from '@bnsights/bbsf-controls';
|
|
64
|
+
*
|
|
65
|
+
* // Use case 2: Forms + Dropdown (~160 KB, 75% smaller than BBSFCoreModule)
|
|
66
|
+
* import { BBSFFormsBasicModule, BBSFDropdownModule } from '@bnsights/bbsf-controls';
|
|
67
|
+
*
|
|
68
|
+
* // Use case 3: Forms + Date picker (~250 KB, 60% smaller)
|
|
69
|
+
* import { BBSFFormsBasicModule, BBSFDateTimeModule } from '@bnsights/bbsf-controls';
|
|
70
|
+
*
|
|
71
|
+
* // Use case 4: Full set (~565 KB - still excludes unused modules)
|
|
72
|
+
* import {
|
|
73
|
+
* BBSFFormsBasicModule,
|
|
74
|
+
* BBSFDropdownModule,
|
|
75
|
+
* BBSFDateTimeModule,
|
|
76
|
+
* BBSFPhoneModule,
|
|
77
|
+
* BBSFUtilityModule,
|
|
78
|
+
* BBSFMultilingualModule
|
|
79
|
+
* } from '@bnsights/bbsf-controls';
|
|
80
|
+
* ```
|
|
81
|
+
*
|
|
82
|
+
* This module will be removed in v3.0
|
|
83
|
+
*
|
|
84
|
+
* @deprecated Use granular modules (BBSFFormsBasicModule, BBSFDropdownModule, etc.) for better tree-shaking
|
|
85
|
+
*/
|
|
86
|
+
export declare class BBSFCoreModule {
|
|
87
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BBSFCoreModule, never>;
|
|
88
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BBSFCoreModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.RouterModule, typeof i4.BBSFFormsBasicModule, typeof i5.BBSFDropdownModule, typeof i6.BBSFDateTimeModule, typeof i7.BBSFPhoneModule, typeof i8.BBSFUtilityModule, typeof i9.BBSFMultilingualModule, typeof i10.StoreDevtoolsModule], [typeof i4.BBSFFormsBasicModule, typeof i5.BBSFDropdownModule, typeof i6.BBSFDateTimeModule, typeof i7.BBSFPhoneModule, typeof i8.BBSFUtilityModule, typeof i9.BBSFMultilingualModule]>;
|
|
89
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BBSFCoreModule>;
|
|
90
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "@angular/forms";
|
|
4
|
+
import * as i3 from "@danielmoncada/angular-datetime-picker";
|
|
5
|
+
import * as i4 from "../controls/DateTimePicker/DateTimePicker.component";
|
|
6
|
+
import * as i5 from "../Shared/Pipes/bbsf-date-time.pipe";
|
|
7
|
+
import * as i6 from "../Shared/Pipes/bbsf-date.pipe";
|
|
8
|
+
/**
|
|
9
|
+
* BBSF DateTime Module
|
|
10
|
+
*
|
|
11
|
+
* Contains date/time picker control (~200 KB gzipped):
|
|
12
|
+
* - DateTimePicker (powered by Owl DateTime)
|
|
13
|
+
* - BBSFDateTimePipe
|
|
14
|
+
* - BBSFDatePipe
|
|
15
|
+
*
|
|
16
|
+
* Dependencies:
|
|
17
|
+
* - @danielmoncada/angular-datetime-picker (~200 KB)
|
|
18
|
+
*
|
|
19
|
+
* Features:
|
|
20
|
+
* - Date picker
|
|
21
|
+
* - Time picker
|
|
22
|
+
* - DateTime picker
|
|
23
|
+
* - Range selection
|
|
24
|
+
* - Custom formats
|
|
25
|
+
* - Localization support
|
|
26
|
+
*
|
|
27
|
+
* @example
|
|
28
|
+
* ```typescript
|
|
29
|
+
* import { BBSFDateTimeModule } from '@bnsights/bbsf-controls';
|
|
30
|
+
*
|
|
31
|
+
* @NgModule({
|
|
32
|
+
* imports: [BBSFDateTimeModule]
|
|
33
|
+
* })
|
|
34
|
+
* export class MyModule { }
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
export declare class BBSFDateTimeModule {
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BBSFDateTimeModule, never>;
|
|
39
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BBSFDateTimeModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.OwlDateTimeModule, typeof i3.OwlNativeDateTimeModule, typeof i4.DateInputComponent, typeof i5.BBSFDateTimePipe, typeof i6.BBSFDatePipe], [typeof i4.DateInputComponent, typeof i5.BBSFDateTimePipe, typeof i6.BBSFDatePipe]>;
|
|
40
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BBSFDateTimeModule>;
|
|
41
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "../controls/DropdownList/DropdownList.component";
|
|
3
|
+
/**
|
|
4
|
+
* BBSF Dropdown Module
|
|
5
|
+
*
|
|
6
|
+
* Contains dropdown control (~130 KB gzipped):
|
|
7
|
+
* - DropdownList (powered by ng-select)
|
|
8
|
+
*
|
|
9
|
+
* Dependencies:
|
|
10
|
+
* - @ng-select/ng-select (~100 KB)
|
|
11
|
+
*
|
|
12
|
+
* Features:
|
|
13
|
+
* - Single/Multiple selection
|
|
14
|
+
* - Search/Filter
|
|
15
|
+
* - Custom templates
|
|
16
|
+
* - Lazy loading
|
|
17
|
+
* - Virtual scrolling
|
|
18
|
+
*
|
|
19
|
+
* @example
|
|
20
|
+
* ```typescript
|
|
21
|
+
* import { BBSFDropdownModule } from '@bnsights/bbsf-controls';
|
|
22
|
+
*
|
|
23
|
+
* @NgModule({
|
|
24
|
+
* imports: [BBSFDropdownModule]
|
|
25
|
+
* })
|
|
26
|
+
* export class MyModule { }
|
|
27
|
+
* ```
|
|
28
|
+
*/
|
|
29
|
+
export declare class BBSFDropdownModule {
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BBSFDropdownModule, never>;
|
|
31
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BBSFDropdownModule, never, [typeof i1.DropdownListComponent], [typeof i1.DropdownListComponent]>;
|
|
32
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BBSFDropdownModule>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "@angular/forms";
|
|
4
|
+
import * as i3 from "ngx-summernote";
|
|
5
|
+
import * as i4 from "ngx-markdown-editor";
|
|
6
|
+
import * as i5 from "@bnsights/bbsf-utilities";
|
|
7
|
+
import * as i6 from "../controls/HtmlEditor/HtmlEditor.component";
|
|
8
|
+
import * as i7 from "../controls/MarkdownEditor/markdown-editor.component";
|
|
9
|
+
import * as i8 from "../controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component";
|
|
10
|
+
/**
|
|
11
|
+
* BBSF Editors Module
|
|
12
|
+
*
|
|
13
|
+
* Contains rich text editor controls (~800 KB gzipped):
|
|
14
|
+
* - HtmlEditorComponent: WYSIWYG HTML editor
|
|
15
|
+
* - MarkdownEditorComponent: Markdown editor with preview
|
|
16
|
+
* - MultiLingualHtmlEditorComponent: HTML editor with multilingual support
|
|
17
|
+
*
|
|
18
|
+
* Dependencies:
|
|
19
|
+
* - @kolkov/angular-editor (~300 KB)
|
|
20
|
+
* - ngx-markdown-editor (~400 KB)
|
|
21
|
+
* - ngx-script-loader
|
|
22
|
+
*
|
|
23
|
+
* @example New way (Recommended):
|
|
24
|
+
* ```typescript
|
|
25
|
+
* import { HtmlEditorComponent } from '@bnsights/bbsf-controls';
|
|
26
|
+
*
|
|
27
|
+
* @NgModule({
|
|
28
|
+
* imports: [HtmlEditorComponent]
|
|
29
|
+
* })
|
|
30
|
+
* export class MyModule { }
|
|
31
|
+
* ```
|
|
32
|
+
*
|
|
33
|
+
* @example Old way (Still works but not recommended):
|
|
34
|
+
* ```typescript
|
|
35
|
+
* import { BBSFEditorsModule } from '@bnsights/bbsf-controls';
|
|
36
|
+
*
|
|
37
|
+
* @NgModule({
|
|
38
|
+
* imports: [BBSFEditorsModule]
|
|
39
|
+
* })
|
|
40
|
+
* export class MyModule { }
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
export declare class BBSFEditorsModule {
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BBSFEditorsModule, never>;
|
|
45
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BBSFEditorsModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.NgxSummernoteModule, typeof i4.LMarkdownEditorModule, typeof i5.BBSFUtilitiesModule, typeof i6.HtmlEditorComponent, typeof i7.MarkdownEditorComponent, typeof i8.MultiLingualHtmlEditorComponent], [typeof i6.HtmlEditorComponent, typeof i7.MarkdownEditorComponent, typeof i8.MultiLingualHtmlEditorComponent]>;
|
|
46
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BBSFEditorsModule>;
|
|
47
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "../controls/TextBox/TextBox.component";
|
|
3
|
+
import * as i2 from "../controls/TextArea/TextArea.component";
|
|
4
|
+
import * as i3 from "../controls/CheckBox/CheckBox.component";
|
|
5
|
+
import * as i4 from "../controls/RadioButton/RadioButton.component";
|
|
6
|
+
import * as i5 from "../controls/Toggleslide/Toggleslide.component";
|
|
7
|
+
/**
|
|
8
|
+
* BBSF Forms Basic Module
|
|
9
|
+
*
|
|
10
|
+
* Contains basic form controls (~30 KB gzipped):
|
|
11
|
+
* - TextBox (with mask support)
|
|
12
|
+
* - TextArea
|
|
13
|
+
* - CheckBox
|
|
14
|
+
* - RadioButton
|
|
15
|
+
* - Toggle (Material slide toggle)
|
|
16
|
+
*
|
|
17
|
+
* Dependencies:
|
|
18
|
+
* - ngx-mask (for text masking)
|
|
19
|
+
* - @angular/material/slide-toggle (for toggle)
|
|
20
|
+
*
|
|
21
|
+
* @example
|
|
22
|
+
* ```typescript
|
|
23
|
+
* import { BBSFFormsBasicModule } from '@bnsights/bbsf-controls';
|
|
24
|
+
*
|
|
25
|
+
* @NgModule({
|
|
26
|
+
* imports: [BBSFFormsBasicModule]
|
|
27
|
+
* })
|
|
28
|
+
* export class MyModule { }
|
|
29
|
+
* ```
|
|
30
|
+
*/
|
|
31
|
+
export declare class BBSFFormsBasicModule {
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BBSFFormsBasicModule, never>;
|
|
33
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BBSFFormsBasicModule, never, [typeof i1.TextboxComponent, typeof i2.TextAreaComponent, typeof i3.CheckBoxComponent, typeof i4.RadioButtonComponent, typeof i5.ToggleslideComponent], [typeof i1.TextboxComponent, typeof i2.TextAreaComponent, typeof i3.CheckBoxComponent, typeof i4.RadioButtonComponent, typeof i5.ToggleslideComponent]>;
|
|
34
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BBSFFormsBasicModule>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "../controls/MultiLingualTextBox/MultiLingualTextBox.component";
|
|
3
|
+
import * as i2 from "../controls/MultiLingualTextArea/MultiLingualTextArea.component";
|
|
4
|
+
/**
|
|
5
|
+
* BBSF Multilingual Module
|
|
6
|
+
*
|
|
7
|
+
* Contains multilingual input controls (~15 KB gzipped):
|
|
8
|
+
* - MultiLingualTextBox
|
|
9
|
+
* - MultiLingualTextArea
|
|
10
|
+
*
|
|
11
|
+
* Features:
|
|
12
|
+
* - Multiple language support
|
|
13
|
+
* - Language tabs
|
|
14
|
+
* - RTL support
|
|
15
|
+
* - Validation per language
|
|
16
|
+
*
|
|
17
|
+
* @example
|
|
18
|
+
* ```typescript
|
|
19
|
+
* import { BBSFMultilingualModule } from '@bnsights/bbsf-controls';
|
|
20
|
+
*
|
|
21
|
+
* @NgModule({
|
|
22
|
+
* imports: [BBSFMultilingualModule]
|
|
23
|
+
* })
|
|
24
|
+
* export class MyModule { }
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
export declare class BBSFMultilingualModule {
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BBSFMultilingualModule, never>;
|
|
29
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BBSFMultilingualModule, never, [typeof i1.MultiLingualTextBoxComponent, typeof i2.MultiLingualTextAreaComponent], [typeof i1.MultiLingualTextBoxComponent, typeof i2.MultiLingualTextAreaComponent]>;
|
|
30
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BBSFMultilingualModule>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "../controls/Phone/Phone.component";
|
|
3
|
+
/**
|
|
4
|
+
* BBSF Phone Module
|
|
5
|
+
*
|
|
6
|
+
* Contains phone input control (~90 KB gzipped):
|
|
7
|
+
* - PhoneComponent (powered by intl-tel-input)
|
|
8
|
+
*
|
|
9
|
+
* Dependencies:
|
|
10
|
+
* - ngx-intl-tel-input (~80 KB)
|
|
11
|
+
*
|
|
12
|
+
* Features:
|
|
13
|
+
* - International phone number formatting
|
|
14
|
+
* - Country code selection
|
|
15
|
+
* - Phone validation
|
|
16
|
+
* - Auto-formatting
|
|
17
|
+
* - Preferred countries
|
|
18
|
+
*
|
|
19
|
+
* @example
|
|
20
|
+
* ```typescript
|
|
21
|
+
* import { BBSFPhoneModule } from '@bnsights/bbsf-controls';
|
|
22
|
+
*
|
|
23
|
+
* @NgModule({
|
|
24
|
+
* imports: [BBSFPhoneModule]
|
|
25
|
+
* })
|
|
26
|
+
* export class MyModule { }
|
|
27
|
+
* ```
|
|
28
|
+
*/
|
|
29
|
+
export declare class BBSFPhoneModule {
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BBSFPhoneModule, never>;
|
|
31
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BBSFPhoneModule, never, [typeof i1.PhoneComponent], [typeof i1.PhoneComponent]>;
|
|
32
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BBSFPhoneModule>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "@angular/forms";
|
|
4
|
+
import * as i3 from "@fullcalendar/angular";
|
|
5
|
+
import * as i4 from "@angular/google-maps";
|
|
6
|
+
import * as i5 from "ngx-script-loader";
|
|
7
|
+
import * as i6 from "angular-ng-autocomplete";
|
|
8
|
+
import * as i7 from "ngx-infinite-scroll";
|
|
9
|
+
import * as i8 from "@ng-bootstrap/ng-bootstrap";
|
|
10
|
+
import * as i9 from "@bnsights/bbsf-utilities";
|
|
11
|
+
import * as i10 from "../controls/Calendar/Calendar.component";
|
|
12
|
+
import * as i11 from "../controls/MapAutoComplete/MapAutoComplete.component";
|
|
13
|
+
import * as i12 from "../controls/AutocompleteTextBox/AutocompleteTextBox.component";
|
|
14
|
+
import * as i13 from "../controls/TagsInput/TagsInput.component";
|
|
15
|
+
import * as i14 from "../controls/Repeater/repeater/repeater.component";
|
|
16
|
+
import * as i15 from "../controls/Repeater/repeater-table/repeater-table.component";
|
|
17
|
+
import * as i16 from "../controls/Repeater/repeater-field-builder/repeater-field-builder.component";
|
|
18
|
+
import * as i17 from "../controls/Repeater/repeater-item-field/repeater-item-field.component";
|
|
19
|
+
import * as i18 from "../Shared/Components/ng-tag-input";
|
|
20
|
+
import * as i19 from "../Shared/Directives/template-name.directive";
|
|
21
|
+
/**
|
|
22
|
+
* BBSF Specialized Module
|
|
23
|
+
*
|
|
24
|
+
* Contains specialized and advanced controls (~300 KB gzipped):
|
|
25
|
+
* - CalendarComponent: Full-featured calendar with FullCalendar
|
|
26
|
+
* - MapAutoCompleteComponent: Google Maps autocomplete integration
|
|
27
|
+
* - AutocompleteTextBoxComponent: Autocomplete text input
|
|
28
|
+
* - TagsInputComponent: Tags input with autocomplete
|
|
29
|
+
* - RepeaterComponent: Dynamic repeating form fields
|
|
30
|
+
* - BTagsInputComponent: Advanced tag input component
|
|
31
|
+
*
|
|
32
|
+
* Dependencies:
|
|
33
|
+
* - @fullcalendar/angular (~150 KB)
|
|
34
|
+
* - @angular/google-maps
|
|
35
|
+
* - ngx-script-loader
|
|
36
|
+
* - angular-ng-autocomplete
|
|
37
|
+
* - ngx-infinite-scroll
|
|
38
|
+
*
|
|
39
|
+
* @example New way (Recommended):
|
|
40
|
+
* ```typescript
|
|
41
|
+
* import { CalendarComponent } from '@bnsights/bbsf-controls';
|
|
42
|
+
*
|
|
43
|
+
* @NgModule({
|
|
44
|
+
* imports: [CalendarComponent]
|
|
45
|
+
* })
|
|
46
|
+
* export class MyModule { }
|
|
47
|
+
* ```
|
|
48
|
+
*
|
|
49
|
+
* @example Old way (Still works but not recommended):
|
|
50
|
+
* ```typescript
|
|
51
|
+
* import { BBSFSpecializedModule } from '@bnsights/bbsf-controls';
|
|
52
|
+
*
|
|
53
|
+
* @NgModule({
|
|
54
|
+
* imports: [BBSFSpecializedModule]
|
|
55
|
+
* })
|
|
56
|
+
* export class MyModule { }
|
|
57
|
+
* ```
|
|
58
|
+
*/
|
|
59
|
+
export declare class BBSFSpecializedModule {
|
|
60
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BBSFSpecializedModule, never>;
|
|
61
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BBSFSpecializedModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.FullCalendarModule, typeof i4.GoogleMapsModule, typeof i5.ScriptLoaderModule, typeof i6.AutocompleteLibModule, typeof i7.InfiniteScrollModule, typeof i8.NgbModule, typeof i9.BBSFUtilitiesModule, typeof i10.CalendarComponent, typeof i11.MapAutoCompleteComponent, typeof i12.AutocompleteTextBoxComponent, typeof i13.TagsInputComponent, typeof i14.RepeaterComponent, typeof i15.RepeaterTableComponent, typeof i16.RepeaterFieldBuilderComponent, typeof i17.RepeaterItemFieldComponent, typeof i18.BTagsInputComponent, typeof i19.NgTemplateNameDirective], [typeof i10.CalendarComponent, typeof i11.MapAutoCompleteComponent, typeof i12.AutocompleteTextBoxComponent, typeof i13.TagsInputComponent, typeof i14.RepeaterComponent, typeof i15.RepeaterTableComponent, typeof i16.RepeaterFieldBuilderComponent, typeof i17.RepeaterItemFieldComponent, typeof i18.BTagsInputComponent, typeof i19.NgTemplateNameDirective]>;
|
|
62
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BBSFSpecializedModule>;
|
|
63
|
+
}
|