@clasing/ui 0.1.53 → 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 +5 -1
- package/dist/index.es.js +1358 -1344
- package/dist/index.umd.js +6 -6
- 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';
|
|
@@ -258,6 +259,9 @@ declare interface IInteractiveCardProps extends React.HTMLAttributes<HTMLDivElem
|
|
|
258
259
|
badgeSize?: 'xs' | 'sm' | 'md' | 'lg';
|
|
259
260
|
iconName?: TablerIconName;
|
|
260
261
|
iconText?: string;
|
|
262
|
+
tooltipText?: string;
|
|
263
|
+
tooltipIconName?: TablerIconName;
|
|
264
|
+
tooltipPlacement?: 'top' | 'bottom';
|
|
261
265
|
}
|
|
262
266
|
|
|
263
267
|
export declare const Input: ForwardRefExoticComponent<InputProps & RefAttributes<HTMLInputElement | HTMLTextAreaElement>>;
|
|
@@ -326,7 +330,7 @@ declare interface ITooltipProps extends React.HTMLAttributes<HTMLSpanElement>, V
|
|
|
326
330
|
content: string;
|
|
327
331
|
}
|
|
328
332
|
|
|
329
|
-
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;
|
|
330
334
|
|
|
331
335
|
declare interface ModalProps {
|
|
332
336
|
className?: string;
|