@colijnit/corecomponents_v12 260.1.2 → 260.1.4
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 +28 -5
- 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/input-date-picker/input-date-picker.component.js +4 -1
- 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 +25 -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/lib/components/input-date-picker/input-date-picker.component.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -5441,6 +5441,7 @@ class InputDatePickerComponent extends BaseInputDatePickerDirective {
|
|
|
5441
5441
|
this.ngZoneWrapper = ngZoneWrapper;
|
|
5442
5442
|
this.elementRef = elementRef;
|
|
5443
5443
|
this.firstDayOfWeek = '';
|
|
5444
|
+
this.showClearButton = true;
|
|
5444
5445
|
super._markAsOnPush();
|
|
5445
5446
|
}
|
|
5446
5447
|
showClass() {
|
|
@@ -5528,6 +5529,7 @@ InputDatePickerComponent.decorators = [
|
|
|
5528
5529
|
[pattern]="'yyyy-MM-dd'"
|
|
5529
5530
|
[type]="'date'"
|
|
5530
5531
|
[placeholder]="placeholder"
|
|
5532
|
+
[showClearButton]="showClearButton"
|
|
5531
5533
|
(leftIconClick)="leftIconClick.emit($event)"
|
|
5532
5534
|
(rightIconClick)="toggleCalendar(true)"
|
|
5533
5535
|
(modelChange)="modelAsString = $event"
|
|
@@ -5561,6 +5563,7 @@ InputDatePickerComponent.ctorParameters = () => [
|
|
|
5561
5563
|
];
|
|
5562
5564
|
InputDatePickerComponent.propDecorators = {
|
|
5563
5565
|
firstDayOfWeek: [{ type: Input }],
|
|
5566
|
+
showClearButton: [{ type: Input }],
|
|
5564
5567
|
showClass: [{ type: HostBinding, args: ['class.co-input-date',] }]
|
|
5565
5568
|
};
|
|
5566
5569
|
|
|
@@ -11291,12 +11294,13 @@ class ListOfValuesPopupComponent {
|
|
|
11291
11294
|
case KeyboardKey.Up:
|
|
11292
11295
|
this.selectNextOption(true);
|
|
11293
11296
|
return false;
|
|
11294
|
-
case KeyboardKey.
|
|
11297
|
+
case KeyboardKey.Enter:
|
|
11295
11298
|
if (this.highLightModel) {
|
|
11296
11299
|
this.selectViewModel(this.highLightModel, false);
|
|
11297
11300
|
}
|
|
11298
11301
|
else {
|
|
11299
11302
|
this.keyDown.next(event);
|
|
11303
|
+
return true;
|
|
11300
11304
|
}
|
|
11301
11305
|
return false;
|
|
11302
11306
|
default:
|
|
@@ -15082,7 +15086,7 @@ class HourSchedulingExpandableComponent {
|
|
|
15082
15086
|
return;
|
|
15083
15087
|
}
|
|
15084
15088
|
//Move between calendars is still too buggy
|
|
15085
|
-
|
|
15089
|
+
this.moveBetweenCalendarsEvent.emit({ hour: hour, data: parsed });
|
|
15086
15090
|
}
|
|
15087
15091
|
}
|
|
15088
15092
|
allowDrop(event, hour) {
|
|
@@ -15394,6 +15398,23 @@ HourSchedulingExpandableTemplateComponent.propDecorators = {
|
|
|
15394
15398
|
showClass: [{ type: HostBinding, args: ["class.co-hour-scheduling-expandable-template",] }]
|
|
15395
15399
|
};
|
|
15396
15400
|
|
|
15401
|
+
class HourSchedulingExpandableTemplateModule {
|
|
15402
|
+
}
|
|
15403
|
+
HourSchedulingExpandableTemplateModule.decorators = [
|
|
15404
|
+
{ type: NgModule, args: [{
|
|
15405
|
+
imports: [
|
|
15406
|
+
CommonModule,
|
|
15407
|
+
],
|
|
15408
|
+
declarations: [
|
|
15409
|
+
HourSchedulingExpandableTemplateComponent
|
|
15410
|
+
],
|
|
15411
|
+
exports: [
|
|
15412
|
+
HourSchedulingExpandableTemplateComponent
|
|
15413
|
+
],
|
|
15414
|
+
providers: [DatePipe]
|
|
15415
|
+
},] }
|
|
15416
|
+
];
|
|
15417
|
+
|
|
15397
15418
|
class HourSchedulingTestObjectComponent {
|
|
15398
15419
|
showClass() {
|
|
15399
15420
|
return true;
|
|
@@ -15441,14 +15462,13 @@ HourSchedulingExpandableComponentModule.decorators = [
|
|
|
15441
15462
|
imports: [
|
|
15442
15463
|
CommonModule,
|
|
15443
15464
|
HourSchedulingComponentModule,
|
|
15465
|
+
HourSchedulingExpandableTemplateModule
|
|
15444
15466
|
],
|
|
15445
15467
|
declarations: [
|
|
15446
15468
|
HourSchedulingExpandableComponent,
|
|
15447
|
-
HourSchedulingExpandableTemplateComponent
|
|
15448
15469
|
],
|
|
15449
15470
|
exports: [
|
|
15450
15471
|
HourSchedulingExpandableComponent,
|
|
15451
|
-
HourSchedulingExpandableTemplateComponent
|
|
15452
15472
|
],
|
|
15453
15473
|
providers: [DatePipe]
|
|
15454
15474
|
},] }
|
|
@@ -15462,5 +15482,5 @@ HourSchedulingExpandableComponentModule.decorators = [
|
|
|
15462
15482
|
* Generated bundle index. Do not edit.
|
|
15463
15483
|
*/
|
|
15464
15484
|
|
|
15465
|
-
export { ArticleTileComponent, ArticleTileModule, BaseInputComponent, BaseInputDatePickerDirective, BaseModuleScreenConfigService, BaseModuleService, ButtonComponent, ButtonModule, CalendarComponent, CalendarModule, CardComponent, CardModule, Carousel3dComponent, Carousel3dModule, CarouselComponent, CarouselHammerConfig, CarouselModule, CheckmarkOverlayModule, ClickoutsideModule, CoDialogComponent, CoDialogModule, CoDialogWizardComponent, CoDialogWizardModule, CoDirection, CoOrientation, CollapsibleComponent, CollapsibleModule, ColorPickerComponent, ColorPickerModule, ColorSequenceService, ColumnAlign, ContentViewMode, CoreComponentsIcon, CoreComponentsTranslationModule, CoreComponentsTranslationService, CoreDialogModule, CoreDialogService, DoubleCalendarComponent, DoubleCalendarModule, FilterItemComponent, FilterItemMode, FilterItemModule, FilterItemViewmodel, FilterPipe, FilterPipeModule, FilterViewmodel, FormComponent, FormInputUserModelChangeListenerService, FormMasterService, FormModule, GridToolbarButtonComponent, GridToolbarButtonModule, GridToolbarComponent, GridToolbarModule, HourSchedulingComponent, HourSchedulingComponentModule, HourSchedulingExpandableComponent, HourSchedulingExpandableComponentModule, HourSchedulingExpandableTemplateComponent, IconCacheService, IconCollapseHandleComponent, IconCollapseHandleModule, IconComponent, IconModule, ImageComponent, ImageModule, InputCheckboxComponent, InputCheckboxModule, InputDatePickerComponent, InputDatePickerModule, InputDateRangePickerComponent, InputDateRangePickerModule, InputNumberPickerComponent, InputNumberPickerModule, InputRadioButtonComponent, InputRadioButtonModule, InputScannerComponent, InputScannerModule, InputSearchComponent, InputSearchModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, InputTimeComponent, InputTimeModule, LevelIndicatorComponent, LevelIndicatorModule, ListOfIconsComponent, ListOfIconsModule, ListOfValuesComponent, ListOfValuesModule, ListOfValuesPopupComponent, LoaderComponent, LoaderModule, NgZoneWrapperService, ObserveVisibilityModule, OrientationOfDirection, OverlayModule, OverlayService, PaginationBarComponent, PaginationBarModule, PaginationComponent, PaginationModule, PopupButtonsComponent, PopupMessageDisplayComponent, PopupModule, PopupWindowShellComponent, PriceDisplayPipe, PriceDisplayPipeModule, PromptService, ResponsiveTextComponent, ResponsiveTextModule, SCREEN_CONFIG_ADAPTER_COMPONENT_INTERFACE_NAME, ScreenConfigurationDirective, ScreenConfigurationModule, SimpleGridColumnDirective, SimpleGridComponent, SimpleGridModule, TemplateWrapperDirective, TemplateWrapperModule, TextInputPopupComponent, TileComponent, TileModule, TileSelectComponent, TileSelectModule, TooltipDirectiveModule, ViewModeButtonsComponent, ViewModeButtonsModule, emailValidator, equalValidator, getValidatePasswordErrorString, maxStringLengthValidator, passwordValidator, precisionScaleValidator, requiredValidator, showHideDialog, InputBoolean as ɵa, RippleModule as ɵb, ObserveVisibilityDirective as ɵba, PaginationService as ɵbb, PaginatePipe as ɵbc, SimpleGridCellComponent as ɵbd, ListOfValuesMultiselectPopupComponent as ɵbe, ConfirmationDialogComponent as ɵbf, DialogBaseComponent as ɵbg, CoreDynamicComponentService as ɵbh, PrependPipeModule as ɵbi, PrependPipe as ɵbj, CheckmarkOverlayComponent as ɵbk, ScannerService as ɵbl, TooltipModule as ɵbm, TooltipComponent as ɵbn, TooltipDirective as ɵbo, HourSchedulingTestObjectComponent as ɵbp, MD_RIPPLE_GLOBAL_OPTIONS as ɵc, CoRippleDirective as ɵd, CoViewportRulerService as ɵe, CoScrollDispatcherService as ɵf, CoScrollableDirective as ɵg, StopClickModule as ɵh, StopClickDirective as ɵi, BaseModule as ɵj, AppendPipeModule as ɵk, AppendPipe as ɵl, ValidationErrorModule as ɵm, OverlayDirective as ɵn, OverlayParentDirective as ɵo, CoreLocalizePipe as ɵp, CoreDictionaryService as ɵq, ValidationErrorComponent as ɵr, CommitButtonsModule as ɵs, CommitButtonsComponent as ɵt, ClickOutsideDirective as ɵu, ClickOutsideMasterService as ɵv, CalendarTemplateComponent as ɵw, BaseInputTimeDirective as ɵx, PopupShowerService as ɵy, BaseSimpleGridComponent as ɵz };
|
|
15485
|
+
export { ArticleTileComponent, ArticleTileModule, BaseInputComponent, BaseInputDatePickerDirective, BaseModuleScreenConfigService, BaseModuleService, ButtonComponent, ButtonModule, CalendarComponent, CalendarModule, CardComponent, CardModule, Carousel3dComponent, Carousel3dModule, CarouselComponent, CarouselHammerConfig, CarouselModule, CheckmarkOverlayModule, ClickoutsideModule, CoDialogComponent, CoDialogModule, CoDialogWizardComponent, CoDialogWizardModule, CoDirection, CoOrientation, CollapsibleComponent, CollapsibleModule, ColorPickerComponent, ColorPickerModule, ColorSequenceService, ColumnAlign, ContentViewMode, CoreComponentsIcon, CoreComponentsTranslationModule, CoreComponentsTranslationService, CoreDialogModule, CoreDialogService, DoubleCalendarComponent, DoubleCalendarModule, FilterItemComponent, FilterItemMode, FilterItemModule, FilterItemViewmodel, FilterPipe, FilterPipeModule, FilterViewmodel, FormComponent, FormInputUserModelChangeListenerService, FormMasterService, FormModule, GridToolbarButtonComponent, GridToolbarButtonModule, GridToolbarComponent, GridToolbarModule, HourSchedulingComponent, HourSchedulingComponentModule, HourSchedulingExpandableComponent, HourSchedulingExpandableComponentModule, HourSchedulingExpandableTemplateComponent, HourSchedulingExpandableTemplateModule, IconCacheService, IconCollapseHandleComponent, IconCollapseHandleModule, IconComponent, IconModule, ImageComponent, ImageModule, InputCheckboxComponent, InputCheckboxModule, InputDatePickerComponent, InputDatePickerModule, InputDateRangePickerComponent, InputDateRangePickerModule, InputNumberPickerComponent, InputNumberPickerModule, InputRadioButtonComponent, InputRadioButtonModule, InputScannerComponent, InputScannerModule, InputSearchComponent, InputSearchModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, InputTimeComponent, InputTimeModule, LevelIndicatorComponent, LevelIndicatorModule, ListOfIconsComponent, ListOfIconsModule, ListOfValuesComponent, ListOfValuesModule, ListOfValuesPopupComponent, LoaderComponent, LoaderModule, NgZoneWrapperService, ObserveVisibilityModule, OrientationOfDirection, OverlayModule, OverlayService, PaginationBarComponent, PaginationBarModule, PaginationComponent, PaginationModule, PopupButtonsComponent, PopupMessageDisplayComponent, PopupModule, PopupWindowShellComponent, PriceDisplayPipe, PriceDisplayPipeModule, PromptService, ResponsiveTextComponent, ResponsiveTextModule, SCREEN_CONFIG_ADAPTER_COMPONENT_INTERFACE_NAME, ScreenConfigurationDirective, ScreenConfigurationModule, SimpleGridColumnDirective, SimpleGridComponent, SimpleGridModule, TemplateWrapperDirective, TemplateWrapperModule, TextInputPopupComponent, TileComponent, TileModule, TileSelectComponent, TileSelectModule, TooltipDirectiveModule, ViewModeButtonsComponent, ViewModeButtonsModule, emailValidator, equalValidator, getValidatePasswordErrorString, maxStringLengthValidator, passwordValidator, precisionScaleValidator, requiredValidator, showHideDialog, InputBoolean as ɵa, RippleModule as ɵb, ObserveVisibilityDirective as ɵba, PaginationService as ɵbb, PaginatePipe as ɵbc, SimpleGridCellComponent as ɵbd, ListOfValuesMultiselectPopupComponent as ɵbe, ConfirmationDialogComponent as ɵbf, DialogBaseComponent as ɵbg, CoreDynamicComponentService as ɵbh, PrependPipeModule as ɵbi, PrependPipe as ɵbj, CheckmarkOverlayComponent as ɵbk, ScannerService as ɵbl, TooltipModule as ɵbm, TooltipComponent as ɵbn, TooltipDirective as ɵbo, HourSchedulingTestObjectComponent as ɵbp, MD_RIPPLE_GLOBAL_OPTIONS as ɵc, CoRippleDirective as ɵd, CoViewportRulerService as ɵe, CoScrollDispatcherService as ɵf, CoScrollableDirective as ɵg, StopClickModule as ɵh, StopClickDirective as ɵi, BaseModule as ɵj, AppendPipeModule as ɵk, AppendPipe as ɵl, ValidationErrorModule as ɵm, OverlayDirective as ɵn, OverlayParentDirective as ɵo, CoreLocalizePipe as ɵp, CoreDictionaryService as ɵq, ValidationErrorComponent as ɵr, CommitButtonsModule as ɵs, CommitButtonsComponent as ɵt, ClickOutsideDirective as ɵu, ClickOutsideMasterService as ɵv, CalendarTemplateComponent as ɵw, BaseInputTimeDirective as ɵx, PopupShowerService as ɵy, BaseSimpleGridComponent as ɵz };
|
|
15466
15486
|
//# sourceMappingURL=colijnit-corecomponents_v12.js.map
|