stk-table-vue 0.11.14 → 0.11.15
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/lib/index-BzpbBYPO.js +1 -1
- package/lib/stk-table-vue.js +2 -2
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/src/StkTable/StkTable.vue +1 -1
package/lib/index-BzpbBYPO.js
CHANGED
package/lib/stk-table-vue.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* name: stk-table-vue
|
|
3
|
-
* version: v0.11.
|
|
3
|
+
* version: v0.11.15
|
|
4
4
|
* description: High performance realtime virtual table for vue3 and vue2.7
|
|
5
5
|
* author: japlus
|
|
6
6
|
* homepage: https://ja-plus.github.io/stk-table-vue/
|
|
@@ -4137,7 +4137,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
4137
4137
|
class: "table-cell-wrapper",
|
|
4138
4138
|
tabindex: "-1",
|
|
4139
4139
|
title: row[col.dataIndex] || ""
|
|
4140
|
-
}, toDisplayString((row && row[col.dataIndex])
|
|
4140
|
+
}, toDisplayString((row && row[col.dataIndex]) != null ? row && row[col.dataIndex] : getEmptyCellText.value(col, row)), 9, _hoisted_16)) : col.type === "seq" ? (openBlock(), createElementBlock("div", _hoisted_17, toDisplayString((props.seqConfig.startIndex || 0) + getAbsoluteRowIndex(rowIndex) + 1), 1)) : col.type === "tree-node" ? (openBlock(), createBlock(_sfc_main$3, {
|
|
4141
4141
|
key: 3,
|
|
4142
4142
|
class: "table-cell-wrapper",
|
|
4143
4143
|
tabindex: "-1",
|
package/lib/style.css
CHANGED
package/package.json
CHANGED
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
</template>
|
|
180
180
|
</component>
|
|
181
181
|
<div v-else-if="!col.type" class="table-cell-wrapper" tabindex="-1" :title="row[col.dataIndex] || ''">
|
|
182
|
-
{{ (row && row[col.dataIndex])
|
|
182
|
+
{{ (row && row[col.dataIndex]) != null ? row && row[col.dataIndex] : getEmptyCellText(col, row) }}
|
|
183
183
|
</div>
|
|
184
184
|
<div v-else-if="col.type === 'seq'" class="table-cell-wrapper" tabindex="-1">
|
|
185
185
|
{{ (props.seqConfig.startIndex || 0) + getAbsoluteRowIndex(rowIndex) + 1 }}
|