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

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, HTMLAnchorElement | HTMLButtonElement>;
790
+ declare const Button: Comp<ButtonProps, HTMLButtonElement | HTMLAnchorElement>;
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, HTMLAnchorElement | HTMLButtonElement>;
2374
+ declare const Link: Comp<LinkProps, HTMLButtonElement | HTMLAnchorElement>;
2375
2375
 
2376
2376
  /**
2377
2377
  * Defines the props of the component.
@@ -3862,7 +3862,7 @@ interface TextFieldProps$1 extends HasClassName, HasTheme, HasAriaDisabled, HasD
3862
3862
  /** Ref to the component root. */
3863
3863
  ref?: CommonRef;
3864
3864
  }
3865
- type TextFieldPropsToOverride = 'id' | 'input' | 'IconButton' | 'labelProps' | 'textFieldRef' | 'clearButtonProps' | 'helperId' | 'errorId' | 'isFocus';
3865
+ type TextFieldPropsToOverride = 'input' | 'IconButton' | 'labelProps' | 'textFieldRef' | 'clearButtonProps' | 'helperId' | 'errorId' | 'isFocus';
3866
3866
 
3867
3867
  /**
3868
3868
  * Defines the props of the component.