@unicom-cloud/ui 0.8.105 → 0.8.107

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 (87) hide show
  1. package/App.js +7 -0
  2. package/BackTop.js +2 -4
  3. package/Calendar.js +2 -2
  4. package/Modal.js +4 -2
  5. package/Segmented.js +4 -2
  6. package/app/App.js +26 -0
  7. package/app/context.js +9 -0
  8. package/app/index.js +9 -0
  9. package/app/interface.js +1 -0
  10. package/app/useApp.js +8 -0
  11. package/back-top/index.js +44 -56
  12. package/calendar/Lunar.js +71 -0
  13. package/calendar/index.js +11 -11
  14. package/color-picker/index.js +34 -34
  15. package/components/common/flex/index.js +4 -4
  16. package/components/common/icons/file/index.js +13 -11
  17. package/components/common/utils/dayjs.js +99 -124
  18. package/components/common/utils/is.js +98 -104
  19. package/components/common/utils/setDir.js +12 -0
  20. package/components/common/utils/setTheme.js +13 -13
  21. package/config-provider/ConfigProvider.js +32 -30
  22. package/descriptions/index.js +32 -32
  23. package/divider/index.js +28 -20
  24. package/empty/index.js +1 -1
  25. package/grid/Grid.js +55 -88
  26. package/grid/Item.js +40 -61
  27. package/grid/context.js +1 -4
  28. package/grid/hook/useResponsiveState.js +22 -25
  29. package/grid/util.js +6 -44
  30. package/index.js +462 -457
  31. package/input/Button.js +12 -12
  32. package/input/Group.js +11 -12
  33. package/input/Input.js +112 -102
  34. package/input/Search.js +24 -24
  35. package/modal/Confirm.js +17 -17
  36. package/modal/Modal.js +247 -237
  37. package/modal/index.js +4 -2
  38. package/modal/use-modal/index.js +2 -2
  39. package/package.json +1 -1
  40. package/segmented/index.js +93 -90
  41. package/select-view/Core.js +31 -28
  42. package/splitter/SplitBar.js +44 -46
  43. package/style.css +1 -1
  44. package/table/Table.js +198 -210
  45. package/table/th-resizable/index.js +9 -10
  46. package/time-picker/util.js +20 -30
  47. package/types/common/development/interface.d.ts +3 -3
  48. package/types/common/utils/is.d.ts +3 -4
  49. package/types/common/utils/setDir.d.ts +2 -0
  50. package/types/pc/app/App.d.ts +6 -0
  51. package/types/pc/app/context.d.ts +4 -0
  52. package/types/pc/app/index.d.ts +5 -0
  53. package/types/pc/app/interface.d.ts +17 -0
  54. package/types/pc/app/useApp.d.ts +3 -0
  55. package/types/pc/back-top/interface.d.ts +4 -17
  56. package/types/pc/calendar/Lunar.d.ts +17 -0
  57. package/types/pc/calendar/index.d.ts +1 -1
  58. package/types/pc/config-provider/interface.d.ts +1 -1
  59. package/types/pc/divider/interface.d.ts +1 -0
  60. package/types/pc/grid/Grid.d.ts +1 -2
  61. package/types/pc/grid/Item.d.ts +2 -5
  62. package/types/pc/grid/context.d.ts +4 -10
  63. package/types/pc/grid/hook/useResponsiveState.d.ts +2 -2
  64. package/types/pc/grid/interface.d.ts +9 -19
  65. package/types/pc/grid/util.d.ts +1 -10
  66. package/types/pc/index.d.ts +3 -1
  67. package/types/pc/input/Button.d.ts +2 -2
  68. package/types/pc/message/index.d.ts +1 -9
  69. package/types/pc/message/interface.d.ts +8 -0
  70. package/types/pc/message/useMessage.d.ts +1 -2
  71. package/types/pc/modal/Modal.d.ts +1 -0
  72. package/types/pc/modal/config.d.ts +1 -2
  73. package/types/pc/modal/index.d.ts +2 -1
  74. package/types/pc/modal/interface.d.ts +17 -5
  75. package/types/pc/notification/index.d.ts +2 -9
  76. package/types/pc/notification/interface.d.ts +7 -0
  77. package/types/pc/notification/useNotification.d.ts +1 -2
  78. package/types/pc/segmented/interface.d.ts +6 -0
  79. package/types/pc/select-view/Core.d.ts +1 -8
  80. package/types/pc/select-view/index.d.ts +1 -8
  81. package/types/pc/select-view/interface.d.ts +9 -2
  82. package/types/pc/utils/is.d.ts +1 -1
  83. package/types/pc/utils/names.d.ts +303 -0
  84. package/utils/index.js +58 -59
  85. package/utils/is.js +65 -66
  86. package/utils/names.js +298 -144
  87. package/version/index.js +1 -1
package/version/index.js CHANGED
@@ -1,4 +1,4 @@
1
- const I = "2025-07-16 14:47:58", t = "1752648478985", E = "2.66.0";
1
+ const I = "2025-07-24 17:57:09", t = "1753351029560", E = "2.66.0";
2
2
  export {
3
3
  E as VERSION,
4
4
  I as VERSION_BUILD_DATE,