w-table-vue 1.0.13 → 1.0.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/README.md +1 -1
- package/dist/w-table-vue.umd.js +3 -3
- package/dist/w-table-vue.umd.js.map +1 -1
- package/docs/examples/app.html +1 -1
- package/docs/examples/app.umd.js +2 -2
- package/docs/examples/app.umd.js.map +1 -1
- package/docs/examples/w-table-edit_default.html +26 -1
- package/docs/examples/w-table-edit_editable.html +26 -1
- package/docs/examples/w-table-edit_editable_checkId.html +26 -1
- package/docs/examples/w-table-edit_editable_checkId_opt.modifyDataWhenSave_save(call cmp. method).html +26 -1
- package/docs/examples/w-table-edit_editable_checkId_successMsgFromAddRow_errorMsgFromAddRow.html +26 -1
- package/docs/examples/w-table-edit_editable_inforPaddingStyle_menuBackgroundColor.html +26 -1
- package/docs/examples/w-table-edit_editable_language_checkId_tooltipAddRow.html +26 -1
- package/docs/examples/w-table-edit_editable_language_textLabelDataName_textPlaceholderDataName.html +26 -1
- package/docs/examples/w-table-edit_editable_no enableInfor.html +26 -1
- package/docs/examples/w-table-edit_editable_no enableMenu.html +26 -1
- package/docs/examples/w-table-edit_editable_opt.beforeAddRow.html +26 -1
- package/docs/examples/w-table-edit_editable_opt.kpCellFormat_no useCellFormatWhenDownload.html +543 -0
- package/docs/examples/w-table-edit_editable_opt.kpConvertKeysWhenUploadData.html +26 -1
- package/docs/examples/w-table-edit_editable_opt.optForUploadData.html +26 -1
- package/docs/examples/w-table-edit_editable_slot btns-right.html +26 -1
- package/docs/examples/w-table-edit_fixIds (fix id).html +26 -1
- package/docs/examples/w-table-edit_hideIds (hide mappingId).html +26 -1
- package/docs/examples/w-table-edit_name_description.html +26 -1
- package/docs/examples/w-table-edit_no enableInfor.html +26 -1
- package/docs/examples/w-table-edit_no enableMenu.html +26 -1
- package/docs/examples/w-table-edit_opt.kpCellFormat.html +539 -0
- package/docs/examples/w-table-edit_opt.kpHead.html +26 -1
- package/docs/examples/w-table-edit_removeIdsWhenDownload (remove id, mappingId, order, isActive).html +26 -1
- package/docs/examples/w-table-edit_slot btns-left.html +26 -1
- package/docs/examples/w-table-edit_slot btns-right.html +26 -1
- package/docs/examples/w-table-edit_slot cell-render.html +26 -1
- package/docs/examples/w-table-edit_slot cell-tooltip.html +26 -1
- package/docs/examples/w-table-edit_slot head-render.html +26 -1
- package/docs/examples/w-table-edit_slot head-tooltip.html +26 -1
- package/docs/examples/w-table-edit_slot infor (name_description).html +26 -1
- package/docs/examples/w-table-edit_sortColIds (sort by order).html +26 -1
- package/docs/index.html +1 -1
- package/docs/module-WTableEdit.html +27 -3
- package/package.json +3 -3
- package/src/AppZoneWTableEdit.vue +61 -0
- package/src/components/WTableEdit.vue +12 -5
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ Add script for vue.
|
|
|
68
68
|
|
|
69
69
|
Add script for w-aggrid-vue, ag-grid-community and ag-grid-vue have been bundled into the umd file(css included), only vue is required.
|
|
70
70
|
```alias
|
|
71
|
-
<script src="https://cdn.jsdelivr.net/npm/w-table-vue@1.0.
|
|
71
|
+
<script src="https://cdn.jsdelivr.net/npm/w-table-vue@1.0.15/dist/w-table-vue.umd.js"></script>
|
|
72
72
|
```
|
|
73
73
|
|
|
74
74
|
Directly use:
|