@clasing/ui 0.1.119 → 0.1.121

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 CHANGED
@@ -204,6 +204,8 @@ declare interface IButtonIconProps extends Omit<default_2.ButtonHTMLAttributes<H
204
204
  iconText?: string;
205
205
  isLoading?: boolean;
206
206
  isActive?: boolean;
207
+ tooltip?: default_2.ReactNode;
208
+ tooltipPlacement?: Placement;
207
209
  }
208
210
 
209
211
  declare interface IButtonLinkProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonLinkStyles> {
@@ -218,6 +220,8 @@ declare interface IButtonLinkProps extends React.ButtonHTMLAttributes<HTMLButton
218
220
  iconTextLeft?: string;
219
221
  iconTextRight?: string;
220
222
  isLoading?: boolean;
223
+ tooltip?: React.ReactNode;
224
+ tooltipPlacement?: Placement;
221
225
  }
222
226
 
223
227
  declare interface IButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonStyles> {
@@ -233,6 +237,8 @@ declare interface IButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElem
233
237
  iconTextRight?: string;
234
238
  isLoading?: boolean;
235
239
  isActive?: boolean;
240
+ tooltip?: React.ReactNode;
241
+ tooltipPlacement?: Placement;
236
242
  }
237
243
 
238
244
  declare interface ICalendarProps {