@abgov/react-components 6.6.0-alpha.5 → 6.6.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 +1 -3
- package/index.js.map +1 -1
- package/index.mjs +1 -3
- package/index.mjs.map +1 -1
- package/lib/modal/modal.d.ts +9 -1
- package/lib/page-block/page-block.d.ts +3 -2
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -3268,8 +3268,7 @@ function GoabModal({
|
|
|
3268
3268
|
transition,
|
|
3269
3269
|
calloutVariant,
|
|
3270
3270
|
onClose,
|
|
3271
|
-
testId
|
|
3272
|
-
role
|
|
3271
|
+
testId
|
|
3273
3272
|
}) {
|
|
3274
3273
|
const el = useRef(null);
|
|
3275
3274
|
useEffect(() => {
|
|
@@ -3295,7 +3294,6 @@ function GoabModal({
|
|
|
3295
3294
|
transition,
|
|
3296
3295
|
calloutvariant: calloutVariant,
|
|
3297
3296
|
testid: testId,
|
|
3298
|
-
role,
|
|
3299
3297
|
children: [
|
|
3300
3298
|
heading && /* @__PURE__ */ jsx("div", { slot: "heading", children: heading }),
|
|
3301
3299
|
actions && /* @__PURE__ */ jsx("div", { slot: "actions", children: actions }),
|