w-table-vue 1.0.0 → 1.0.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.
Files changed (40) hide show
  1. package/.editorconfig +1 -1
  2. package/.jsdoc +24 -24
  3. package/README.md +7 -5
  4. package/dist/w-table-vue.umd.js +8 -2
  5. package/dist/w-table-vue.umd.js.map +1 -1
  6. package/docs/examples/app.html +1 -8
  7. package/docs/examples/app.umd.js +2 -2
  8. package/docs/examples/app.umd.js.map +1 -1
  9. package/docs/examples/w-table-edit_default.html +1 -14
  10. package/docs/examples/w-table-edit_editable.html +1 -14
  11. package/docs/examples/w-table-edit_editable_checkId.html +1 -14
  12. package/docs/examples/w-table-edit_editable_checkId_opt.modifyDataWhenSave_save(call cmp. method).html +1 -14
  13. package/docs/examples/w-table-edit_editable_checkId_successMsgFromAddRow_errorMsgFromAddRow.html +1 -14
  14. package/docs/examples/w-table-edit_editable_inforPaddingStyle_menuBackgroundColor.html +1 -14
  15. package/docs/examples/w-table-edit_editable_language_checkId_tooltipAddRow.html +1 -14
  16. package/docs/examples/w-table-edit_editable_language_textLabelDataName_textPlaceholderDataName.html +1 -14
  17. package/docs/examples/w-table-edit_editable_no enableInfor.html +1 -14
  18. package/docs/examples/w-table-edit_editable_no enableMenu.html +1 -14
  19. package/docs/examples/w-table-edit_editable_opt.beforeAddRow.html +1 -14
  20. package/docs/examples/w-table-edit_editable_opt.kpConvertKeysWhenUploadData.html +1 -14
  21. package/docs/examples/w-table-edit_editable_opt.optForUploadData.html +1 -14
  22. package/docs/examples/w-table-edit_editable_slot btns-right.html +1 -14
  23. package/docs/examples/w-table-edit_fixIds (fix id).html +1 -14
  24. package/docs/examples/w-table-edit_hideIds (hide mappingId).html +1 -14
  25. package/docs/examples/w-table-edit_name_description.html +1 -14
  26. package/docs/examples/w-table-edit_no enableInfor.html +1 -14
  27. package/docs/examples/w-table-edit_no enableMenu.html +1 -14
  28. package/docs/examples/w-table-edit_opt.kpHead.html +1 -14
  29. package/docs/examples/w-table-edit_removeIdsWhenDownload (remove id, mappingId, order, isActive).html +1 -14
  30. package/docs/examples/w-table-edit_slot btns-left.html +1 -14
  31. package/docs/examples/w-table-edit_slot btns-right.html +1 -14
  32. package/docs/examples/w-table-edit_slot infor (name_description).html +1 -14
  33. package/docs/examples/w-table-edit_sortColIds (sort by order).html +1 -14
  34. package/docs/index.html +1 -1
  35. package/docs/module-WTableEdit.html +1 -1
  36. package/package.json +6 -7
  37. package/src/App.vue +322 -322
  38. package/toolg/gDistApp.mjs +1 -8
  39. package/toolg/gDistRollupComps.mjs +1 -3
  40. package/toolg/gExtractHtml.mjs +0 -7
package/.editorconfig CHANGED
@@ -4,6 +4,6 @@ root = true
4
4
  charset = utf-8
5
5
  indent_style = space
6
6
  indent_size = 4
7
- end_of_line = lf
7
+ end_of_line = crlf
8
8
  insert_final_newline = true
9
9
  trim_trailing_whitespace = true
package/.jsdoc CHANGED
@@ -1,25 +1,25 @@
1
- {
2
- "tags": {
3
- "allowUnknownTags": false
4
- },
5
- "source": {
6
- "include": ["src/", "server/"],
7
- "includePattern": ".+\\.(js(doc|x)?|mjs|vue)$",
8
- "excludePattern": "(node_modules/|docs)"
9
- },
10
- "plugins": [
11
- "plugins/markdown",
12
- "node_modules/jsdoc-vuejs"
13
- ],
14
- "opts": {
15
- "template": "node_modules/docdash",
16
- "encoding": "utf8",
17
- "destination": "docs/",
18
- "recurse": true,
19
- "verbose": true
20
- },
21
- "templates": {
22
- "cleverLinks": false,
23
- "monospaceLinks": false
24
- }
1
+ {
2
+ "tags": {
3
+ "allowUnknownTags": true
4
+ },
5
+ "source": {
6
+ "include": ["src/", "server/"],
7
+ "includePattern": ".+\\.(js(doc|x)?|mjs|vue)$",
8
+ "excludePattern": "(node_modules/|docs)"
9
+ },
10
+ "plugins": [
11
+ "plugins/markdown",
12
+ "node_modules/jsdoc-vuejs"
13
+ ],
14
+ "opts": {
15
+ "template": "node_modules/docdash",
16
+ "encoding": "utf8",
17
+ "destination": "docs/",
18
+ "recurse": true,
19
+ "verbose": true
20
+ },
21
+ "templates": {
22
+ "cleverLinks": false,
23
+ "monospaceLinks": false
24
+ }
25
25
  }
package/README.md CHANGED
@@ -61,12 +61,14 @@ export default {
61
61
 
62
62
  ### In a browser(UMD module):
63
63
 
64
- Add scripts for ag-grid(w-table-vue is based on w-aggrid-vue, ag-grid-vue and ag-grid-community can not be bundled, so they have to be loaded from cdn), xlsx(for download and upload Excel file) and w-table-vue.
64
+ Add script for vue.
65
65
  ```alias
66
- <script src="https://cdn.jsdelivr.net/npm/xlsx@0.18.5/dist/xlsx.full.min.js"></script>
67
- <script src="https://cdn.jsdelivr.net/npm/ag-grid-community@31.3.4/dist/ag-grid-community.min.noStyle.js"></script>
68
- <script src="https://cdn.jsdelivr.net/npm/ag-grid-vue@31.3.4/dist/ag-grid-vue.umd.min.js"></script>
69
- <script src="https://cdn.jsdelivr.net/npm/w-table-vue@1.0.0/dist/w-table-vue.umd.js"></script>
66
+ <script src="https://cdn.jsdelivr.net/npm/vue@2.x/dist/vue.min.js"></script>
67
+ ```
68
+
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
+ ```alias
71
+ <script src="https://cdn.jsdelivr.net/npm/w-table-vue@1.0.2/dist/w-table-vue.umd.js"></script>
70
72
  ```
71
73
 
72
74
  Directly use: