@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.js
CHANGED
|
@@ -3123,9 +3123,10 @@ function GoabHeroBanner({
|
|
|
3123
3123
|
backgroundColor,
|
|
3124
3124
|
textColor,
|
|
3125
3125
|
children,
|
|
3126
|
+
actions,
|
|
3126
3127
|
testId
|
|
3127
3128
|
}) {
|
|
3128
|
-
return /* @__PURE__ */ jsxRuntime.
|
|
3129
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3129
3130
|
"goa-hero-banner",
|
|
3130
3131
|
{
|
|
3131
3132
|
heading,
|
|
@@ -3135,7 +3136,10 @@ function GoabHeroBanner({
|
|
|
3135
3136
|
backgroundcolor: backgroundColor,
|
|
3136
3137
|
textcolor: textColor,
|
|
3137
3138
|
testid: testId,
|
|
3138
|
-
children
|
|
3139
|
+
children: [
|
|
3140
|
+
children,
|
|
3141
|
+
actions && /* @__PURE__ */ jsxRuntime.jsx("div", { slot: "actions", children: actions })
|
|
3142
|
+
]
|
|
3139
3143
|
}
|
|
3140
3144
|
);
|
|
3141
3145
|
}
|