@bnsights/bbsf-controls 1.0.88 → 1.0.89

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.
Files changed (38) hide show
  1. package/README.md +5 -0
  2. package/bnsights-bbsf-controls-1.0.89.tgz +0 -0
  3. package/bnsights-bbsf-controls.metadata.json +1 -1
  4. package/bundles/bnsights-bbsf-controls.umd.js +55 -35
  5. package/bundles/bnsights-bbsf-controls.umd.js.map +1 -1
  6. package/esm2015/lib/Shared/Models/datePickerOptions.js +1 -1
  7. package/esm2015/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.js +4 -3
  8. package/esm2015/lib/controls/Calendar/Calendar.component.js +2 -1
  9. package/esm2015/lib/controls/CheckBox/CheckBox.component.js +3 -2
  10. package/esm2015/lib/controls/DateTimePicker/DateTimePicker.component.js +11 -5
  11. package/esm2015/lib/controls/DropdownList/DropdownList.component.js +4 -3
  12. package/esm2015/lib/controls/FileUplaod/FileUplaod.component.js +3 -3
  13. package/esm2015/lib/controls/HtmlEditor/HtmlEditor.component.js +3 -2
  14. package/esm2015/lib/controls/Phone/Phone.component.js +7 -2
  15. package/esm2015/lib/controls/Recaptcha/Recaptcha.component.js +3 -2
  16. package/esm2015/lib/controls/TagsInput/TagsInput.component.js +4 -3
  17. package/esm2015/lib/controls/TextArea/TextArea.component.js +3 -2
  18. package/esm2015/lib/controls/TextBox/TextBox.component.js +3 -2
  19. package/esm2015/lib/controls/Toggleslide/toggleslide.component.js +3 -2
  20. package/esm2015/lib/controls/bbsf-controls.module.js +7 -11
  21. package/esm2015/lib/controls/page-header-component/page-header-component.component.js +2 -2
  22. package/fesm2015/bnsights-bbsf-controls.js +52 -32
  23. package/fesm2015/bnsights-bbsf-controls.js.map +1 -1
  24. package/lib/Shared/Models/datePickerOptions.d.ts +1 -1
  25. package/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.d.ts +1 -0
  26. package/lib/controls/Calendar/Calendar.component.d.ts +5 -6
  27. package/lib/controls/CheckBox/CheckBox.component.d.ts +1 -0
  28. package/lib/controls/DateTimePicker/DateTimePicker.component.d.ts +5 -2
  29. package/lib/controls/DropdownList/DropdownList.component.d.ts +1 -0
  30. package/lib/controls/HtmlEditor/HtmlEditor.component.d.ts +1 -0
  31. package/lib/controls/Phone/Phone.component.d.ts +4 -1
  32. package/lib/controls/Recaptcha/Recaptcha.component.d.ts +1 -0
  33. package/lib/controls/TagsInput/TagsInput.component.d.ts +1 -0
  34. package/lib/controls/TextArea/TextArea.component.d.ts +1 -0
  35. package/lib/controls/TextBox/TextBox.component.d.ts +1 -0
  36. package/lib/controls/Toggleslide/toggleslide.component.d.ts +1 -0
  37. package/package.json +9 -9
  38. package/bnsights-bbsf-controls-1.0.88.tgz +0 -0
@@ -14,7 +14,7 @@ export declare class DatePickerOptions extends ControlOptionsBase {
14
14
  EnableCopyToClipboard: boolean;
15
15
  IsGMT: boolean;
16
16
  /**To set First Day Of Week to DatePicker */
17
- FirstDayOfWeek: Number;
17
+ FirstDayOfWeek: number;
18
18
  /**To set Hour12Timer to DatePicker is 12 Hour or 24 Hour*/
19
19
  Hour12Timer: boolean;
20
20
  /**To set PickerType to DatePicker is Calendar or Timer Or Both */
@@ -38,6 +38,7 @@ export declare class AutocompleteTextBoxComponent implements OnInit {
38
38
  dataList: any[];
39
39
  SelectedValue: string;
40
40
  avatarImage: string;
41
+ textDir: any;
41
42
  ngOnInit(): void;
42
43
  ngAfterViewInit(): void;
43
44
  resetError: () => void;
@@ -1,11 +1,10 @@
1
1
  import { FullCalendarComponent } from '@fullcalendar/angular';
2
- import { EventInput } from '@fullcalendar/core';
2
+ import * as core from '@fullcalendar/core';
3
3
  import { OnInit } from '@angular/core';
4
4
  import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
5
5
  import { ErrorMassageValidation } from '../../Shared/services/validationErrorMassage.service';
6
6
  import { ControlUtility } from '../../Shared/services/ControlUtility';
7
7
  import { CalendarOptions } from '../../Shared/Models/CalendarOptions';
8
- import { CalendarOptions as CalendarOptionsModel, EventApi } from '@fullcalendar/angular';
9
8
  import { BBSFTranslateService, ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
10
9
  export declare class CalendarComponent implements OnInit {
11
10
  private ErrorHandler;
@@ -22,11 +21,11 @@ export declare class CalendarComponent implements OnInit {
22
21
  CalendarFormControl: AbstractControl;
23
22
  calendarComponent: FullCalendarComponent;
24
23
  calendarVisible: boolean;
25
- calendarOptions: CalendarOptionsModel;
26
- currentEvents: EventApi[];
27
- calendarPlugins: import("@fullcalendar/common").PluginDef[];
24
+ calendarOptions: core.CalendarOptions;
25
+ currentEvents: core.EventApi[];
26
+ calendarPlugins: core.PluginDef[];
28
27
  calendarWeekends: boolean;
29
- calendarEvents: EventInput[];
28
+ calendarEvents: core.EventInput[];
30
29
  DefaultView: string;
31
30
  CalendarViews: string;
32
31
  locales: any[];
@@ -19,6 +19,7 @@ export declare class CheckBoxComponent implements OnInit {
19
19
  markAllAsTouched: boolean;
20
20
  validationRules: any[];
21
21
  validationRulesasync: any[];
22
+ textDir: any;
22
23
  ngOnInit(): void;
23
24
  ngAfterViewInit(): void;
24
25
  resetError: () => void;
@@ -7,6 +7,7 @@ import { OnPagingFiltersChangeService } from '../../Shared/services/OnPagingFilt
7
7
  import { BBSFTranslateService, ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
8
8
  import { DatePipe } from '@angular/common';
9
9
  import { DateTimeAdapter } from 'ng-pick-datetime';
10
+ import * as dateTimeClass from 'ng-pick-datetime/date-time/date-time.class';
10
11
  export declare class DateInputComponent implements OnInit {
11
12
  datepipe: DatePipe;
12
13
  private onChangeService;
@@ -29,14 +30,16 @@ export declare class DateInputComponent implements OnInit {
29
30
  validationRulesasync: any[];
30
31
  comparedControl: AbstractControl;
31
32
  dateError: boolean;
33
+ textDir: any;
34
+ startView: any;
32
35
  ngOnInit(): void;
33
36
  ngAfterViewInit(): void;
34
37
  resetError: () => void;
35
38
  showGlobalError(): void;
36
39
  getErrorValidation(ErrorList: any): string;
37
40
  copyInputMessage(inputElement: any): void;
38
- getSelectMode(type: number): string;
39
- getPickerType(type: number): string;
41
+ getSelectMode(type: number): dateTimeClass.SelectMode;
42
+ getPickerType(type: number): dateTimeClass.PickerType;
40
43
  getStartView(type: number): string;
41
44
  onDateSelect(item: any): void;
42
45
  subscribeDateChanges(): void;
@@ -28,6 +28,7 @@ export declare class DropdownListComponent implements OnInit {
28
28
  controlChanged: boolean;
29
29
  validationRules: any[];
30
30
  validationRulesasync: any[];
31
+ textDir: any;
31
32
  ngOnInit(): void;
32
33
  ngAfterViewInit(): void;
33
34
  resetError: () => void;
@@ -31,6 +31,7 @@ export declare class HtmlEditorComponent implements OnInit {
31
31
  insertList: any;
32
32
  validationRules: any[];
33
33
  validationRulesasync: any[];
34
+ textDir: any;
34
35
  ngOnInit(): void;
35
36
  ngAfterViewChecked(): void;
36
37
  resetError: () => void;
@@ -2,9 +2,10 @@ 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 { PhoneOptions } from '../../Shared/Models/PhoneOptions';
5
- import { SearchCountryField } from 'ngx-intl-tel-input';
5
+ import { SearchCountryField, CountryISO } from 'ngx-intl-tel-input';
6
6
  import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
7
7
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
8
+ import { Country } from '../../Shared/Enums/Countries';
8
9
  export declare class PhoneComponent implements OnInit {
9
10
  private controlUtility;
10
11
  private controlContainer;
@@ -23,12 +24,14 @@ export declare class PhoneComponent implements OnInit {
23
24
  validationRules: any[];
24
25
  validationRulesasync: any[];
25
26
  separateDialCode: boolean;
27
+ textDir: any;
26
28
  ngOnInit(): void;
27
29
  ngAfterViewInit(): void;
28
30
  resetError: () => void;
29
31
  showGlobalError(): void;
30
32
  getErrorValidation(ErrorList: any): string;
31
33
  onValueChanged(): void;
34
+ getSelectedCountry(selectedCountry: Country): CountryISO;
32
35
  RemoveRequiredValidation: () => void;
33
36
  AddRequiredValidation: () => void;
34
37
  RemoveCustomValidation: (CustomValidation: any) => void;
@@ -22,6 +22,7 @@ export declare class RecaptchaComponent implements OnInit {
22
22
  validationRulesAsync: any[];
23
23
  image: string;
24
24
  recaptchaModel: RecaptchaModel;
25
+ textDir: any;
25
26
  ngOnInit(): void;
26
27
  loadImage(): void;
27
28
  ngAfterViewInit(): void;
@@ -32,6 +32,7 @@ export declare class TagsInputComponent implements OnInit, OnDestroy {
32
32
  validationRulesasync: any[];
33
33
  changeValueSubscription: Subscription;
34
34
  SearchResultHasItems: boolean;
35
+ textDir: any;
35
36
  static showErrorOfInputs(errors: any): void;
36
37
  ngOnDestroy(): void;
37
38
  ngOnInit(): void;
@@ -29,6 +29,7 @@ export declare class TextAreaComponent implements OnInit {
29
29
  charsLimitMsgClass: string;
30
30
  minCharsLimit: number;
31
31
  maxLimitWarningMsg: string;
32
+ textDir: any;
32
33
  ngOnInit(): void;
33
34
  ngAfterViewInit(): void;
34
35
  resetError: () => void;
@@ -38,6 +38,7 @@ export declare class TextboxComponent implements OnInit {
38
38
  charsLimitMsgClass: string;
39
39
  minCharsLimit: number;
40
40
  maxLimitWarningMsg: string;
41
+ textDir: any;
41
42
  ngOnInit(): void;
42
43
  ngAfterViewInit(): void;
43
44
  resetError: () => void;
@@ -20,6 +20,7 @@ export declare class ToggleslideComponent implements OnInit {
20
20
  ToggleslideFormControl: AbstractControl;
21
21
  SlideValue: boolean;
22
22
  markAllAsTouched: boolean;
23
+ textDir: any;
23
24
  ngOnInit(): void;
24
25
  ngAfterViewInit(): void;
25
26
  resetError(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bnsights/bbsf-controls",
3
- "version": "1.0.88",
3
+ "version": "1.0.89",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "~12.2.12",
6
6
  "@angular/core": "~12.2.12"
@@ -21,14 +21,14 @@
21
21
  "@angular/platform-browser": "~12.2.12",
22
22
  "@angular/platform-browser-dynamic": "~12.2.12",
23
23
  "@angular/router": "~12.2.12",
24
- "@bnsights/bbsf-utilities": "1.0.33",
24
+ "@bnsights/bbsf-utilities": "1.0.34",
25
25
  "@fortawesome/fontawesome-free": "^5.15.2",
26
- "@fullcalendar/angular": "^5.5.0",
27
- "@fullcalendar/core": "^5.5.0",
28
- "@fullcalendar/daygrid": "^5.5.0",
29
- "@fullcalendar/interaction": "^5.5.0",
30
- "@fullcalendar/list": "^5.5.0",
31
- "@fullcalendar/timegrid": "^5.5.1",
26
+ "@fullcalendar/angular": "^6.0.0",
27
+ "@fullcalendar/core": "^6.0.0",
28
+ "@fullcalendar/daygrid": "^6.0.0",
29
+ "@fullcalendar/interaction": "^6.0.0",
30
+ "@fullcalendar/list": "^6.0.0",
31
+ "@fullcalendar/timegrid": "^6.0.0",
32
32
  "@kolkov/angular-editor": "^1.2.0",
33
33
  "@ng-bootstrap/ng-bootstrap": "^9.0.2",
34
34
  "@ng-select/ng-select": "^6.1.0",
@@ -49,7 +49,7 @@
49
49
  "css-loader": "^5.0.2",
50
50
  "font-awesome": "^4.7.0",
51
51
  "froala-editor": "^3.2.6-1",
52
- "fullcalendar": "^5.5.1",
52
+ "fullcalendar": "^6.0.0",
53
53
  "google-libphonenumber": "^3.2.17",
54
54
  "intl-tel-input": "^17.0.12",
55
55
  "jquery": "^3.5.1",
Binary file