Releases: BitTheCat/tailwind-vue-data-table
Releases · BitTheCat/tailwind-vue-data-table
v0.2.8
⚠️ Removed size prop (v0.2.7) to use css style instead⚠️
New classes (in default css)
- tv-summary-size
- tv-paginator-size
- tv-paginator-text
v0.2.7
- added size props (changes the size of the table of contents and pagination) (default, md, only accepts sm or md)
v0.2.6
- fixed busy state
- added hideSummary props (hide-summary, default false)
- added customisation of summary text (summary-text, default
Displaying _STR_FROM_ to _STR_TO_ of _STR_TOTAL_ items
, table will replace _STR_FROM_
, _STR_TO_
and _STR_TOTAL_
in your string with the calculated values so that you can translate the summary sentence into your language )
- added first vitest test (more to come)
v0.2.5
- fixed no fields for table
v0.2.4
- fixed the behaviour of the selected row
- added no-item text for the table
- added the noItemText prop (no-item-text) to change the default text
- added the #no-items slot for overwriting template
v0.2.3
Added sub components.
⚠️
For use default style you can add this line of code in main.js file (or alternatives)
import @bitthecat/tailwind-vue-data-table/dist/app.css';
You can change the style of table overwrite this css class
.tv-table {
}
.tv-thead {
}
.tv-th {
}
.tv-tbody {
}
.tv-tr {
}
.tv-td {
}
.tv-tfoot {
}
v0.2.2
- Added responsive for table
v0.2.1
- added row-select-class for change default style
⚠️ Revert part of the code from v0.2.0 ⚠️
- revert the table props for class in 17a353d (override the table style with css !important directive)
v0.2.0
- Fixed currentPage v-model
⚠️ Breaking Change for v0.2.0⚠️
Disabled inheritAttrs
Now TVTable has the props tableClass, headClass, bodyClass, footerClass and spinnerClass to be customised or by using the !important tag in the CSS.