@getflip/swirl-components 0.100.0 → 0.100.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-10-09T11:04:28",
2
+ "timestamp": "2023-10-09T11:45:27",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
5
  "version": "3.3.1",
@@ -317,6 +317,9 @@ const SwirlResourceList = class {
317
317
  this.setItemAllowDragState();
318
318
  this.setupDragDrop();
319
319
  }
320
+ componentDidRender() {
321
+ this.setupDragDrop();
322
+ }
320
323
  disconnectedCallback() {
321
324
  this.sortable?.destroy();
322
325
  this.observer?.disconnect();
@@ -325,7 +328,6 @@ const SwirlResourceList = class {
325
328
  this.observer = new MutationObserver(() => {
326
329
  this.collectItems();
327
330
  this.setItemAllowDragState();
328
- this.setupDragDrop();
329
331
  });
330
332
  this.observer.observe(this.el, {
331
333
  childList: true,