@colijnit/corecomponents_v12 12.2.16 → 12.2.18

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 (31) hide show
  1. package/bundles/colijnit-corecomponents_v12.umd.js +137 -41
  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/base-input-date-picker/base-input-date-picker.directive.js +4 -2
  5. package/esm2015/lib/components/form/form.component.js +2 -2
  6. package/esm2015/lib/components/input-date-picker/input-date-picker.component.js +2 -1
  7. package/esm2015/lib/components/input-radio-button/input-radio-button.component.js +2 -2
  8. package/esm2015/lib/components/list-of-values/list-of-values.component.js +2 -1
  9. package/esm2015/lib/components/loader/loader.component.js +3 -3
  10. package/esm2015/lib/components/simple-grid/base-simple-grid.component.js +6 -1
  11. package/esm2015/lib/components/simple-grid/simple-grid.component.js +49 -31
  12. package/esm2015/lib/components/tile-select/tile-select.component.js +36 -0
  13. package/esm2015/lib/components/tile-select/tile-select.module.js +21 -0
  14. package/esm2015/lib/directives/overlay/overlay.directive.js +8 -2
  15. package/esm2015/public-api.js +3 -1
  16. package/fesm2015/colijnit-corecomponents_v12.js +121 -36
  17. package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
  18. package/lib/components/base-input-date-picker/base-input-date-picker.directive.d.ts +2 -1
  19. package/lib/components/loader/style/_layout.scss +22 -4
  20. package/lib/components/loader/style/_material-definition.scss +1 -1
  21. package/lib/components/simple-grid/base-simple-grid.component.d.ts +2 -0
  22. package/lib/components/simple-grid/simple-grid.component.d.ts +4 -2
  23. package/lib/components/tile-select/style/_layout.scss +42 -0
  24. package/lib/components/tile-select/style/_material-definition.scss +18 -0
  25. package/lib/components/tile-select/style/_theme.scss +34 -0
  26. package/lib/components/tile-select/style/material.scss +4 -0
  27. package/lib/components/tile-select/tile-select.component.d.ts +8 -0
  28. package/lib/components/tile-select/tile-select.module.d.ts +2 -0
  29. package/lib/style/_variables.scss +1 -0
  30. package/package.json +1 -1
  31. package/public-api.d.ts +2 -0
@@ -4904,7 +4904,7 @@ class FormComponent {
4904
4904
  }
4905
4905
  FormComponent.decorators = [
4906
4906
  { type: Component, args: [{
4907
- selector: "co-form-test",
4907
+ selector: "co-form",
4908
4908
  template: `
4909
4909
  <ng-content></ng-content>
4910
4910
  `,
@@ -5324,6 +5324,7 @@ class BaseInputDatePickerDirective extends BaseInputComponent {
5324
5324
  super(...arguments);
5325
5325
  this.rightIcon = CoreComponentsIcon.CalendarDayRegular;
5326
5326
  this.locale = 'en-EN';
5327
+ this.leftIconClick = new EventEmitter();
5327
5328
  this.closeAfterDateSelection = true;
5328
5329
  }
5329
5330
  }
@@ -5336,6 +5337,7 @@ BaseInputDatePickerDirective.propDecorators = {
5336
5337
  placeholder: [{ type: Input }],
5337
5338
  leftIcon: [{ type: Input }],
5338
5339
  leftIconData: [{ type: Input }],
5340
+ leftIconClick: [{ type: Output }],
5339
5341
  closeAfterDateSelection: [{ type: Input }]
5340
5342
  };
5341
5343
 
@@ -5448,6 +5450,7 @@ InputDatePickerComponent.decorators = [
5448
5450
  [pattern]="'yyyy-MM-dd'"
5449
5451
  [type]="'date'"
5450
5452
  [placeholder]="placeholder"
5453
+ (leftIconClick)="leftIconClick.emit($event)"
5451
5454
  (rightIconClick)="toggleCalendar(true)"
5452
5455
  (blur)="handleDateChange(modelAsString)"
5453
5456
  (clearIconClick)="handleClearIconClicked()"
@@ -5597,7 +5600,13 @@ class OverlayDirective {
5597
5600
  this._elementRef.nativeElement.style.width = parentRect.width + "px";
5598
5601
  }
5599
5602
  if (this.rightAlign) {
5600
- this._elementRef.nativeElement.style.left = (parentRect.right - elementRect.width) + "px";
5603
+ let left = (parentRect.right - elementRect.width);
5604
+ if (this.keepInView) {
5605
+ const viewToKeepIn = this.view ? this.view : window;
5606
+ const viewLeft = viewToKeepIn.offsetLeft || 0;
5607
+ left = Math.max(left, viewLeft);
5608
+ }
5609
+ this._elementRef.nativeElement.style.left = left + "px";
5601
5610
  }
5602
5611
  else if (this.fullSize) {
5603
5612
  this._elementRef.nativeElement.style.left = "0px";
@@ -7524,7 +7533,7 @@ class InputRadioButtonComponent extends BaseInputComponent {
7524
7533
  event.preventDefault();
7525
7534
  event.stopPropagation();
7526
7535
  if (!this.readonly) {
7527
- this.model = !this.model;
7536
+ this.model = true;
7528
7537
  this.modelChange.next(this.model);
7529
7538
  if (this.control) {
7530
7539
  this.control.markAsDirty({ onlySelf: true });
@@ -9065,6 +9074,7 @@ class BaseSimpleGridComponent {
9065
9074
  this.columns = [];
9066
9075
  this.headerColumns = [];
9067
9076
  this._data = [];
9077
+ this.disabledRows = [];
9068
9078
  this._prepared = false;
9069
9079
  }
9070
9080
  set content(columnComponents) {
@@ -9124,6 +9134,8 @@ class BaseSimpleGridComponent {
9124
9134
  singleColumnIndex(row) {
9125
9135
  return row.singleColumnIndex;
9126
9136
  }
9137
+ prepareDataRow(row, index) {
9138
+ }
9127
9139
  _setColumns(columns) {
9128
9140
  this.columns.push(...columns);
9129
9141
  this.columns.sort((a, b) => a.order < b.order ? -1 : 1);
@@ -9132,6 +9144,7 @@ class BaseSimpleGridComponent {
9132
9144
  if (this._prepared) {
9133
9145
  return;
9134
9146
  }
9147
+ this.disabledRows.length = 0;
9135
9148
  if (this.columns && this.columns.length > 0) {
9136
9149
  this.headerColumns = this.columns.filter(c => !c.singleColumn);
9137
9150
  let singleColumnIndex = -1;
@@ -9149,6 +9162,7 @@ class BaseSimpleGridComponent {
9149
9162
  // bit nasty to add prop, but cool for now
9150
9163
  this.data[i].singleColumnIndex = singleColumnIndex;
9151
9164
  }
9165
+ this.prepareDataRow(this.data[i], i);
9152
9166
  }
9153
9167
  }
9154
9168
  this._prepared = true;
@@ -9249,13 +9263,30 @@ class SimpleGridComponent extends BaseSimpleGridComponent {
9249
9263
  handleClickOutsideRow() {
9250
9264
  this.validateAndSave();
9251
9265
  }
9252
- isRowDisabled(row) {
9253
- if (this.rowDisabledFn && (typeof this.rowDisabledFn === 'function')) {
9254
- return this.rowDisabledFn.call(this, row);
9255
- }
9256
- else {
9257
- return false;
9258
- }
9266
+ getIsRowDisabled(idx) {
9267
+ return this.disabledRows.indexOf(idx) > -1;
9268
+ }
9269
+ isRowDisabled(row, index) {
9270
+ return __awaiter(this, void 0, void 0, function* () {
9271
+ if (this.rowDisabledFn && (typeof this.rowDisabledFn === 'function')) {
9272
+ const disabled = yield this.rowDisabledFn.call(this, row);
9273
+ const idxRow = this.disabledRows.indexOf(index);
9274
+ if (disabled) {
9275
+ if (idxRow < 0) {
9276
+ this.disabledRows.push(index);
9277
+ }
9278
+ }
9279
+ else {
9280
+ if (idxRow > -1) {
9281
+ this.disabledRows.splice(idxRow, 1);
9282
+ }
9283
+ }
9284
+ return disabled;
9285
+ }
9286
+ else {
9287
+ return false;
9288
+ }
9289
+ });
9259
9290
  }
9260
9291
  isSingleColumn(column) {
9261
9292
  return column.singleColumn;
@@ -9314,10 +9345,6 @@ class SimpleGridComponent extends BaseSimpleGridComponent {
9314
9345
  this.deleteRow.next(this.data[this.selectedRowIndex]);
9315
9346
  }
9316
9347
  handleClickRow(event, index, row) {
9317
- if (this.isRowDisabled(row)) {
9318
- this.selectedRowIndex = -1;
9319
- return;
9320
- }
9321
9348
  setTimeout(() => {
9322
9349
  if (this._doubleClicked) {
9323
9350
  return;
@@ -9336,13 +9363,13 @@ class SimpleGridComponent extends BaseSimpleGridComponent {
9336
9363
  }
9337
9364
  handleDblClickRow(event, index, row) {
9338
9365
  return __awaiter(this, void 0, void 0, function* () {
9339
- if (this.isRowDisabled(row)) {
9366
+ if (yield this.isRowDisabled(row, index)) {
9340
9367
  this.selectedRowIndex = -1;
9341
9368
  return;
9342
9369
  }
9343
9370
  let canEdit = true;
9344
9371
  if (this.canRowBeEdittedFn && typeof this.canRowBeEdittedFn === 'function') {
9345
- canEdit = yield this.canRowBeEdittedFn.call(this);
9372
+ canEdit = yield this.canRowBeEdittedFn.call(this, row);
9346
9373
  }
9347
9374
  if (canEdit) {
9348
9375
  this._doubleClicked = true;
@@ -9367,23 +9394,28 @@ class SimpleGridComponent extends BaseSimpleGridComponent {
9367
9394
  this._detectChanges();
9368
9395
  }
9369
9396
  handleCellClick(event, row, rowIndex, cellIndex) {
9370
- if (this.editOnCellClick) {
9371
- if (this.isRowDisabled(row)) {
9372
- this.selectedRowIndex = -1;
9373
- return;
9397
+ return __awaiter(this, void 0, void 0, function* () {
9398
+ if (this.editOnCellClick) {
9399
+ if (yield this.isRowDisabled(row, rowIndex)) {
9400
+ this.selectedRowIndex = -1;
9401
+ return;
9402
+ }
9403
+ this.selectTheRow(rowIndex, false);
9404
+ if (this.inlineEdit) {
9405
+ this.editRowIndex = rowIndex;
9406
+ this.editCellIndex = cellIndex;
9407
+ this.editing = true;
9408
+ this.editRow(event, false);
9409
+ }
9374
9410
  }
9375
- this.selectTheRow(rowIndex, false);
9376
- if (this.inlineEdit) {
9377
- this.editRowIndex = rowIndex;
9411
+ else {
9378
9412
  this.editCellIndex = cellIndex;
9379
- this.editing = true;
9380
- this.editRow(event, false);
9381
9413
  }
9382
- }
9383
- else {
9384
- this.editCellIndex = cellIndex;
9385
- }
9386
- this._detectChanges();
9414
+ this._detectChanges();
9415
+ });
9416
+ }
9417
+ prepareDataRow(row, index) {
9418
+ this.isRowDisabled(row, index);
9387
9419
  }
9388
9420
  _resetDblClick() {
9389
9421
  setTimeout(() => {
@@ -9572,10 +9604,10 @@ SimpleGridComponent.decorators = [
9572
9604
  [cdkDropListEnterPredicate]="handleCanDragDrop"
9573
9605
  (cdkDropListDropped)="handleDrop($event)">
9574
9606
  <tr class="simple-grid-row" [class.selected]="rowIndex === selectedRowIndex && !editing" observeVisibility
9575
- [class.disabled]="isRowDisabled(row)"
9607
+ [class.disabled]="getIsRowDisabled(rowIndex)"
9576
9608
  [class.editing]="rowIndex === editRowIndex" *ngFor="let row of (!!rowsPerPage ? (data | paginate: {itemsPerPage: rowsPerPage, currentPage: currentPage}) : data); last as last; let rowIndex = index" cdkDrag
9577
9609
  (click)="handleClickRow($event, rowIndex, row)" (dblclick)="handleDblClickRow($event, rowIndex, row)" (visibilityChange)="rowVisible.next(row)">
9578
- <co-form-test class="simple-grid-row-form">
9610
+ <co-form class="simple-grid-row-form">
9579
9611
  <ng-container *ngIf="isSingleColumnRow(row)">
9580
9612
  <td class="simple-grid-single-column-cell" [attr.colspan]="headerColumns.length">
9581
9613
  <co-simple-grid-cell
@@ -9599,7 +9631,7 @@ SimpleGridComponent.decorators = [
9599
9631
  </td>
9600
9632
  </ng-container>
9601
9633
  </ng-container>
9602
- </co-form-test>
9634
+ </co-form>
9603
9635
  </tr>
9604
9636
  </tbody>
9605
9637
  </table>
@@ -10840,6 +10872,7 @@ class ListOfValuesComponent extends BaseInputComponent {
10840
10872
  }
10841
10873
  this.model = option;
10842
10874
  this.modelChange.emit(this.model);
10875
+ this.detectChanges();
10843
10876
  }
10844
10877
  closePopup() {
10845
10878
  this.keepFocussed = false;
@@ -12428,8 +12461,8 @@ LoaderComponent.decorators = [
12428
12461
  <ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -41.0887 100.8995)" class="circle" cx="101.25" cy="101.25" rx="77.58"
12429
12462
  ry="77.58"/>
12430
12463
  </g>
12431
- <g>
12432
- <circle id="ring" class="ring-color" cx="100" cy="100" r="90" fill="transparent" />
12464
+ <g id="ring" fill="none">
12465
+ <circle id="ring-loader" class="ring-color" cx="100" cy="100" r="90" fill="none" />
12433
12466
  </g>
12434
12467
  <g id="js">
12435
12468
  <path class="main-color" d="M87.93,149.17c-0.12-0.17-0.08-0.4,0.09-0.52l0.61-0.45c2.92-2.14,4.34-4.61,4.34-7.56l0-20.64h2.47
@@ -12503,6 +12536,58 @@ LoaderModule.decorators = [
12503
12536
  },] }
12504
12537
  ];
12505
12538
 
12539
+ class TileSelectComponent {
12540
+ constructor() {
12541
+ this.selected = false;
12542
+ this.readonly = false;
12543
+ this.showRadioButton = true;
12544
+ this.selectedChange = new EventEmitter();
12545
+ }
12546
+ showClass() {
12547
+ return true;
12548
+ }
12549
+ }
12550
+ TileSelectComponent.decorators = [
12551
+ { type: Component, args: [{
12552
+ selector: 'co-tile-select',
12553
+ template: `
12554
+ <div class="co-tile-wrapper" (click)="selectedChange.emit(selected)">
12555
+ <div class="co-tile-select-wrapper" *ngIf="showRadioButton">
12556
+ <co-input-radio-button [model]="selected" [readonly]="selected || readonly" (modelChange)="selectedChange.emit($event)"></co-input-radio-button>
12557
+ </div>
12558
+ <div class="co-tile-content-wrapper">
12559
+ <ng-content></ng-content>
12560
+ </div>
12561
+ </div>
12562
+ `,
12563
+ encapsulation: ViewEncapsulation.None
12564
+ },] }
12565
+ ];
12566
+ TileSelectComponent.propDecorators = {
12567
+ selected: [{ type: HostBinding, args: ['class.selected',] }, { type: Input }],
12568
+ readonly: [{ type: Input }],
12569
+ showRadioButton: [{ type: Input }],
12570
+ selectedChange: [{ type: Output }],
12571
+ showClass: [{ type: HostBinding, args: ['class.co-tile-select',] }]
12572
+ };
12573
+
12574
+ class TileSelectModule {
12575
+ }
12576
+ TileSelectModule.decorators = [
12577
+ { type: NgModule, args: [{
12578
+ imports: [
12579
+ CommonModule,
12580
+ InputRadioButtonModule
12581
+ ],
12582
+ declarations: [
12583
+ TileSelectComponent
12584
+ ],
12585
+ exports: [
12586
+ TileSelectComponent
12587
+ ]
12588
+ },] }
12589
+ ];
12590
+
12506
12591
  class FilterPipe {
12507
12592
  transform(items, field, value) {
12508
12593
  if (!items || !field) {
@@ -13194,5 +13279,5 @@ ColorSequenceService.decorators = [
13194
13279
  * Generated bundle index. Do not edit.
13195
13280
  */
13196
13281
 
13197
- 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, 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, 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, TextInputPopupComponent, TileComponent, TileModule, 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, 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 };
13282
+ 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, 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, 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, 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, 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 };
13198
13283
  //# sourceMappingURL=colijnit-corecomponents_v12.js.map