@lumx/react 4.7.1-alpha.1 → 4.7.1-alpha.2

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 CHANGED
@@ -787,7 +787,7 @@ interface ButtonProps extends GenericProps$1, ReactToJSX<ButtonProps$1> {
787
787
  * @param ref Component ref.
788
788
  * @return React element.
789
789
  */
790
- declare const Button: Comp<ButtonProps, HTMLButtonElement | HTMLAnchorElement>;
790
+ declare const Button: Comp<ButtonProps, HTMLAnchorElement | HTMLButtonElement>;
791
791
 
792
792
  interface IconButtonProps$1 extends BaseButtonProps {
793
793
  /**
@@ -2371,7 +2371,7 @@ interface LinkProps extends GenericProps$1, ReactToJSX<LinkProps$1> {
2371
2371
  * @param ref Component ref.
2372
2372
  * @return React element.
2373
2373
  */
2374
- declare const Link: Comp<LinkProps, HTMLButtonElement | HTMLAnchorElement>;
2374
+ declare const Link: Comp<LinkProps, HTMLAnchorElement | HTMLButtonElement>;
2375
2375
 
2376
2376
  /**
2377
2377
  * Defines the props of the component.
@@ -3828,7 +3828,7 @@ interface TextFieldProps$1 extends HasClassName, HasTheme, HasAriaDisabled, HasD
3828
3828
  /** Icon (SVG path). */
3829
3829
  icon?: string;
3830
3830
  /** Native input id property (generated if not provided to link the label element). */
3831
- id: string;
3831
+ id?: string;
3832
3832
  /** Generated helper id for accessibility attributes. */
3833
3833
  helperId?: string;
3834
3834
  /** Generated error id for accessibility attributes. */