@clasing/ui 0.1.54 → 0.1.55
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/index.d.ts +2 -1
- package/dist/index.es.js +909 -906
- package/dist/index.umd.js +5 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { ForwardRefExoticComponent } from 'react';
|
|
|
5
5
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
6
6
|
import { Matcher } from 'react-day-picker';
|
|
7
7
|
import { ReactNode } from 'react';
|
|
8
|
+
import { ReactPortal } from 'react';
|
|
8
9
|
import { RefAttributes } from 'react';
|
|
9
10
|
import { SetStateAction } from 'react';
|
|
10
11
|
import * as TablerIcons from '@tabler/icons-react';
|
|
@@ -329,7 +330,7 @@ declare interface ITooltipProps extends React.HTMLAttributes<HTMLSpanElement>, V
|
|
|
329
330
|
content: string;
|
|
330
331
|
}
|
|
331
332
|
|
|
332
|
-
export declare const Modal: ({ className, children, isOpen, setIsOpen, canClose, intent, }: ModalProps) =>
|
|
333
|
+
export declare const Modal: ({ className, children, isOpen, setIsOpen, canClose, intent, }: ModalProps) => ReactPortal | null;
|
|
333
334
|
|
|
334
335
|
declare interface ModalProps {
|
|
335
336
|
className?: string;
|