Skip to content

Commit

Permalink
chore(release): 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed May 25, 2022
1 parent 1703774 commit 10f851d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
## [0.0.7](https://github.com/openweblabs/table-vue/compare/v0.0.6...v0.0.7) (2022-05-25)



## [0.0.6](https://github.com/openweblabs/table-vue/compare/v0.0.5...v0.0.6) (2022-05-25)


Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@ow3/table-vue",
"version": "0.0.6",
"version": "0.0.7",
"description": "The easy & modern way to work with tables. Facet filtering, searching, pagination, ...",
"keywords": [
"tables",
Expand Down
5 changes: 1 addition & 4 deletions src/components/TableHead.vue
@@ -1,9 +1,6 @@
<script setup lang="ts">
import { useTable } from '~/composables/table'
// eslint-disable-next-line no-console
console.log('TableHead.vue')
const { table, isColumnSortable, isColumnUsedAsSort, toggleSort, indeterminate, hits, lastColumn, readableLastColumn } = await useTable()
</script>

Expand All @@ -16,7 +13,7 @@ const { table, isColumnSortable, isColumnUsedAsSort, toggleSort, indeterminate,
class="rounded border-gray-300 h-4 -mt-2 top-1/2 left-4 text-indigo-600 w-4 absolute sm:left-6 focus:ring-indigo-500"
:checked="indeterminate || table.selectedRows?.length === hits.length"
:indeterminate="indeterminate"
@change="table.selectedRows = $event?.target?.checked ? hits.map((h) => h.id) : []"
@change="table.selectedRows = ($event?.target as any).checked ? hits.map((h) => h.id) : []"
>
<!-- <input
type="checkbox"
Expand Down
4 changes: 2 additions & 2 deletions vite.config.ts
Expand Up @@ -58,7 +58,7 @@ const config = {

build: {
lib: {
entry: resolve(__dirname, 'src/index.ts'),
entry: resolve(__dirname, 'src/main.ts'),
name: 'table-vue',
fileName: format => `table-vue.${format}.js`,
},
Expand All @@ -75,7 +75,7 @@ const config = {
},

sourcemap: true,
minify: false,
minify: true,
},

test: {
Expand Down

0 comments on commit 10f851d

Please sign in to comment.