ngx-bootstrap 5.6.1 → 5.6.2

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 (49) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/accordion/package.json +1 -1
  3. package/alert/package.json +1 -1
  4. package/buttons/package.json +1 -1
  5. package/carousel/package.json +1 -1
  6. package/chronos/package.json +1 -1
  7. package/collapse/package.json +1 -1
  8. package/component-loader/package.json +1 -1
  9. package/datepicker/base/bs-datepicker-container.d.ts +2 -0
  10. package/datepicker/bundles/ngx-bootstrap-datepicker.umd.js +12 -0
  11. package/datepicker/bundles/ngx-bootstrap-datepicker.umd.js.map +1 -1
  12. package/datepicker/bundles/ngx-bootstrap-datepicker.umd.min.js +1 -1
  13. package/datepicker/bundles/ngx-bootstrap-datepicker.umd.min.js.map +1 -1
  14. package/datepicker/esm2015/base/bs-datepicker-container.js +9 -1
  15. package/datepicker/esm2015/themes/bs/bs-daterangepicker-container.component.js +1 -1
  16. package/datepicker/esm5/base/bs-datepicker-container.js +13 -1
  17. package/datepicker/esm5/themes/bs/bs-daterangepicker-container.component.js +1 -1
  18. package/datepicker/fesm2015/ngx-bootstrap-datepicker.js +8 -0
  19. package/datepicker/fesm2015/ngx-bootstrap-datepicker.js.map +1 -1
  20. package/datepicker/fesm5/ngx-bootstrap-datepicker.js +12 -0
  21. package/datepicker/fesm5/ngx-bootstrap-datepicker.js.map +1 -1
  22. package/datepicker/ngx-bootstrap-datepicker.metadata.json +1 -1
  23. package/datepicker/package.json +1 -1
  24. package/dropdown/bundles/ngx-bootstrap-dropdown.umd.js +8 -2
  25. package/dropdown/bundles/ngx-bootstrap-dropdown.umd.js.map +1 -1
  26. package/dropdown/bundles/ngx-bootstrap-dropdown.umd.min.js +1 -1
  27. package/dropdown/bundles/ngx-bootstrap-dropdown.umd.min.js.map +1 -1
  28. package/dropdown/esm2015/bs-dropdown.directive.js +8 -3
  29. package/dropdown/esm5/bs-dropdown.directive.js +9 -3
  30. package/dropdown/fesm2015/ngx-bootstrap-dropdown.js +7 -2
  31. package/dropdown/fesm2015/ngx-bootstrap-dropdown.js.map +1 -1
  32. package/dropdown/fesm5/ngx-bootstrap-dropdown.js +8 -2
  33. package/dropdown/fesm5/ngx-bootstrap-dropdown.js.map +1 -1
  34. package/dropdown/package.json +1 -1
  35. package/locale/package.json +1 -1
  36. package/mini-ngrx/package.json +1 -1
  37. package/modal/package.json +1 -1
  38. package/package.json +2 -2
  39. package/pagination/package.json +1 -1
  40. package/popover/package.json +1 -1
  41. package/positioning/package.json +1 -1
  42. package/progressbar/package.json +1 -1
  43. package/rating/package.json +1 -1
  44. package/sortable/package.json +1 -1
  45. package/tabs/package.json +1 -1
  46. package/timepicker/package.json +1 -1
  47. package/tooltip/package.json +1 -1
  48. package/typeahead/package.json +1 -1
  49. package/utils/package.json +1 -1
@@ -214,6 +214,7 @@ var /**
214
214
  BsDatepickerAbstractComponent = /** @class */ (function () {
215
215
  function BsDatepickerAbstractComponent() {
216
216
  this.customRanges = [];
217
+ this.chosenRange = [];
217
218
  }
218
219
  Object.defineProperty(BsDatepickerAbstractComponent.prototype, "minDate", {
219
220
  set: /**
@@ -373,6 +374,15 @@ BsDatepickerAbstractComponent = /** @class */ (function () {
373
374
  * @return {?}
374
375
  */
375
376
  function (event) { };
377
+ /**
378
+ * @param {?} dates
379
+ * @return {?}
380
+ */
381
+ BsDatepickerAbstractComponent.prototype.setRangeOnCalendar = /**
382
+ * @param {?} dates
383
+ * @return {?}
384
+ */
385
+ function (dates) { };
376
386
  /* tslint:disable-next-line: no-any */
377
387
  /* tslint:disable-next-line: no-any */
378
388
  /**
@@ -399,6 +409,8 @@ if (false) {
399
409
  /** @type {?} */
400
410
  BsDatepickerAbstractComponent.prototype.customRanges;
401
411
  /** @type {?} */
412
+ BsDatepickerAbstractComponent.prototype.chosenRange;
413
+ /** @type {?} */
402
414
  BsDatepickerAbstractComponent.prototype.viewMode;
403
415
  /** @type {?} */
404
416
  BsDatepickerAbstractComponent.prototype.daysCalendar;