@getflip/swirl-components 0.100.0 → 0.100.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.
Files changed (27) hide show
  1. package/components.json +1 -1
  2. package/dist/cjs/swirl-accordion-item.cjs.entry.js +1 -1
  3. package/dist/cjs/swirl-accordion.cjs.entry.js +1 -1
  4. package/dist/cjs/swirl-app-layout_6.cjs.entry.js +3 -1
  5. package/dist/cjs/wc-datepicker.cjs.entry.js +19 -3
  6. package/dist/collection/assets/pdfjs/pdf.worker.min.js +22 -0
  7. package/dist/collection/components/swirl-accordion/swirl-accordion.css +1 -0
  8. package/dist/collection/components/swirl-accordion-item/swirl-accordion-item.css +0 -4
  9. package/dist/collection/components/swirl-resource-list/swirl-resource-list.js +3 -1
  10. package/dist/components/assets/pdfjs/pdf.worker.min.js +22 -0
  11. package/dist/components/swirl-accordion-item.js +1 -1
  12. package/dist/components/swirl-accordion.js +1 -1
  13. package/dist/components/swirl-resource-list2.js +3 -1
  14. package/dist/components/wc-datepicker2.js +19 -3
  15. package/dist/esm/swirl-accordion-item.entry.js +1 -1
  16. package/dist/esm/swirl-accordion.entry.js +1 -1
  17. package/dist/esm/swirl-app-layout_6.entry.js +3 -1
  18. package/dist/esm/wc-datepicker.entry.js +19 -3
  19. package/dist/swirl-components/p-2615a987.entry.js +1 -0
  20. package/dist/swirl-components/p-3e2d4f9b.entry.js +1 -0
  21. package/dist/swirl-components/{p-1a815fd4.entry.js → p-c0f4b4ad.entry.js} +1 -1
  22. package/dist/swirl-components/{p-f4144d4c.entry.js → p-e88e10b6.entry.js} +1 -1
  23. package/dist/swirl-components/swirl-components.esm.js +1 -1
  24. package/dist/types/components/swirl-resource-list/swirl-resource-list.d.ts +1 -0
  25. package/package.json +1 -1
  26. package/dist/swirl-components/p-11d08dde.entry.js +0 -1
  27. package/dist/swirl-components/p-6e72e129.entry.js +0 -1
@@ -1,5 +1,6 @@
1
1
  :host {
2
2
  display: block;
3
+ border-bottom: 0.0625rem solid var(--s-border-default);
3
4
  }
4
5
 
5
6
  :host * {
@@ -6,10 +6,6 @@
6
6
  box-sizing: border-box;
7
7
  }
8
8
 
9
- :host(:last-child) .accordion-item {
10
- border-bottom: 0.0625rem solid var(--s-border-default);
11
- }
12
-
13
9
  .accordion-item {
14
10
  display: grid;
15
11
  align-content: start;
@@ -80,6 +80,9 @@ export class SwirlResourceList {
80
80
  this.setItemAllowDragState();
81
81
  this.setupDragDrop();
82
82
  }
83
+ componentDidRender() {
84
+ this.setupDragDrop();
85
+ }
83
86
  disconnectedCallback() {
84
87
  this.sortable?.destroy();
85
88
  this.observer?.disconnect();
@@ -88,7 +91,6 @@ export class SwirlResourceList {
88
91
  this.observer = new MutationObserver(() => {
89
92
  this.collectItems();
90
93
  this.setItemAllowDragState();
91
- this.setupDragDrop();
92
94
  });
93
95
  this.observer.observe(this.el, {
94
96
  childList: true,