@getflip/swirl-components 0.39.0 → 0.39.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/components.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2023-04-18T15:13:33",
2
+ "timestamp": "2023-04-19T07:13:49",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
5
  "version": "3.0.0",
@@ -1209,7 +1209,12 @@ const SwirlModal = class {
1209
1209
  }
1210
1210
  componentDidLoad() {
1211
1211
  this.focusTrap = createFocusTrap(this.modalEl, {
1212
- tabbableOptions: { getShadowRoot: (node) => node.shadowRoot },
1212
+ allowOutsideClick: true,
1213
+ tabbableOptions: {
1214
+ getShadowRoot: (node) => {
1215
+ return node.shadowRoot;
1216
+ },
1217
+ },
1213
1218
  });
1214
1219
  this.determineScrollStatus();
1215
1220
  }