dld-vue-ui 0.4.0 → 0.4.2
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 +2 -0
- package/dist/dld-vue-ui.js +319 -306
- package/dist/dld-vue-ui.umd.cjs +1 -1
- package/dist/packages/TableForm/index.d.ts +5 -0
- package/dist/packages/TableForm/index.vue.d.ts +22 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -104,6 +104,7 @@ interface IPaneStyle {
|
|
|
104
104
|
|`stripe`|是否为斑马纹|`boolean`|`true`|
|
|
105
105
|
|`border`|是否带有纵向边框|`boolean`|`false`|
|
|
106
106
|
|`highLight`|是否高亮当前行|`boolean`|`false`|
|
|
107
|
+
|`headStyle`|表头样式|`object`|`{}`|
|
|
107
108
|
|`type`|是否有索引、展开、多选框|`'selection' \| 'index' \| 'expand'`|`-`|
|
|
108
109
|
|`typeLabel`|索引、展开时的列名,`type == 'index'`和`type == 'expand'`时有效|`string`|`序号`|
|
|
109
110
|
|`typeWidth`|索引、展开、多选框的宽度|`number`|`60`|
|
|
@@ -151,6 +152,7 @@ interface IPaneStyle {
|
|
|
151
152
|
|`min`|数字框的最小值,`search=true&&type='number'`时有效|`number`|`-Infinity`|
|
|
152
153
|
|`step`|数字框的跳动步数,`search=true&&type='number'`时有效|`number`|`1`|
|
|
153
154
|
|`costom`|自定义内容,支持html|`Function`|`ITableData`|
|
|
155
|
+
|`component`|自定义组件|`Component`|`-`|
|
|
154
156
|
|`overflow`|表格内容溢出|`boolean`|`false`|
|
|
155
157
|
|
|
156
158
|
### 方法
|