angular-slickgrid 8.5.0 → 8.5.1

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,4 +1,4 @@
1
- import { Locale } from '@slickgrid-universal/common';
1
+ import type { Locale } from '@slickgrid-universal/common';
2
2
  export declare class Constants {
3
3
  static readonly locales: Locale;
4
4
  static readonly treeDataProperties: {
@@ -1,11 +1,11 @@
1
- import { ApplicationRef, ComponentRef, Type, ViewContainerRef } from '@angular/core';
1
+ import type { ApplicationRef, ComponentRef, Type, ViewContainerRef } from '@angular/core';
2
2
  import type { EventSubscription, OnBeforeRowDetailToggleArgs, OnRowBackToViewportRangeArgs, RxJsFacade, SlickEventData, SlickEventHandler, SlickGrid } from '@slickgrid-universal/common';
3
3
  import { SlickRowSelectionModel } from '@slickgrid-universal/common';
4
- import { EventPubSubService } from '@slickgrid-universal/event-pub-sub';
4
+ import type { EventPubSubService } from '@slickgrid-universal/event-pub-sub';
5
5
  import { SlickRowDetailView as UniversalSlickRowDetailView } from '@slickgrid-universal/row-detail-view-plugin';
6
- import { Observable, Subject } from 'rxjs';
7
- import { GridOption, RowDetailView } from '../models/index';
8
- import { AngularUtilService } from '../services/angularUtil.service';
6
+ import { Observable, type Subject } from 'rxjs';
7
+ import type { GridOption, RowDetailView } from '../models/index';
8
+ import type { AngularUtilService } from '../services/angularUtil.service';
9
9
  export interface CreatedView {
10
10
  id: string | number;
11
11
  dataContext: any;
@@ -1,5 +1,5 @@
1
1
  export * from '@slickgrid-universal/common';
2
- export { AngularComponentOutput, AngularGridInstance, GridOption, RowDetailView } from './models/index';
2
+ export type { AngularComponentOutput, AngularGridInstance, GridOption, RowDetailView } from './models/index';
3
3
  export { AngularUtilService, unsubscribeAllObservables } from './services/index';
4
4
  export { SlickRowDetailView } from './extensions/index';
5
5
  export { SlickgridConfig } from './slickgrid-config';
@@ -1,4 +1,4 @@
1
- import { ComponentRef } from '@angular/core';
1
+ import type { ComponentRef } from '@angular/core';
2
2
  export interface AngularComponentOutput {
3
3
  componentRef: ComponentRef<any>;
4
4
  domElement: HTMLElement;
@@ -1,4 +1,4 @@
1
- import { Type } from '@angular/core';
1
+ import type { Type } from '@angular/core';
2
2
  import type { RowDetailView as UniversalRowDetailView } from '@slickgrid-universal/common';
3
3
  export interface RowDetailView extends UniversalRowDetailView {
4
4
  /**