@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.mjs
CHANGED
|
@@ -788,6 +788,7 @@ function GoabDropdown(props) {
|
|
|
788
788
|
placeholder: props.placeholder,
|
|
789
789
|
testid: props.testId,
|
|
790
790
|
width: props.width,
|
|
791
|
+
maxwidth: props.maxWidth,
|
|
791
792
|
relative: props.relative ? "true" : void 0,
|
|
792
793
|
autocomplete: props.autoComplete,
|
|
793
794
|
id: props.id,
|
|
@@ -3900,6 +3901,7 @@ function GoabTooltip(props) {
|
|
|
3900
3901
|
content: isStringContent ? props.content : void 0,
|
|
3901
3902
|
halign: props.hAlign,
|
|
3902
3903
|
testid: props.testId,
|
|
3904
|
+
maxwidth: props.maxWidth,
|
|
3903
3905
|
mt: props.mt,
|
|
3904
3906
|
mr: props.mr,
|
|
3905
3907
|
mb: props.mb,
|