halo-fe 1.0.24 → 1.0.25

Sign up to get free protection for your applications and to get access to all the features.
Files changed (89) hide show
  1. package/dist/main.js +3604 -3524
  2. package/dist/style.css +1 -1
  3. package/esm/@types/CreateFeOptions.d.ts +4 -0
  4. package/esm/coms/@types/SocketProgressProps.d.ts +23 -0
  5. package/esm/coms/@types/TabProps.d.ts +11 -0
  6. package/esm/coms/@types/TableProps.d.ts +22 -0
  7. package/esm/coms/@types/index.d.ts +4 -1
  8. package/esm/coms/Empty.vue.d.ts +12 -10
  9. package/esm/coms/Fill.vue.d.ts +8 -10
  10. package/esm/coms/Scroller.vue.d.ts +11 -13
  11. package/esm/coms/Timer.vue.d.ts +7 -9
  12. package/esm/coms/cards/Index.vue.d.ts +16 -0
  13. package/esm/coms/cards/index.d.ts +2 -0
  14. package/esm/coms/conditions/Condition.vue.d.ts +1 -1
  15. package/esm/coms/conditions/Index.vue.d.ts +1 -1
  16. package/esm/coms/controls/Code.vue.d.ts +4 -6
  17. package/esm/coms/controls/Compare.vue.d.ts +16 -8
  18. package/esm/coms/controls/Input.vue.d.ts +2 -0
  19. package/esm/coms/controls/Option.vue.d.ts +1 -1
  20. package/esm/coms/controls/RichText.vue.d.ts +2 -4
  21. package/esm/coms/controls/Select.vue.d.ts +1 -1
  22. package/esm/coms/controls/index.d.ts +2 -1
  23. package/esm/coms/index.d.ts +1 -0
  24. package/esm/coms/layouts/Col.vue.d.ts +6 -8
  25. package/esm/coms/layouts/Container.vue.d.ts +12 -11
  26. package/esm/coms/layouts/Desc.vue.d.ts +2 -0
  27. package/esm/coms/layouts/Row.vue.d.ts +6 -8
  28. package/esm/coms/pagers/Index.vue.d.ts +2 -0
  29. package/esm/coms/pagers/index.d.ts +2 -0
  30. package/esm/coms/progresses/Index.vue.d.ts +6 -0
  31. package/esm/coms/progresses/SocketProgress.vue.d.ts +7 -9
  32. package/esm/coms/progresses/index.d.ts +1 -1
  33. package/esm/coms/tables/Index.vue.d.ts +14 -0
  34. package/esm/coms/tabs/Tab.vue.d.ts +2 -2
  35. package/esm/coms/tabs/TabPane.vue.d.ts +1 -1
  36. package/esm/drivers/cdns/Cdn.d.ts +6 -8
  37. package/esm/drivers/cdns/ICdn.d.ts +0 -5
  38. package/esm/drivers/encoders/EncoderFactory.d.ts +1 -0
  39. package/esm/drivers/encoders/implement/UrlEncoder.d.ts +7 -0
  40. package/esm/drivers/https/Http.d.ts +13 -2
  41. package/esm/drivers/https/IHttp.d.ts +4 -0
  42. package/esm/drivers/https/entities/HttpModel.d.ts +12 -0
  43. package/esm/drivers/https/implements/DefaultHttp.d.ts +1 -1
  44. package/esm/drivers/https/implements/HaloHttp.d.ts +1 -9
  45. package/esm/drivers/https/implements/MkHttp.d.ts +1 -2
  46. package/esm/drivers/index.d.ts +2 -1
  47. package/esm/drivers/sockets/ISocket.d.ts +35 -0
  48. package/esm/drivers/sockets/Socket.d.ts +8 -0
  49. package/esm/drivers/sockets/SocketFactory.d.ts +13 -0
  50. package/esm/drivers/sockets/implement/DefaultSocket.d.ts +39 -0
  51. package/esm/drivers/sockets/index.d.ts +2 -0
  52. package/esm/drivers/tasks/ITask.d.ts +3 -0
  53. package/esm/drivers/util/@types/JsonConfig.d.ts +10 -0
  54. package/esm/drivers/util/@types/TreeNodeProp.d.ts +9 -0
  55. package/esm/drivers/util/@types/index.d.ts +3 -0
  56. package/esm/drivers/util/IUtil.d.ts +8 -0
  57. package/esm/drivers/util/Util.d.ts +8 -0
  58. package/esm/drivers/util/UtilFactory.d.ts +32 -0
  59. package/esm/drivers/util/implements/ArrayUtil.d.ts +123 -0
  60. package/esm/drivers/util/implements/BrowserUtil.d.ts +12 -0
  61. package/esm/drivers/util/implements/ComponentUtil.d.ts +20 -0
  62. package/esm/drivers/util/implements/DictionaryUtil.d.ts +40 -0
  63. package/esm/drivers/util/implements/DomUtil.d.ts +118 -0
  64. package/esm/drivers/util/implements/EventUtil.d.ts +32 -0
  65. package/esm/drivers/util/implements/FileUtil.d.ts +24 -0
  66. package/esm/drivers/util/implements/HtmlUtil.d.ts +16 -0
  67. package/esm/drivers/util/implements/ImageUtil.d.ts +12 -0
  68. package/esm/drivers/util/implements/JsonUtil.d.ts +53 -0
  69. package/esm/drivers/util/implements/MathUtil.d.ts +52 -0
  70. package/esm/drivers/util/implements/MicroUtil.d.ts +12 -0
  71. package/esm/drivers/util/implements/MountUtil.d.ts +16 -0
  72. package/esm/drivers/util/implements/ObjectUtil.d.ts +44 -0
  73. package/esm/drivers/util/implements/ScrollUtil.d.ts +16 -0
  74. package/esm/drivers/util/implements/SignUtil.d.ts +16 -0
  75. package/esm/drivers/util/implements/StringUtil.d.ts +104 -0
  76. package/esm/drivers/util/implements/TaskUtil.d.ts +28 -0
  77. package/esm/drivers/util/implements/TimeUtil.d.ts +72 -0
  78. package/esm/drivers/util/implements/TreeUtil.d.ts +56 -0
  79. package/esm/drivers/util/implements/TypeUtil.d.ts +28 -0
  80. package/esm/drivers/util/implements/UrlUtil.d.ts +90 -0
  81. package/esm/drivers/util/index.d.ts +24 -0
  82. package/esm/factorying/Factories.d.ts +9 -5
  83. package/esm/factorying/Factory.d.ts +4 -7
  84. package/esm/factorying/IFactory.d.ts +6 -2
  85. package/esm/factorying/Utils.d.ts +24 -9
  86. package/esm/factorying/index.d.ts +7 -2
  87. package/esm/svcs/implement/ConfigSvc.d.ts +1 -1
  88. package/esm/svcs/index.d.ts +1 -3
  89. package/package.json +4 -4

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.