HEX
Server: nginx/1.18.0
System: Linux vcwordpress 5.15.0-174-generic #184-Ubuntu SMP Fri Mar 13 18:41:50 UTC 2026 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/igsms.viitorcloud.co/igsmsportal/node_modules/recharts/types/state/zIndexSlice.d.ts
type ZIndexEntry = {
    /**
     * Reference to the DOM element that corresponds to this z-index.
     * This element is used to create a React portal for rendering components at this z-index.
     *
     * If undefined, it means no element is currently registered for this z-index,
     * and registration is in progress. If that happens, wait for the next render cycle.
     */
    element: Element | undefined;
    /**
     * Panorama items can't mix with normal items in the same z-index layer,
     * because they are rendered in a different SVG element.
     * So we need to have a separate element reference for panorama z-index portals.
     */
    panoramaElement: Element | undefined;
    consumers: number;
};
type ZIndexState = {
    zIndexMap: Record<number, ZIndexEntry>;
};
export declare const registerZIndexPortal: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: {
    zIndex: number;
}], {
    zIndex: number;
}, "zIndex/registerZIndexPortal", never, unknown>, unregisterZIndexPortal: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: {
    zIndex: number;
}], {
    zIndex: number;
}, "zIndex/unregisterZIndexPortal", never, unknown>, registerZIndexPortalElement: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: {
    zIndex: number;
    element: Element;
    isPanorama: boolean;
}], {
    zIndex: number;
    element: Element;
    isPanorama: boolean;
}, "zIndex/registerZIndexPortalElement", never, unknown>, unregisterZIndexPortalElement: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: {
    zIndex: number;
    isPanorama: boolean;
}], {
    zIndex: number;
    isPanorama: boolean;
}, "zIndex/unregisterZIndexPortalElement", never, unknown>;
export declare const zIndexReducer: import("redux").Reducer<ZIndexState>;
export {};