@lumx/react 4.2.1-alpha.10 → 4.2.1-alpha.11
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 +10 -2
- package/index.js.map +1 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -627,7 +627,11 @@ declare const CLASSNAME: LumxClassName<typeof COMPONENT_NAME>;
|
|
|
627
627
|
*/
|
|
628
628
|
declare const DEFAULT_PROPS: Partial<ButtonProps$1>;
|
|
629
629
|
|
|
630
|
-
interface ButtonProps extends
|
|
630
|
+
interface ButtonProps extends ButtonProps$1 {
|
|
631
|
+
/**
|
|
632
|
+
* Any prop (particularly any supported prop for a HTML element).
|
|
633
|
+
*/
|
|
634
|
+
[propName: string]: any;
|
|
631
635
|
}
|
|
632
636
|
/**
|
|
633
637
|
* Button component.
|
|
@@ -660,7 +664,11 @@ interface IconButtonProps$1 extends BaseButtonProps {
|
|
|
660
664
|
title?: string;
|
|
661
665
|
}
|
|
662
666
|
|
|
663
|
-
interface IconButtonProps extends
|
|
667
|
+
interface IconButtonProps extends IconButtonProps$1 {
|
|
668
|
+
/**
|
|
669
|
+
* Any prop (particularly any supported prop for a HTML element).
|
|
670
|
+
*/
|
|
671
|
+
[propName: string]: any;
|
|
664
672
|
/**
|
|
665
673
|
* Props to pass to the tooltip.
|
|
666
674
|
* If undefined or if tooltipProps.label is undefined, the label prop will be used as tooltip label.
|