@luftborn/custom-elements 2.11.2 → 2.11.3
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/demo/index.js +3 -1
- package/demo/index.min.js +2 -0
- package/demo/index.min.js.map +1 -1
- package/dist/elements/CustomFormatDateFieldElement/CustomDatepicker/CustomDatepicker.js +2 -0
- package/dist/elements/CustomFormatDateFieldElement/CustomDatepicker/CustomDatepicker.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/CustomFormatDateFieldElement/CustomDatepicker/CustomDatepicker.ts +2 -0
package/demo/index.min.js
CHANGED
|
@@ -3155,6 +3155,8 @@ var CustomDatepicker = /** @class */ (function () {
|
|
|
3155
3155
|
if (moveMonthSteps !== 0) {
|
|
3156
3156
|
this.moveMonth(moveMonthSteps);
|
|
3157
3157
|
}
|
|
3158
|
+
var changeEvent = new Event('change');
|
|
3159
|
+
this.input.dispatchEvent(changeEvent);
|
|
3158
3160
|
};
|
|
3159
3161
|
CustomDatepicker.prototype.initSelectMonthYear = function () {
|
|
3160
3162
|
var _this = this;
|