@abgov/react-components 7.1.0 → 7.2.0-dev.1
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 +6 -2
- package/index.js.map +1 -1
- package/index.mjs +6 -2
- package/index.mjs.map +1 -1
- package/lib/chip/chip.d.ts +7 -7
- package/lib/container/container.d.ts +2 -2
- package/lib/dropdown/dropdown.d.ts +1 -1
- package/lib/hero-banner/hero-banner.d.ts +3 -1
- package/lib/input/input.d.ts +1 -0
- package/lib/microsite-header/microsite-header.d.ts +1 -1
- package/lib/radio-group/radio.d.ts +1 -1
- package/lib/tab/tab.d.ts +2 -2
- package/lib/table/table.d.ts +0 -1
- package/lib/tooltip/tooltip.d.ts +1 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -3121,9 +3121,10 @@ function GoabHeroBanner({
|
|
|
3121
3121
|
backgroundColor,
|
|
3122
3122
|
textColor,
|
|
3123
3123
|
children,
|
|
3124
|
+
actions,
|
|
3124
3125
|
testId
|
|
3125
3126
|
}) {
|
|
3126
|
-
return /* @__PURE__ */
|
|
3127
|
+
return /* @__PURE__ */ jsxs(
|
|
3127
3128
|
"goa-hero-banner",
|
|
3128
3129
|
{
|
|
3129
3130
|
heading,
|
|
@@ -3133,7 +3134,10 @@ function GoabHeroBanner({
|
|
|
3133
3134
|
backgroundcolor: backgroundColor,
|
|
3134
3135
|
textcolor: textColor,
|
|
3135
3136
|
testid: testId,
|
|
3136
|
-
children
|
|
3137
|
+
children: [
|
|
3138
|
+
children,
|
|
3139
|
+
actions && /* @__PURE__ */ jsx("div", { slot: "actions", children: actions })
|
|
3140
|
+
]
|
|
3137
3141
|
}
|
|
3138
3142
|
);
|
|
3139
3143
|
}
|