@invopop/popui 0.0.10 → 0.0.11
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/dist/BaseTable.svelte
CHANGED
|
@@ -160,7 +160,7 @@ function selectRange(to) {
|
|
|
160
160
|
<th scope="col" class="bg-white sticky top-0 z-10 rounded-tr-md">
|
|
161
161
|
{#if !hideSelectAll}
|
|
162
162
|
<button
|
|
163
|
-
class="pl-5 pr-3 h-[40px] flex items-center"
|
|
163
|
+
class="pl-5 pr-3 h-[40px] flex items-center outline-none"
|
|
164
164
|
on:click|stopPropagation={() => {
|
|
165
165
|
toggleAllSelected(!selectedRows.length)
|
|
166
166
|
}}
|
package/dist/BaseTableRow.svelte
CHANGED