@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.js
CHANGED
|
@@ -3270,8 +3270,7 @@ function GoabModal({
|
|
|
3270
3270
|
transition,
|
|
3271
3271
|
calloutVariant,
|
|
3272
3272
|
onClose,
|
|
3273
|
-
testId
|
|
3274
|
-
role
|
|
3273
|
+
testId
|
|
3275
3274
|
}) {
|
|
3276
3275
|
const el = react.useRef(null);
|
|
3277
3276
|
react.useEffect(() => {
|
|
@@ -3297,7 +3296,6 @@ function GoabModal({
|
|
|
3297
3296
|
transition,
|
|
3298
3297
|
calloutvariant: calloutVariant,
|
|
3299
3298
|
testid: testId,
|
|
3300
|
-
role,
|
|
3301
3299
|
children: [
|
|
3302
3300
|
heading && /* @__PURE__ */ jsxRuntime.jsx("div", { slot: "heading", children: heading }),
|
|
3303
3301
|
actions && /* @__PURE__ */ jsxRuntime.jsx("div", { slot: "actions", children: actions }),
|