@hyphen/hyphen-components 2.16.1 → 2.16.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/dist/hyphen-components.cjs.development.js +2 -1
- package/dist/hyphen-components.cjs.development.js.map +1 -1
- package/dist/hyphen-components.cjs.production.min.js +1 -1
- package/dist/hyphen-components.cjs.production.min.js.map +1 -1
- package/dist/hyphen-components.esm.js +2 -1
- package/dist/hyphen-components.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Drawer/Drawer.tsx +5 -1
package/package.json
CHANGED
|
@@ -236,7 +236,11 @@ export const Drawer: React.FC<DrawerProps> = forwardRef<
|
|
|
236
236
|
}}
|
|
237
237
|
parentSelector={() => parentElement}
|
|
238
238
|
>
|
|
239
|
-
<Box
|
|
239
|
+
<Box
|
|
240
|
+
aria-label={ariaLabel}
|
|
241
|
+
aria-labelledby={ariaLabelledBy}
|
|
242
|
+
height="100%"
|
|
243
|
+
>
|
|
240
244
|
{renderHeader()}
|
|
241
245
|
{content}
|
|
242
246
|
</Box>
|