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.
- package/CHANGELOG.md +11 -0
- package/accordion/package.json +1 -1
- package/alert/package.json +1 -1
- package/buttons/package.json +1 -1
- package/carousel/package.json +1 -1
- package/chronos/package.json +1 -1
- package/collapse/package.json +1 -1
- package/component-loader/package.json +1 -1
- package/datepicker/base/bs-datepicker-container.d.ts +2 -0
- package/datepicker/bundles/ngx-bootstrap-datepicker.umd.js +12 -0
- package/datepicker/bundles/ngx-bootstrap-datepicker.umd.js.map +1 -1
- package/datepicker/bundles/ngx-bootstrap-datepicker.umd.min.js +1 -1
- package/datepicker/bundles/ngx-bootstrap-datepicker.umd.min.js.map +1 -1
- package/datepicker/esm2015/base/bs-datepicker-container.js +9 -1
- package/datepicker/esm2015/themes/bs/bs-daterangepicker-container.component.js +1 -1
- package/datepicker/esm5/base/bs-datepicker-container.js +13 -1
- package/datepicker/esm5/themes/bs/bs-daterangepicker-container.component.js +1 -1
- package/datepicker/fesm2015/ngx-bootstrap-datepicker.js +8 -0
- package/datepicker/fesm2015/ngx-bootstrap-datepicker.js.map +1 -1
- package/datepicker/fesm5/ngx-bootstrap-datepicker.js +12 -0
- package/datepicker/fesm5/ngx-bootstrap-datepicker.js.map +1 -1
- package/datepicker/ngx-bootstrap-datepicker.metadata.json +1 -1
- package/datepicker/package.json +1 -1
- package/dropdown/bundles/ngx-bootstrap-dropdown.umd.js +8 -2
- package/dropdown/bundles/ngx-bootstrap-dropdown.umd.js.map +1 -1
- package/dropdown/bundles/ngx-bootstrap-dropdown.umd.min.js +1 -1
- package/dropdown/bundles/ngx-bootstrap-dropdown.umd.min.js.map +1 -1
- package/dropdown/esm2015/bs-dropdown.directive.js +8 -3
- package/dropdown/esm5/bs-dropdown.directive.js +9 -3
- package/dropdown/fesm2015/ngx-bootstrap-dropdown.js +7 -2
- package/dropdown/fesm2015/ngx-bootstrap-dropdown.js.map +1 -1
- package/dropdown/fesm5/ngx-bootstrap-dropdown.js +8 -2
- package/dropdown/fesm5/ngx-bootstrap-dropdown.js.map +1 -1
- package/dropdown/package.json +1 -1
- package/locale/package.json +1 -1
- package/mini-ngrx/package.json +1 -1
- package/modal/package.json +1 -1
- package/package.json +2 -2
- package/pagination/package.json +1 -1
- package/popover/package.json +1 -1
- package/positioning/package.json +1 -1
- package/progressbar/package.json +1 -1
- package/rating/package.json +1 -1
- package/sortable/package.json +1 -1
- package/tabs/package.json +1 -1
- package/timepicker/package.json +1 -1
- package/tooltip/package.json +1 -1
- package/typeahead/package.json +1 -1
- 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;
|