@colijnit/corecomponents_v12 260.1.2 → 260.1.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/bundles/colijnit-corecomponents_v12.umd.js +25 -4
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/hour-scheduling-expandable/components/hour-scheduling-expandable-template/hour-scheduling-expandable-template.module.js +20 -0
- package/esm2015/lib/components/hour-scheduling-expandable/hour-scheduling-expandable.component.js +2 -2
- package/esm2015/lib/components/hour-scheduling-expandable/hour-scheduling-expandable.module.js +3 -4
- package/esm2015/lib/components/list-of-values/list-of-values-popup.component.js +3 -2
- package/esm2015/public-api.js +2 -1
- package/fesm2015/colijnit-corecomponents_v12.js +22 -5
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/hour-scheduling-expandable/components/hour-scheduling-expandable-template/hour-scheduling-expandable-template.module.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -11784,12 +11784,13 @@
|
|
|
11784
11784
|
case KeyboardKey.Up:
|
|
11785
11785
|
this.selectNextOption(true);
|
|
11786
11786
|
return false;
|
|
11787
|
-
case KeyboardKey.
|
|
11787
|
+
case KeyboardKey.Enter:
|
|
11788
11788
|
if (this.highLightModel) {
|
|
11789
11789
|
this.selectViewModel(this.highLightModel, false);
|
|
11790
11790
|
}
|
|
11791
11791
|
else {
|
|
11792
11792
|
this.keyDown.next(event);
|
|
11793
|
+
return true;
|
|
11793
11794
|
}
|
|
11794
11795
|
return false;
|
|
11795
11796
|
default:
|
|
@@ -15389,7 +15390,7 @@
|
|
|
15389
15390
|
return;
|
|
15390
15391
|
}
|
|
15391
15392
|
//Move between calendars is still too buggy
|
|
15392
|
-
|
|
15393
|
+
this.moveBetweenCalendarsEvent.emit({ hour: hour, data: parsed });
|
|
15393
15394
|
}
|
|
15394
15395
|
};
|
|
15395
15396
|
HourSchedulingExpandableComponent.prototype.allowDrop = function (event, hour) {
|
|
@@ -15640,6 +15641,26 @@
|
|
|
15640
15641
|
showClass: [{ type: i0.HostBinding, args: ["class.co-hour-scheduling-expandable-template",] }]
|
|
15641
15642
|
};
|
|
15642
15643
|
|
|
15644
|
+
var HourSchedulingExpandableTemplateModule = /** @class */ (function () {
|
|
15645
|
+
function HourSchedulingExpandableTemplateModule() {
|
|
15646
|
+
}
|
|
15647
|
+
return HourSchedulingExpandableTemplateModule;
|
|
15648
|
+
}());
|
|
15649
|
+
HourSchedulingExpandableTemplateModule.decorators = [
|
|
15650
|
+
{ type: i0.NgModule, args: [{
|
|
15651
|
+
imports: [
|
|
15652
|
+
common.CommonModule,
|
|
15653
|
+
],
|
|
15654
|
+
declarations: [
|
|
15655
|
+
HourSchedulingExpandableTemplateComponent
|
|
15656
|
+
],
|
|
15657
|
+
exports: [
|
|
15658
|
+
HourSchedulingExpandableTemplateComponent
|
|
15659
|
+
],
|
|
15660
|
+
providers: [common.DatePipe]
|
|
15661
|
+
},] }
|
|
15662
|
+
];
|
|
15663
|
+
|
|
15643
15664
|
var HourSchedulingTestObjectComponent = /** @class */ (function () {
|
|
15644
15665
|
function HourSchedulingTestObjectComponent() {
|
|
15645
15666
|
}
|
|
@@ -15693,14 +15714,13 @@
|
|
|
15693
15714
|
imports: [
|
|
15694
15715
|
common.CommonModule,
|
|
15695
15716
|
HourSchedulingComponentModule,
|
|
15717
|
+
HourSchedulingExpandableTemplateModule
|
|
15696
15718
|
],
|
|
15697
15719
|
declarations: [
|
|
15698
15720
|
HourSchedulingExpandableComponent,
|
|
15699
|
-
HourSchedulingExpandableTemplateComponent
|
|
15700
15721
|
],
|
|
15701
15722
|
exports: [
|
|
15702
15723
|
HourSchedulingExpandableComponent,
|
|
15703
|
-
HourSchedulingExpandableTemplateComponent
|
|
15704
15724
|
],
|
|
15705
15725
|
providers: [common.DatePipe]
|
|
15706
15726
|
},] }
|
|
@@ -15767,6 +15787,7 @@
|
|
|
15767
15787
|
exports.HourSchedulingExpandableComponent = HourSchedulingExpandableComponent;
|
|
15768
15788
|
exports.HourSchedulingExpandableComponentModule = HourSchedulingExpandableComponentModule;
|
|
15769
15789
|
exports.HourSchedulingExpandableTemplateComponent = HourSchedulingExpandableTemplateComponent;
|
|
15790
|
+
exports.HourSchedulingExpandableTemplateModule = HourSchedulingExpandableTemplateModule;
|
|
15770
15791
|
exports.IconCacheService = IconCacheService;
|
|
15771
15792
|
exports.IconCollapseHandleComponent = IconCollapseHandleComponent;
|
|
15772
15793
|
exports.IconCollapseHandleModule = IconCollapseHandleModule;
|