vxe-pc-ui 3.17.19 → 3.17.21

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 (78) hide show
  1. package/es/components.js +31 -1
  2. package/es/icon/style.css +1 -1
  3. package/es/slider/src/slider.js +220 -82
  4. package/es/slider/style.css +8 -15
  5. package/es/slider/style.min.css +1 -1
  6. package/es/space/index.js +12 -0
  7. package/es/space/src/space.js +143 -0
  8. package/es/space/style.css +37 -0
  9. package/es/space/style.min.css +1 -0
  10. package/es/style.css +1 -1
  11. package/es/style.min.css +1 -1
  12. package/es/ui/index.js +2 -1
  13. package/es/ui/src/dom.js +3 -0
  14. package/es/ui/src/log.js +1 -1
  15. package/es/vxe-slider/style.css +8 -15
  16. package/es/vxe-slider/style.min.css +1 -1
  17. package/es/vxe-space/index.js +3 -0
  18. package/es/vxe-space/style.css +37 -0
  19. package/es/vxe-space/style.min.css +1 -0
  20. package/lib/components.js +41 -2
  21. package/lib/components.min.js +1 -1
  22. package/lib/icon/style/style.css +1 -1
  23. package/lib/icon/style/style.min.css +1 -1
  24. package/lib/index.umd.js +462 -91
  25. package/lib/index.umd.min.js +1 -1
  26. package/lib/slider/src/slider.js +237 -87
  27. package/lib/slider/src/slider.min.js +1 -1
  28. package/lib/slider/style/style.css +8 -15
  29. package/lib/slider/style/style.min.css +1 -1
  30. package/lib/space/index.js +19 -0
  31. package/lib/space/index.min.js +1 -0
  32. package/lib/space/src/space.js +172 -0
  33. package/lib/space/src/space.min.js +1 -0
  34. package/lib/space/style/index.js +1 -0
  35. package/lib/space/style/style.css +37 -0
  36. package/lib/space/style/style.min.css +1 -0
  37. package/lib/style.css +1 -1
  38. package/lib/style.min.css +1 -1
  39. package/lib/ui/index.js +2 -1
  40. package/lib/ui/index.min.js +1 -1
  41. package/lib/ui/src/dom.js +4 -0
  42. package/lib/ui/src/dom.min.js +1 -1
  43. package/lib/ui/src/log.js +1 -1
  44. package/lib/ui/src/log.min.js +1 -1
  45. package/lib/vxe-slider/style/style.css +8 -15
  46. package/lib/vxe-slider/style/style.min.css +1 -1
  47. package/lib/vxe-space/index.js +22 -0
  48. package/lib/vxe-space/index.min.js +1 -0
  49. package/lib/vxe-space/style/index.js +1 -0
  50. package/lib/vxe-space/style/style.css +37 -0
  51. package/lib/vxe-space/style/style.min.css +1 -0
  52. package/package.json +2 -2
  53. package/packages/components.ts +31 -1
  54. package/packages/slider/src/slider.ts +226 -80
  55. package/packages/space/index.ts +16 -0
  56. package/packages/space/src/space.ts +159 -0
  57. package/packages/ui/index.ts +1 -0
  58. package/packages/ui/src/dom.ts +4 -0
  59. package/styles/all.scss +1 -0
  60. package/styles/components/slider.scss +8 -13
  61. package/styles/components/space.scss +38 -0
  62. package/styles/theme/base.scss +20 -6
  63. package/types/all.d.ts +3 -0
  64. package/types/components/slider.d.ts +13 -0
  65. package/types/components/space.d.ts +102 -0
  66. package/types/ui/global-config.d.ts +2 -0
  67. /package/es/icon/{iconfont.1787739873173.ttf → iconfont.1787994741699.ttf} +0 -0
  68. /package/es/icon/{iconfont.1787739873173.woff → iconfont.1787994741699.woff} +0 -0
  69. /package/es/icon/{iconfont.1787739873173.woff2 → iconfont.1787994741699.woff2} +0 -0
  70. /package/es/{iconfont.1787739873173.ttf → iconfont.1787994741699.ttf} +0 -0
  71. /package/es/{iconfont.1787739873173.woff → iconfont.1787994741699.woff} +0 -0
  72. /package/es/{iconfont.1787739873173.woff2 → iconfont.1787994741699.woff2} +0 -0
  73. /package/lib/icon/style/{iconfont.1787739873173.ttf → iconfont.1787994741699.ttf} +0 -0
  74. /package/lib/icon/style/{iconfont.1787739873173.woff → iconfont.1787994741699.woff} +0 -0
  75. /package/lib/icon/style/{iconfont.1787739873173.woff2 → iconfont.1787994741699.woff2} +0 -0
  76. /package/lib/{iconfont.1787739873173.ttf → iconfont.1787994741699.ttf} +0 -0
  77. /package/lib/{iconfont.1787739873173.woff → iconfont.1787994741699.woff} +0 -0
  78. /package/lib/{iconfont.1787739873173.woff2 → iconfont.1787994741699.woff2} +0 -0
@@ -0,0 +1,37 @@
1
+ .vxe-space {
2
+ --vxe-ui-space-current-row-gap: var(--vxe-ui-space-row-gap-default);
3
+ --vxe-ui-space-current-column-gap: var(--vxe-ui-space-column-gap-default);
4
+ }
5
+ .vxe-space.size--xlarge {
6
+ --vxe-ui-space-current-row-gap: var(--vxe-ui-space-row-gap-xlarge);
7
+ --vxe-ui-space-current-column-gap: var(--vxe-ui-space-column-gap-xlarge);
8
+ }
9
+ .vxe-space.size--large {
10
+ --vxe-ui-space-current-row-gap: var(--vxe-ui-space-row-gap-large);
11
+ --vxe-ui-space-current-column-gap: var(--vxe-ui-space-column-gap-large);
12
+ }
13
+ .vxe-space.size--medium {
14
+ --vxe-ui-space-current-row-gap: var(--vxe-ui-space-row-gap-medium);
15
+ --vxe-ui-space-current-column-gap: var(--vxe-ui-space-column-gap-medium);
16
+ }
17
+ .vxe-space.size--small {
18
+ --vxe-ui-space-current-row-gap: var(--vxe-ui-space-row-gap-small);
19
+ --vxe-ui-space-current-column-gap: var(--vxe-ui-space-column-gap-small);
20
+ }
21
+ .vxe-space.size--mini {
22
+ --vxe-ui-space-current-row-gap: var(--vxe-ui-space-row-gap-mini);
23
+ --vxe-ui-space-current-column-gap: var(--vxe-ui-space-column-gap-mini);
24
+ }
25
+
26
+ .vxe-space {
27
+ display: inline-flex;
28
+ flex-direction: row;
29
+ align-items: center;
30
+ gap: var(--vxe-ui-space-current-row-gap) var(--vxe-ui-space-current-column-gap);
31
+ }
32
+ .vxe-space.is--wrap {
33
+ flex-wrap: wrap;
34
+ }
35
+ .vxe-space.is--vertical {
36
+ flex-direction: column;
37
+ }
@@ -0,0 +1 @@
1
+ .vxe-space{--vxe-ui-space-current-row-gap:var(--vxe-ui-space-row-gap-default);--vxe-ui-space-current-column-gap:var(--vxe-ui-space-column-gap-default)}.vxe-space.size--xlarge{--vxe-ui-space-current-row-gap:var(--vxe-ui-space-row-gap-xlarge);--vxe-ui-space-current-column-gap:var(--vxe-ui-space-column-gap-xlarge)}.vxe-space.size--large{--vxe-ui-space-current-row-gap:var(--vxe-ui-space-row-gap-large);--vxe-ui-space-current-column-gap:var(--vxe-ui-space-column-gap-large)}.vxe-space.size--medium{--vxe-ui-space-current-row-gap:var(--vxe-ui-space-row-gap-medium);--vxe-ui-space-current-column-gap:var(--vxe-ui-space-column-gap-medium)}.vxe-space.size--small{--vxe-ui-space-current-row-gap:var(--vxe-ui-space-row-gap-small);--vxe-ui-space-current-column-gap:var(--vxe-ui-space-column-gap-small)}.vxe-space.size--mini{--vxe-ui-space-current-row-gap:var(--vxe-ui-space-row-gap-mini);--vxe-ui-space-current-column-gap:var(--vxe-ui-space-column-gap-mini)}.vxe-space{display:inline-flex;flex-direction:row;align-items:center;gap:var(--vxe-ui-space-current-row-gap) var(--vxe-ui-space-current-column-gap)}.vxe-space.is--wrap{flex-wrap:wrap}.vxe-space.is--vertical{flex-direction:column}