@titaui/pc 1.5.82 → 1.5.83

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 (319) hide show
  1. package/lib/components/avatar/icon-avatar/index.css +15 -0
  2. package/lib/components/avatar/icon-avatar/index.js +50 -0
  3. package/lib/components/avatar/index.js +9 -1
  4. package/lib/components/avatar/num-avatar/index.css +12 -0
  5. package/lib/components/avatar/num-avatar/index.js +34 -0
  6. package/lib/components/button/admin-button/default.js +35 -0
  7. package/lib/components/button/admin-button/drop-down-arrow.js +93 -0
  8. package/lib/components/button/admin-button/index.css +86 -0
  9. package/lib/components/button/admin-button/index.js +40 -0
  10. package/lib/components/button/admin-button/primary.js +33 -0
  11. package/lib/components/button/admin-button/secondary.js +35 -0
  12. package/lib/components/button/default-button/index.css +49 -0
  13. package/lib/components/button/default-button/index.js +51 -0
  14. package/lib/components/button/export-button/index.css +51 -0
  15. package/lib/components/button/export-button/index.js +81 -0
  16. package/lib/components/button/images/daoru.svg +18 -0
  17. package/lib/components/button/index.js +23 -0
  18. package/lib/components/button/interface.js +5 -0
  19. package/lib/components/change-okr/Filter.js +133 -65
  20. package/lib/components/change-okr/Item.js +6 -0
  21. package/lib/components/change-okr/filterTab.js +2 -0
  22. package/lib/components/change-okr/index.js +2 -2
  23. package/lib/components/checkbox/index.js +4 -3
  24. package/lib/components/communication/CommunicationRecord.js +116 -161
  25. package/lib/components/communication/ConvertUserName.js +1 -1
  26. package/lib/components/communication/index.css +63 -0
  27. package/lib/components/communication/index.js +53 -28
  28. package/lib/components/communication/style.js +21 -25
  29. package/lib/components/create-okr/animation/check-animation.js +2746 -0
  30. package/lib/components/create-okr/constant.js +27 -0
  31. package/lib/components/create-okr/createCycle.js +193 -0
  32. package/lib/components/create-okr/createSuccessCmp.js +233 -0
  33. package/lib/components/create-okr/createSuccessCmpWrapper.js +20 -0
  34. package/lib/components/create-okr/fields/date-cycle.js +98 -0
  35. package/lib/components/create-okr/fields/index.css +346 -0
  36. package/lib/components/create-okr/fields/index.js +17 -0
  37. package/lib/components/create-okr/fields/input-with-err-popup.js +57 -0
  38. package/lib/components/create-okr/fields/o-new-name.js +197 -0
  39. package/lib/components/create-okr/fields/okr-case.js +98 -0
  40. package/lib/components/create-okr/fields/okr-classify.js +51 -0
  41. package/lib/components/create-okr/fields/okr-create-suggest.js +147 -0
  42. package/lib/components/create-okr/fields/okr-new-user-selector.js +106 -0
  43. package/lib/components/create-okr/fields/okr-parent.js +157 -0
  44. package/lib/components/create-okr/fields/okr-type-detail.js +196 -0
  45. package/lib/components/create-okr/fields/okr-type.js +131 -0
  46. package/lib/components/create-okr/fields/okr-visibility-detail.js +224 -0
  47. package/lib/components/create-okr/fields/okr-visibility.js +169 -0
  48. package/lib/components/create-okr/img/check-normal.svg +29 -0
  49. package/lib/components/create-okr/img/check-right.svg +16 -0
  50. package/lib/components/create-okr/img/check-wrong.svg +29 -0
  51. package/lib/components/create-okr/img/create-success-head.png +0 -0
  52. package/lib/components/create-okr/img/create-success-left-quotation.svg +14 -0
  53. package/lib/components/create-okr/img/create-success-message.svg +1 -0
  54. package/lib/components/create-okr/img/create-success-right-quotation.svg +14 -0
  55. package/lib/components/create-okr/img/create-success-shadow.svg +23 -0
  56. package/lib/components/create-okr/img/example.svg +11 -0
  57. package/lib/components/create-okr/img/hand.svg +12 -0
  58. package/lib/components/create-okr/img/kr-add.svg +12 -0
  59. package/lib/components/create-okr/img/left-quotation.svg +12 -0
  60. package/lib/components/create-okr/img/light.svg +1 -0
  61. package/lib/components/create-okr/img/pack-up.js +28 -0
  62. package/lib/components/create-okr/img/qr-code.png +0 -0
  63. package/lib/components/create-okr/img/right-quotation.svg +12 -0
  64. package/lib/components/create-okr/img/shower.png +0 -0
  65. package/lib/components/create-okr/img/target.svg +19 -0
  66. package/lib/components/create-okr/img/teach-okr.svg +17 -0
  67. package/lib/components/create-okr/img/wave.png +0 -0
  68. package/lib/components/create-okr/img/weight.svg +12 -0
  69. package/lib/components/create-okr/index.css +446 -0
  70. package/lib/components/create-okr/index.js +911 -0
  71. package/lib/components/create-okr/interface.js +5 -0
  72. package/lib/components/create-okr/kr-items/index.css +180 -0
  73. package/lib/components/create-okr/kr-items/kr-item-weight.js +194 -0
  74. package/lib/components/create-okr/kr-items/krDatas.js +299 -0
  75. package/lib/components/create-okr/kr-items/krItem.js +167 -0
  76. package/lib/components/create-okr/objectType.js +273 -0
  77. package/lib/components/create-okr/request-api.js +220 -0
  78. package/lib/components/create-okr/style.js +100 -0
  79. package/lib/components/create-okr/utils/getCreateOkrSurpassPercent.js +124 -0
  80. package/lib/components/create-okr/utils/helper.js +99 -0
  81. package/lib/components/create-okr/utils/index.js +23 -0
  82. package/lib/components/dropdown-layer/icon-item.js +5 -3
  83. package/lib/components/dropdown-layer/index.css +16 -0
  84. package/lib/components/dropdown-layer/index.js +21 -14
  85. package/lib/components/dynamic/components/condition-render/index.js +20 -0
  86. package/lib/components/dynamic/components/dangerous-html/index.js +22 -0
  87. package/lib/components/dynamic/components/dynamic-search-input/index.css +78 -0
  88. package/lib/components/dynamic/components/dynamic-search-input/index.js +192 -0
  89. package/lib/components/dynamic/components/obj-status/index.css +22 -0
  90. package/lib/components/dynamic/components/obj-status/index.js +38 -0
  91. package/lib/components/dynamic/components/percent/index.css +21 -0
  92. package/lib/components/dynamic/components/percent/index.js +38 -0
  93. package/lib/components/dynamic/components/title/index.css +35 -0
  94. package/lib/components/dynamic/components/title/index.js +59 -0
  95. package/lib/components/dynamic/constant.js +97 -0
  96. package/lib/components/dynamic/context/index.js +13 -0
  97. package/lib/components/dynamic/dynamic-item/components/header/index.css +101 -0
  98. package/lib/components/dynamic/dynamic-item/components/header/index.js +299 -0
  99. package/lib/components/dynamic/dynamic-item/components/icon/index.css +10 -0
  100. package/lib/components/dynamic/dynamic-item/components/icon/index.js +35 -0
  101. package/lib/components/dynamic/dynamic-item/dynamic-align/img/dynamic-align.svg +22 -0
  102. package/lib/components/dynamic/dynamic-item/dynamic-align/img/dynamic-relative.svg +22 -0
  103. package/lib/components/dynamic/dynamic-item/dynamic-align/index.css +95 -0
  104. package/lib/components/dynamic/dynamic-item/dynamic-align/index.js +173 -0
  105. package/lib/components/dynamic/dynamic-item/dynamic-announcement/index.css +59 -0
  106. package/lib/components/dynamic/dynamic-item/dynamic-announcement/index.js +107 -0
  107. package/lib/components/dynamic/dynamic-item/dynamic-assessment/index.css +48 -0
  108. package/lib/components/dynamic/dynamic-item/dynamic-assessment/index.js +89 -0
  109. package/lib/components/dynamic/dynamic-item/dynamic-create-o/index.css +96 -0
  110. package/lib/components/dynamic/dynamic-item/dynamic-create-o/index.js +171 -0
  111. package/lib/components/dynamic/dynamic-item/dynamic-kr/index.css +67 -0
  112. package/lib/components/dynamic/dynamic-item/dynamic-kr/index.js +110 -0
  113. package/lib/components/dynamic/dynamic-item/dynamic-milestone/constant.js +16 -0
  114. package/lib/components/dynamic/dynamic-item/dynamic-milestone/img/milestone.png +0 -0
  115. package/lib/components/dynamic/dynamic-item/dynamic-milestone/index.css +111 -0
  116. package/lib/components/dynamic/dynamic-item/dynamic-milestone/index.js +158 -0
  117. package/lib/components/dynamic/dynamic-item/dynamic-progress/index.css +95 -0
  118. package/lib/components/dynamic/dynamic-item/dynamic-progress/index.js +215 -0
  119. package/lib/components/dynamic/dynamic-item/dynamic-project/constant.js +16 -0
  120. package/lib/components/dynamic/dynamic-item/dynamic-project/img/project.png +0 -0
  121. package/lib/components/dynamic/dynamic-item/dynamic-project/index.css +91 -0
  122. package/lib/components/dynamic/dynamic-item/dynamic-project/index.js +125 -0
  123. package/lib/components/dynamic/dynamic-item/dynamic-relative/img/dynamic-relative.svg +22 -0
  124. package/lib/components/dynamic/dynamic-item/dynamic-relative/index.css +95 -0
  125. package/lib/components/dynamic/dynamic-item/dynamic-relative/index.js +192 -0
  126. package/lib/components/dynamic/dynamic-item/dynamic-replay/index.css +138 -0
  127. package/lib/components/dynamic/dynamic-item/dynamic-replay/index.js +183 -0
  128. package/lib/components/dynamic/dynamic-item/dynamic-report/index.css +153 -0
  129. package/lib/components/dynamic/dynamic-item/dynamic-report/index.js +138 -0
  130. package/lib/components/dynamic/dynamic-item/dynamic-reward/index.css +97 -0
  131. package/lib/components/dynamic/dynamic-item/dynamic-reward/index.js +207 -0
  132. package/lib/components/dynamic/dynamic-item/dynamic-share/index.css +59 -0
  133. package/lib/components/dynamic/dynamic-item/dynamic-share/index.js +107 -0
  134. package/lib/components/dynamic/dynamic-item/dynamic-task/constant.js +50 -0
  135. package/lib/components/dynamic/dynamic-item/dynamic-task/img/task-cancel.png +0 -0
  136. package/lib/components/dynamic/dynamic-item/dynamic-task/img/task-delay.png +0 -0
  137. package/lib/components/dynamic/dynamic-item/dynamic-task/img/task-done.png +0 -0
  138. package/lib/components/dynamic/dynamic-item/dynamic-task/img/task-pause.png +0 -0
  139. package/lib/components/dynamic/dynamic-item/dynamic-task/img/task-progress.png +0 -0
  140. package/lib/components/dynamic/dynamic-item/dynamic-task/img/task-unaccept.png +0 -0
  141. package/lib/components/dynamic/dynamic-item/dynamic-task/img/task-unstart.png +0 -0
  142. package/lib/components/dynamic/dynamic-item/dynamic-task/index.css +111 -0
  143. package/lib/components/dynamic/dynamic-item/dynamic-task/index.js +164 -0
  144. package/lib/components/dynamic/dynamic-item/index.css +128 -0
  145. package/lib/components/dynamic/dynamic-item/index.js +352 -0
  146. package/lib/components/dynamic/dynamic-like-ranking/image/like-ranking.svg +23 -0
  147. package/lib/components/dynamic/dynamic-like-ranking/image/ranking-1.png +0 -0
  148. package/lib/components/dynamic/dynamic-like-ranking/image/ranking-2.png +0 -0
  149. package/lib/components/dynamic/dynamic-like-ranking/image/ranking-3.png +0 -0
  150. package/lib/components/dynamic/dynamic-like-ranking/index.css +126 -0
  151. package/lib/components/dynamic/dynamic-like-ranking/index.js +157 -0
  152. package/lib/components/dynamic/dynamic-like-ranking/item.js +107 -0
  153. package/lib/components/dynamic/dynamic-like-ranking/mock.js +84 -0
  154. package/lib/components/dynamic/dynamic-liking/image/like-dynamic.svg +30 -0
  155. package/lib/components/dynamic/dynamic-liking/index.css +81 -0
  156. package/lib/components/dynamic/dynamic-liking/index.js +76 -0
  157. package/lib/components/dynamic/dynamic-liking/item.js +91 -0
  158. package/lib/components/dynamic/dynamic-liking/mock.js +83 -0
  159. package/lib/components/dynamic/dynamic-list/index.css +36 -0
  160. package/lib/components/dynamic/dynamic-list/index.js +61 -0
  161. package/lib/components/dynamic/dynamic-topping/image/quotationMark.svg +16 -0
  162. package/lib/components/dynamic/dynamic-topping/image/topIcon.svg +30 -0
  163. package/lib/components/dynamic/dynamic-topping/index.css +148 -0
  164. package/lib/components/dynamic/dynamic-topping/index.js +80 -0
  165. package/lib/components/dynamic/dynamic-topping/interface.js +5 -0
  166. package/lib/components/dynamic/dynamic-topping/item.js +140 -0
  167. package/lib/components/dynamic/dynamic-topping/request-api.js +36 -0
  168. package/lib/components/dynamic/dynamic.css +204 -0
  169. package/lib/components/dynamic/dynamic.js +391 -0
  170. package/lib/components/dynamic/export-module/index.js +33 -0
  171. package/lib/components/dynamic/img/dynamic-P1.svg +15 -0
  172. package/lib/components/dynamic/img/dynamic-P2.svg +15 -0
  173. package/lib/components/dynamic/img/dynamic-P3.svg +15 -0
  174. package/lib/components/dynamic/img/dynamic-P4.svg +15 -0
  175. package/lib/components/dynamic/img/dynamic-P5.svg +15 -0
  176. package/lib/components/dynamic/img/dynamic-delay.svg +17 -0
  177. package/lib/components/dynamic/img/dynamic-desire.svg +61 -0
  178. package/lib/components/dynamic/img/dynamic-empty.png +0 -0
  179. package/lib/components/dynamic/img/dynamic-end.svg +17 -0
  180. package/lib/components/dynamic/img/dynamic-left-quoto.svg +13 -0
  181. package/lib/components/dynamic/img/dynamic-loading.gif +0 -0
  182. package/lib/components/dynamic/img/dynamic-normal.svg +17 -0
  183. package/lib/components/dynamic/img/dynamic-promise.svg +61 -0
  184. package/lib/components/dynamic/img/dynamic-reword.svg +24 -0
  185. package/lib/components/dynamic/img/dynamic-right-quoto.svg +13 -0
  186. package/lib/components/dynamic/img/dynamic-risk.svg +17 -0
  187. package/lib/components/dynamic/img/dynamic-submit-delay.svg +16 -0
  188. package/lib/components/dynamic/img/dynamic-submit-normal.svg +18 -0
  189. package/lib/components/dynamic/img/dynamic-top.svg +14 -0
  190. package/lib/components/dynamic/index.js +27 -0
  191. package/lib/components/dynamic/interface.js +5 -0
  192. package/lib/components/dynamic/quick-operation/components/create-announcement/index.css +25 -0
  193. package/lib/components/dynamic/quick-operation/components/create-announcement/index.js +37 -0
  194. package/lib/components/dynamic/quick-operation/components/create-okr/index.css +25 -0
  195. package/lib/components/dynamic/quick-operation/components/create-okr/index.js +37 -0
  196. package/lib/components/dynamic/quick-operation/components/create-share/index.css +25 -0
  197. package/lib/components/dynamic/quick-operation/components/create-share/index.js +37 -0
  198. package/lib/components/dynamic/quick-operation/components/create-task/index.css +25 -0
  199. package/lib/components/dynamic/quick-operation/components/create-task/index.js +42 -0
  200. package/lib/components/dynamic/quick-operation/img/create-announcement.png +0 -0
  201. package/lib/components/dynamic/quick-operation/img/create-okr.png +0 -0
  202. package/lib/components/dynamic/quick-operation/img/create-share.png +0 -0
  203. package/lib/components/dynamic/quick-operation/img/create-task.png +0 -0
  204. package/lib/components/dynamic/quick-operation/index.css +51 -0
  205. package/lib/components/dynamic/quick-operation/index.js +112 -0
  206. package/lib/components/dynamic/request-api.js +92 -0
  207. package/lib/components/dynamic/util.js +140 -0
  208. package/lib/components/emotionsSelector/style.js +1 -1
  209. package/lib/components/file-list/components/single-file/index.css +84 -0
  210. package/lib/components/file-list/components/single-file/index.js +115 -0
  211. package/lib/components/file-list/img/new-file-list-doc.svg +1 -0
  212. package/lib/components/file-list/img/new-file-list-other.svg +1 -0
  213. package/lib/components/file-list/img/new-file-list-pdf.svg +1 -0
  214. package/lib/components/file-list/img/new-file-list-ppt.svg +1 -0
  215. package/lib/components/file-list/img/new-file-list-radio.svg +1 -0
  216. package/lib/components/file-list/img/new-file-list-video.svg +1 -0
  217. package/lib/components/file-list/img/new-file-list-xls.svg +1 -0
  218. package/lib/components/file-list/index.css +5 -0
  219. package/lib/components/file-list/index.js +61 -0
  220. package/lib/components/file-list/interface.js +5 -0
  221. package/lib/components/file-list/util.js +78 -0
  222. package/lib/components/form/form-fields/input/index.css +11 -0
  223. package/lib/components/form/form-fields/input/index.js +3 -1
  224. package/lib/components/grid-page/image/{Assistant.svg → assistant.svg} +0 -0
  225. package/lib/components/grid-page/image/{Boss.svg → boss.svg} +0 -0
  226. package/lib/components/grid-page/image/{Default-background.png → default-background.png} +0 -0
  227. package/lib/components/grid-page/image/{UserManager.svg → userManager.svg} +0 -0
  228. package/lib/components/grid-page/personal-info/index.js +5 -5
  229. package/lib/components/img-viewer/icon/enlarge.js +30 -0
  230. package/lib/components/img-viewer/icon/left-rotate.js +46 -0
  231. package/lib/components/img-viewer/icon/right-rotate.js +44 -0
  232. package/lib/components/img-viewer/icon/shrink.js +37 -0
  233. package/lib/components/img-viewer/image/loading.gif +0 -0
  234. package/lib/components/img-viewer/index.css +155 -0
  235. package/lib/components/img-viewer/index.js +228 -0
  236. package/lib/components/img-viewer/interface.js +5 -0
  237. package/lib/components/img-viewer/util.js +16 -0
  238. package/lib/components/mblog/components/MblogAction.js +10 -6
  239. package/lib/components/mblog/index.js +24 -11
  240. package/lib/components/mblog/style.js +8 -8
  241. package/lib/components/okr-detail/components/header/index.css +4 -0
  242. package/lib/components/okr-detail/components/header/o-cycle.js +2 -2
  243. package/lib/components/okr-detail/components/okr-tree/tree-node/e-kr-node/index.js +15 -8
  244. package/lib/components/okr-flow/child-node/work-node.js +7 -1
  245. package/lib/components/okr-period-selector/select-cycle.js +139 -151
  246. package/lib/components/okr-progress-detail/index.css +1 -0
  247. package/lib/components/okr-review/ReviewPop/components/ReviewBody/index.js +5 -5
  248. package/lib/components/okr-review/ReviewPop/index.js +4 -4
  249. package/lib/components/period-selector/common.js +168 -17
  250. package/lib/components/period-selector/components/selector/index.js +103 -38
  251. package/lib/components/period-selector/components/selector/style.js +23 -9
  252. package/lib/components/period-selector/index.js +29 -28
  253. package/lib/components/popup/index.js +3 -1
  254. package/lib/components/publish-dynamic-modal/index.js +13 -0
  255. package/lib/components/publish-dynamic-modal/interface.js +5 -0
  256. package/lib/components/publish-dynamic-modal/publish-dynamic-modal.css +3 -0
  257. package/lib/components/publish-dynamic-modal/publish-dynamic-modal.js +191 -0
  258. package/lib/components/publish-dynamic-modal/requist-api.js +48 -0
  259. package/lib/components/radio/index.css +5 -0
  260. package/lib/components/radio/radio.js +12 -4
  261. package/lib/components/search-key-handle/index.js +39 -0
  262. package/lib/components/table/index.css +0 -1
  263. package/lib/components/upload/components/uploadedPreview.js +62 -54
  264. package/lib/components/upload/img/doc.svg +1 -0
  265. package/lib/components/upload/img/other.svg +1 -0
  266. package/lib/components/upload/img/pdf.svg +1 -0
  267. package/lib/components/upload/img/ppt.svg +1 -0
  268. package/lib/components/upload/img/radio.svg +1 -0
  269. package/lib/components/upload/img/video.svg +1 -0
  270. package/lib/components/upload/img/xls.svg +1 -0
  271. package/lib/components/upload/index.css +26 -0
  272. package/lib/components/upload/index.js +89 -57
  273. package/lib/components/upload/style.js +7 -7
  274. package/lib/components/upload/type.js +15 -15
  275. package/lib/components/upload/util.js +102 -0
  276. package/lib/components/upvote/index.js +37 -14
  277. package/lib/components/user-selector/export-modules/field-tree-selector/index.css +4 -0
  278. package/lib/components/user-selector/export-modules/field-tree-selector/index.js +50 -24
  279. package/lib/components/user-selector/export-modules/field-tree-selector/single-selector/index.js +11 -2
  280. package/lib/components/user-selector/layout/index.css +1 -1
  281. package/lib/components-v1/buttonv2/ButtonLinked.js +35 -0
  282. package/lib/components-v1/buttonv2/ButtonOutlined.js +64 -0
  283. package/lib/components-v1/buttonv2/ButtonRounded.js +101 -0
  284. package/lib/components-v1/buttonv2/DefaultButton.js +86 -0
  285. package/lib/components-v1/buttonv2/index.js +37 -0
  286. package/lib/components-v1/buttonv2/style/style.js +53 -0
  287. package/lib/components-v1/buttonv2/style/theme.css +3 -0
  288. package/lib/components-v1/confirm/index.js +158 -0
  289. package/lib/index.js +49 -5
  290. package/lib/pages/dynamic/index.css +5 -0
  291. package/lib/pages/dynamic/index.js +25 -0
  292. package/lib/pages/home-page/components/data-list/nav-selector/index.js +18 -0
  293. package/lib/pages/home-page/components/data-list/table/utils-function.js +6 -3
  294. package/lib/pages/like-ranking/column.js +141 -0
  295. package/lib/pages/like-ranking/filter-buttons/department.js +44 -0
  296. package/lib/pages/like-ranking/filter-buttons/group.js +34 -0
  297. package/lib/pages/like-ranking/filter-buttons/index.css +19 -0
  298. package/lib/pages/like-ranking/filter-buttons/index.js +40 -0
  299. package/lib/pages/like-ranking/filter-buttons/modular.js +110 -0
  300. package/lib/pages/like-ranking/filter-buttons/name.js +73 -0
  301. package/lib/pages/like-ranking/filter-buttons/search-dropdown/index.css +27 -0
  302. package/lib/pages/like-ranking/filter-buttons/search-dropdown/index.js +38 -0
  303. package/lib/pages/like-ranking/filter-buttons/timer.js +56 -0
  304. package/lib/pages/like-ranking/image/dynamic-empty.png +0 -0
  305. package/lib/pages/like-ranking/image/loading.gif +0 -0
  306. package/lib/pages/like-ranking/image/ranking-1.png +0 -0
  307. package/lib/pages/like-ranking/image/ranking-2.png +0 -0
  308. package/lib/pages/like-ranking/image/ranking-3.png +0 -0
  309. package/lib/pages/like-ranking/index.css +185 -0
  310. package/lib/pages/like-ranking/index.js +252 -0
  311. package/lib/pages/like-ranking/mock.js +366 -0
  312. package/lib/pages/like-ranking/request-api.js +15 -0
  313. package/lib/utils/auth.js +46 -5
  314. package/lib/utils/bs-global.js +26 -2
  315. package/lib/utils/format-time.js +161 -0
  316. package/lib/utils/helpers.js +41 -0
  317. package/lib/utils/roundWeight.js +105 -0
  318. package/lib/utils/tools.js +140 -20
  319. package/package.json +2 -2
@@ -0,0 +1,446 @@
1
+ .space-between-row {
2
+ display: flex;
3
+ justify-content: space-between;
4
+ align-items: center;
5
+ margin-bottom: 16px;
6
+ width: 536px;
7
+ font-family: -apple-system, Arial, Verdana, Helvetica Neue, Helvetica, sans-serif, PingFang SC, Microsoft YaHei;
8
+ }
9
+
10
+ .space-between-row .okr-type-classify {
11
+ margin-bottom: 0;
12
+ flex: 1;
13
+ }
14
+
15
+ .space-between-row--margin-bottom-4 {
16
+ margin-bottom: 4px;
17
+ }
18
+
19
+ .edit-okr-row {
20
+ flex: 1;
21
+ margin-bottom: 0;
22
+ }
23
+
24
+ .create-modal__sub-block {
25
+ display: flex;
26
+ flex-direction: column;
27
+ flex: 1;
28
+ font-family: -apple-system, Arial, Verdana, Helvetica Neue, Helvetica, sans-serif, PingFang SC, Microsoft YaHei;
29
+ }
30
+
31
+ .create-modal__title-line {
32
+ display: flex;
33
+ align-items: center;
34
+ font-size: 14px;
35
+ font-weight: 600;
36
+ text-align: left;
37
+ color: #3f4755;
38
+ line-height: 22px;
39
+ margin-bottom: 10px;
40
+ margin-top: 36px;
41
+ width: 536px;
42
+ font-family: -apple-system, Arial, Verdana, Helvetica Neue, Helvetica, sans-serif, PingFang SC, Microsoft YaHei;
43
+ }
44
+
45
+ .create-modal__title {
46
+ font-size: 18px;
47
+ font-family: -apple-system, Arial, Verdana, Helvetica Neue, Helvetica, sans-serif, PingFang SC, Microsoft YaHei;
48
+ font-weight: 600;
49
+ color: #141c28;
50
+ line-height: 26px;
51
+ }
52
+
53
+ .teact-write-okr {
54
+ z-index: 1;
55
+ font-size: 12px;
56
+ font-family: -apple-system, Arial, Verdana, Helvetica Neue, Helvetica, sans-serif, PingFang SC, Microsoft YaHei;
57
+ color: #2879ff;
58
+ line-height: 18px;
59
+ }
60
+
61
+ .teact-write-okr:hover {
62
+ color: #5c8eff;
63
+ }
64
+
65
+ .teact-write-okr .teact-write-okr__icon {
66
+ margin-right: 2px;
67
+ margin-bottom: 2px;
68
+ }
69
+
70
+ .teact-write-okr .teact-write-okr__text {
71
+ display: inline-block;
72
+ }
73
+
74
+ .teach-suggest {
75
+ position: absolute;
76
+ right: 8px;
77
+ }
78
+
79
+ .teach-suggest:hover {
80
+ cursor: pointer;
81
+ }
82
+
83
+ .teach-suggest__kr {
84
+ top: 148px;
85
+ }
86
+
87
+ .teach-suggest__o {
88
+ top: 96px;
89
+ }
90
+
91
+ .create-success-model {
92
+ background: rgba(0, 0, 0, 0.5);
93
+ position: absolute;
94
+ top: 0;
95
+ display: flex;
96
+ width: 100%;
97
+ height: 100%;
98
+ z-index: 99999;
99
+ font-weight: -apple-system, Arial, Verdana, Helvetica Neue, Helvetica, sans-serif, PingFang SC, Microsoft YaHei;
100
+ }
101
+
102
+ .create-success-model .create-success-model__card {
103
+ margin: auto;
104
+ position: relative;
105
+ background: transparent;
106
+ }
107
+
108
+ .create-success-model .create-success-model__card .create-success-model__close {
109
+ user-select: none;
110
+ position: absolute;
111
+ right: -30px;
112
+ top: 55px;
113
+ color: #ffffff;
114
+ font-size: 17px;
115
+ cursor: pointer;
116
+ }
117
+
118
+ .create-success-model .create-success-model__card .create-success-model__close :hover {
119
+ cursor: pointer;
120
+ }
121
+
122
+ .create-success-model .create-success-model__card .create-success-model__top-block {
123
+ width: 348px;
124
+ position: relative;
125
+ display: flex;
126
+ justify-content: center;
127
+ }
128
+
129
+ .create-success-model .create-success-model__card .create-success-model__top-block .create-success-model__light {
130
+ width: 348px;
131
+ display: inline-block;
132
+ position: absolute;
133
+ top: -65px;
134
+ height: 348px;
135
+ animation: create-success-rotate 3s linear infinite;
136
+ z-index: -1;
137
+ }
138
+
139
+ .create-success-model .create-success-model__card .create-success-model__top-block .create-success-model__shower {
140
+ width: 348px;
141
+ position: absolute;
142
+ z-index: 1;
143
+ animation: create-success-bounce 1s linear infinite;
144
+ top: 40px;
145
+ }
146
+
147
+ .create-success-model .create-success-model__card .create-success-model__top-block .create-success-model__create-head {
148
+ width: 317px;
149
+ position: absolute;
150
+ z-index: 1;
151
+ top: 50px;
152
+ }
153
+
154
+ .create-success-model .create-success-model__card .create-success-model__top-block .create-success-model__create-success-words {
155
+ position: absolute;
156
+ top: 10px;
157
+ z-index: 1;
158
+ }
159
+
160
+ .create-success-model .create-success-model__card .create-success-model__top-block .create-success-model__avatar {
161
+ position: absolute;
162
+ top: 90px;
163
+ left: 127px;
164
+ z-index: 1;
165
+ }
166
+
167
+ .create-success-model .create-success-model__card .create-success-model__top-block .create-success-model__avatar .create-success-model__img {
168
+ border-radius: 50%;
169
+ width: 90px;
170
+ }
171
+
172
+ .create-success-model .create-success-model__card .create-success-model__top-block .create-success-model__avatar .create-success-model__text-avatar {
173
+ width: 90px;
174
+ height: 90px;
175
+ border-radius: 50%;
176
+ font-size: 30px;
177
+ display: flex;
178
+ align-items: center;
179
+ justify-content: center;
180
+ color: #ffffff;
181
+ }
182
+
183
+ .create-success-model .create-success-model__card .create-success-model__top-block .create-success-model--animation-unset {
184
+ animation: none;
185
+ }
186
+
187
+ .create-success-model .create-success-model__card .create-success-model__bottom-block {
188
+ margin-top: 135px;
189
+ background: linear-gradient(180deg, #f2dab3 0%, #e7b573 100%);
190
+ border-radius: 24px;
191
+ padding: 22px;
192
+ padding-top: 48px;
193
+ width: 348px;
194
+ box-sizing: border-box;
195
+ }
196
+
197
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model__left-quotation {
198
+ margin-left: -2px;
199
+ }
200
+
201
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model__tip {
202
+ margin: 0 15px;
203
+ font-size: 18px;
204
+ font-weight: 600;
205
+ color: #b96712;
206
+ line-height: 26px;
207
+ text-align: center;
208
+ }
209
+
210
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model__right-quotation {
211
+ display: flex;
212
+ justify-content: flex-end;
213
+ margin-right: -2px;
214
+ }
215
+
216
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model__congratulation {
217
+ font-size: 12px;
218
+ color: #b96712;
219
+ line-height: 18px;
220
+ display: flex;
221
+ justify-content: center;
222
+ align-items: flex-end;
223
+ margin-bottom: 16px;
224
+ margin-top: 20px;
225
+ }
226
+
227
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model__congratulation .create-success-model__percent {
228
+ font-size: 24px;
229
+ font-weight: 600;
230
+ line-height: 28px;
231
+ }
232
+
233
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model__okr-info {
234
+ background: #ffffff;
235
+ border-radius: 12px;
236
+ padding: 16px 10px;
237
+ position: relative;
238
+ z-index: 1;
239
+ min-height: 146px;
240
+ box-sizing: border-box;
241
+ }
242
+
243
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model__okr-info .create-success-model__shadow-img {
244
+ position: absolute;
245
+ top: 0;
246
+ left: 0;
247
+ z-index: 1;
248
+ }
249
+
250
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model--fix-height {
251
+ max-height: 146px;
252
+ overflow: hidden;
253
+ }
254
+
255
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model__qrcode {
256
+ margin-top: 10px;
257
+ background: #ffffff;
258
+ border-radius: 12px;
259
+ box-shadow: 0px 0px 16px 0px #f0d4a9 inset;
260
+ padding: 12px 16px;
261
+ }
262
+
263
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model--hidden-box-shadow {
264
+ box-shadow: none;
265
+ }
266
+
267
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model__o-name {
268
+ display: flex;
269
+ align-items: flex-start;
270
+ font-size: 14px;
271
+ font-weight: 600;
272
+ color: #141c28;
273
+ line-height: 22px;
274
+ margin-bottom: 8px;
275
+ }
276
+
277
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model__o-name .create-success-model__o-name-icon {
278
+ margin-right: 4px;
279
+ }
280
+
281
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model__o-name .create-success-model__o-name-text {
282
+ display: inline-block;
283
+ }
284
+
285
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model__kr-wrapper {
286
+ font-size: 12px;
287
+ color: #3f4755;
288
+ line-height: 18px;
289
+ align-items: center;
290
+ position: relative;
291
+ display: flex;
292
+ align-items: flex-start;
293
+ margin-bottom: 4px;
294
+ }
295
+
296
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model__kr-wrapper .create-success-model__kr {
297
+ word-break: keep-all;
298
+ overflow: hidden;
299
+ text-overflow: ellipsis;
300
+ white-space: nowrap;
301
+ margin-left: 10px;
302
+ letter-spacing: 1px;
303
+ }
304
+
305
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model__kr-wrapper .create-success-model__kr--no-wrap {
306
+ word-break: break-all;
307
+ white-space: normal;
308
+ }
309
+
310
+ .create-success-model .create-success-model__card .create-success-model__bottom-block .create-success-model__kr-wrapper .create-success-model__dot {
311
+ display: inline-block;
312
+ min-width: 6px;
313
+ max-width: 6px;
314
+ height: 6px;
315
+ background: linear-gradient(168deg, #f2dab3 0%, #e7b573 100%);
316
+ border-radius: 50%;
317
+ margin-left: 8px;
318
+ margin-top: 6px;
319
+ }
320
+
321
+ .create-success-model .create-success-model__card .create-success-model__func-btns-wrapper .create-success-model__primary-btns {
322
+ display: flex;
323
+ justify-content: center;
324
+ margin-top: 20px;
325
+ font-size: 14px;
326
+ line-height: 20px;
327
+ }
328
+
329
+ .create-success-model .create-success-model__card .create-success-model__func-btns-wrapper .create-success-model__primary-btns .create-success-model__return-list {
330
+ margin-right: 12px;
331
+ color: #e7b776;
332
+ border: 1px solid;
333
+ }
334
+
335
+ .create-success-model .create-success-model__card .create-success-model__func-btns-wrapper .create-success-model__primary-btns .create-success-model__download-img {
336
+ background: linear-gradient(180deg, #f2dab3 0%, #e4ac61 100%);
337
+ color: #ffffff;
338
+ }
339
+
340
+ .create-success-model .create-success-model__card .create-success-model__func-btns-wrapper .create-success-model__primary-btns .create-success-model__common-btn-style {
341
+ display: flex;
342
+ align-items: center;
343
+ justify-content: center;
344
+ width: 120px;
345
+ height: 36px;
346
+ border-radius: 18px;
347
+ }
348
+
349
+ .create-success-model .create-success-model__card .create-success-model__func-btns-wrapper .create-success-model__primary-btns .create-success-model__common-btn-style:hover {
350
+ cursor: pointer;
351
+ }
352
+
353
+ .create-success-model .create-success-model__card .create-success-model__func-btns-wrapper .create-success-model__checkbox-wrapper {
354
+ user-select: none;
355
+ display: flex;
356
+ justify-content: center;
357
+ margin-top: 12px;
358
+ }
359
+
360
+ .create-success-model .create-success-model__card .create-success-model__func-btns-wrapper .create-success-model__checkbox-wrapper .create-success-model__checkbox + .create-success-model__label {
361
+ display: flex;
362
+ align-items: center;
363
+ font-size: 12px;
364
+ color: #ffffff;
365
+ line-height: 18px;
366
+ position: relative;
367
+ }
368
+
369
+ .create-success-model .create-success-model__card .create-success-model__func-btns-wrapper .create-success-model__checkbox-wrapper .create-success-model__checkbox + .create-success-model__label::before {
370
+ content: "";
371
+ display: block;
372
+ width: 12px;
373
+ height: 12px;
374
+ cursor: pointer;
375
+ border-radius: 2px;
376
+ opacity: 0.6;
377
+ border: 1px solid #ffffff;
378
+ margin-right: 4px;
379
+ }
380
+
381
+ .create-success-model .create-success-model__card .create-success-model__func-btns-wrapper .create-success-model__checkbox-wrapper .create-success-model__checkbox:checked + .create-success-model__label::before {
382
+ background: #ffffff;
383
+ opacity: 1;
384
+ }
385
+
386
+ .create-success-model .create-success-model__card .create-success-model__func-btns-wrapper .create-success-model__checkbox-wrapper .create-success-model__checkbox:checked + .create-success-model__label::after {
387
+ content: "";
388
+ display: block;
389
+ width: 10px;
390
+ height: 10px;
391
+ cursor: pointer;
392
+ border-radius: 2px;
393
+ opacity: 1;
394
+ border: 1px solid rgba(0, 0, 0, 0.8);
395
+ position: absolute;
396
+ margin-right: 4px;
397
+ transform: rotate(35deg);
398
+ border-top: 0;
399
+ border-left: 0;
400
+ clip-path: polygon(100% 0, 100% 100%, 0 87%, 100% 0);
401
+ top: 1px;
402
+ }
403
+
404
+ .create-success-model .create-success-model__card .create-success-model__func-btns-wrapper .create-success-model__checkbox-wrapper .create-success-model__checkbox {
405
+ visibility: hidden;
406
+ }
407
+
408
+ .modal-close-btn > span:hover {
409
+ color: #141c28 !important;
410
+ }
411
+
412
+ @keyframes create-success-rotate {
413
+ 0% {
414
+ transform: rotateZ(0);
415
+ }
416
+
417
+ 25% {
418
+ transform: rotateZ(90deg);
419
+ }
420
+
421
+ 50% {
422
+ transform: rotateZ(180deg);
423
+ }
424
+
425
+ 75% {
426
+ transform: rotateZ(270deg);
427
+ }
428
+
429
+ 100% {
430
+ transform: rotateZ(360deg);
431
+ }
432
+ }
433
+
434
+ @keyframes create-success-bounce {
435
+ 0% {
436
+ transform: translateY(0);
437
+ }
438
+
439
+ 50% {
440
+ transform: translateY(-10px);
441
+ }
442
+
443
+ 100% {
444
+ transform: translateY(0);
445
+ }
446
+ }