fix(overlays): export overlay utils

Co-authored-by: jorenbroekema <Joren.Broekema@ing.com>
This commit is contained in:
Jim Wright 2021-06-10 11:28:39 -06:00 committed by Joren Broekema
parent 7e6c91f335
commit c57f42a328
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,5 @@
---
'@lion/overlays': patch
---
Export overlay utils so they can be used on their own

View file

@ -8,3 +8,9 @@ export { ArrowMixin } from './src/ArrowMixin.js';
export { withBottomSheetConfig } from './src/configurations/withBottomSheetConfig.js'; export { withBottomSheetConfig } from './src/configurations/withBottomSheetConfig.js';
export { withModalDialogConfig } from './src/configurations/withModalDialogConfig.js'; export { withModalDialogConfig } from './src/configurations/withModalDialogConfig.js';
export { withDropdownConfig } from './src/configurations/withDropdownConfig.js'; export { withDropdownConfig } from './src/configurations/withDropdownConfig.js';
export { containFocus, rotateFocus } from './src/utils/contain-focus.js';
export { deepContains } from './src/utils/deep-contains.js';
export { getDeepActiveElement } from './src/utils/get-deep-active-element.js';
export { getFocusableElements } from './src/utils/get-focusable-elements.js';
export { setSiblingsInert, unsetSiblingsInert } from './src/utils/inert-siblings.js';