@egjs/ngx-infinitegrid 4.9.0 → 4.10.0-beta.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.
@@ -8,7 +8,7 @@ import { InfiniteGridFunction, InfiniteGridItem, InfiniteGridOptions, OnContentE
8
8
  import { NgxInfiniteGridInterface } from './ngx-infinitegrid.interface';
9
9
  import { NgxInfiniteGridProps } from './types';
10
10
  export declare class NgxInfiniteGridComponent extends NgxInfiniteGridInterface implements Required<InfiniteGridOptions>, NgxInfiniteGridProps, AfterViewInit, AfterViewChecked, OnChanges, OnDestroy {
11
- protected elementRef: ElementRef<HTMLElement>;
11
+ elementRef: ElementRef<HTMLElement>;
12
12
  private _platformId;
13
13
  private _ngZone;
14
14
  static GridClass: InfiniteGridFunction | null;
@@ -40,6 +40,7 @@ export declare class NgxInfiniteGridComponent extends NgxInfiniteGridInterface i
40
40
  useResizeObserver: NgxInfiniteGridProps['useResizeObserver'];
41
41
  observeChildren: NgxInfiniteGridProps['observeChildren'];
42
42
  scrollContainer: NgxInfiniteGridProps['scrollContainer'];
43
+ appliedItemChecker: NgxInfiniteGridProps['appliedItemChecker'];
43
44
  usePlaceholder: NgxInfiniteGridProps['useFirstRender'];
44
45
  useLoading: NgxInfiniteGridProps['useLoading'];
45
46
  status: NgxInfiniteGridProps['status'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@egjs/ngx-infinitegrid",
3
- "version": "4.9.0",
3
+ "version": "4.10.0-beta.1",
4
4
  "description": "An Angular component that can arrange items infinitely according to the type of grids",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,10 +17,6 @@
17
17
  "url": "https://github.com/naver/egjs-infinitegrid/issues"
18
18
  },
19
19
  "license": "MIT",
20
- "peerDependencies": {
21
- "@angular/common": ">=11.0.0",
22
- "@angular/core": ">=11.0.0"
23
- },
24
20
  "dependencies": {
25
21
  "@egjs/infinitegrid": "~4.9.0",
26
22
  "tslib": "^2.0.0"
@@ -0,0 +1,4 @@
1
+ /** This shouldn't be used outside of the library, required for the Ivy compilation. */
2
+ export { NgxJustifiedInfiniteGridComponent as ɵNgxJustifiedInfiniteGridComponent } from './lib/grids/ngx-justified-infinitegrid.component';
3
+ export { NgxFrameInfiniteGridComponent as ɵNgxFrameInfiniteGridComponent } from './lib/grids/ngx-frame-infinitegrid.component';
4
+ export { NgxPackingInfiniteGridComponent as ɵNgxPackingInfiniteGridComponent } from './lib/grids/ngx-packing-infinitegrid.component';
package/public-api.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './lib/grids/ngx-masonry-infinitegrid.component';
2
2
  export * from './lib/ngx-infinitegrid.component';
3
3
  export * from './lib/ngx-infinitegrid.module';
4
+ export * from './private_export';