flameresttable 1.0.83 → 1.0.84

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flameresttable",
3
- "version": "1.0.83",
3
+ "version": "1.0.84",
4
4
  "main": "./src/plugin.ts",
5
5
  "repository": {
6
6
  "type": "git",
@@ -33,7 +33,8 @@
33
33
 
34
34
  <div v-for="column in Table.columns" v-show="column.Table.isShow" :key="'cheader_' + column.name"
35
35
  :class="' defaultHeader ' + column.Table.classesHeader"
36
- class=" table-cell align-middle border-r border-r-slate-100 px-2">
36
+ class=" table-cell align-middle border-r border-r-slate-100 px-2"
37
+ :style="(column.Table.width === null ? '' : 'width:' + column.Table.width + 'px')">
37
38
  <span>{{ column.Table.titleCustom !== null ? (column as any).Table.titleCustom(column) : column.Table.title !==
38
39
  '' ?
39
40
  column.Table.title : column.title !== '' ? column.title :