@abgov/react-components 6.9.0-alpha.1 → 6.9.0-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.js +2 -0
- package/index.js.map +1 -1
- package/index.mjs +2 -0
- package/index.mjs.map +1 -1
- package/lib/dropdown/dropdown.d.ts +2 -0
- package/lib/tooltip/tooltip.d.ts +2 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -790,6 +790,7 @@ function GoabDropdown(props) {
|
|
|
790
790
|
placeholder: props.placeholder,
|
|
791
791
|
testid: props.testId,
|
|
792
792
|
width: props.width,
|
|
793
|
+
maxwidth: props.maxWidth,
|
|
793
794
|
relative: props.relative ? "true" : void 0,
|
|
794
795
|
autocomplete: props.autoComplete,
|
|
795
796
|
id: props.id,
|
|
@@ -3902,6 +3903,7 @@ function GoabTooltip(props) {
|
|
|
3902
3903
|
content: isStringContent ? props.content : void 0,
|
|
3903
3904
|
halign: props.hAlign,
|
|
3904
3905
|
testid: props.testId,
|
|
3906
|
+
maxwidth: props.maxWidth,
|
|
3905
3907
|
mt: props.mt,
|
|
3906
3908
|
mr: props.mr,
|
|
3907
3909
|
mb: props.mb,
|