@lumx/react 4.7.1-alpha.1 → 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 +2 -2
- package/index.js.map +1 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -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
|
|
3831
|
+
id?: string;
|
|
3832
3832
|
/** Generated helper id for accessibility attributes. */
|
|
3833
3833
|
helperId?: string;
|
|
3834
3834
|
/** Generated error id for accessibility attributes. */
|
|
@@ -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 = '
|
|
3865
|
+
type TextFieldPropsToOverride = 'input' | 'IconButton' | 'labelProps' | 'textFieldRef' | 'clearButtonProps' | 'helperId' | 'errorId' | 'isFocus';
|
|
3866
3866
|
|
|
3867
3867
|
/**
|
|
3868
3868
|
* Defines the props of the component.
|