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
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
<a name="5.6.2"></a>
|
2
|
+
## [5.6.2](https://github.com/valor-software/ngx-bootstrap/compare/v5.6.1...v5.6.2) (2020-04-10)
|
3
|
+
|
4
|
+
|
5
|
+
### Bug Fixes
|
6
|
+
|
7
|
+
* **datepicker:** fix production build issue [#5730](https://github.com/valor-software/ngx-bootstrap/issues/5730) ([b14d3e7](https://github.com/valor-software/ngx-bootstrap/commit/b14d3e7))
|
8
|
+
* **dropdown:** add small delay for animation, to avoid issue with ngFor ([4744514](https://github.com/valor-software/ngx-bootstrap/commit/4744514))
|
9
|
+
|
10
|
+
|
11
|
+
|
1
12
|
<a name="5.6.1"></a>
|
2
13
|
## [5.6.1](https://github.com/valor-software/ngx-bootstrap/compare/v5.6.0...v5.6.1) (2020-03-31)
|
3
14
|
|
package/accordion/package.json
CHANGED
package/alert/package.json
CHANGED
package/buttons/package.json
CHANGED
package/carousel/package.json
CHANGED
package/chronos/package.json
CHANGED
package/collapse/package.json
CHANGED
@@ -7,6 +7,7 @@ export declare abstract class BsDatepickerAbstractComponent {
|
|
7
7
|
isOtherMonthsActive: boolean;
|
8
8
|
_effects: BsDatepickerEffects;
|
9
9
|
customRanges: BsCustomDates[];
|
10
|
+
chosenRange: Date[];
|
10
11
|
minDate: Date;
|
11
12
|
maxDate: Date;
|
12
13
|
daysDisabled: number[];
|
@@ -28,5 +29,6 @@ export declare abstract class BsDatepickerAbstractComponent {
|
|
28
29
|
daySelectHandler(day: DayViewModel): void;
|
29
30
|
monthSelectHandler(event: CalendarCellViewModel): void;
|
30
31
|
yearSelectHandler(event: CalendarCellViewModel): void;
|
32
|
+
setRangeOnCalendar(dates: BsCustomDates): void;
|
31
33
|
_stopPropagation(event: any): void;
|
32
34
|
}
|
@@ -394,6 +394,7 @@
|
|
394
394
|
BsDatepickerAbstractComponent = /** @class */ (function () {
|
395
395
|
function BsDatepickerAbstractComponent() {
|
396
396
|
this.customRanges = [];
|
397
|
+
this.chosenRange = [];
|
397
398
|
}
|
398
399
|
Object.defineProperty(BsDatepickerAbstractComponent.prototype, "minDate", {
|
399
400
|
set: /**
|
@@ -553,6 +554,15 @@
|
|
553
554
|
* @return {?}
|
554
555
|
*/
|
555
556
|
function (event) { };
|
557
|
+
/**
|
558
|
+
* @param {?} dates
|
559
|
+
* @return {?}
|
560
|
+
*/
|
561
|
+
BsDatepickerAbstractComponent.prototype.setRangeOnCalendar = /**
|
562
|
+
* @param {?} dates
|
563
|
+
* @return {?}
|
564
|
+
*/
|
565
|
+
function (dates) { };
|
556
566
|
/* tslint:disable-next-line: no-any */
|
557
567
|
/* tslint:disable-next-line: no-any */
|
558
568
|
/**
|
@@ -579,6 +589,8 @@
|
|
579
589
|
/** @type {?} */
|
580
590
|
BsDatepickerAbstractComponent.prototype.customRanges;
|
581
591
|
/** @type {?} */
|
592
|
+
BsDatepickerAbstractComponent.prototype.chosenRange;
|
593
|
+
/** @type {?} */
|
582
594
|
BsDatepickerAbstractComponent.prototype.viewMode;
|
583
595
|
/** @type {?} */
|
584
596
|
BsDatepickerAbstractComponent.prototype.daysCalendar;
|