vue-devui 1.6.1 → 1.6.3

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 (47) hide show
  1. package/auto-complete/index.es.js +4 -4
  2. package/auto-complete/index.umd.js +2 -2
  3. package/checkbox/index.es.js +4 -4
  4. package/checkbox/index.umd.js +9 -9
  5. package/date-picker-pro/index.es.js +4 -4
  6. package/date-picker-pro/index.umd.js +2 -2
  7. package/form/index.es.js +4 -4
  8. package/form/index.umd.js +9 -9
  9. package/fullscreen/index.es.js +167 -0
  10. package/fullscreen/index.umd.js +1 -0
  11. package/fullscreen/package.json +8 -0
  12. package/fullscreen/style.css +1 -0
  13. package/global.d.ts +1 -0
  14. package/input/index.es.js +4 -4
  15. package/input/index.umd.js +1 -1
  16. package/input-number/index.es.js +4 -4
  17. package/input-number/index.umd.js +10 -10
  18. package/mention/index.es.js +4 -4
  19. package/mention/index.umd.js +2 -2
  20. package/nuxt/components/Fullscreen.js +3 -0
  21. package/nuxt/components/fullscreenProps.js +3 -0
  22. package/package.json +1 -1
  23. package/pagination/index.es.js +4 -4
  24. package/pagination/index.umd.js +1 -1
  25. package/radio/index.es.js +4 -4
  26. package/radio/index.umd.js +2 -2
  27. package/search/index.es.js +4 -4
  28. package/search/index.umd.js +10 -10
  29. package/select/index.es.js +4 -4
  30. package/select/index.umd.js +15 -15
  31. package/switch/index.es.js +4 -4
  32. package/switch/index.umd.js +14 -14
  33. package/table/index.es.js +4 -4
  34. package/table/index.umd.js +1 -1
  35. package/textarea/index.es.js +4 -4
  36. package/textarea/index.umd.js +2 -2
  37. package/time-picker/index.es.js +4 -4
  38. package/time-picker/index.umd.js +1 -1
  39. package/time-select/index.es.js +4 -4
  40. package/time-select/index.umd.js +1 -1
  41. package/tree/index.es.js +4 -4
  42. package/tree/index.umd.js +1 -1
  43. package/types/form/src/components/form-item/form-item-types.d.ts +3 -3
  44. package/types/form/src/form-types.d.ts +3 -3
  45. package/types/fullscreen/index.d.ts +1 -0
  46. package/vue-devui.es.js +6 -5
  47. package/vue-devui.umd.js +4 -4
@@ -5533,8 +5533,8 @@ const formProps = {
5533
5533
  default: "reposition"
5534
5534
  }
5535
5535
  };
5536
- const FORM_TOKEN = Symbol("dForm");
5537
- const STYLE_TOKEN = Symbol("dForm");
5536
+ const FORM_TOKEN = "dForm";
5537
+ const STYLE_TOKEN = "dFormStyle";
5538
5538
  function lockScroll() {
5539
5539
  if (document.documentElement.scrollHeight > document.documentElement.clientHeight) {
5540
5540
  const scrollTop = document.documentElement.scrollTop;
@@ -5724,8 +5724,8 @@ const formItemProps = {
5724
5724
  default: ""
5725
5725
  }
5726
5726
  };
5727
- const FORM_ITEM_TOKEN = Symbol("dFormItem");
5728
- const LABEL_DATA = Symbol("labelData");
5727
+ const FORM_ITEM_TOKEN = "dFormItem";
5728
+ const LABEL_DATA = "dFormLabelData";
5729
5729
  const fixedOverlayProps = {
5730
5730
  modelValue: {
5731
5731
  type: Boolean,