@lumx/react 4.2.1-alpha.3 → 4.2.1-alpha.4
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/index.d.ts +3 -2
- package/index.js.map +1 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -609,7 +609,8 @@ declare const CLASSNAME: LumxClassName<typeof COMPONENT_NAME>;
|
|
|
609
609
|
*/
|
|
610
610
|
declare const DEFAULT_PROPS: Partial<ButtonProps$1>;
|
|
611
611
|
|
|
612
|
-
interface ButtonProps extends ButtonProps$1
|
|
612
|
+
interface ButtonProps extends ButtonProps$1 {
|
|
613
|
+
[propName: string]: any;
|
|
613
614
|
}
|
|
614
615
|
/**
|
|
615
616
|
* Button component.
|
|
@@ -642,7 +643,7 @@ interface IconButtonProps$1 extends BaseButtonProps {
|
|
|
642
643
|
title?: string;
|
|
643
644
|
}
|
|
644
645
|
|
|
645
|
-
interface IconButtonProps extends
|
|
646
|
+
interface IconButtonProps extends GenericProps$1, IconButtonProps$1 {
|
|
646
647
|
/**
|
|
647
648
|
* Props to pass to the tooltip.
|
|
648
649
|
* If undefined or if tooltipProps.label is undefined, the label prop will be used as tooltip label.
|