@bnsights/bbsf-controls 1.0.170 → 1.0.171
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 +10 -4
- package/esm2022/lib/Shared/Components/app-base-component.mjs +4 -4
- package/esm2022/lib/Shared/Components/ng-tag-input.mjs +7 -7
- package/esm2022/lib/Shared/Directives/appPreventDoubleClick.directive.mjs +38 -0
- package/esm2022/lib/Shared/Directives/template-name.directive.mjs +5 -6
- package/esm2022/lib/Shared/Models/PagingOptions.mjs +3 -1
- package/esm2022/lib/Shared/Pipes/bbsf-date-time.pipe.mjs +5 -6
- package/esm2022/lib/Shared/Pipes/bbsf-date.pipe.mjs +5 -6
- package/esm2022/lib/Shared/default_intl.mjs +4 -4
- package/esm2022/lib/Shared/services/ControlUtility.mjs +4 -4
- package/esm2022/lib/Shared/services/GlobalSettings.service.mjs +4 -4
- package/esm2022/lib/Shared/services/OnPagingFiltersChange.service.mjs +4 -4
- package/esm2022/lib/Shared/services/file-upload.service.mjs +4 -4
- package/esm2022/lib/Shared/services/render-component-service.service.mjs +4 -4
- package/esm2022/lib/Shared/services/validationErrorMassage.service.mjs +4 -4
- package/esm2022/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.mjs +5 -5
- package/esm2022/lib/controls/Calendar/Calendar.component.mjs +5 -5
- package/esm2022/lib/controls/CheckBox/CheckBox.component.mjs +5 -5
- package/esm2022/lib/controls/ConfirmationModal/ConfirmationModal.component.mjs +5 -5
- package/esm2022/lib/controls/DateTimePicker/DateTimePicker.component.mjs +7 -9
- package/esm2022/lib/controls/DropdownList/DropdownList.component.mjs +13 -6
- package/esm2022/lib/controls/FileUplaod/FileUplaod.component.mjs +5 -5
- package/esm2022/lib/controls/Form/Form.component.mjs +5 -5
- package/esm2022/lib/controls/HtmlEditor/HtmlEditor.component.mjs +5 -5
- package/esm2022/lib/controls/ImageUpload/ImageUpload.component.mjs +5 -5
- package/esm2022/lib/controls/MapAutoComplete/MapAutoComplete.component.mjs +7 -7
- package/esm2022/lib/controls/MarkdownEditor/markdown-editor.component.mjs +5 -5
- package/esm2022/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.mjs +5 -5
- package/esm2022/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.mjs +5 -5
- package/esm2022/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.mjs +14 -31
- package/esm2022/lib/controls/Paging/JwPagination.component.mjs +5 -6
- package/esm2022/lib/controls/Paging/Paging.component.mjs +298 -14
- package/esm2022/lib/controls/Phone/Phone.component.mjs +5 -5
- package/esm2022/lib/controls/ProfileImageUploader/ProfileImageUploader.component.mjs +8 -8
- package/esm2022/lib/controls/RadioButton/RadioButton.component.mjs +5 -5
- package/esm2022/lib/controls/Recaptcha/Recaptcha.component.mjs +8 -8
- package/esm2022/lib/controls/Repeater/repeater/repeater.component.mjs +5 -5
- package/esm2022/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.mjs +5 -5
- package/esm2022/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.mjs +5 -5
- package/esm2022/lib/controls/Repeater/repeater-table/repeater-table.component.mjs +5 -5
- package/esm2022/lib/controls/TagsInput/TagsInput.component.mjs +5 -5
- package/esm2022/lib/controls/TextArea/TextArea.component.mjs +45 -29
- package/esm2022/lib/controls/TextBox/TextBox.component.mjs +10 -9
- package/esm2022/lib/controls/Toggleslide/Toggleslide.component.mjs +5 -5
- package/esm2022/lib/controls/bbsf-controls.module.mjs +46 -34
- package/esm2022/lib/controls/page-header-component/page-header-component.component.mjs +8 -7
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/bnsights-bbsf-controls.mjs +604 -268
- package/fesm2022/bnsights-bbsf-controls.mjs.map +1 -1
- package/lib/Shared/Directives/appPreventDoubleClick.directive.d.ts +12 -0
- package/lib/Shared/Models/PagingOptions.d.ts +2 -0
- package/lib/controls/DropdownList/DropdownList.component.d.ts +2 -1
- package/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.d.ts +1 -1
- package/lib/controls/Paging/Paging.component.d.ts +56 -4
- package/lib/controls/TextArea/TextArea.component.d.ts +1 -0
- package/lib/controls/bbsf-controls.module.d.ts +29 -25
- package/package.json +19 -20
- package/public-api.d.ts +1 -0
- package/bnsights-bbsf-controls-1.0.170.tgz +0 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ElementRef, Renderer2 } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PreventDoubleClickDirective {
|
|
4
|
+
private renderer;
|
|
5
|
+
private elementRef;
|
|
6
|
+
debounceTime: number;
|
|
7
|
+
private isDisabled;
|
|
8
|
+
constructor(renderer: Renderer2, elementRef: ElementRef);
|
|
9
|
+
onClick(event: Event): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PreventDoubleClickDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PreventDoubleClickDirective, "[appPreventDoubleClick]", never, { "debounceTime": { "alias": "debounceTime"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -20,6 +20,7 @@ export declare class DropdownListComponent implements OnInit {
|
|
|
20
20
|
constructor(onChangeService: OnPagingFiltersChangeService, controlUtility: ControlUtility, controlContainer: ControlContainer, dropdownListControlHost: FormGroupDirective, utilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
|
|
21
21
|
group: FormGroup;
|
|
22
22
|
options: DropdownOptions;
|
|
23
|
+
DropdownTemplateVariable: any;
|
|
23
24
|
dropdownListFormControl: AbstractControl;
|
|
24
25
|
dropdownSettings: {};
|
|
25
26
|
selectedItems: DropdownListItem[];
|
|
@@ -51,5 +52,5 @@ export declare class DropdownListComponent implements OnInit {
|
|
|
51
52
|
isValid: () => void;
|
|
52
53
|
updateDataSource: (dataSource: DropdownListItem[]) => void;
|
|
53
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownListComponent, [null, null, { optional: true; }, null, null, null, null]>;
|
|
54
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownListComponent, "BBSF-DropdownList", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; "onClear": "onClear"; }, never, never, false, never>;
|
|
55
|
+
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, false, never>;
|
|
55
56
|
}
|
|
@@ -72,6 +72,6 @@ export declare class MultiLingualTextBoxComponent implements OnInit {
|
|
|
72
72
|
showInputUsingLanguageMode(): void;
|
|
73
73
|
onArabicFocus(isFocus: boolean): void;
|
|
74
74
|
onEnglishFocus(isFocus: boolean): void;
|
|
75
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MultiLingualTextBoxComponent, [
|
|
75
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultiLingualTextBoxComponent, [null, { optional: true; }, null, null, null, null, null]>;
|
|
76
76
|
static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualTextBoxComponent, "BBSF-MultiLingualTextBox", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
77
77
|
}
|
|
@@ -1,18 +1,22 @@
|
|
|
1
|
-
import { OnInit, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
-
import { Router } from '@angular/router';
|
|
1
|
+
import { OnInit, EventEmitter, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { Router, ActivatedRoute } from '@angular/router';
|
|
3
3
|
import { HttpClient, HttpHeaders } from '@angular/common/http';
|
|
4
4
|
import { PagingOptions } from '../../Shared/Models/PagingOptions';
|
|
5
5
|
import { Subscription } from 'rxjs';
|
|
6
6
|
import { FormGroup } from '@angular/forms';
|
|
7
7
|
import { OnPagingFiltersChangeService } from '../../Shared/services/OnPagingFiltersChange.service';
|
|
8
8
|
import { RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
9
|
+
import { Location } from '@angular/common';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class PagingComponent<T> implements OnInit, OnDestroy {
|
|
11
12
|
utilityService: UtilityService;
|
|
12
13
|
private http;
|
|
13
14
|
private router;
|
|
15
|
+
private route;
|
|
16
|
+
private location;
|
|
14
17
|
private onChangeService;
|
|
15
18
|
private requestHandlerService;
|
|
19
|
+
private cdr;
|
|
16
20
|
items: any[];
|
|
17
21
|
pageOfItems: Array<any>;
|
|
18
22
|
result: T[];
|
|
@@ -35,12 +39,44 @@ export declare class PagingComponent<T> implements OnInit, OnDestroy {
|
|
|
35
39
|
isFirstCall: boolean;
|
|
36
40
|
previousFilters: any;
|
|
37
41
|
Items: EventEmitter<T[]>;
|
|
42
|
+
pageStateRestored: EventEmitter<{
|
|
43
|
+
page: number;
|
|
44
|
+
pageSize: number;
|
|
45
|
+
}>;
|
|
38
46
|
options: PagingOptions;
|
|
39
47
|
group: FormGroup;
|
|
40
48
|
subscriptions: Subscription;
|
|
41
|
-
|
|
49
|
+
private isNavigatingBack;
|
|
50
|
+
private isRestoringFilters;
|
|
51
|
+
private pageHistory;
|
|
52
|
+
private currentHistoryIndex;
|
|
53
|
+
constructor(utilityService: UtilityService, http: HttpClient, router: Router, route: ActivatedRoute, location: Location, onChangeService: OnPagingFiltersChangeService, requestHandlerService: RequestHandlerService, cdr: ChangeDetectorRef);
|
|
42
54
|
ngOnDestroy(): void;
|
|
43
55
|
ngOnInit(): void;
|
|
56
|
+
/**
|
|
57
|
+
* Initialize browser navigation support
|
|
58
|
+
*/
|
|
59
|
+
private initializeBrowserNavigation;
|
|
60
|
+
/**
|
|
61
|
+
* Restore state from browser history on initial load
|
|
62
|
+
*/
|
|
63
|
+
private restoreStateFromBrowserHistory;
|
|
64
|
+
/**
|
|
65
|
+
* Listen to browser back/forward navigation
|
|
66
|
+
*/
|
|
67
|
+
onPopState(event: PopStateEvent): void;
|
|
68
|
+
/**
|
|
69
|
+
* Restore page state from browser history
|
|
70
|
+
*/
|
|
71
|
+
private restorePageStateFromHistory;
|
|
72
|
+
/**
|
|
73
|
+
* Update local history index to match browser state
|
|
74
|
+
*/
|
|
75
|
+
private updateLocalHistoryIndex;
|
|
76
|
+
/**
|
|
77
|
+
* Update browser history state with current page and page size
|
|
78
|
+
*/
|
|
79
|
+
private updateHistoryState;
|
|
44
80
|
ngAfterViewInit(): void;
|
|
45
81
|
onDropDownChange(result: any): void;
|
|
46
82
|
onChangePage(Page: any): void;
|
|
@@ -49,10 +85,26 @@ export declare class PagingComponent<T> implements OnInit, OnDestroy {
|
|
|
49
85
|
getItemList(page: any, IsFilterUpdated?: boolean): void;
|
|
50
86
|
reinitializePaging: () => void;
|
|
51
87
|
updatePaging: () => void;
|
|
88
|
+
/**
|
|
89
|
+
* Force update the current page (useful for external components)
|
|
90
|
+
*/
|
|
91
|
+
setCurrentPage(page: number): void;
|
|
92
|
+
/**
|
|
93
|
+
* Get the current page number
|
|
94
|
+
*/
|
|
95
|
+
getCurrentPage(): number;
|
|
96
|
+
/**
|
|
97
|
+
* Restore filter values to form controls
|
|
98
|
+
*/
|
|
99
|
+
private restoreFilterValues;
|
|
52
100
|
castItems(objectArr: any[]): T[];
|
|
53
101
|
setText(pagesNumber: number, itemsNumber: number): void;
|
|
54
102
|
clearFilters(): void;
|
|
103
|
+
/**
|
|
104
|
+
* Clear page history state
|
|
105
|
+
*/
|
|
106
|
+
private clearHistoryState;
|
|
55
107
|
getFiltersValue(): {};
|
|
56
108
|
static ɵfac: i0.ɵɵFactoryDeclaration<PagingComponent<any>, never>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PagingComponent<any>, "BBSF-Paging", never, { "options": { "alias": "options"; "required": false; }; "group": { "alias": "group"; "required": false; }; }, { "Items": "Items"; }, never, never, false, 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, false, never>;
|
|
58
110
|
}
|
|
@@ -58,6 +58,7 @@ export declare class TextAreaComponent implements OnInit {
|
|
|
58
58
|
loadSelectedSpeechLanguage(): void;
|
|
59
59
|
startSpeechRecognition(): void;
|
|
60
60
|
stopSpeechRecognition(): void;
|
|
61
|
+
fireOnChange(text: any): void;
|
|
61
62
|
ngOnDestroy(): void;
|
|
62
63
|
onSpeechLanguageChange(event: any): void;
|
|
63
64
|
enableOrDisableLanguageSelect(isEnabled?: boolean): void;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IConfig } from 'ngx-mask';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
import * as i1 from "./DateTimePicker/DateTimePicker.component";
|
|
3
4
|
import * as i2 from "./FileUplaod/FileUplaod.component";
|
|
@@ -33,37 +34,40 @@ import * as i31 from "../Shared/Components/ng-tag-input";
|
|
|
33
34
|
import * as i32 from "./Recaptcha/Recaptcha.component";
|
|
34
35
|
import * as i33 from "./page-header-component/page-header-component.component";
|
|
35
36
|
import * as i34 from "./MarkdownEditor/markdown-editor.component";
|
|
36
|
-
import * as i35 from "
|
|
37
|
-
import * as i36 from "@angular/
|
|
38
|
-
import * as i37 from "
|
|
39
|
-
import * as i38 from "@
|
|
40
|
-
import * as i39 from "
|
|
41
|
-
import * as i40 from "
|
|
42
|
-
import * as i41 from "@
|
|
43
|
-
import * as i42 from "
|
|
44
|
-
import * as i43 from "
|
|
45
|
-
import * as i44 from "
|
|
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";
|
|
46
47
|
import * as i45 from "ngx-summernote";
|
|
47
48
|
import * as i46 from "@angular/material/slide-toggle";
|
|
48
49
|
import * as i47 from "ngx-intl-tel-input";
|
|
49
50
|
import * as i48 from "@danielmoncada/angular-datetime-picker";
|
|
50
51
|
import * as i49 from "ng-block-ui";
|
|
51
|
-
import * as i50 from "
|
|
52
|
-
import * as i51 from "@angular/
|
|
53
|
-
import * as i52 from "
|
|
54
|
-
import * as i53 from "
|
|
55
|
-
import * as i54 from "
|
|
56
|
-
import * as i55 from "@
|
|
57
|
-
import * as i56 from "
|
|
58
|
-
import * as i57 from "
|
|
59
|
-
import * as i58 from "
|
|
60
|
-
import * as i59 from "
|
|
61
|
-
import * as i60 from "
|
|
62
|
-
import * as i61 from "
|
|
63
|
-
import * as i62 from "ngx-
|
|
64
|
-
import * as i63 from "
|
|
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";
|
|
68
|
+
export declare let options: Partial<IConfig> | (() => Partial<IConfig>);
|
|
65
69
|
export declare class BBSFControlsModule {
|
|
66
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<BBSFControlsModule, never>;
|
|
67
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BBSFControlsModule, [typeof i1.DateInputComponent, typeof i2.FileUploadComponent, typeof i3.MultiLingualTextBoxComponent, typeof i4.TextboxComponent, typeof i5.TextAreaComponent, typeof i6.MultiLingualTextAreaComponent, typeof i7.CheckBoxComponent, typeof i8.DropdownListComponent, typeof i9.PhoneComponent, typeof i10.ToggleslideComponent, typeof i11.HtmlEditorComponent, typeof i12.MultiLingualHtmlEditorComponent, typeof i13.ImageUploaderComponent, typeof i14.ProfileImageUploaderComponent, typeof i15.CalendarComponent, typeof i16.MapAutoCompleteComponent, typeof i17.AutocompleteTextBoxComponent, typeof i18.TagsInputComponent, typeof i19.PagingComponent, typeof i20.JwPaginationComponent, typeof i21.RadioButtonComponent, typeof i22.FormComponent, typeof i23.ConfirmationModalComponent, typeof i24.RepeaterComponent, typeof i25.RepeaterFieldBuilderComponent, typeof i26.NgTemplateNameDirective, typeof i27.RepeaterItemFieldComponent, typeof i28.RepeaterTableComponent, typeof i29.BBSFDateTimePipe, typeof i30.BBSFDatePipe, typeof i31.BTagsInputComponent, typeof i32.RecaptchaComponent, typeof i33.PageHeaderComponentComponent, typeof i34.MarkdownEditorComponent
|
|
71
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BBSFControlsModule, [typeof i1.DateInputComponent, typeof i2.FileUploadComponent, typeof i3.MultiLingualTextBoxComponent, typeof i4.TextboxComponent, typeof i5.TextAreaComponent, typeof i6.MultiLingualTextAreaComponent, typeof i7.CheckBoxComponent, typeof i8.DropdownListComponent, typeof i9.PhoneComponent, typeof i10.ToggleslideComponent, typeof i11.HtmlEditorComponent, typeof i12.MultiLingualHtmlEditorComponent, typeof i13.ImageUploaderComponent, typeof i14.ProfileImageUploaderComponent, typeof i15.CalendarComponent, typeof i16.MapAutoCompleteComponent, typeof i17.AutocompleteTextBoxComponent, typeof i18.TagsInputComponent, typeof i19.PagingComponent, typeof i20.JwPaginationComponent, typeof i21.RadioButtonComponent, typeof i22.FormComponent, typeof i23.ConfirmationModalComponent, typeof i24.RepeaterComponent, typeof i25.RepeaterFieldBuilderComponent, typeof i26.NgTemplateNameDirective, typeof i27.RepeaterItemFieldComponent, typeof i28.RepeaterTableComponent, typeof i29.BBSFDateTimePipe, typeof i30.BBSFDatePipe, typeof i31.BTagsInputComponent, typeof i32.RecaptchaComponent, typeof i33.PageHeaderComponentComponent, typeof i34.MarkdownEditorComponent, typeof i35.PreventDoubleClickDirective], [typeof i36.CommonModule, typeof i37.InfiniteScrollModule, typeof i38.NgSelectModule, typeof i39.FullCalendarModule, typeof i40.AngularCropperjsModule, typeof i41.NgbModule, typeof i42.NgxDropzoneModule, typeof i43.FileUploadModule, typeof i44.NgxMaskDirective, typeof i44.NgxMaskPipe, typeof i45.NgxSummernoteModule, typeof i46.MatSlideToggleModule, typeof i47.NgxIntlTelInputModule, typeof i48.OwlDateTimeModule, typeof i48.OwlNativeDateTimeModule, typeof i36.CommonModule, typeof i49.BlockUIModule, typeof i50.ReactiveFormsModule, typeof i51.RouterModule, typeof i52.ToastrModule, typeof i53.HttpClientModule, typeof i54.OverlayModule, typeof i55.StoreDevtoolsModule, typeof i50.FormsModule, typeof i56.BsDatepickerModule, typeof i57.TypeaheadModule, typeof i58.AngularEditorModule, typeof i59.AutocompleteLibModule, typeof i60.BBSFUtilitiesModule, typeof i61.InlineSVGModule, typeof i62.SweetAlert2Module, typeof i63.ScriptLoaderModule, typeof i64.GoogleMapsModule, typeof i65.LMarkdownEditorModule], [typeof i1.DateInputComponent, typeof i2.FileUploadComponent, typeof i3.MultiLingualTextBoxComponent, typeof i4.TextboxComponent, typeof i5.TextAreaComponent, typeof i6.MultiLingualTextAreaComponent, typeof i7.CheckBoxComponent, typeof i8.DropdownListComponent, typeof i9.PhoneComponent, typeof i10.ToggleslideComponent, typeof i11.HtmlEditorComponent, typeof i12.MultiLingualHtmlEditorComponent, typeof i13.ImageUploaderComponent, typeof i14.ProfileImageUploaderComponent, typeof i15.CalendarComponent, typeof i16.MapAutoCompleteComponent, typeof i17.AutocompleteTextBoxComponent, typeof i18.TagsInputComponent, typeof i19.PagingComponent, typeof i20.JwPaginationComponent, typeof i21.RadioButtonComponent, typeof i22.FormComponent, typeof i19.PagingComponent, typeof i23.ConfirmationModalComponent, typeof i24.RepeaterComponent, typeof i25.RepeaterFieldBuilderComponent, typeof i26.NgTemplateNameDirective, typeof i27.RepeaterItemFieldComponent, typeof i28.RepeaterTableComponent, typeof i29.BBSFDateTimePipe, typeof i30.BBSFDatePipe, typeof i32.RecaptchaComponent, typeof i33.PageHeaderComponentComponent, typeof i34.MarkdownEditorComponent, typeof i35.PreventDoubleClickDirective]>;
|
|
68
72
|
static ɵinj: i0.ɵɵInjectorDeclaration<BBSFControlsModule>;
|
|
69
73
|
}
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bnsights/bbsf-controls",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.171",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/animations": "^
|
|
6
|
-
"@angular/cdk": "^
|
|
7
|
-
"@angular/common": "^
|
|
8
|
-
"@angular/compiler": "^
|
|
9
|
-
"@angular/core": "^
|
|
10
|
-
"@angular/forms": "^
|
|
11
|
-
"@angular/localize": "^
|
|
12
|
-
"@angular/router": "^
|
|
5
|
+
"@angular/animations": "^17.0.5",
|
|
6
|
+
"@angular/cdk": "^17.0.2",
|
|
7
|
+
"@angular/common": "^17.0.5",
|
|
8
|
+
"@angular/compiler": "^17.0.5",
|
|
9
|
+
"@angular/core": "^17.0.5",
|
|
10
|
+
"@angular/forms": "^17.0.5",
|
|
11
|
+
"@angular/localize": "^17.0.5",
|
|
12
|
+
"@angular/router": "^17.0.5"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@angular/google-maps": "^
|
|
16
|
-
"@bnsights/bbsf-utilities": "^1.0.
|
|
15
|
+
"@angular/google-maps": "^17.0.3",
|
|
16
|
+
"@bnsights/bbsf-utilities": "^1.0.60",
|
|
17
17
|
"@danielmoncada/angular-datetime-picker": "^17.0.0",
|
|
18
18
|
"@fullcalendar/angular": "^6.1.10",
|
|
19
19
|
"@fullcalendar/core": "^6.1.10",
|
|
@@ -23,19 +23,19 @@
|
|
|
23
23
|
"@fullcalendar/timegrid": "^6.1.10",
|
|
24
24
|
"@googlemaps/js-api-loader": "1.16.2",
|
|
25
25
|
"@kolkov/angular-editor": "^3.0.0-beta.0",
|
|
26
|
-
"@ng-bootstrap/ng-bootstrap": "^
|
|
26
|
+
"@ng-bootstrap/ng-bootstrap": "^16.0.0",
|
|
27
27
|
"@ng-select/ng-select": "^12.0.4",
|
|
28
28
|
"@ngrx/store": "^17.0.1",
|
|
29
29
|
"@ngrx/store-devtools": "^17.0.1",
|
|
30
30
|
"@primeng/themes": "^19.0.9",
|
|
31
|
-
"@sweetalert2/ngx-sweetalert2": "
|
|
31
|
+
"@sweetalert2/ngx-sweetalert2": "12.2.0",
|
|
32
32
|
"@types/file-saver": "^2.0.7",
|
|
33
33
|
"@types/google.maps": "^3.54.10",
|
|
34
34
|
"ace-builds": "^1.35.4",
|
|
35
35
|
"angular-cropperjs": "^14.0.1",
|
|
36
36
|
"angular-froala-wysiwyg": "^4.1.3",
|
|
37
37
|
"angular-ng-autocomplete": "2.0.12",
|
|
38
|
-
"bootstrap": "^
|
|
38
|
+
"bootstrap": "^4.6.0",
|
|
39
39
|
"cropperjs": "^1.6.1",
|
|
40
40
|
"css-loader": "^6.8.1",
|
|
41
41
|
"file-saver": "^2.0.5",
|
|
@@ -46,23 +46,22 @@
|
|
|
46
46
|
"intl-tel-input": "^18.2.1",
|
|
47
47
|
"jquery": "^3.7.1",
|
|
48
48
|
"moment": "^2.29.4",
|
|
49
|
-
"ng-block-ui": "^4.0.1",
|
|
50
49
|
"ng-inline-svg-2": "^15.0.1",
|
|
51
50
|
"ng-pick-datetime": "7.0.0",
|
|
52
|
-
"ng2-file-upload": "^
|
|
53
|
-
"ngx-bootstrap": "^
|
|
51
|
+
"ng2-file-upload": "^5.0.0",
|
|
52
|
+
"ngx-bootstrap": "^11.0.2",
|
|
54
53
|
"ngx-dropzone": "^3.1.0",
|
|
55
54
|
"ngx-file-up": "^1.4.7",
|
|
56
55
|
"ngx-highlight-js": "^17.0.0",
|
|
57
|
-
"ngx-infinite-scroll": "^
|
|
58
|
-
"ngx-intl-tel-input": "^3.2.
|
|
56
|
+
"ngx-infinite-scroll": "^17.0.0",
|
|
57
|
+
"ngx-intl-tel-input": "^3.2.0",
|
|
59
58
|
"ngx-markdown-editor": "^5.3.4",
|
|
60
59
|
"ngx-mask": "^17.0.4",
|
|
61
60
|
"ngx-pager": "^1.0.6",
|
|
62
61
|
"ngx-script-loader": "^3.0.0",
|
|
63
62
|
"ngx-summernote": "^1.0.0",
|
|
64
63
|
"summernote": "^0.8.20",
|
|
65
|
-
"sweetalert2": "
|
|
64
|
+
"sweetalert2": "11.10.1",
|
|
66
65
|
"tslib": "^2.6.2"
|
|
67
66
|
},
|
|
68
67
|
"module": "fesm2022/bnsights-bbsf-controls.mjs",
|
package/public-api.d.ts
CHANGED
|
@@ -90,6 +90,7 @@ export * from './lib/Shared/Models/filter-options';
|
|
|
90
90
|
export * from './lib/Shared/Models/control-filter-Item';
|
|
91
91
|
export * from './lib/Shared/Models/bread-crumb';
|
|
92
92
|
export * from './lib/Shared/Directives/template-name.directive';
|
|
93
|
+
export * from './lib/Shared/Directives/appPreventDoubleClick.directive';
|
|
93
94
|
export * from './lib/Shared/Pipes/bbsf-date-time.pipe';
|
|
94
95
|
export * from './lib/Shared/Pipes/bbsf-date.pipe';
|
|
95
96
|
export * from './lib/Shared/Models/MarkdownEditorOptions';
|
|
Binary file
|