vue-devui 1.5.2 → 1.5.4-alpha.0

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 (42) hide show
  1. package/README.md +5 -0
  2. package/breadcrumb/index.es.js +845 -0
  3. package/breadcrumb/index.umd.js +1 -0
  4. package/breadcrumb/package.json +8 -0
  5. package/breadcrumb/style.css +1 -0
  6. package/code-editor/index.es.js +5874 -0
  7. package/code-editor/index.umd.js +27 -0
  8. package/code-editor/package.json +8 -0
  9. package/code-editor/style.css +1 -0
  10. package/global.d.ts +3 -0
  11. package/image-preview/index.es.js +14 -7
  12. package/image-preview/index.umd.js +1 -1
  13. package/menu/index.es.js +4 -3
  14. package/menu/index.umd.js +1 -1
  15. package/modal/index.es.js +6 -0
  16. package/modal/index.umd.js +1 -1
  17. package/nuxt/components/Breadcrumb.js +3 -0
  18. package/nuxt/components/BreadcrumbItem.js +3 -0
  19. package/nuxt/components/CodeEditor.js +3 -0
  20. package/nuxt/components/breadcrumbItemProps.js +3 -0
  21. package/nuxt/components/breadcrumbProps.js +3 -0
  22. package/nuxt/components/codeEditorProps.js +3 -0
  23. package/package.json +3 -2
  24. package/pagination/index.es.js +1 -0
  25. package/pagination/index.umd.js +6 -6
  26. package/select/index.es.js +1 -0
  27. package/select/index.umd.js +4 -4
  28. package/style.css +1 -1
  29. package/time-select/index.es.js +1 -0
  30. package/time-select/index.umd.js +4 -4
  31. package/tree/index.es.js +5 -0
  32. package/tree/index.umd.js +1 -1
  33. package/types/breadcrumb/index.d.ts +2 -1
  34. package/types/code-editor/index.d.ts +11 -0
  35. package/types/code-editor/src/code-editor-types.d.ts +82 -0
  36. package/types/code-editor/src/code-editor.d.ts +120 -0
  37. package/types/code-editor/src/composables/use-code-editor.d.ts +5 -0
  38. package/types/image-preview/src/image-preview-service.d.ts +1 -1
  39. package/types/nav-sprite/src/nav-sprite.d.ts +1 -1
  40. package/types/vue-devui.d.ts +3 -2
  41. package/vue-devui.es.js +478 -14
  42. package/vue-devui.umd.js +18 -18
package/README.md CHANGED
@@ -224,6 +224,11 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
224
224
  <td align="center"><a href="https://github.com/hqchqc"><img src="https://avatars.githubusercontent.com/u/51051157?v=4" width="100px;" alt=""/><br /><sub><b>hqchqc</b></sub></a><br /><a href="https://github.com/DevCloudFE/vue-devui/commits?author=hqchqc" title="Code">💻</a></td>
225
225
  <td align="center"><a href="https://github.com/Lucky-Ya-Q"><img src="https://avatars.githubusercontent.com/u/63504321?v=4" width="100px;" alt=""/><br /><sub><b>Lucky-Ya-Q</b></sub></a><br /><a href="https://github.com/DevCloudFE/vue-devui/commits?author=Lucky-Ya-Q" title="Code">💻</a></td>
226
226
  </tr>
227
+ <tr>
228
+ <td align="center"><a href="https://github.com/xGuangsPBD"><img src="https://avatars.githubusercontent.com/u/41880611?v=4" width="100px;" alt=""/><br /><sub><b>xGuangsPBD</b></sub></a><br /><a href="https://github.com/DevCloudFE/vue-devui/commits?author=xGuangsPBD" title="Code">💻</a></td>
229
+ <td align="center"><a href="https://github.com/cnvoid"><img src="https://avatars.githubusercontent.com/u/17289381?v=4" width="100px;" alt=""/><br /><sub><b>cnvoid</b></sub></a><br /><a href="https://github.com/DevCloudFE/vue-devui/commits?author=cnvoid" title="Code">💻</a></td>
230
+ <td align="center"><a href="https://github.com/sakanaovo"><img src="https://avatars.githubusercontent.com/u/86860377?v=4" width="100px;" alt=""/><br /><sub><b>sakanaovo</b></sub></a><br /><a href="https://github.com/DevCloudFE/vue-devui/commits?author=sakanaovo" title="Code">💻</a></td>
231
+ </tr>
227
232
  </tbody>
228
233
  </table>
229
234