@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 +11 -0
- package/dist/nextgen.js +5029 -4869
- package/dist/style.css +1 -1
- package/dist/types/components/Alerts/Store/PrimaryHeader.d.ts.map +1 -1
- package/dist/types/components/Buttons/Button.d.ts.map +1 -1
- package/dist/types/components/Containers/LazyContainer.d.ts +12 -0
- package/dist/types/components/Containers/LazyContainer.d.ts.map +1 -0
- package/dist/types/components/NetworkMap/Map.d.ts.map +1 -1
- package/dist/types/components/Tables/NextGen/main/hooks/useExcelFilters.d.ts +0 -1
- package/dist/types/components/Tables/NextGen/main/hooks/useExcelFilters.d.ts.map +1 -1
- package/dist/types/components/Tables/NextGen/main/hooks/useGenerateHeaders.d.ts +18 -1
- package/dist/types/components/Tables/NextGen/main/hooks/useGenerateHeaders.d.ts.map +1 -1
- package/dist/types/components/Tables/NextGen/main/hooks/useTableMenu.d.ts.map +1 -1
- package/dist/types/components/Tables/NextGen/main/plugins/ExcelFilter/ExcelFilter.d.ts.map +1 -1
- package/dist/types/components/Tables/NextGen/main/plugins/ExcelFilter/FilterableHeader.d.ts.map +1 -1
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/components/index.d.ts.map +1 -1
- package/dist/types/stories/Buttons/Button.stories.d.ts +0 -1
- package/dist/types/stories/Buttons/Button.stories.d.ts.map +1 -1
- package/package.json +3 -1
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;
|