Skip to content

Releases: BitTheCat/tailwind-vue-data-table

v0.2.9

08 Jun 21:13
9cbc918
Compare
Choose a tag to compare
  • Fixed default css

v0.2.8

01 Feb 10:05
d1e565b
Compare
Choose a tag to compare

⚠️ 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

20 Jan 11:09
b8c3b29
Compare
Choose a tag to compare
  • added size props (changes the size of the table of contents and pagination) (default, md, only accepts sm or md)

v0.2.6

19 Jan 19:22
ea7dd71
Compare
Choose a tag to compare
  • 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

19 Jan 10:08
50a2be0
Compare
Choose a tag to compare
  • fixed no fields for table

v0.2.4

03 Jan 15:52
3e7bd24
Compare
Choose a tag to compare
  • 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

13 Dec 23:03
9014f9d
Compare
Choose a tag to compare

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

16 Nov 13:52
2469901
Compare
Choose a tag to compare
  • Added responsive for table

v0.2.1

15 Nov 14:13
2510757
Compare
Choose a tag to compare
  • 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

14 Nov 17:47
17a353d
Compare
Choose a tag to compare
  • 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.