@colijnit/corecomponents_v12 255.1.12 → 255.1.14

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.
Files changed (28) hide show
  1. package/bundles/colijnit-corecomponents_v12.umd.js +357 -4
  2. package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
  3. package/colijnit-corecomponents_v12.metadata.json +1 -1
  4. package/esm2015/lib/components/calendar/calendar-template.component.js +6 -4
  5. package/esm2015/lib/components/hour-scheduling/components/hour-scheduling-test-object/hour-scheduling-test-object.component.js +2 -2
  6. package/esm2015/lib/components/hour-scheduling-expandable/components/hour-scheduling-expandable-template/hour-scheduling-expandable-template.component.js +55 -0
  7. package/esm2015/lib/components/hour-scheduling-expandable/hour-scheduling-expandable.component.js +323 -0
  8. package/esm2015/lib/components/hour-scheduling-expandable/hour-scheduling-expandable.module.js +25 -0
  9. package/esm2015/public-api.js +5 -1
  10. package/fesm2015/colijnit-corecomponents_v12.js +403 -5
  11. package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
  12. package/lib/components/hour-scheduling/components/hour-scheduling-test-object/style/_layout.scss +2 -0
  13. package/lib/components/hour-scheduling/components/hour-scheduling-test-object/style/_theme.scss +2 -2
  14. package/lib/components/hour-scheduling-expandable/components/hour-scheduling-expandable-template/hour-scheduling-expandable-template.component.d.ts +10 -0
  15. package/lib/components/hour-scheduling-expandable/components/hour-scheduling-expandable-template/style/_layout.scss +4 -0
  16. package/lib/components/hour-scheduling-expandable/components/hour-scheduling-expandable-template/style/_material-definition.scss +0 -0
  17. package/lib/components/hour-scheduling-expandable/components/hour-scheduling-expandable-template/style/_theme.scss +4 -0
  18. package/lib/components/hour-scheduling-expandable/components/hour-scheduling-expandable-template/style/material.scss +4 -0
  19. package/lib/components/hour-scheduling-expandable/hour-scheduling-expandable.component.d.ts +78 -0
  20. package/lib/components/hour-scheduling-expandable/hour-scheduling-expandable.module.d.ts +2 -0
  21. package/lib/components/hour-scheduling-expandable/style/_layout.scss +114 -0
  22. package/lib/components/hour-scheduling-expandable/style/_material-definition.scss +0 -0
  23. package/lib/components/hour-scheduling-expandable/style/_theme.scss +4 -0
  24. package/lib/components/hour-scheduling-expandable/style/material.scss +4 -0
  25. package/lib/components/input-checkbox/style/_material-definition.scss +2 -2
  26. package/package.json +1 -1
  27. package/public-api.d.ts +4 -0
  28. package/colijnit-corecomponents_v12-255.1.11.tgz +0 -0
@@ -6459,9 +6459,11 @@ class CalendarTemplateComponent {
6459
6459
  this.showYearSelection = true;
6460
6460
  }
6461
6461
  selectDate(day) {
6462
- this.selectedDate = day;
6463
- this._fillDatesBetweenSelected();
6464
- this.dateSelected.emit(new Date(this.selectedDate));
6462
+ if (day) {
6463
+ this.selectedDate = day;
6464
+ this._fillDatesBetweenSelected();
6465
+ this.dateSelected.emit(new Date(this.selectedDate));
6466
+ }
6465
6467
  }
6466
6468
  selectMonth(month) {
6467
6469
  this.showSelectedMonth = month;
@@ -13961,6 +13963,382 @@ HourSchedulingComponent.propDecorators = {
13961
13963
  showClass: [{ type: HostBinding, args: ['class.co-hour-scheduling',] }]
13962
13964
  };
13963
13965
 
13966
+ class HourSchedulingExpandableComponent {
13967
+ constructor(cdRef, eRef) {
13968
+ this.cdRef = cdRef;
13969
+ this.eRef = eRef;
13970
+ this.hourLabels = [];
13971
+ this.scheduledObjects = [];
13972
+ this.resizing = false;
13973
+ this.currentResizingObject = null;
13974
+ this.currentDraggingObject = null;
13975
+ this.MIN_HEIGHT = 30;
13976
+ this._schedule = {};
13977
+ this.timeChangeEvent = new EventEmitter();
13978
+ this.newObjectPlanEvent = new EventEmitter();
13979
+ this.moveBetweenCalendarsEvent = new EventEmitter();
13980
+ this.showClass = true;
13981
+ }
13982
+ set schedule(value) {
13983
+ if (value && value !== this._schedule) {
13984
+ this.renderObjects();
13985
+ }
13986
+ this._schedule = value;
13987
+ }
13988
+ get schedule() {
13989
+ return this._schedule;
13990
+ }
13991
+ onResize(event) {
13992
+ event.target.innerWidth;
13993
+ }
13994
+ clickOut(event) {
13995
+ if (!this.eRef.nativeElement.contains(event.target)) {
13996
+ this.handleDeselectAll();
13997
+ }
13998
+ }
13999
+ ngOnInit() {
14000
+ this.generateTimeBlocks();
14001
+ if (this.schedule) {
14002
+ this.renderObjects();
14003
+ }
14004
+ this._calculateSchedulingObjectProperties();
14005
+ }
14006
+ // Calculate properties for each scheduled object to determine resizer visibility
14007
+ _calculateSchedulingObjectProperties() {
14008
+ const scheduleStart = this.convertDateToEuropean(this.schedule[this.childProp][this.startTimeProp]);
14009
+ const scheduleEnd = this.convertDateToEuropean(this.schedule[this.childProp][this.endTimeProp]);
14010
+ this.scheduledObjects.forEach(obj => {
14011
+ obj.showTopResizer = this.timeDifference(scheduleStart, obj.start) > 0; // Show top resizer if the start time differs
14012
+ obj.showBottomResizer = this.timeDifference(scheduleEnd, obj.end) > 0; // Show bottom resizer if the end time differs
14013
+ });
14014
+ }
14015
+ // Find the next object in the scheduledObjects list
14016
+ _findNextObject(currentObject) {
14017
+ const currentIndex = this.scheduledObjects.indexOf(currentObject);
14018
+ if (currentIndex >= 0 && currentIndex < this.scheduledObjects.length - 1) {
14019
+ return this.scheduledObjects[currentIndex + 1]; // The next object in the list
14020
+ }
14021
+ return null; // No next object (it's the last one)
14022
+ }
14023
+ // Find the previous object in the scheduledObjects list
14024
+ _findPreviousObject(currentObject) {
14025
+ const currentIndex = this.scheduledObjects.indexOf(currentObject);
14026
+ if (currentIndex > 0) {
14027
+ return this.scheduledObjects[currentIndex - 1]; // The previous object in the list
14028
+ }
14029
+ return null; // No previous object (it's the first one)
14030
+ }
14031
+ renderObjects() {
14032
+ if (this.schedule) {
14033
+ if (this.scheduledObjects.length > 1) {
14034
+ this.scheduledObjects = [];
14035
+ }
14036
+ let objects = this.schedule[this.objectsProp];
14037
+ let schedulingObjects = [];
14038
+ if (objects && objects.length > 0) {
14039
+ objects.forEach(object => {
14040
+ let topDifference = this.timeDifference(this.schedule[this.childProp][this.startTimeProp], object[this.startTimeProp]);
14041
+ schedulingObjects.push({
14042
+ title: object['title'],
14043
+ subTitle: object['subTitle'],
14044
+ start: this.convertDateToEuropean(object[this.startTimeProp]),
14045
+ end: this.convertDateToEuropean(object[this.endTimeProp]),
14046
+ id: object[this.idProp],
14047
+ height: this.timeDifference(object[this.startTimeProp], object[this.endTimeProp]),
14048
+ top: topDifference,
14049
+ selected: false
14050
+ });
14051
+ });
14052
+ }
14053
+ this.scheduledObjects = schedulingObjects;
14054
+ this.cdRef.markForCheck();
14055
+ this.cdRef.detectChanges();
14056
+ }
14057
+ }
14058
+ onSelectBlock(obj) {
14059
+ obj.selected = !obj.selected;
14060
+ if (obj.selected) {
14061
+ this.scheduledObjects.forEach((scheduledObject) => {
14062
+ if (scheduledObject.selected && scheduledObject !== obj) {
14063
+ scheduledObject.selected = false;
14064
+ }
14065
+ });
14066
+ }
14067
+ this.currentResizingObject = obj;
14068
+ }
14069
+ onDragStartCustom(obj) {
14070
+ this.currentDraggingObject = obj;
14071
+ }
14072
+ handleDrop(dragEvent, hour) {
14073
+ if (this.currentDraggingObject) {
14074
+ //The order was scheduled and needs to be moved
14075
+ let start = this.currentDraggingObject.start;
14076
+ let hourSplit = hour.split(":");
14077
+ start.setHours(parseInt(hourSplit[0]));
14078
+ start.setMinutes(parseInt(hourSplit[1]));
14079
+ let scheduledObject = this.scheduledObjects.find(scheduledObject => scheduledObject.id === this.currentDraggingObject.id);
14080
+ scheduledObject.start = start;
14081
+ let originalObject = this.schedule[this.objectsProp].find((object) => object[this.idProp] === this.currentDraggingObject.id);
14082
+ originalObject[this.startTimeProp] = start;
14083
+ let end = this.addMinutes(originalObject[this.startTimeProp], this.currentDraggingObject.height);
14084
+ originalObject[this.endTimeProp] = end;
14085
+ scheduledObject.end = end;
14086
+ scheduledObject.top = this.timeDifference(this.schedule[this.childProp][this.startTimeProp], scheduledObject.start);
14087
+ scheduledObject.height = this.timeDifference(scheduledObject.start, scheduledObject.end);
14088
+ this.timeChangeEvent.emit(originalObject);
14089
+ this.currentDraggingObject = undefined;
14090
+ }
14091
+ else {
14092
+ let parsed = this.tryParseJSONObject(dragEvent.dataTransfer.getData("text"));
14093
+ if (!parsed) {
14094
+ this.newObjectPlanEvent.emit({ currentHour: hour, data: parsed.toString() });
14095
+ return;
14096
+ }
14097
+ this.moveBetweenCalendarsEvent.emit({ hour: hour, data: parsed });
14098
+ }
14099
+ }
14100
+ allowDrop(event, hour) {
14101
+ event.preventDefault();
14102
+ event.stopPropagation();
14103
+ if (this.currentDraggingObject) {
14104
+ let newStartDate = this.convertDateToEuropean(this.currentDraggingObject.start);
14105
+ let hourSplit = hour.split(":");
14106
+ newStartDate.setHours(parseInt(hourSplit[0]));
14107
+ newStartDate.setHours(parseInt(hourSplit[1]));
14108
+ if (this.scheduledObjects.find((scheduledObject) => scheduledObject.start === newStartDate)) {
14109
+ return false;
14110
+ }
14111
+ else {
14112
+ return true;
14113
+ }
14114
+ }
14115
+ }
14116
+ // Triggered when resizing starts
14117
+ onResizeStart(event, obj, direction) {
14118
+ this.resizing = true;
14119
+ this.resizeDirection = direction;
14120
+ this.currentResizingObject = obj;
14121
+ this.initialY = event.clientY;
14122
+ this.initialHeight = obj.height || 0;
14123
+ this.initialTop = obj.top || 0;
14124
+ // Listen to mousemove and mouseup events globally
14125
+ document.addEventListener('mousemove', this.onResizing.bind(this));
14126
+ document.addEventListener('mouseup', this.onResizeEnd.bind(this));
14127
+ }
14128
+ // Handle resizing with snapping to 30px increments and minimum height restriction
14129
+ onResizing(event) {
14130
+ if (!this.resizing || !this.currentResizingObject)
14131
+ return;
14132
+ const deltaY = event.clientY - this.initialY;
14133
+ const snappedDeltaY = Math.round(deltaY / 30) * 30;
14134
+ if (this.resizeDirection === 'bottom') {
14135
+ const nextObject = this._findNextObject(this.currentResizingObject);
14136
+ const maxHeight = nextObject ? nextObject.top - this.currentResizingObject.top : Infinity;
14137
+ // Block expanding beyond the next object and shrinking below 30px
14138
+ const newHeight = Math.max(this.initialHeight + snappedDeltaY, this.MIN_HEIGHT);
14139
+ this.currentResizingObject.height = Math.min(newHeight, maxHeight);
14140
+ }
14141
+ else if (this.resizeDirection === 'top') {
14142
+ const previousObject = this._findPreviousObject(this.currentResizingObject);
14143
+ const minTop = previousObject ? previousObject.top + previousObject.height : 0;
14144
+ const newHeight = Math.max(this.initialHeight - snappedDeltaY, this.MIN_HEIGHT);
14145
+ const newTop = this.initialTop + (this.initialHeight - newHeight);
14146
+ // Block moving above the previous object's bottom and shrinking below MIN_HEIGHT
14147
+ if (newHeight >= this.MIN_HEIGHT && newTop >= minTop) {
14148
+ this.currentResizingObject.top = newTop;
14149
+ this.currentResizingObject.height = newHeight;
14150
+ }
14151
+ }
14152
+ // Ensure change detection happens
14153
+ this.cdRef.detectChanges();
14154
+ }
14155
+ // Triggered when resizing ends
14156
+ onResizeEnd(event) {
14157
+ let object = this.currentResizingObject;
14158
+ if (object && object.selected) {
14159
+ let originalObject = this.schedule[this.objectsProp].find((scheduledObject) => scheduledObject[this.idProp] === object.id);
14160
+ if (originalObject) {
14161
+ // Start date calculation first
14162
+ originalObject[this.startTimeProp] = this.addMinutes(this.convertDateToEuropean(this.schedule[this.childProp][this.startTimeProp]), object.top);
14163
+ // Then end date calculation based on the height of the object
14164
+ originalObject[this.endTimeProp] = this.addMinutes(this.convertDateToEuropean(originalObject[this.startTimeProp]), object.height);
14165
+ }
14166
+ this.timeChangeEvent.emit(originalObject);
14167
+ this.resizing = false;
14168
+ this.currentResizingObject.selected = false;
14169
+ this.currentResizingObject = null;
14170
+ }
14171
+ // Remove global event listeners
14172
+ document.removeEventListener('mousemove', this.onResizing.bind(this));
14173
+ document.removeEventListener('mouseup', this.onResizeEnd.bind(this));
14174
+ }
14175
+ timeDifference(date1, date2) {
14176
+ let difference = this.convertDateToEuropean(date1).getTime() / 1000 - this.convertDateToEuropean(date2).getTime() / 1000;
14177
+ return Math.abs(difference / 60);
14178
+ }
14179
+ generateTimeBlocks() {
14180
+ let startUnix = !this.childProp ? this.dateToUnixEpoch(this.convertDateToEuropean(this.schedule[this.startTimeProp])) : this.dateToUnixEpoch(this.convertDateToEuropean(this.schedule[this.childProp][this.startTimeProp]));
14181
+ let endUnix = !this.childProp ? this.dateToUnixEpoch(this.convertDateToEuropean(this.schedule[this.endTimeProp])) : this.dateToUnixEpoch(this.convertDateToEuropean(this.schedule[this.childProp][this.endTimeProp]));
14182
+ let interval = 60 * 60;
14183
+ for (let hourCount = startUnix; hourCount <= endUnix; hourCount += interval) {
14184
+ let hour = new Date(hourCount * 1000);
14185
+ let hourString = `${hour.getHours()}:${hour.getMinutes() === 0 ? '00' : hour.getMinutes()}`;
14186
+ this.hourLabels.push(hourString);
14187
+ }
14188
+ }
14189
+ dateToUnixEpoch(date) {
14190
+ return Math.floor(date.getTime()) / 1000;
14191
+ }
14192
+ addMinutes(date, minutes) {
14193
+ return new Date(date.getTime() + minutes * 60000);
14194
+ }
14195
+ tryParseJSONObject(jsonString) {
14196
+ try {
14197
+ let o = JSON.parse(jsonString);
14198
+ if (o && typeof o === "object") {
14199
+ return o;
14200
+ }
14201
+ }
14202
+ catch (e) {
14203
+ }
14204
+ return false;
14205
+ }
14206
+ addHalfHour(hour) {
14207
+ let split = hour.split(":");
14208
+ split[1] = "30";
14209
+ return split.join(':');
14210
+ }
14211
+ convertTZ(date, tzString) {
14212
+ return new Date((typeof date === "string" ? new Date(date) : date).toLocaleString("en-US", { timeZone: tzString }));
14213
+ }
14214
+ convertDateToEuropean(date) {
14215
+ return this.convertTZ(date, 'Europe/Amsterdam');
14216
+ }
14217
+ handleDeselectAll() {
14218
+ this.scheduledObjects.forEach((scheduledObject) => {
14219
+ if (scheduledObject.selected) {
14220
+ scheduledObject.selected = false;
14221
+ }
14222
+ });
14223
+ }
14224
+ }
14225
+ HourSchedulingExpandableComponent.decorators = [
14226
+ { type: Component, args: [{
14227
+ selector: 'co-hour-scheduling-expandable',
14228
+ template: `
14229
+ <div class="wrapper">
14230
+ <div class="time-block" *ngFor="let hour of hourLabels">
14231
+ <div class="hour-label"><span [textContent]="hour"></span></div>
14232
+
14233
+ <div class="object-display">
14234
+ <div class="first-half-hour object-half" (dragover)="allowDrop($event, hour)"
14235
+ (drop)="handleDrop($event, hour)">
14236
+ </div>
14237
+
14238
+ <div class="second-half-hour object-half" (dragover)="allowDrop($event, addHalfHour(hour))"
14239
+ (drop)="handleDrop($event, addHalfHour(hour))">
14240
+ </div>
14241
+ </div>
14242
+ </div>
14243
+
14244
+ <div class="scheduled-objects" >
14245
+ <ng-container>
14246
+ <ng-template
14247
+ [ngTemplateOutlet]="customTemplate"
14248
+ [ngTemplateOutletContext]="{
14249
+ objects: scheduledObjects,
14250
+ onSelectBlock: this.onSelectBlock.bind(this),
14251
+ onResizeStart: this.onResizeStart.bind(this),
14252
+ onDragStartCustom: this.onDragStartCustom.bind(this)
14253
+
14254
+ }"
14255
+ >
14256
+ <ng-content></ng-content>
14257
+ </ng-template>
14258
+ </ng-container>
14259
+ </div>
14260
+
14261
+ </div>
14262
+
14263
+ `,
14264
+ changeDetection: ChangeDetectionStrategy.OnPush,
14265
+ encapsulation: ViewEncapsulation.None
14266
+ },] }
14267
+ ];
14268
+ HourSchedulingExpandableComponent.ctorParameters = () => [
14269
+ { type: ChangeDetectorRef },
14270
+ { type: ElementRef }
14271
+ ];
14272
+ HourSchedulingExpandableComponent.propDecorators = {
14273
+ schedule: [{ type: Input }],
14274
+ startTimeProp: [{ type: Input }],
14275
+ endTimeProp: [{ type: Input }],
14276
+ objectsProp: [{ type: Input }],
14277
+ childProp: [{ type: Input }],
14278
+ customTemplate: [{ type: Input }],
14279
+ idProp: [{ type: Input }],
14280
+ timeChangeEvent: [{ type: Output }],
14281
+ newObjectPlanEvent: [{ type: Output }],
14282
+ moveBetweenCalendarsEvent: [{ type: Output }],
14283
+ showClass: [{ type: HostBinding, args: ['class.co-hour-scheduling-expandable',] }],
14284
+ onResize: [{ type: HostListener, args: ['window:resize', ['$event'],] }],
14285
+ clickOut: [{ type: HostListener, args: ['document:click', ['$event'],] }]
14286
+ };
14287
+
14288
+ class HourSchedulingExpandableTemplateComponent {
14289
+ constructor() {
14290
+ this.objects = [];
14291
+ }
14292
+ showClass() {
14293
+ return true;
14294
+ }
14295
+ onExpandableDragStart(event, obj, onDragStartCustom) {
14296
+ onDragStartCustom === null || onDragStartCustom === void 0 ? void 0 : onDragStartCustom.call(obj);
14297
+ event.dataTransfer.setData("text", JSON.stringify({ obj }));
14298
+ }
14299
+ }
14300
+ HourSchedulingExpandableTemplateComponent.decorators = [
14301
+ { type: Component, args: [{
14302
+ selector: "co-hour-scheduling-expandable-template",
14303
+ template: `
14304
+ <div
14305
+ *ngFor="let obj of objects"
14306
+ [class]="'custom-scheduled-object'"
14307
+ [class.selected]="obj['selected']"
14308
+ [draggable]="!obj['selected']"
14309
+ [style.--height]="obj['height'] + 'px'"
14310
+ [style.--top]="obj['top'] + 'px'"
14311
+ (click)="onSelectBlock(obj)"
14312
+ (dragstart)="onExpandableDragStart($event, obj, onDragStartCustom(obj) )">
14313
+
14314
+ <div
14315
+ *ngIf="obj['selected'] && obj['showTopResizer']"
14316
+ class="top-resizer"
14317
+ (mousedown)="onResizeStart($event, obj, 'top')"></div>
14318
+ <ng-template
14319
+ [ngTemplateOutlet]="objectTemplate"
14320
+ [ngTemplateOutletContext]="{
14321
+ object: obj
14322
+ }"
14323
+ >
14324
+ </ng-template>
14325
+ <div *ngIf="obj['selected'] && obj['showBottomResizer']"
14326
+ class="bottom-resizer"
14327
+ (mousedown)="onResizeStart($event, obj, 'bottom')"></div>
14328
+ </div>
14329
+ `,
14330
+ encapsulation: ViewEncapsulation.None
14331
+ },] }
14332
+ ];
14333
+ HourSchedulingExpandableTemplateComponent.propDecorators = {
14334
+ objectTemplate: [{ type: Input }],
14335
+ objects: [{ type: Input }],
14336
+ onDragStartCustom: [{ type: Input }],
14337
+ onResizeStart: [{ type: Input }],
14338
+ onSelectBlock: [{ type: Input }],
14339
+ showClass: [{ type: HostBinding, args: ["class.co-hour-scheduling-expandable-template",] }]
14340
+ };
14341
+
13964
14342
  class HourSchedulingTestObjectComponent {
13965
14343
  showClass() {
13966
14344
  return true;
@@ -13977,7 +14355,7 @@ HourSchedulingTestObjectComponent.decorators = [
13977
14355
  },] }
13978
14356
  ];
13979
14357
  HourSchedulingTestObjectComponent.propDecorators = {
13980
- showClass: [{ type: HostBinding, args: ["class.co-test-object",] }],
14358
+ showClass: [{ type: HostBinding, args: ["class.co-hour-scheduling-test-object",] }],
13981
14359
  title: [{ type: Input }],
13982
14360
  subTitle: [{ type: Input }]
13983
14361
  };
@@ -14001,6 +14379,26 @@ HourSchedulingComponentModule.decorators = [
14001
14379
  },] }
14002
14380
  ];
14003
14381
 
14382
+ class HourSchedulingExpandableComponentModule {
14383
+ }
14384
+ HourSchedulingExpandableComponentModule.decorators = [
14385
+ { type: NgModule, args: [{
14386
+ imports: [
14387
+ CommonModule,
14388
+ HourSchedulingComponentModule,
14389
+ ],
14390
+ declarations: [
14391
+ HourSchedulingExpandableComponent,
14392
+ HourSchedulingExpandableTemplateComponent
14393
+ ],
14394
+ exports: [
14395
+ HourSchedulingExpandableComponent,
14396
+ HourSchedulingExpandableTemplateComponent
14397
+ ],
14398
+ providers: [DatePipe]
14399
+ },] }
14400
+ ];
14401
+
14004
14402
  /*
14005
14403
  * Public API Surface of corecomponents
14006
14404
  */
@@ -14009,5 +14407,5 @@ HourSchedulingComponentModule.decorators = [
14009
14407
  * Generated bundle index. Do not edit.
14010
14408
  */
14011
14409
 
14012
- 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, 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, 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, PaginationService as ɵba, PaginatePipe as ɵbb, SimpleGridCellComponent as ɵbc, ListOfValuesMultiselectPopupComponent as ɵbd, ConfirmationDialogComponent as ɵbe, DialogBaseComponent as ɵbf, CoreDynamicComponentService as ɵbg, PrependPipeModule as ɵbh, PrependPipe as ɵbi, CheckmarkOverlayComponent as ɵbj, ScannerService as ɵbk, TooltipModule as ɵbl, TooltipComponent as ɵbm, TooltipDirective as ɵbn, HourSchedulingTestObjectComponent as ɵbo, 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, PopupShowerService as ɵx, BaseSimpleGridComponent as ɵy, ObserveVisibilityDirective as ɵz };
14410
+ 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, 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, PaginationService as ɵba, PaginatePipe as ɵbb, SimpleGridCellComponent as ɵbc, ListOfValuesMultiselectPopupComponent as ɵbd, ConfirmationDialogComponent as ɵbe, DialogBaseComponent as ɵbf, CoreDynamicComponentService as ɵbg, PrependPipeModule as ɵbh, PrependPipe as ɵbi, CheckmarkOverlayComponent as ɵbj, ScannerService as ɵbk, TooltipModule as ɵbl, TooltipComponent as ɵbm, TooltipDirective as ɵbn, HourSchedulingTestObjectComponent as ɵbo, 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, PopupShowerService as ɵx, BaseSimpleGridComponent as ɵy, ObserveVisibilityDirective as ɵz };
14013
14411
  //# sourceMappingURL=colijnit-corecomponents_v12.js.map