@colijnit/corecomponents_v12 258.1.17 → 258.1.19

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.
@@ -1,8 +1,21 @@
1
+ import { ChangeDetectorRef, ComponentFactoryResolver, ElementRef } from '@angular/core';
2
+ import { OverlayService } from '../../service/overlay.service';
1
3
  import { BaseInputDatePickerDirective } from "../base-input-date-picker/base-input-date-picker.directive";
4
+ import { FormComponent } from "../form/form.component";
5
+ import { FormInputUserModelChangeListenerService } from "../../core/service/form-input-user-change-listener.service";
6
+ import { NgZoneWrapperService } from "../../core/service/ng-zone-wrapper.service";
2
7
  export declare class InputDatePickerComponent extends BaseInputDatePickerDirective {
8
+ formComponent: FormComponent;
9
+ protected changeDetector: ChangeDetectorRef;
10
+ protected overlayService: OverlayService;
11
+ protected componentFactoryResolver: ComponentFactoryResolver;
12
+ protected formUserChangeListener?: FormInputUserModelChangeListenerService;
13
+ protected ngZoneWrapper?: NgZoneWrapperService;
14
+ elementRef?: ElementRef;
3
15
  modelAsString: string;
4
16
  private _calendarComponentRef;
5
17
  showClass(): boolean;
18
+ constructor(formComponent: FormComponent, changeDetector: ChangeDetectorRef, overlayService: OverlayService, componentFactoryResolver: ComponentFactoryResolver, formUserChangeListener?: FormInputUserModelChangeListenerService, ngZoneWrapper?: NgZoneWrapperService, elementRef?: ElementRef);
6
19
  handleDateSelected(date: Date): void;
7
20
  toggleCalendar(show: boolean): void;
8
21
  finalizeDate(): void;
@@ -1,8 +1,19 @@
1
- import { ElementRef, OnInit } from '@angular/core';
1
+ import { ChangeDetectorRef, ComponentFactoryResolver, ElementRef, OnInit } from '@angular/core';
2
2
  import { BaseInputComponent } from '../base/base-input.component';
3
3
  import { CoreComponentsIcon } from '../../core/enum/core-components-icon.enum';
4
+ import { OverlayService } from '../../service/overlay.service';
4
5
  import { SafeHtml } from '@angular/platform-browser';
6
+ import { FormComponent } from "../form/form.component";
7
+ import { FormInputUserModelChangeListenerService } from "../../core/service/form-input-user-change-listener.service";
8
+ import { NgZoneWrapperService } from "../../core/service/ng-zone-wrapper.service";
5
9
  export declare class ListOfValuesComponent extends BaseInputComponent<any> implements OnInit {
10
+ formComponent: FormComponent;
11
+ protected changeDetector: ChangeDetectorRef;
12
+ protected overlayService: OverlayService;
13
+ protected componentFactoryResolver: ComponentFactoryResolver;
14
+ protected formUserChangeListener?: FormInputUserModelChangeListenerService;
15
+ protected ngZoneWrapper?: NgZoneWrapperService;
16
+ elementRef?: ElementRef;
6
17
  readonly icons: typeof CoreComponentsIcon;
7
18
  set model(value: any);
8
19
  get model(): any;
@@ -30,6 +41,7 @@ export declare class ListOfValuesComponent extends BaseInputComponent<any> imple
30
41
  private _collection;
31
42
  private debounceTimeout;
32
43
  private _lovPopupComponentRef;
44
+ constructor(formComponent: FormComponent, changeDetector: ChangeDetectorRef, overlayService: OverlayService, componentFactoryResolver: ComponentFactoryResolver, formUserChangeListener?: FormInputUserModelChangeListenerService, ngZoneWrapper?: NgZoneWrapperService, elementRef?: ElementRef);
33
45
  ngOnInit(): void;
34
46
  handleInputModelChange(model: string): void;
35
47
  onModelChange(text: string): void;
@@ -8,6 +8,8 @@ export declare abstract class BaseSimpleGridComponent {
8
8
  set content(columnComponents: QueryList<SimpleGridColumnDirective>);
9
9
  set data(value: Object[]);
10
10
  get data(): Object[];
11
+ set exportData(value: Object[]);
12
+ get exportData(): Object[];
11
13
  dragDropEnabled: boolean;
12
14
  resizable: boolean;
13
15
  inlineEdit: boolean;
@@ -36,6 +38,7 @@ export declare abstract class BaseSimpleGridComponent {
36
38
  headerColumns: SimpleGridColumnDirective[];
37
39
  headerColumnsCopy: SimpleGridColumnDirective[];
38
40
  protected _data: Object[];
41
+ protected _exportData: Object[];
39
42
  protected disabledRows: number[];
40
43
  private _columnForResize;
41
44
  private _prepared;
@@ -4,12 +4,10 @@ import { BaseSimpleGridComponent } from './base-simple-grid.component';
4
4
  import { ColumnAlign } from './simple-grid-column.directive';
5
5
  import { CoreComponentsIcon } from '../../core/enum/core-components-icon.enum';
6
6
  import { IconCacheService } from '../icon/icon-cache.service';
7
- import { ExcelExportService } from '../../service/excel-export.service';
8
7
  export declare class SimpleGridComponent extends BaseSimpleGridComponent {
9
8
  icons: IconCacheService;
10
9
  private _changeDetection;
11
10
  private _formMaster;
12
- private excelExportService;
13
11
  readonly defaultTextAlign: ColumnAlign;
14
12
  set headerCells(cells: any);
15
13
  rowElements: QueryList<ElementRef>;
@@ -42,7 +40,7 @@ export declare class SimpleGridComponent extends BaseSimpleGridComponent {
42
40
  private _doubleClicked;
43
41
  private _newRow;
44
42
  private _newRowReference;
45
- constructor(icons: IconCacheService, _changeDetection: ChangeDetectorRef, _formMaster: FormMasterService, excelExportService: ExcelExportService);
43
+ constructor(icons: IconCacheService, _changeDetection: ChangeDetectorRef, _formMaster: FormMasterService);
46
44
  handleClickOutsideRow(): void;
47
45
  getIsRowDisabled(idx: number): boolean;
48
46
  isRowDisabled(row: any, index: number): Promise<boolean>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/corecomponents_v12",
3
- "version": "258.1.17",
3
+ "version": "258.1.19",
4
4
  "description": "Colijn IT core components for Angular 12",
5
5
  "private": false,
6
6
  "peerDependencies": {