@colijnit/corecomponents_v12 259.1.21 → 259.1.22

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 (23) hide show
  1. package/bundles/colijnit-corecomponents_v12.umd.js +73 -16
  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/hour-scheduling-expandable/components/hour-scheduling-expandable-template/hour-scheduling-expandable-template.component.js +36 -33
  5. package/esm2015/lib/components/hour-scheduling-expandable/components/hour-scheduling-expandable-template/hour-scheduling-expandable-template.module.js +20 -0
  6. package/esm2015/lib/components/hour-scheduling-expandable/hour-scheduling-expandable.component.js +10 -5
  7. package/esm2015/lib/components/hour-scheduling-expandable/hour-scheduling-expandable.module.js +3 -4
  8. package/esm2015/lib/components/list-of-values/list-of-values-popup.component.js +61 -32
  9. package/esm2015/lib/components/list-of-values/list-of-values.component.js +4 -1
  10. package/esm2015/lib/components/list-of-values/list-of-values.module.js +4 -2
  11. package/esm2015/lib/components/simple-grid/simple-grid.component.js +28 -28
  12. package/esm2015/public-api.js +2 -1
  13. package/fesm2015/colijnit-corecomponents_v12.js +154 -97
  14. package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
  15. package/lib/components/hour-scheduling-expandable/components/hour-scheduling-expandable-template/hour-scheduling-expandable-template.component.d.ts +1 -1
  16. package/lib/components/hour-scheduling-expandable/components/hour-scheduling-expandable-template/hour-scheduling-expandable-template.module.d.ts +2 -0
  17. package/lib/components/hour-scheduling-expandable/style/_layout.scss +1 -0
  18. package/lib/components/list-of-values/list-of-values-popup.component.d.ts +4 -0
  19. package/lib/components/list-of-values/list-of-values.component.d.ts +1 -0
  20. package/lib/components/list-of-values/style/_layout.scss +7 -0
  21. package/lib/components/simple-grid/style/_layout.scss +47 -8
  22. package/package.json +1 -1
  23. package/public-api.d.ts +1 -0
@@ -10190,6 +10190,11 @@ SimpleGridComponent.decorators = [
10190
10190
  [class.simple-grid-column-auto-fit]="column.autoFit"
10191
10191
  [style.width.px]="column.width"
10192
10192
  [style.min-width.px]="MIN_COLUMN_WIDTH">
10193
+ <col
10194
+ *ngIf="((inlineEdit && showRowButtons) || (showDelete && !showRowButtons)) && (hoveredRowIndex >= 0 || selectedRowIndex >= 0 || isNewRow)"
10195
+ [class.icons-col]="true"
10196
+ [class.col-width-row-buttons]="inlineEdit && showRowButtons"
10197
+ [class.col-width-delete]="!showRowButtons && showDelete">
10193
10198
  </colgroup>
10194
10199
  <thead>
10195
10200
  <tr>
@@ -10301,33 +10306,28 @@ SimpleGridComponent.decorators = [
10301
10306
  <div *ngIf="column.resizable" class="simple-grid-column-sizer-placeholder"></div>
10302
10307
  </td>
10303
10308
  </ng-container>
10304
- <ng-container *ngIf="inlineEdit && showRowButtons">
10305
- <div class="icons-container" *ngIf="!editing">
10306
- <co-icon class="icon-item icon-edit"
10307
- [iconData]="icons.getIcon(Icons.PenToSquareSolid)" *ngIf="hoveredRowIndex === rowIndex"
10308
- (click)="editRow($event, true, rowIndex); $event.stopPropagation()"></co-icon>
10309
- <co-icon class="icon-item icon-delete"
10310
- [iconData]="icons.getIcon(Icons.TrashBin)" *ngIf="hoveredRowIndex === rowIndex"
10311
- (click)="selectTheRow(rowIndex); removeRow();"></co-icon>
10312
- </div>
10313
- <div class="icons-container">
10314
- <co-button class="save-button"
10315
- *ngIf="editing && (selectedRowIndex === rowIndex || (isNewRow && rowIndex === editRowIndex))"
10316
- [iconData]="icons.getIcon(Icons.CheckDuotone)"
10317
- (click)="validateAndSave(); $event.stopPropagation()"></co-button>
10318
- <co-button class="close-button"
10319
- *ngIf="editing && (selectedRowIndex === rowIndex || (isNewRow && rowIndex === editRowIndex))"
10320
- [iconData]="icons.getIcon(Icons.CrossSkinny)"
10321
- (click)="cancelEditRow(); $event.stopPropagation() "></co-button>
10322
- </div>
10323
- </ng-container>
10324
- <ng-container *ngIf="!(inlineEdit && showRowButtons) && showDelete">
10325
- <div class="icons-container">
10326
- <co-icon class="icon-item icon-delete"
10327
- [iconData]="icons.getIcon(Icons.TrashBin)" *ngIf="hoveredRowIndex === rowIndex"
10328
- (click)="selectTheRow(rowIndex); removeRow();">
10329
- </co-icon>
10330
- </div>
10309
+ <ng-container *ngIf="(inlineEdit && showRowButtons) || (showDelete && !showRowButtons)">
10310
+ <td class="icons-container"
10311
+ *ngIf="(editRowIndex <= -1 && selectedRowIndex === -1 && hoveredRowIndex === rowIndex) || selectedRowIndex === rowIndex || (isNewRow && rowIndex === editRowIndex)">
10312
+ <ng-container>
10313
+ <co-icon class="icon-item icon-edit"
10314
+ *ngIf="!editing && (inlineEdit && showRowButtons)"
10315
+ [iconData]="icons.getIcon(Icons.PenToSquareSolid)"
10316
+ (click)="editRow($event, true, rowIndex); $event.stopPropagation()"></co-icon>
10317
+ <co-icon class="icon-item icon-delete"
10318
+ [iconData]="icons.getIcon(Icons.TrashBin)"
10319
+ *ngIf="(!editing && (inlineEdit || !inlineEdit) && showRowButtons) || (!showRowButtons && showDelete)"
10320
+ (click)="selectTheRow(rowIndex); removeRow();"></co-icon>
10321
+ </ng-container>
10322
+ <ng-container *ngIf="editing && inlineEdit && showRowButtons && (selectedRowIndex === rowIndex || isNewRow)">
10323
+ <co-button class="save-button"
10324
+ [iconData]="icons.getIcon(Icons.CheckDuotone)"
10325
+ (click)="validateAndSave(); $event.stopPropagation()"></co-button>
10326
+ <co-button class="close-button"
10327
+ [iconData]="icons.getIcon(Icons.CrossSkinny)"
10328
+ (click)="cancelEditRow(); $event.stopPropagation() "></co-button>
10329
+ </ng-container>
10330
+ </td>
10331
10331
  </ng-container>
10332
10332
  </ng-container>
10333
10333
  </tr>
@@ -11226,6 +11226,7 @@ class ListOfValuesPopupComponent {
11226
11226
  this.iconCacheService = iconCacheService;
11227
11227
  this._elementRef = _elementRef;
11228
11228
  this.multiselect = false;
11229
+ this.showToggleAll = false;
11229
11230
  this.displayField = 'description';
11230
11231
  this.searchDisabled = false;
11231
11232
  this.modelChange = new EventEmitter();
@@ -11233,6 +11234,7 @@ class ListOfValuesPopupComponent {
11233
11234
  this.keyDown = new EventEmitter();
11234
11235
  this.viewModels = [];
11235
11236
  this.viewModelsMain = [];
11237
+ this.allSelected = false;
11236
11238
  this._collection = [];
11237
11239
  this._searchTerm = '';
11238
11240
  this._lovItems = [];
@@ -11292,12 +11294,13 @@ class ListOfValuesPopupComponent {
11292
11294
  case KeyboardKey.Up:
11293
11295
  this.selectNextOption(true);
11294
11296
  return false;
11295
- case KeyboardKey.SpaceBar:
11297
+ case KeyboardKey.Enter:
11296
11298
  if (this.highLightModel) {
11297
11299
  this.selectViewModel(this.highLightModel, false);
11298
11300
  }
11299
11301
  else {
11300
11302
  this.keyDown.next(event);
11303
+ return true;
11301
11304
  }
11302
11305
  return false;
11303
11306
  default:
@@ -11377,6 +11380,27 @@ class ListOfValuesPopupComponent {
11377
11380
  this._scrollIntoView();
11378
11381
  }
11379
11382
  }
11383
+ selectAll() {
11384
+ if (this.viewModels.length > 0) {
11385
+ this.viewModels.forEach(vm => vm.checked = true);
11386
+ this.selectOptions();
11387
+ }
11388
+ }
11389
+ toggleAll() {
11390
+ if (!this.allSelected) {
11391
+ if (this.viewModels.length > 0) {
11392
+ this.viewModels.forEach(vm => vm.checked = true);
11393
+ this.selectOptions();
11394
+ }
11395
+ }
11396
+ else {
11397
+ if (this.viewModels.length > 0) {
11398
+ this.viewModels.forEach(vm => vm.checked = false);
11399
+ this.selectOptions();
11400
+ }
11401
+ }
11402
+ this.allSelected = !this.allSelected;
11403
+ }
11380
11404
  _prepareViewModelsMain() {
11381
11405
  this.viewModelsMain.length = 0;
11382
11406
  this.collection.forEach(m => {
@@ -11417,36 +11441,40 @@ ListOfValuesPopupComponent.decorators = [
11417
11441
  { type: Component, args: [{
11418
11442
  selector: 'co-list-of-values-popup',
11419
11443
  template: `
11420
- <div class="lov-options" [overlay]="parentForOverlay" [inheritWidth]="true" [ngClass]="customCssClass"
11421
- id="lov-popup"
11422
- role="listbox" [tabindex]="-1"
11423
- (clickOutside)="closePopup.emit($event)">
11424
- <co-input-search *ngIf="multiselect"
11425
- tabindex="-1"
11426
- [(model)]="searchTerm"
11427
- [placeholder]="searchPlaceholder"
11428
- (keydown)="handleInputKeyDown($event)"
11429
- (modelChange)="filterViewModels()"></co-input-search>
11430
- <ul class="dropdown-list" #dropDownList>
11431
- <li
11432
- #lovItem
11433
- *ngFor="let viewModel of viewModels; let index = index"
11434
- [class.selected]="viewModel === highLightModel || viewModels.length === 1"
11435
- (click)="selectViewModel(viewModel, !multiselect)"
11436
- role="option">
11437
- <ng-container *ngIf="!multiselect">
11438
- <co-icon *ngIf="viewModel.model[optionIcon]" class="input-text-left-icon" [iconData]="iconCacheService.getIcon(viewModel.model[optionIcon])">
11439
- </co-icon>
11440
- <span class="lov-options-text" [textContent]="viewModel.model[displayField]"></span>
11441
- </ng-container>
11442
- <ng-container *ngIf="multiselect">
11443
- <co-input-checkbox [model]="viewModel.checked"
11444
- (modelChange)="selectViewModel(viewModel, false)"></co-input-checkbox>
11445
- <span class="lov-options-text" [textContent]="viewModel.model[displayField]"></span>
11446
- </ng-container>
11447
- </li>
11448
- </ul>
11449
- </div>
11444
+ <div class="lov-options" [overlay]="parentForOverlay" [inheritWidth]="true" [ngClass]="customCssClass"
11445
+ id="lov-popup"
11446
+ role="listbox" [tabindex]="-1"
11447
+ (clickOutside)="closePopup.emit($event)">
11448
+ <co-input-search *ngIf="multiselect"
11449
+ tabindex="-1"
11450
+ [(model)]="searchTerm"
11451
+ [placeholder]="searchPlaceholder"
11452
+ (keydown)="handleInputKeyDown($event)"
11453
+ (modelChange)="filterViewModels()"></co-input-search>
11454
+ <div class="row gap" *ngIf="showToggleAll && multiselect">
11455
+ <co-input-checkbox [model]="allSelected" (modelChange)="toggleAll()"></co-input-checkbox>
11456
+ <span [textContent]="'DESELECT_ALL' | coreLocalize" (click)="toggleAll()"></span>
11457
+ </div>
11458
+ <ul class="dropdown-list" #dropDownList>
11459
+ <li
11460
+ #lovItem
11461
+ *ngFor="let viewModel of viewModels; let index = index"
11462
+ [class.selected]="viewModel === highLightModel || viewModels.length === 1"
11463
+ (click)="selectViewModel(viewModel, !multiselect)"
11464
+ role="option">
11465
+ <ng-container *ngIf="!multiselect">
11466
+ <co-icon *ngIf="viewModel.model[optionIcon]" class="input-text-left-icon" [iconData]="iconCacheService.getIcon(viewModel.model[optionIcon])">
11467
+ </co-icon>
11468
+ <span class="lov-options-text" [textContent]="viewModel.model[displayField]"></span>
11469
+ </ng-container>
11470
+ <ng-container *ngIf="multiselect">
11471
+ <co-input-checkbox [model]="viewModel.checked"
11472
+ (modelChange)="selectViewModel(viewModel, false)"></co-input-checkbox>
11473
+ <span class="lov-options-text" [textContent]="viewModel.model[displayField]"></span>
11474
+ </ng-container>
11475
+ </li>
11476
+ </ul>
11477
+ </div>
11450
11478
  `,
11451
11479
  encapsulation: ViewEncapsulation.None
11452
11480
  },] }
@@ -11461,6 +11489,7 @@ ListOfValuesPopupComponent.propDecorators = {
11461
11489
  inputSearch: [{ type: ViewChild, args: [InputSearchComponent,] }],
11462
11490
  model: [{ type: Input }],
11463
11491
  multiselect: [{ type: Input }],
11492
+ showToggleAll: [{ type: Input }],
11464
11493
  displayField: [{ type: Input }],
11465
11494
  searchPlaceholder: [{ type: Input }],
11466
11495
  customCssClass: [{ type: Input }],
@@ -11487,6 +11516,7 @@ class ListOfValuesComponent extends BaseInputComponent {
11487
11516
  this.elementRef = elementRef;
11488
11517
  this.icons = CoreComponentsIcon;
11489
11518
  this.multiselect = false;
11519
+ this.showToggleAll = false;
11490
11520
  this.largeCollection = false;
11491
11521
  this.displayField = 'description';
11492
11522
  this.searchDisabled = false;
@@ -11620,6 +11650,7 @@ class ListOfValuesComponent extends BaseInputComponent {
11620
11650
  searchPlaceholder: this.searchPlaceholder,
11621
11651
  displayField: this.displayField,
11622
11652
  multiselect: this.multiselect,
11653
+ showToggleAll: this.showToggleAll,
11623
11654
  model: this.model,
11624
11655
  collection: this.collection,
11625
11656
  optionIcon: this.optionIcon,
@@ -11777,6 +11808,7 @@ ListOfValuesComponent.propDecorators = {
11777
11808
  model: [{ type: Input }],
11778
11809
  parentForOverlay: [{ type: ViewChild, args: ['parentForOverlay', { read: ElementRef },] }],
11779
11810
  multiselect: [{ type: HostBinding, args: ['class.custom-height',] }, { type: HostBinding, args: ['class.multi-select',] }, { type: Input }],
11811
+ showToggleAll: [{ type: Input }],
11780
11812
  largeCollection: [{ type: Input }],
11781
11813
  displayField: [{ type: Input }],
11782
11814
  optionIcon: [{ type: Input }],
@@ -11913,7 +11945,8 @@ ListOfValuesModule.decorators = [
11913
11945
  OverlayModule,
11914
11946
  ClickoutsideModule,
11915
11947
  IconModule,
11916
- InputSearchModule
11948
+ InputSearchModule,
11949
+ CoreComponentsTranslationModule
11917
11950
  ],
11918
11951
  declarations: [
11919
11952
  ListOfValuesComponent,
@@ -14842,6 +14875,11 @@ class HourSchedulingExpandableComponent {
14842
14875
  this.currentDraggingObject = obj;
14843
14876
  }
14844
14877
  handleDrop(dragEvent, hour) {
14878
+ dragEvent.preventDefault();
14879
+ dragEvent.stopPropagation();
14880
+ if (!this.schedule[this.objectsProp] || !this.schedule[this.objectsProp].find((object) => { var _a; return object[this.idProp] === this.currentDraggingObject && ((_a = this.currentDraggingObject) === null || _a === void 0 ? void 0 : _a.id); })) {
14881
+ this.currentDraggingObject = undefined;
14882
+ }
14845
14883
  if (this.currentDraggingObject) {
14846
14884
  //The order was scheduled and needs to be moved
14847
14885
  let start = this.currentDraggingObject.start;
@@ -14859,17 +14897,17 @@ class HourSchedulingExpandableComponent {
14859
14897
  scheduledObject.top = this.timeDifference(this.schedule[this.childProp][this.startTimeProp], scheduledObject.start);
14860
14898
  scheduledObject.height = this.timeDifference(scheduledObject.start, scheduledObject.end);
14861
14899
  this.timeChangeEvent.emit(originalObject);
14862
- this.currentDraggingObject = undefined;
14863
14900
  }
14901
+ this.currentDraggingObject = undefined;
14864
14902
  }
14865
14903
  else {
14866
14904
  let parsed = this.tryParseJSONObject(dragEvent.dataTransfer.getData("text"));
14867
14905
  if (!parsed) {
14868
14906
  this.newObjectPlanEvent.emit({ currentHour: hour, data: parsed.toString() });
14869
- return;
14870
14907
  }
14871
- //Move between calendars is still too buggy
14872
- // this.moveBetweenCalendarsEvent.emit({hour: hour, data: parsed});
14908
+ else {
14909
+ this.moveBetweenCalendarsEvent.emit({ hour: hour, data: parsed });
14910
+ }
14873
14911
  }
14874
14912
  }
14875
14913
  allowDrop(event, hour) {
@@ -15089,8 +15127,10 @@ class HourSchedulingExpandableTemplateComponent {
15089
15127
  return true;
15090
15128
  }
15091
15129
  onExpandableDragStart(event, obj, onDragStartCustom) {
15092
- onDragStartCustom === null || onDragStartCustom === void 0 ? void 0 : onDragStartCustom.call(obj);
15093
- event.dataTransfer.setData("text", JSON.stringify({ obj }));
15130
+ event.dataTransfer.setData('text', JSON.stringify({ obj }));
15131
+ if (onDragStartCustom) {
15132
+ onDragStartCustom === null || onDragStartCustom === void 0 ? void 0 : onDragStartCustom.call(obj);
15133
+ }
15094
15134
  }
15095
15135
  calculateLeftAndWidthOfObjects() {
15096
15136
  const layoutData = new Array(this._objects.length);
@@ -15102,8 +15142,9 @@ class HourSchedulingExpandableTemplateComponent {
15102
15142
  const overlapGroups = [];
15103
15143
  const processed = new Set();
15104
15144
  for (let i = 0; i < this._objects.length; i++) {
15105
- if (processed.has(i))
15145
+ if (processed.has(i)) {
15106
15146
  continue;
15147
+ }
15107
15148
  const group = [i];
15108
15149
  const objA = this._objects[i];
15109
15150
  const startA = new Date(objA.start);
@@ -15136,37 +15177,37 @@ class HourSchedulingExpandableTemplateComponent {
15136
15177
  }
15137
15178
  HourSchedulingExpandableTemplateComponent.decorators = [
15138
15179
  { type: Component, args: [{
15139
- selector: "co-hour-scheduling-expandable-template",
15180
+ selector: 'co-hour-scheduling-expandable-template',
15140
15181
  template: `
15141
-
15142
- <div
15143
- *ngFor="let obj of objects"
15144
- [class]="'custom-scheduled-object'"
15145
- [class.selected]="obj.selected"
15146
- [draggable]="!obj.selected"
15147
- [style.--height]="obj.height + 'px'"
15148
- [style.--top]="obj.top + 'px'"
15149
- [style.--left]="layouts[objects.indexOf(obj)].leftPercent + '%'"
15150
- [style.--width]="layouts[objects.indexOf(obj)].widthPercent + '%'"
15151
- (click)="onSelectBlock(obj)"
15152
- (dragstart)="onExpandableDragStart($event, obj, onDragStartCustom(obj) )">
15153
15182
 
15154
- <div
15155
- *ngIf="obj.selected"
15156
- class="top-resizer"
15157
- (mousedown)="onResizeStart($event, obj, 'top')"></div>
15158
- <ng-template
15159
- [ngTemplateOutlet]="objectTemplate"
15160
- [ngTemplateOutletContext]="{
15183
+ <div
15184
+ *ngFor="let obj of objects"
15185
+ [class]="'custom-scheduled-object'"
15186
+ [class.selected]="obj.selected"
15187
+ [draggable]="!obj.selected"
15188
+ [style.--height]="obj.height + 'px'"
15189
+ [style.--top]="obj.top + 'px'"
15190
+ [style.--left]="layouts[objects.indexOf(obj)].leftPercent + '%'"
15191
+ [style.--width]="layouts[objects.indexOf(obj)].widthPercent + '%'"
15192
+ (click)="onSelectBlock(obj)"
15193
+ (dragstart)="onExpandableDragStart($event, obj, onDragStartCustom(obj) )">
15194
+
15195
+ <div
15196
+ *ngIf="obj.selected"
15197
+ class="top-resizer"
15198
+ (mousedown)="onResizeStart($event, obj, 'top')"></div>
15199
+ <ng-template
15200
+ [ngTemplateOutlet]="objectTemplate"
15201
+ [ngTemplateOutletContext]="{
15161
15202
  object: obj
15162
15203
  }"
15163
- >
15164
- </ng-template>
15165
- <div *ngIf="obj.selected"
15166
- class="bottom-resizer"
15167
- (mousedown)="onResizeStart($event, obj, 'bottom')"></div>
15168
- </div>
15169
- `,
15204
+ >
15205
+ </ng-template>
15206
+ <div *ngIf="obj.selected"
15207
+ class="bottom-resizer"
15208
+ (mousedown)="onResizeStart($event, obj, 'bottom')"></div>
15209
+ </div>
15210
+ `,
15170
15211
  encapsulation: ViewEncapsulation.None
15171
15212
  },] }
15172
15213
  ];
@@ -15178,9 +15219,26 @@ HourSchedulingExpandableTemplateComponent.propDecorators = {
15178
15219
  onSelectBlock: [{ type: Input }],
15179
15220
  startTimeProp: [{ type: Input }],
15180
15221
  endTimeProp: [{ type: Input }],
15181
- showClass: [{ type: HostBinding, args: ["class.co-hour-scheduling-expandable-template",] }]
15222
+ showClass: [{ type: HostBinding, args: ['class.co-hour-scheduling-expandable-template',] }]
15182
15223
  };
15183
15224
 
15225
+ class HourSchedulingExpandableTemplateModule {
15226
+ }
15227
+ HourSchedulingExpandableTemplateModule.decorators = [
15228
+ { type: NgModule, args: [{
15229
+ imports: [
15230
+ CommonModule,
15231
+ ],
15232
+ declarations: [
15233
+ HourSchedulingExpandableTemplateComponent
15234
+ ],
15235
+ exports: [
15236
+ HourSchedulingExpandableTemplateComponent
15237
+ ],
15238
+ providers: [DatePipe]
15239
+ },] }
15240
+ ];
15241
+
15184
15242
  class HourSchedulingTestObjectComponent {
15185
15243
  showClass() {
15186
15244
  return true;
@@ -15228,14 +15286,13 @@ HourSchedulingExpandableComponentModule.decorators = [
15228
15286
  imports: [
15229
15287
  CommonModule,
15230
15288
  HourSchedulingComponentModule,
15289
+ HourSchedulingExpandableTemplateModule
15231
15290
  ],
15232
15291
  declarations: [
15233
15292
  HourSchedulingExpandableComponent,
15234
- HourSchedulingExpandableTemplateComponent
15235
15293
  ],
15236
15294
  exports: [
15237
15295
  HourSchedulingExpandableComponent,
15238
- HourSchedulingExpandableTemplateComponent
15239
15296
  ],
15240
15297
  providers: [DatePipe]
15241
15298
  },] }
@@ -15249,5 +15306,5 @@ HourSchedulingExpandableComponentModule.decorators = [
15249
15306
  * Generated bundle index. Do not edit.
15250
15307
  */
15251
15308
 
15252
- 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 };
15309
+ 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 };
15253
15310
  //# sourceMappingURL=colijnit-corecomponents_v12.js.map