@zambon-dev/library 1.6.3 → 1.6.4
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,10 +1,10 @@
|
|
|
1
|
-
import { AfterViewInit, OnInit } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, OnInit, OnDestroy } from '@angular/core';
|
|
2
2
|
import { FormControl } from '@angular/forms';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { ICatalogEntry } from '../../models';
|
|
5
5
|
import { BaseComponent } from '../base.component';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class CatalogSelectComponent extends BaseComponent implements OnInit, AfterViewInit {
|
|
7
|
+
export declare class CatalogSelectComponent extends BaseComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
8
8
|
private bodyMouseDown;
|
|
9
9
|
private bodyMouseUp;
|
|
10
10
|
private dropdownTemplate;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { AfterViewInit, ChangeDetectorRef, OnInit } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, OnInit, OnDestroy } from '@angular/core';
|
|
2
2
|
import { IGridColumn } from '../../models';
|
|
3
3
|
import { DataGridConfigs } from '../../models/configs';
|
|
4
4
|
import { DataGridDataset } from '../../services';
|
|
5
5
|
import { BaseComponent } from '../base.component';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class DataGridComponent extends BaseComponent implements OnInit, AfterViewInit {
|
|
7
|
+
export declare class DataGridComponent extends BaseComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
8
8
|
private bodyElement;
|
|
9
9
|
private viewport?;
|
|
10
10
|
disabled: boolean;
|