stk-table-vue 0.6.7 → 0.6.9
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/README.md +0 -10
- package/lib/src/StkTable/StkTable.vue.d.ts +695 -506
- package/lib/src/StkTable/types/index.d.ts +1 -0
- package/lib/src/StkTable/useAutoResize.d.ts +1 -0
- package/lib/src/StkTable/useColResize.d.ts +1 -0
- package/lib/src/StkTable/useFixedCol.d.ts +1 -0
- package/lib/src/StkTable/useFixedStyle.d.ts +1 -0
- package/lib/src/StkTable/useGetFixedColPosition.d.ts +1 -0
- package/lib/src/StkTable/useHighlight.d.ts +1 -0
- package/lib/src/StkTable/useKeyboardArrowScroll.d.ts +1 -0
- package/lib/src/StkTable/useThDrag.d.ts +1 -0
- package/lib/src/StkTable/useTrDrag.d.ts +1 -0
- package/lib/src/StkTable/useVirtualScroll.d.ts +1 -0
- package/lib/src/StkTable/utils/constRefUtils.d.ts +1 -0
- package/lib/src/StkTable/utils/index.d.ts +1 -0
- package/lib/src/StkTable/utils/useTriggerRef.d.ts +1 -0
- package/lib/stk-table-vue.js +2374 -2363
- package/lib/style.css +395 -386
- package/package.json +2 -2
- package/src/StkTable/StkTable.vue +24 -9
- package/src/StkTable/style.less +34 -36
package/README.md
CHANGED
|
@@ -193,16 +193,6 @@ const dataSource = [
|
|
|
193
193
|
</script>
|
|
194
194
|
```
|
|
195
195
|
|
|
196
|
-
## Special Example
|
|
197
|
-
### 鼠标悬浮表头时,不展示title
|
|
198
|
-
* 将 `StkTableColumn` 中的 `title` 字段置为 "" 空字符串。这样th中就没有title了。
|
|
199
|
-
* 使用 `StkTableColumn` 中的 `customHeaderCell` 属性中,自定义表头渲染。
|
|
200
|
-
### Filter过滤器
|
|
201
|
-
* 暂不支持。用户可以自行通过 `customHeaderCell` 实现功能。
|
|
202
|
-
|
|
203
|
-
## Tips
|
|
204
|
-
### props.fixedMode
|
|
205
|
-
* **低版本浏览器** 需要设置 `props.width`(default: width=fit-content不生效)。否则列宽不设宽度会变为0。
|
|
206
196
|
|
|
207
197
|
## Other
|
|
208
198
|
* `$*$` 兼容注释
|