@clasing/ui 0.1.53 → 0.1.54
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 +3 -0
- package/dist/index.es.js +564 -553
- package/dist/index.umd.js +6 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -258,6 +258,9 @@ declare interface IInteractiveCardProps extends React.HTMLAttributes<HTMLDivElem
|
|
|
258
258
|
badgeSize?: 'xs' | 'sm' | 'md' | 'lg';
|
|
259
259
|
iconName?: TablerIconName;
|
|
260
260
|
iconText?: string;
|
|
261
|
+
tooltipText?: string;
|
|
262
|
+
tooltipIconName?: TablerIconName;
|
|
263
|
+
tooltipPlacement?: 'top' | 'bottom';
|
|
261
264
|
}
|
|
262
265
|
|
|
263
266
|
export declare const Input: ForwardRefExoticComponent<InputProps & RefAttributes<HTMLInputElement | HTMLTextAreaElement>>;
|