@x33025/sveltely 0.0.13 → 0.0.14

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.
@@ -91,9 +91,15 @@
91
91
 
92
92
  <svelte:window onclick={handleOutsideClick} onscroll={close} onresize={close} />
93
93
 
94
- <div class="dropdown-container relative inline-block text-left {className}">
95
- <div bind:this={triggerEl}>
96
- <button type="button" onclick={toggle} aria-expanded={isOpen} aria-haspopup="true">
94
+ <div class="dropdown-container relative w-full text-left {className}">
95
+ <div class="w-full" bind:this={triggerEl}>
96
+ <button
97
+ type="button"
98
+ class="block w-full text-left"
99
+ onclick={toggle}
100
+ aria-expanded={isOpen}
101
+ aria-haspopup="true"
102
+ >
97
103
  {@render trigger()}
98
104
  </button>
99
105
  </div>
package/dist/style.css CHANGED
@@ -233,9 +233,6 @@
233
233
  .flex {
234
234
  display: flex;
235
235
  }
236
- .inline-block {
237
- display: inline-block;
238
- }
239
236
  .size-4 {
240
237
  width: calc(var(--spacing) * 4);
241
238
  height: calc(var(--spacing) * 4);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@x33025/sveltely",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run prepack",