@colijnit/corecomponents_v12 12.0.25 → 12.0.28
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/bundles/colijnit-corecomponents_v12.umd.js +59 -0
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12-12.0.28.tgz +0 -0
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/input-date-range-picker/input-date-range-picker.component.js +46 -0
- package/esm2015/lib/components/input-date-range-picker/input-date-range-picker.module.js +23 -0
- package/esm2015/public-api.js +3 -1
- package/fesm2015/colijnit-corecomponents_v12.js +64 -2
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/input-date-picker/style/_theme.scss +1 -1
- package/lib/components/input-date-range-picker/input-date-range-picker.component.d.ts +12 -0
- package/lib/components/input-date-range-picker/input-date-range-picker.module.d.ts +2 -0
- package/lib/components/input-date-range-picker/style/_layout.scss +7 -0
- package/lib/components/input-date-range-picker/style/_material-definition.scss +12 -0
- package/lib/components/input-date-range-picker/style/_theme.scss +3 -0
- package/lib/components/input-date-range-picker/style/material.scss +6 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -5854,6 +5854,63 @@
|
|
|
5854
5854
|
},] }
|
|
5855
5855
|
];
|
|
5856
5856
|
|
|
5857
|
+
var InputDateRangePickerComponent = /** @class */ (function (_super) {
|
|
5858
|
+
__extends(InputDateRangePickerComponent, _super);
|
|
5859
|
+
function InputDateRangePickerComponent() {
|
|
5860
|
+
var _this = _super.apply(this, __spreadArray([], __read(arguments))) || this;
|
|
5861
|
+
_this.dateFormat = "dd-MM-yyyy";
|
|
5862
|
+
_this.placeholder = "";
|
|
5863
|
+
_this.startDateChange = new core.EventEmitter();
|
|
5864
|
+
_this.endDateChange = new core.EventEmitter();
|
|
5865
|
+
return _this;
|
|
5866
|
+
}
|
|
5867
|
+
InputDateRangePickerComponent.prototype.showClass = function () {
|
|
5868
|
+
return true;
|
|
5869
|
+
};
|
|
5870
|
+
InputDateRangePickerComponent.prototype.dateRangeChange = function () {
|
|
5871
|
+
this.startDateChange.emit(this.startDate);
|
|
5872
|
+
this.endDateChange.emit(this.endDate);
|
|
5873
|
+
};
|
|
5874
|
+
return InputDateRangePickerComponent;
|
|
5875
|
+
}(BaseInputComponent));
|
|
5876
|
+
InputDateRangePickerComponent.decorators = [
|
|
5877
|
+
{ type: core.Component, args: [{
|
|
5878
|
+
selector: "co-input-date-range",
|
|
5879
|
+
template: "\n <ejs-daterangepicker\n [format]=\"dateFormat\"\n [placeholder]=\"placeholder\"\n [ngModel]=\"model\"\n (ngModelChange)=\"dateRangeChange()\"\n [(startDate)]=\"startDate\"\n [(endDate)]=\"endDate\"\n ></ejs-daterangepicker>\n <div class=\"required-indicator\"></div>\n <ng-template #validationError></ng-template>\n ",
|
|
5880
|
+
encapsulation: core.ViewEncapsulation.None
|
|
5881
|
+
},] }
|
|
5882
|
+
];
|
|
5883
|
+
InputDateRangePickerComponent.propDecorators = {
|
|
5884
|
+
dateFormat: [{ type: core.Input }],
|
|
5885
|
+
placeholder: [{ type: core.Input }],
|
|
5886
|
+
startDate: [{ type: core.Input }],
|
|
5887
|
+
endDate: [{ type: core.Input }],
|
|
5888
|
+
startDateChange: [{ type: core.Output }],
|
|
5889
|
+
endDateChange: [{ type: core.Output }],
|
|
5890
|
+
showClass: [{ type: core.HostBinding, args: ["class.co-input-date-range-picker",] }]
|
|
5891
|
+
};
|
|
5892
|
+
|
|
5893
|
+
var InputDateRangePickerModule = /** @class */ (function () {
|
|
5894
|
+
function InputDateRangePickerModule() {
|
|
5895
|
+
}
|
|
5896
|
+
return InputDateRangePickerModule;
|
|
5897
|
+
}());
|
|
5898
|
+
InputDateRangePickerModule.decorators = [
|
|
5899
|
+
{ type: core.NgModule, args: [{
|
|
5900
|
+
imports: [
|
|
5901
|
+
BaseModule,
|
|
5902
|
+
ej2AngularCalendars.DateRangePickerModule,
|
|
5903
|
+
forms.FormsModule
|
|
5904
|
+
],
|
|
5905
|
+
declarations: [
|
|
5906
|
+
InputDateRangePickerComponent
|
|
5907
|
+
],
|
|
5908
|
+
exports: [
|
|
5909
|
+
InputDateRangePickerComponent
|
|
5910
|
+
]
|
|
5911
|
+
},] }
|
|
5912
|
+
];
|
|
5913
|
+
|
|
5857
5914
|
ej2AngularDropdowns.ListBoxComponent.Inject(ej2AngularDropdowns.CheckBoxSelection);
|
|
5858
5915
|
var InputListboxComponent = /** @class */ (function (_super) {
|
|
5859
5916
|
__extends(InputListboxComponent, _super);
|
|
@@ -9211,6 +9268,8 @@
|
|
|
9211
9268
|
exports.InputComboBoxModule = InputComboBoxModule;
|
|
9212
9269
|
exports.InputDatePickerComponent = InputDatePickerComponent;
|
|
9213
9270
|
exports.InputDatePickerModule = InputDatePickerModule;
|
|
9271
|
+
exports.InputDateRangePickerComponent = InputDateRangePickerComponent;
|
|
9272
|
+
exports.InputDateRangePickerModule = InputDateRangePickerModule;
|
|
9214
9273
|
exports.InputListboxComponent = InputListboxComponent;
|
|
9215
9274
|
exports.InputListboxModule = InputListboxModule;
|
|
9216
9275
|
exports.InputNumberPickerComponent = InputNumberPickerComponent;
|