vue-devui 1.5.3 → 1.5.4

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 (60) hide show
  1. package/action-timeline/index.es.js +161 -0
  2. package/action-timeline/index.umd.js +1 -0
  3. package/action-timeline/package.json +8 -0
  4. package/action-timeline/style.css +1 -0
  5. package/breadcrumb/index.es.js +845 -0
  6. package/breadcrumb/index.umd.js +1 -0
  7. package/breadcrumb/package.json +8 -0
  8. package/breadcrumb/style.css +1 -0
  9. package/code-editor/index.es.js +5874 -0
  10. package/code-editor/index.umd.js +27 -0
  11. package/code-editor/package.json +8 -0
  12. package/code-editor/style.css +1 -0
  13. package/global.d.ts +8 -4
  14. package/menu/index.es.js +4 -3
  15. package/menu/index.umd.js +1 -1
  16. package/modal/index.es.js +10 -10
  17. package/modal/index.umd.js +1 -1
  18. package/nuxt/components/ActionTimeline.js +3 -0
  19. package/nuxt/components/Breadcrumb.js +3 -0
  20. package/nuxt/components/BreadcrumbItem.js +3 -0
  21. package/nuxt/components/CodeEditor.js +3 -0
  22. package/nuxt/components/ModalBody.js +3 -0
  23. package/nuxt/components/ModalFooter.js +3 -0
  24. package/nuxt/components/ModalHeader.js +3 -0
  25. package/nuxt/components/SplitterPane.js +3 -0
  26. package/nuxt/components/actionTimelineProps.js +3 -0
  27. package/nuxt/components/breadcrumbItemProps.js +3 -0
  28. package/nuxt/components/breadcrumbProps.js +3 -0
  29. package/nuxt/components/codeEditorProps.js +3 -0
  30. package/package.json +3 -2
  31. package/pagination/index.es.js +1 -0
  32. package/pagination/index.umd.js +6 -6
  33. package/select/index.es.js +1 -0
  34. package/select/index.umd.js +4 -4
  35. package/splitter/index.es.js +1 -1
  36. package/splitter/index.umd.js +7 -7
  37. package/style.css +1 -1
  38. package/time-select/index.es.js +1 -0
  39. package/time-select/index.umd.js +4 -4
  40. package/tree/index.es.js +5 -0
  41. package/tree/index.umd.js +1 -1
  42. package/types/action-timeline/index.d.ts +11 -0
  43. package/types/action-timeline/src/action-timeline-types.d.ts +46 -0
  44. package/types/action-timeline/src/action-timeline.d.ts +55 -0
  45. package/types/auto-complete/src/auto-complete.d.ts +1 -1
  46. package/types/breadcrumb/index.d.ts +2 -1
  47. package/types/carousel/index.d.ts +1 -2
  48. package/types/code-editor/index.d.ts +11 -0
  49. package/types/code-editor/src/code-editor-types.d.ts +82 -0
  50. package/types/code-editor/src/code-editor.d.ts +120 -0
  51. package/types/code-editor/src/composables/use-code-editor.d.ts +5 -0
  52. package/types/modal/index.d.ts +4 -1
  53. package/types/nav-sprite/src/nav-sprite.d.ts +1 -1
  54. package/types/splitter/index.d.ts +2 -1
  55. package/types/upload/index.d.ts +2 -1
  56. package/types/vue-devui.d.ts +7 -5
  57. package/upload/index.es.js +1 -1
  58. package/upload/index.umd.js +1 -1
  59. package/vue-devui.es.js +631 -20
  60. package/vue-devui.umd.js +18 -18
@@ -0,0 +1,3 @@
1
+ import '../../code-editor/style.css'
2
+
3
+ export { codeEditorProps as default } from '../../code-editor/index.es.js'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-devui",
3
- "version": "1.5.3",
3
+ "version": "1.5.4",
4
4
  "license": "MIT",
5
5
  "description": "DevUI components based on Vite and Vue3",
6
6
  "keywords": [
@@ -40,6 +40,7 @@
40
40
  "lodash": "^4.17.21",
41
41
  "lodash-es": "^4.17.20",
42
42
  "mitt": "^3.0.0",
43
- "vue-router": "^4.0.3"
43
+ "vue-router": "^4.0.3",
44
+ "monaco-editor": "0.34.0"
44
45
  }
45
46
  }
@@ -7924,6 +7924,7 @@ function useSelect(props, selectRef, ctx2, focus, blur, isSelectFocus, t) {
7924
7924
  handleClose();
7925
7925
  blur();
7926
7926
  }
7927
+ filterQuery.value = "";
7927
7928
  };
7928
7929
  const tagDelete = (data) => {
7929
7930
  let { modelValue } = props;