@titaui/pc 1.11.3 → 1.11.4-2

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 (81) hide show
  1. package/lib/components/button/icon-btn/index.js +17 -8
  2. package/lib/components/drop-selector/index.js +25 -10
  3. package/lib/components/dynamic/constant.js +2 -1
  4. package/lib/components/dynamic/dynamic-item/dynamic-interview/img/wifi.svg +24 -0
  5. package/lib/components/dynamic/dynamic-item/dynamic-interview/index.css +51 -0
  6. package/lib/components/dynamic/dynamic-item/dynamic-interview/index.js +51 -0
  7. package/lib/components/dynamic/dynamic-item/dynamic-interview/interview-content.js +65 -0
  8. package/lib/components/dynamic/dynamic-item/dynamic-interview-share/img/wifi.svg +24 -0
  9. package/lib/components/dynamic/dynamic-item/dynamic-interview-share/index.css +61 -0
  10. package/lib/components/dynamic/dynamic-item/dynamic-interview-share/index.js +54 -0
  11. package/lib/components/dynamic/dynamic-item/dynamic-interview-share/interview-content.js +69 -0
  12. package/lib/components/dynamic/dynamic-item/index.js +17 -0
  13. package/lib/components/form/form-fields/date/index.css +24 -0
  14. package/lib/components/form/form-fields/date/index.js +98 -0
  15. package/lib/components/form/form-fields/user/index.css +1 -1
  16. package/lib/components/form/index.js +10 -3
  17. package/lib/components/menus/export-modules/interview-menus/constant.js +30 -0
  18. package/lib/components/menus/export-modules/interview-menus/handle-highlight.js +63 -0
  19. package/lib/components/menus/export-modules/interview-menus/index.js +126 -0
  20. package/lib/components/menus/index.js +11 -5
  21. package/lib/components/picker/components/panels/date-panel/date-body.js +116 -0
  22. package/lib/components/picker/components/panels/date-panel/date-head.js +66 -0
  23. package/lib/components/picker/components/panels/date-panel/index.css +14 -0
  24. package/lib/components/picker/components/panels/date-panel/index.js +49 -0
  25. package/lib/components/picker/components/panels/month-panel/index.css +27 -0
  26. package/lib/components/picker/components/panels/month-panel/index.js +63 -0
  27. package/lib/components/picker/components/panels/month-panel/month-body.js +87 -0
  28. package/lib/components/picker/components/panels/month-panel/month-head.js +47 -0
  29. package/lib/components/picker/components/panels/panel-body/index.js +53 -0
  30. package/lib/components/picker/components/panels/panel-head/index.js +48 -0
  31. package/lib/components/picker/components/panels/year-panel/index.css +23 -0
  32. package/lib/components/picker/components/panels/year-panel/index.js +65 -0
  33. package/lib/components/picker/components/panels/year-panel/year-body.js +92 -0
  34. package/lib/components/picker/components/panels/year-panel/year-head.js +35 -0
  35. package/lib/components/picker/components/picker-trigger/index.css +42 -0
  36. package/lib/components/picker/components/picker-trigger/index.js +94 -0
  37. package/lib/components/picker/context.js +15 -0
  38. package/lib/components/picker/index.css +121 -0
  39. package/lib/components/picker/index.js +13 -0
  40. package/lib/components/picker/picker-panels.js +182 -0
  41. package/lib/components/picker/picker.js +132 -0
  42. package/lib/components/picker/type.js +5 -0
  43. package/lib/components/picker/utils.js +28 -0
  44. package/lib/components/task-tree/helper.js +61 -0
  45. package/lib/components/task-tree/images/P1.svg +15 -0
  46. package/lib/components/task-tree/images/P2.svg +15 -0
  47. package/lib/components/task-tree/images/P3.svg +15 -0
  48. package/lib/components/task-tree/images/P4.svg +15 -0
  49. package/lib/components/task-tree/images/P5.svg +15 -0
  50. package/lib/components/task-tree/images/arrow.svg +9 -0
  51. package/lib/components/task-tree/images/empty-131.png +0 -0
  52. package/lib/components/task-tree/images/followed.svg +33 -0
  53. package/lib/components/task-tree/images/nice.svg +108 -0
  54. package/lib/components/task-tree/images/struc12.png +0 -0
  55. package/lib/components/task-tree/images/struc2.png +0 -0
  56. package/lib/components/task-tree/images/xialat-s.svg +13 -0
  57. package/lib/components/task-tree/index.js +27 -0
  58. package/lib/components/task-tree/mock.js +944 -0
  59. package/lib/components/task-tree/precls.js +8 -0
  60. package/lib/components/task-tree/request-apis.js +88 -0
  61. package/lib/components/task-tree/task-item-node/constant.js +45 -0
  62. package/lib/components/task-tree/task-item-node/e-empty.js +29 -0
  63. package/lib/components/task-tree/task-item-node/e-project.js +195 -0
  64. package/lib/components/task-tree/task-item-node/e-status-dropdown.js +94 -0
  65. package/lib/components/task-tree/task-item-node/e-task.js +431 -0
  66. package/lib/components/task-tree/task-item-node/get-process-color.js +62 -0
  67. package/lib/components/task-tree/task-item-node/index.css +290 -0
  68. package/lib/components/task-tree/task-item-node/task-node-render.js +43 -0
  69. package/lib/components/task-tree/task-tree.css +8 -0
  70. package/lib/components/task-tree/task-tree.js +49 -0
  71. package/lib/components/time-picker/index.css +117 -0
  72. package/lib/components/time-picker/index.js +13 -0
  73. package/lib/components/time-picker/time-picker-selector.js +138 -0
  74. package/lib/components/time-picker/time-picker.js +324 -0
  75. package/lib/components/time-picker/timer-picker-input.js +94 -0
  76. package/lib/components/time-picker/utils.js +52 -0
  77. package/lib/index.js +24 -0
  78. package/lib/pages/aha2021/index.js +5 -1
  79. package/lib/utils/hooks.js +72 -0
  80. package/package.json +1 -1
  81. package/yarn-error.log +22184 -0

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.