el-plus-crud 0.0.34 → 0.0.38

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 (77) hide show
  1. package/.eslintrc.js +78 -78
  2. package/.prettierrc.js +39 -39
  3. package/CHANGELOG.md +73 -65
  4. package/build.js +31 -31
  5. package/dist/components/el-plus-form/ElPlusFormDialog.vue.d.ts +2 -2
  6. package/dist/el-plus-crud.mjs +2541 -2538
  7. package/dist/el-plus-crud.umd.js +14 -14
  8. package/dist/style.css +1 -1
  9. package/example/App.vue +67 -67
  10. package/example/main.js +18 -18
  11. package/index.html +13 -13
  12. package/lib/components/el-plus-form/ElPlusForm.vue +9 -5
  13. package/lib/components/el-plus-form/ElPlusFormDialog.vue +90 -104
  14. package/lib/components/el-plus-form/ElPlusFormGroup.vue +116 -116
  15. package/lib/components/el-plus-form/components/ElPlusFormArea.vue +61 -61
  16. package/lib/components/el-plus-form/components/ElPlusFormAutocomplete.vue +49 -49
  17. package/lib/components/el-plus-form/components/ElPlusFormBtn.vue +102 -102
  18. package/lib/components/el-plus-form/components/ElPlusFormBtns.vue +133 -133
  19. package/lib/components/el-plus-form/components/ElPlusFormCascader.vue +63 -61
  20. package/lib/components/el-plus-form/components/ElPlusFormCascaderPanel.vue +51 -51
  21. package/lib/components/el-plus-form/components/ElPlusFormCheckbox.vue +42 -42
  22. package/lib/components/el-plus-form/components/ElPlusFormCheckboxButton.vue +42 -42
  23. package/lib/components/el-plus-form/components/ElPlusFormColor.vue +38 -38
  24. package/lib/components/el-plus-form/components/ElPlusFormDate.vue +39 -39
  25. package/lib/components/el-plus-form/components/ElPlusFormDaterange.vue +44 -44
  26. package/lib/components/el-plus-form/components/ElPlusFormDatetime.vue +38 -38
  27. package/lib/components/el-plus-form/components/ElPlusFormFile.vue +47 -47
  28. package/lib/components/el-plus-form/components/ElPlusFormImage.vue +113 -113
  29. package/lib/components/el-plus-form/components/ElPlusFormInput.vue +59 -59
  30. package/lib/components/el-plus-form/components/ElPlusFormLink.vue +281 -281
  31. package/lib/components/el-plus-form/components/ElPlusFormNbinput.vue +51 -51
  32. package/lib/components/el-plus-form/components/ElPlusFormNumber.vue +144 -144
  33. package/lib/components/el-plus-form/components/ElPlusFormPassword.vue +41 -41
  34. package/lib/components/el-plus-form/components/ElPlusFormQuickInput.vue +92 -92
  35. package/lib/components/el-plus-form/components/ElPlusFormRadio.vue +42 -42
  36. package/lib/components/el-plus-form/components/ElPlusFormRate.vue +38 -38
  37. package/lib/components/el-plus-form/components/ElPlusFormSelect.vue +161 -161
  38. package/lib/components/el-plus-form/components/ElPlusFormSlider.vue +38 -38
  39. package/lib/components/el-plus-form/components/ElPlusFormSwitch.vue +38 -38
  40. package/lib/components/el-plus-form/components/ElPlusFormTag.vue +78 -78
  41. package/lib/components/el-plus-form/components/ElPlusFormText.vue +99 -99
  42. package/lib/components/el-plus-form/components/ElPlusFormTextarea.vue +47 -47
  43. package/lib/components/el-plus-form/components/ElPlusFormTransfer.vue +44 -44
  44. package/lib/components/el-plus-form/components/ElPlusFormTree.vue +76 -76
  45. package/lib/components/el-plus-form/components/ElPlusFormTreeSelect.vue +59 -59
  46. package/lib/components/el-plus-form/components/ElPlusFormUpload.vue +368 -368
  47. package/lib/components/el-plus-form/components/components/file-icons/FileIcons.vue +135 -135
  48. package/lib/components/el-plus-form/components/components/file-icons/data/index.ts +27 -27
  49. package/lib/components/el-plus-form/components/components/file-icons/images/doc.svg +12 -12
  50. package/lib/components/el-plus-form/components/components/file-icons/images/file.svg +18 -18
  51. package/lib/components/el-plus-form/components/components/file-icons/images/jpg.svg +13 -13
  52. package/lib/components/el-plus-form/components/components/file-icons/images/pdf.svg +12 -12
  53. package/lib/components/el-plus-form/components/components/file-icons/images/png.svg +12 -12
  54. package/lib/components/el-plus-form/components/components/file-icons/images/ppt.svg +12 -12
  55. package/lib/components/el-plus-form/components/components/file-icons/images/xls.svg +12 -12
  56. package/lib/components/el-plus-form/components/index.ts +17 -17
  57. package/lib/components/el-plus-form/data/file.ts +74 -74
  58. package/lib/components/el-plus-form/mixins/index.ts +113 -113
  59. package/lib/components/el-plus-form/util/index.ts +257 -257
  60. package/lib/components/el-plus-form/util/validate.ts +332 -332
  61. package/lib/components/el-plus-table/ElPlusTable.vue +773 -767
  62. package/lib/components/el-plus-table/components/columnItem.vue +205 -205
  63. package/lib/components/el-plus-table/components/header.vue +240 -240
  64. package/lib/components/el-plus-table/components/settingColumn.vue +178 -178
  65. package/lib/components/el-plus-table/components/statisticInfo.vue +47 -47
  66. package/lib/components/el-plus-table/util/index.ts +147 -147
  67. package/lib/config/index.ts +30 -30
  68. package/lib/index.d.ts +4 -4
  69. package/lib/index.ts +51 -51
  70. package/package.json +1 -1
  71. package/types/axios.d.ts +13 -13
  72. package/types/formList.d.ts +440 -440
  73. package/types/layout.d.ts +57 -57
  74. package/types/mitt.d.ts +38 -38
  75. package/types/pinia.d.ts +149 -149
  76. package/types/views.d.ts +329 -329
  77. package/vite.config.ts +78 -78

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.