@colijnit/corecomponents_v12 12.0.104 → 12.0.106

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 (37) hide show
  1. package/bundles/colijnit-corecomponents_v12.umd.js +129 -113
  2. package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
  3. package/colijnit-corecomponents_v12-12.0.106.tgz +0 -0
  4. package/colijnit-corecomponents_v12.d.ts +1 -1
  5. package/colijnit-corecomponents_v12.metadata.json +1 -1
  6. package/esm2015/colijnit-corecomponents_v12.js +2 -2
  7. package/esm2015/lib/components/base/base-input.component.js +3 -1
  8. package/esm2015/lib/components/input-text/input-text.component.js +7 -1
  9. package/esm2015/lib/components/list-of-values/list-of-values-multiselect-popup.component.js +112 -0
  10. package/esm2015/lib/components/list-of-values/list-of-values-popup.component.js +2 -2
  11. package/esm2015/lib/components/list-of-values/list-of-values.component.js +25 -8
  12. package/esm2015/lib/components/list-of-values/list-of-values.module.js +6 -4
  13. package/esm2015/public-api.js +2 -3
  14. package/fesm2015/colijnit-corecomponents_v12.js +144 -128
  15. package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
  16. package/lib/components/base/base-input.component.d.ts +1 -0
  17. package/lib/components/base-input-date-picker/style/_layout.scss +56 -6
  18. package/lib/components/co-input-date-picker/style/_layout.scss +3 -0
  19. package/lib/components/co-input-date-range-picker/style/_layout.scss +1 -1
  20. package/lib/components/filter-item/style/_material-definition.scss +1 -0
  21. package/lib/components/filter-item/style/_theme.scss +3 -1
  22. package/lib/components/input-text/input-text.component.d.ts +1 -0
  23. package/lib/components/input-text/style/_layout.scss +6 -1
  24. package/lib/components/{list-of-values-multiselect-search/list-of-values-multiselect-search.component.d.ts → list-of-values/list-of-values-multiselect-popup.component.d.ts} +9 -5
  25. package/lib/components/list-of-values/style/_layout.scss +68 -0
  26. package/lib/components/list-of-values/style/_material-definition.scss +11 -0
  27. package/lib/components/simple-grid/style/_layout.scss +0 -20
  28. package/lib/style/_variables.scss +1 -2
  29. package/package.json +1 -1
  30. package/public-api.d.ts +1 -2
  31. package/esm2015/lib/components/list-of-values-multiselect-search/list-of-values-multiselect-search.component.js +0 -101
  32. package/esm2015/lib/components/list-of-values-multiselect-search/list-of-values-multiselect-search.module.js +0 -25
  33. package/lib/components/list-of-values-multiselect-search/list-of-values-multiselect-search.module.d.ts +0 -2
  34. package/lib/components/list-of-values-multiselect-search/style/_layout.scss +0 -69
  35. package/lib/components/list-of-values-multiselect-search/style/_material-definition.scss +0 -8
  36. package/lib/components/list-of-values-multiselect-search/style/_theme.scss +0 -0
  37. package/lib/components/list-of-values-multiselect-search/style/material.scss +0 -4
@@ -4064,6 +4064,7 @@ class BaseInputComponent {
4064
4064
  this.formUserChangeListener = formUserChangeListener;
4065
4065
  this.ngZoneWrapper = ngZoneWrapper;
4066
4066
  this.elementRef = elementRef;
4067
+ this.icons = CoreComponentsIcon;
4067
4068
  this.showSaveCancel = false;
4068
4069
  this.noValidation = false;
4069
4070
  this.forceRequired = false; // a force outside of [cfgName]'s influence
@@ -7393,6 +7394,9 @@ class InputTextComponent extends BaseInputComponent {
7393
7394
  event.stopPropagation();
7394
7395
  this.rightIconClick.emit(event);
7395
7396
  }
7397
+ clearInput() {
7398
+ this.model = null;
7399
+ }
7396
7400
  }
7397
7401
  InputTextComponent.decorators = [
7398
7402
  { type: Component, args: [{
@@ -7415,6 +7419,9 @@ InputTextComponent.decorators = [
7415
7419
  (ngModelChange)="modelChange.emit($event)"
7416
7420
  (keydown)="digitsOnly ? excludeNonDigitChars($event) : true"
7417
7421
  >
7422
+ <div *ngIf="showClearButton && model" class="input-text-clear-button" (click)="clearInput()">
7423
+ <co-icon [icon]="icons.CrossSkinny"></co-icon>
7424
+ </div>
7418
7425
  </div>
7419
7426
  <div *ngIf="rightIcon" class="spacer"></div>
7420
7427
  <co-icon *ngIf="rightIcon" class="input-text-right-icon" [icon]="rightIcon" [iconData]="rightIconData"
@@ -10761,7 +10768,7 @@ ListOfValuesPopupComponent.decorators = [
10761
10768
  <co-input-text *ngIf="!searchDisabled" [(model)]="searchTerm" [placeholder]="searchPlaceholder" (modelChange)="filterOptions()"></co-input-text>
10762
10769
  <ul>
10763
10770
  <li *ngFor="let option of filteredOptions" [class.selected]="option === model" (click)="onOptionClick(option)">
10764
- <span [textContent]="option[displayField]"></span>
10771
+ <span class="lov-options-text" [textContent]="option[displayField]"></span>
10765
10772
  </li>
10766
10773
  </ul>
10767
10774
  </div>
@@ -10785,6 +10792,115 @@ ListOfValuesPopupComponent.propDecorators = {
10785
10792
  collection: [{ type: Input }]
10786
10793
  };
10787
10794
 
10795
+ class ListOfValuesMultiselectPopupComponent extends BaseInputComponent {
10796
+ constructor() {
10797
+ super(...arguments);
10798
+ this.icons = CoreComponentsIcon;
10799
+ this.chosenCollection = new EventEmitter();
10800
+ this.closePopup = new EventEmitter();
10801
+ this.displayField = 'description';
10802
+ this.selectedCollection = [];
10803
+ this.selectedOptions = [];
10804
+ this.allOptionsSelected = false;
10805
+ this.searchTerm = '';
10806
+ this._collection = [];
10807
+ }
10808
+ showClass() {
10809
+ return true;
10810
+ }
10811
+ set collection(value) {
10812
+ this._collection = value || [];
10813
+ this.searchCollection();
10814
+ }
10815
+ get collection() {
10816
+ return this._collection;
10817
+ }
10818
+ get filteredCollection() {
10819
+ if (this.searchTerm.trim() === '') {
10820
+ return this.collection;
10821
+ }
10822
+ return this.collection.filter((option) => option.label.toLowerCase().includes(this.searchTerm.toLowerCase()));
10823
+ }
10824
+ ngOnInit() {
10825
+ if (this.returnChosenCollection) {
10826
+ this.selectedCollection = this.returnChosenCollection;
10827
+ }
10828
+ }
10829
+ onOptionClick(option) {
10830
+ const index = this.selectedCollection.findIndex((selectedOption) => selectedOption.value === option.value);
10831
+ if (index !== -1) {
10832
+ this.selectedCollection.splice(index, 1);
10833
+ }
10834
+ else {
10835
+ this.selectedCollection.push(option);
10836
+ }
10837
+ }
10838
+ okClicked() {
10839
+ this.chosenCollection.emit(this.selectedCollection);
10840
+ this.closePopup.emit();
10841
+ }
10842
+ onToggleSelectAll() {
10843
+ if (this.allOptionsSelected) {
10844
+ this.selectedCollection = [];
10845
+ this.allOptionsSelected = false;
10846
+ }
10847
+ else {
10848
+ this.selectedCollection = [...this.collection];
10849
+ this.allOptionsSelected = true;
10850
+ }
10851
+ }
10852
+ searchCollection() {
10853
+ this.selectedOptions = this.selectedOptions.filter((option) => {
10854
+ if (this.collection) {
10855
+ return this.searchTerm.includes(option.label);
10856
+ }
10857
+ else {
10858
+ return this.searchTerm.includes(option.value);
10859
+ }
10860
+ });
10861
+ }
10862
+ }
10863
+ ListOfValuesMultiselectPopupComponent.decorators = [
10864
+ { type: Component, args: [{
10865
+ selector: "co-list-of-values-multiselect-popup",
10866
+ template: `
10867
+ <div class="co-list-of-values-multiselect-popup" [overlay]="parentForOverlay" [inheritWidth]="true">
10868
+ <div class="list-of-values-multiselect-search-input-text">
10869
+ <co-input-text [placeholder]="'Zoeken...'" [(model)]="searchTerm" (input)="searchCollection()"></co-input-text>
10870
+ </div>
10871
+ <div class="list-of-values-multiselect-options">
10872
+ <div class="list-of-values-multiselect-search-deselect" (click)="onToggleSelectAll()">
10873
+ <span [textContent]="'(De)selecteer alles'"></span>
10874
+ <co-icon [icon]="icons.CheckRound"></co-icon>
10875
+ </div>
10876
+ <div class="list-of-values-multiselect-list">
10877
+ <ul>
10878
+ <li *ngFor="let option of filteredCollection" (click)="onOptionClick(option)">
10879
+ <co-input-checkbox class="lov-options-checkbox" (modelChange)="onOptionClick(option)" [model]="selectedCollection.includes(option)"></co-input-checkbox>
10880
+ <span>{{ option[displayField] }}</span>
10881
+ </li>
10882
+ </ul>
10883
+ </div>
10884
+ <div class="list-of-values-multiselect-ok-button" (click)="okClicked()">
10885
+ <span [textContent]="'Ok'"></span>
10886
+ <co-icon [icon]="icons.Check"></co-icon>
10887
+ </div>
10888
+ </div>
10889
+ </div>
10890
+ `,
10891
+ encapsulation: ViewEncapsulation.None
10892
+ },] }
10893
+ ];
10894
+ ListOfValuesMultiselectPopupComponent.propDecorators = {
10895
+ showClass: [{ type: HostBinding, args: ["class.co-list-of-values-multiselect-popup",] }],
10896
+ chosenCollection: [{ type: Output }],
10897
+ closePopup: [{ type: Output }],
10898
+ returnChosenCollection: [{ type: Input }],
10899
+ parentForOverlay: [{ type: Input }],
10900
+ displayField: [{ type: Input }],
10901
+ collection: [{ type: Input }]
10902
+ };
10903
+
10788
10904
  class ListOfValuesComponent extends BaseInputComponent {
10789
10905
  constructor() {
10790
10906
  super(...arguments);
@@ -10880,9 +10996,27 @@ class ListOfValuesComponent extends BaseInputComponent {
10880
10996
  }
10881
10997
  openMultiselectSearch() {
10882
10998
  this.searchClicked = true;
10999
+ if (this.searchClicked) {
11000
+ this.overlayService.createComponent(ListOfValuesMultiselectPopupComponent, {
11001
+ parentForOverlay: this.parentForOverlay,
11002
+ customCssClass: this.customCssClass,
11003
+ searchDisabled: this.searchDisabled,
11004
+ searchPlaceholder: this.searchPlaceholder,
11005
+ displayField: this.displayField,
11006
+ collection: this.collection
11007
+ }, {
11008
+ chosenCollection: (value) => this.optionChosen(value),
11009
+ closePopup: () => this.closePopup()
11010
+ });
11011
+ }
11012
+ else {
11013
+ this.overlayService.removeComponent();
11014
+ }
10883
11015
  }
10884
11016
  optionChosen(option) {
10885
11017
  this.selectedModel = option[this.displayField];
11018
+ this.model = option;
11019
+ this.modelChange.emit(this.model);
10886
11020
  }
10887
11021
  closePopup() {
10888
11022
  this.overlayService.removeComponent();
@@ -10892,6 +11026,7 @@ ListOfValuesComponent.decorators = [
10892
11026
  { type: Component, args: [{
10893
11027
  selector: "co-list-of-values",
10894
11028
  template: `
11029
+ <!--Single select component-->
10895
11030
  <div class="lov-container">
10896
11031
  <div class="lov-container-child" *ngIf="!multiselect">
10897
11032
  <div class="search-wrapper" overlayParent #parentForOverlay="overlayParent">
@@ -10905,14 +11040,14 @@ ListOfValuesComponent.decorators = [
10905
11040
  [rightIcon]="icons.ArrowPointDown"
10906
11041
  (click)="toggleSelect()"
10907
11042
  (rightIconClick)="toggleSelect()"
11043
+ [showClearButton]="true"
10908
11044
  ></co-input-text>
10909
11045
  </div>
10910
-
10911
-
10912
-
10913
11046
  </div>
11047
+
11048
+ <!--Multiselect component-->
10914
11049
  <div *ngIf="multiselect">
10915
- <div class="search-wrapper-multiselect" (click)="openMultiselectSearch()" *ngIf="!searchClicked">
11050
+ <div class="search-wrapper-multiselect" (click)="openMultiselectSearch()" overlayParent #parentForOverlay="overlayParent">
10916
11051
  <div class="tag-wrapper">
10917
11052
  <ul class="tag-ul-wrapper">
10918
11053
  <li class="tag" *ngFor="let tags of multiselectTags">
@@ -10921,9 +11056,6 @@ ListOfValuesComponent.decorators = [
10921
11056
  </ul>
10922
11057
  </div>
10923
11058
  </div>
10924
- <div *ngIf="searchClicked">
10925
- <co-list-of-values-multiselect-search [collection]="filteredOptions" [returnChosenCollection]="multiselectTags" (okButtonClicked)="multiselectOkClick()" (chosenCollection)="createMultiSelectTags($event)"></co-list-of-values-multiselect-search>
10926
- </div>
10927
11059
  </div>
10928
11060
  </div>
10929
11061
  `,
@@ -11163,123 +11295,6 @@ ClickoutsideModule.decorators = [
11163
11295
  },] }
11164
11296
  ];
11165
11297
 
11166
- class ListOfValuesMultiselectSearch extends BaseInputComponent {
11167
- constructor() {
11168
- super(...arguments);
11169
- this.icons = CoreComponentsIcon;
11170
- this.chosenCollection = new EventEmitter();
11171
- this.okButtonClicked = new EventEmitter();
11172
- this.selectedCollection = [];
11173
- this.selectedOptions = [];
11174
- this.allOptionsSelected = false;
11175
- this.searchTerm = '';
11176
- }
11177
- showClass() {
11178
- return true;
11179
- }
11180
- get filteredCollection() {
11181
- if (this.searchTerm.trim() === '') {
11182
- return this.collection;
11183
- }
11184
- return this.collection.filter((option) => option.label.toLowerCase().includes(this.searchTerm.toLowerCase()));
11185
- }
11186
- ngOnInit() {
11187
- if (this.returnChosenCollection) {
11188
- this.selectedCollection = this.returnChosenCollection;
11189
- }
11190
- }
11191
- onOptionClick(option) {
11192
- const index = this.selectedCollection.findIndex((selectedOption) => selectedOption.value === option.value);
11193
- if (index !== -1) {
11194
- this.selectedCollection.splice(index, 1);
11195
- }
11196
- else {
11197
- this.selectedCollection.push(option);
11198
- }
11199
- }
11200
- okClicked() {
11201
- this.chosenCollection.emit(this.selectedCollection);
11202
- this.okButtonClicked.emit();
11203
- }
11204
- onToggleSelectAll() {
11205
- if (this.allOptionsSelected) {
11206
- this.selectedCollection = [];
11207
- this.allOptionsSelected = false;
11208
- }
11209
- else {
11210
- this.selectedCollection = [...this.collection];
11211
- this.allOptionsSelected = true;
11212
- }
11213
- }
11214
- searchCollection() {
11215
- this.selectedOptions = this.selectedOptions.filter((option) => {
11216
- if (this.collection) {
11217
- return this.searchTerm.includes(option.label);
11218
- }
11219
- else {
11220
- return this.searchTerm.includes(option.value);
11221
- }
11222
- });
11223
- }
11224
- }
11225
- ListOfValuesMultiselectSearch.decorators = [
11226
- { type: Component, args: [{
11227
- selector: "co-list-of-values-multiselect-search",
11228
- template: `
11229
- <div class="co-list-of-values-multiselect-search">
11230
- <div class="list-of-values-multiselect-search-input-text">
11231
- <co-input-text [placeholder]="'Zoeken...'" [(model)]="searchTerm" (input)="searchCollection()"></co-input-text>
11232
- </div>
11233
- <div class="list-of-values-multiselect-options">
11234
- <div class="list-of-values-multiselect-search-deselect" (click)="onToggleSelectAll()">
11235
- <span [textContent]="'(De)selecteer alles'"></span>
11236
- <co-icon [icon]="icons.CheckRound"></co-icon>
11237
- </div>
11238
- <div class="list-of-values-multiselect-list">
11239
- <ul>
11240
- <li *ngFor="let option of filteredCollection" (click)="onOptionClick(option)">
11241
- <co-input-checkbox class="lov-options-checkbox" (modelChange)="onOptionClick(option)" [model]="selectedCollection.includes(option)"></co-input-checkbox>
11242
- <span>{{ option.label }}</span>
11243
- </li>
11244
- </ul>
11245
- </div>
11246
- <div class="list-of-values-multiselect-ok-button" (click)="okClicked()">
11247
- <span [textContent]="'Ok'"></span>
11248
- <co-icon [icon]="icons.Check"></co-icon>
11249
- </div>
11250
- </div>
11251
- </div>
11252
- `,
11253
- encapsulation: ViewEncapsulation.None
11254
- },] }
11255
- ];
11256
- ListOfValuesMultiselectSearch.propDecorators = {
11257
- showClass: [{ type: HostBinding, args: ["class.co-list-of-values-multiselect-search",] }],
11258
- collection: [{ type: Input }],
11259
- returnChosenCollection: [{ type: Input }],
11260
- chosenCollection: [{ type: Output }],
11261
- okButtonClicked: [{ type: Output }]
11262
- };
11263
-
11264
- class ListOfValuesMultiselectSearchModule {
11265
- }
11266
- ListOfValuesMultiselectSearchModule.decorators = [
11267
- { type: NgModule, args: [{
11268
- imports: [
11269
- CommonModule,
11270
- InputTextModule,
11271
- IconModule,
11272
- InputCheckboxModule,
11273
- ],
11274
- declarations: [
11275
- ListOfValuesMultiselectSearch
11276
- ],
11277
- exports: [
11278
- ListOfValuesMultiselectSearch
11279
- ]
11280
- },] }
11281
- ];
11282
-
11283
11298
  class ListOfValuesModule {
11284
11299
  }
11285
11300
  ListOfValuesModule.decorators = [
@@ -11291,11 +11306,12 @@ ListOfValuesModule.decorators = [
11291
11306
  InputCheckboxModule,
11292
11307
  OverlayModule,
11293
11308
  ClickoutsideModule,
11294
- ListOfValuesMultiselectSearchModule
11309
+ IconModule
11295
11310
  ],
11296
11311
  declarations: [
11297
11312
  ListOfValuesComponent,
11298
- ListOfValuesPopupComponent
11313
+ ListOfValuesPopupComponent,
11314
+ ListOfValuesMultiselectPopupComponent
11299
11315
  ],
11300
11316
  exports: [
11301
11317
  ListOfValuesComponent
@@ -12040,5 +12056,5 @@ ColorSequenceService.decorators = [
12040
12056
  * Generated bundle index. Do not edit.
12041
12057
  */
12042
12058
 
12043
- export { ArticleTileComponent, ArticleTileModule, ButtonComponent, ButtonDropDownComponent, ButtonDropDownModule, ButtonModule, CardComponent, CardModule, Carousel3dComponent, Carousel3dModule, CarouselComponent, CarouselHammerConfig, CarouselModule, CheckmarkOverlayModule, ClickoutsideModule, CoDialogComponent, CoDialogModule, CoDialogWizardComponent, CoDialogWizardModule, CoDirection, CoGridComponent, CoGridModule, CoKanbanComponent, CoKanbanModule, CoOrientation, CoPivotComponent, CoPivotModule, CoScheduleComponent, CoScheduleModule, CoSidebarComponent, CoSidebarModule, CoToggleComponent, CoToggleModule, CollapsibleComponent, CollapsibleModule, ColorSequenceService, ColumnAlign, ContentViewMode, CoreComponentsIcon, DropDownListComponent, DropDownModule, FilterItemComponent, FilterItemModule, FilterItemViewmodel, FilterPipe, FilterPipeModule, FilterViewmodel, FormComponent, FormMasterService, FormModule, GridToolbarButtonComponent, GridToolbarButtonModule, GridToolbarComponent, GridToolbarModule, IconCacheService, IconCollapseHandleComponent, IconCollapseHandleModule, IconComponent, IconModule, ImageComponent, ImageModule, InputCheckboxComponent, InputCheckboxModule, InputCheckboxMultiSelectComponent, InputCheckboxMultiSelectModule, InputComboBoxComponent, InputComboBoxModule, InputDatePickerComponent, InputDatePickerModule, InputDateRangePickerComponent, InputDateRangePickerModule, InputListboxComponent, InputListboxModule, InputNumberPickerComponent, InputNumberPickerModule, InputRadioButtonComponent, InputRadioButtonModule, InputSearchComponent, InputSearchModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, LevelIndicatorComponent, LevelIndicatorModule, ListOfValuesComponent, ListOfValuesModule, ListOfValuesMultiselectSearch, ListOfValuesMultiselectSearchModule, MultiSelectListComponent, MultiSelectListModule, ObserveVisibilityModule, OrientationOfDirection, OverlayModule, OverlayService, PaginationBarComponent, PaginationBarModule, PaginationComponent, PaginationModule, PopupButtonsComponent, PopupMessageDisplayComponent, PopupModule, PopupWindowShellComponent, PriceDisplayPipe, PriceDisplayPipeModule, PromptService, SCREEN_CONFIG_ADAPTER_COMPONENT_INTERFACE_NAME, ScreenConfigurationModule, SimpleGridColumnDirective, SimpleGridComponent, SimpleGridModule, TextInputPopupComponent, TileComponent, TileModule, TooltipDirectiveModule, ViewModeButtonsComponent, ViewModeButtonsModule, showHideDialogAnimation, RippleModule as ɵa, MD_RIPPLE_GLOBAL_OPTIONS as ɵb, BaseSimpleGridComponent as ɵba, ObserveVisibilityDirective as ɵbb, PaginationService as ɵbc, PaginatePipe as ɵbd, SimpleGridCellComponent as ɵbe, ClickOutsideDirective as ɵbf, ClickOutsideMasterService as ɵbg, ListOfValuesPopupComponent as ɵbh, PrependPipeModule as ɵbi, PrependPipe as ɵbj, TooltipModule as ɵbk, TooltipComponent as ɵbl, TooltipDirective as ɵbm, CheckmarkOverlayComponent as ɵbn, ScreenConfigurationDirective as ɵbo, ScreenConfigComponentWrapper as ɵbp, CoRippleDirective as ɵc, CoViewportRulerService as ɵd, CoScrollDispatcherService as ɵe, CoScrollableDirective as ɵf, StopClickModule as ɵg, StopClickDirective as ɵh, InputBoolean as ɵi, BaseModule as ɵj, FormInputUserModelChangeListenerService as ɵk, NgZoneWrapperService as ɵl, BaseInputComponent as ɵm, BaseSelectionGridComponent as ɵn, BaseInlineEditGridComponent as ɵo, BaseToolbarGridComponent as ɵp, BaseGridComponent as ɵq, AppendPipeModule as ɵr, AppendPipe as ɵs, CommitButtonsModule as ɵt, CommitButtonsComponent as ɵu, ValidationErrorModule as ɵv, OverlayDirective as ɵw, OverlayParentDirective as ɵx, ValidationErrorComponent as ɵy, PopupShowerService as ɵz };
12059
+ export { ArticleTileComponent, ArticleTileModule, ButtonComponent, ButtonDropDownComponent, ButtonDropDownModule, ButtonModule, CardComponent, CardModule, Carousel3dComponent, Carousel3dModule, CarouselComponent, CarouselHammerConfig, CarouselModule, CheckmarkOverlayModule, ClickoutsideModule, CoDialogComponent, CoDialogModule, CoDialogWizardComponent, CoDialogWizardModule, CoDirection, CoGridComponent, CoGridModule, CoKanbanComponent, CoKanbanModule, CoOrientation, CoPivotComponent, CoPivotModule, CoScheduleComponent, CoScheduleModule, CoSidebarComponent, CoSidebarModule, CoToggleComponent, CoToggleModule, CollapsibleComponent, CollapsibleModule, ColorSequenceService, ColumnAlign, ContentViewMode, CoreComponentsIcon, DropDownListComponent, DropDownModule, FilterItemComponent, FilterItemModule, FilterItemViewmodel, FilterPipe, FilterPipeModule, FilterViewmodel, FormComponent, FormMasterService, FormModule, GridToolbarButtonComponent, GridToolbarButtonModule, GridToolbarComponent, GridToolbarModule, IconCacheService, IconCollapseHandleComponent, IconCollapseHandleModule, IconComponent, IconModule, ImageComponent, ImageModule, InputCheckboxComponent, InputCheckboxModule, InputCheckboxMultiSelectComponent, InputCheckboxMultiSelectModule, InputComboBoxComponent, InputComboBoxModule, InputDatePickerComponent, InputDatePickerModule, InputDateRangePickerComponent, InputDateRangePickerModule, InputListboxComponent, InputListboxModule, InputNumberPickerComponent, InputNumberPickerModule, InputRadioButtonComponent, InputRadioButtonModule, InputSearchComponent, InputSearchModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, LevelIndicatorComponent, LevelIndicatorModule, ListOfValuesComponent, ListOfValuesModule, ListOfValuesPopupComponent, MultiSelectListComponent, MultiSelectListModule, ObserveVisibilityModule, OrientationOfDirection, OverlayModule, OverlayService, PaginationBarComponent, PaginationBarModule, PaginationComponent, PaginationModule, PopupButtonsComponent, PopupMessageDisplayComponent, PopupModule, PopupWindowShellComponent, PriceDisplayPipe, PriceDisplayPipeModule, PromptService, SCREEN_CONFIG_ADAPTER_COMPONENT_INTERFACE_NAME, ScreenConfigurationModule, SimpleGridColumnDirective, SimpleGridComponent, SimpleGridModule, TextInputPopupComponent, TileComponent, TileModule, TooltipDirectiveModule, ViewModeButtonsComponent, ViewModeButtonsModule, showHideDialogAnimation, RippleModule as ɵa, MD_RIPPLE_GLOBAL_OPTIONS as ɵb, BaseSimpleGridComponent as ɵba, ObserveVisibilityDirective as ɵbb, PaginationService as ɵbc, PaginatePipe as ɵbd, SimpleGridCellComponent as ɵbe, ClickOutsideDirective as ɵbf, ClickOutsideMasterService as ɵbg, ListOfValuesMultiselectPopupComponent as ɵbh, PrependPipeModule as ɵbi, PrependPipe as ɵbj, TooltipModule as ɵbk, TooltipComponent as ɵbl, TooltipDirective as ɵbm, CheckmarkOverlayComponent as ɵbn, ScreenConfigurationDirective as ɵbo, ScreenConfigComponentWrapper as ɵbp, CoRippleDirective as ɵc, CoViewportRulerService as ɵd, CoScrollDispatcherService as ɵe, CoScrollableDirective as ɵf, StopClickModule as ɵg, StopClickDirective as ɵh, InputBoolean as ɵi, BaseModule as ɵj, FormInputUserModelChangeListenerService as ɵk, NgZoneWrapperService as ɵl, BaseInputComponent as ɵm, BaseSelectionGridComponent as ɵn, BaseInlineEditGridComponent as ɵo, BaseToolbarGridComponent as ɵp, BaseGridComponent as ɵq, AppendPipeModule as ɵr, AppendPipe as ɵs, CommitButtonsModule as ɵt, CommitButtonsComponent as ɵu, ValidationErrorModule as ɵv, OverlayDirective as ɵw, OverlayParentDirective as ɵx, ValidationErrorComponent as ɵy, PopupShowerService as ɵz };
12044
12060
  //# sourceMappingURL=colijnit-corecomponents_v12.js.map