@abdellatifui/react 3.1.59 → 3.1.61

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.
package/dist/nextgen.d.ts CHANGED
@@ -14,6 +14,7 @@ import { Dispatch } from 'react';
14
14
  import { ForwardRefExoticComponent } from 'react';
15
15
  import { HeadersDefaults } from 'axios';
16
16
  import { InternalAxiosRequestConfig } from 'axios';
17
+ import { IntersectionOptions } from 'react-intersection-observer';
17
18
  import { JSX as JSX_2 } from 'react/jsx-runtime';
18
19
  import { MapProps } from 'react-map-gl/maplibre';
19
20
  import { MutableRefObject } from 'react';
@@ -434,6 +435,16 @@ export declare interface LabelProps extends HeadlineProps {
434
435
  error?: string;
435
436
  }
436
437
 
438
+ export declare const LazyContainer: (props: LazyContainerProps) => JSX_2.Element;
439
+
440
+ declare type LazyContainerProps = {
441
+ children: default_2.ReactNode;
442
+ triggerOnce: boolean;
443
+ threshold: number;
444
+ divProps: default_2.HTMLAttributes<HTMLDivElement>;
445
+ lazyProps: IntersectionOptions;
446
+ } & default_2.HTMLAttributes<HTMLDivElement>;
447
+
437
448
  export declare const loadFonts: () => void;
438
449
 
439
450
  export declare const loadFontsOnInteraction: () => void;