@titaui/pc 1.16.77 → 1.16.79
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.
- package/lib/components/attachments-preview/index.js +29 -6
- package/lib/components/auto-save/index.js +22 -3
- package/lib/components/avatar/default.js +60 -29
- package/lib/components/avatar/icon-avatar/index.js +17 -6
- package/lib/components/avatar/index.js +7 -0
- package/lib/components/avatar/name-avatar/index.js +58 -36
- package/lib/components/avatar/num-avatar/index.js +12 -1
- package/lib/components/avatar/text-avatar/index.js +50 -23
- package/lib/components/book-demo/components/pc/components/checkbox/index.js +42 -12
- package/lib/components/book-demo/components/pc/components/content/index.js +90 -22
- package/lib/components/book-demo/components/pc/components/drop-select/index.js +31 -8
- package/lib/components/book-demo/components/pc/components/error-info/index.js +6 -0
- package/lib/components/book-demo/components/pc/components/input/index.js +38 -12
- package/lib/components/book-demo/components/pc/components/phone/index.js +37 -11
- package/lib/components/book-demo/components/pc/components/verify-code/index.js +49 -19
- package/lib/components/book-demo/components/pc/index.js +43 -11
- package/lib/components/book-demo/constant.js +9 -0
- package/lib/components/book-demo/index.js +5 -0
- package/lib/components/book-demo/interface.js +1 -0
- package/lib/components/book-demo/request.js +10 -4
- package/lib/components/book-demo/utils.js +15 -0
- package/lib/components/button/default-button/index.js +25 -10
- package/lib/components/button/icon-btn/index.js +24 -7
- package/lib/components/button/index.js +6 -1
- package/lib/components/button/rect-btn/index.js +31 -17
- package/lib/components/button/text-btn/index.js +26 -13
- package/lib/components/cascader/index.js +48 -21
- package/lib/components/cascader/time.js +11 -2
- package/lib/components/change-okr-modal/Filter.js +92 -23
- package/lib/components/change-okr-modal/Item.js +80 -21
- package/lib/components/change-okr-modal/constant.js +25 -0
- package/lib/components/change-okr-modal/filterTab.js +33 -5
- package/lib/components/change-okr-modal/index.js +164 -58
- package/lib/components/change-okr-modal/styledComponents.js +71 -2
- package/lib/components/checkbox/index.js +33 -12
- package/lib/components/checkbox-list/index.js +22 -4
- package/lib/components/color-date-picker/index.js +53 -21
- package/lib/components/color-date-picker/interface.js +1 -0
- package/lib/components/common-share/index.js +38 -17
- package/lib/components/common-share/publishMblog.js +51 -14
- package/lib/components/common-share/request-apis.js +13 -0
- package/lib/components/communication/CommunicationAttachments.js +47 -8
- package/lib/components/communication/CommunicationRecord.js +29 -9
- package/lib/components/communication/ConvertUserName.js +32 -5
- package/lib/components/communication/index.js +152 -71
- package/lib/components/communication/style.js +47 -0
- package/lib/components/condition-render/index.js +5 -1
- package/lib/components/confidence/heart.js +11 -2
- package/lib/components/confidence/index.js +29 -9
- package/lib/components/contact-kefu/index.js +31 -3
- package/lib/components/create-okr-modal/constant.js +13 -0
- package/lib/components/create-okr-modal/createCycle.js +47 -13
- package/lib/components/create-okr-modal/createSuccessCmp.js +67 -21
- package/lib/components/create-okr-modal/createSuccessCmpWrapper.js +5 -0
- package/lib/components/create-okr-modal/fields/date-cycle.js +28 -6
- package/lib/components/create-okr-modal/fields/index.js +4 -0
- package/lib/components/create-okr-modal/fields/input-with-err-popup.js +16 -8
- package/lib/components/create-okr-modal/fields/o-new-name.js +50 -19
- package/lib/components/create-okr-modal/fields/okr-case.js +31 -8
- package/lib/components/create-okr-modal/fields/okr-classify.js +13 -3
- package/lib/components/create-okr-modal/fields/okr-create-suggest.js +28 -5
- package/lib/components/create-okr-modal/fields/okr-new-user-selector.js +30 -9
- package/lib/components/create-okr-modal/fields/okr-parent.js +44 -16
- package/lib/components/create-okr-modal/fields/okr-type-detail.js +65 -26
- package/lib/components/create-okr-modal/fields/okr-type.js +33 -10
- package/lib/components/create-okr-modal/fields/okr-visibility-detail.js +64 -24
- package/lib/components/create-okr-modal/fields/okr-visibility.js +42 -16
- package/lib/components/create-okr-modal/img/pack-up.js +4 -0
- package/lib/components/create-okr-modal/index.js +316 -162
- package/lib/components/create-okr-modal/kr-items/kr-item-weight.js +55 -15
- package/lib/components/create-okr-modal/kr-items/krDatas.js +87 -31
- package/lib/components/create-okr-modal/kr-items/krItem.js +39 -19
- package/lib/components/create-okr-modal/objectType.js +73 -24
- package/lib/components/create-okr-modal/request-api.js +42 -0
- package/lib/components/create-okr-modal/style.js +42 -0
- package/lib/components/create-okr-modal/utils/getCreateOkrSurpassPercent.js +39 -4
- package/lib/components/create-okr-modal/utils/helper.js +28 -6
- package/lib/components/create-okr-modal/utils/index.js +7 -0
- package/lib/components/dangerous-html/index.js +4 -0
- package/lib/components/date-picker/BodyItem.js +38 -4
- package/lib/components/date-picker/CalendarBody.js +47 -6
- package/lib/components/date-picker/CalendarHeader.js +41 -2
- package/lib/components/date-picker/index.js +40 -2
- package/lib/components/date-range-picker/index.js +58 -10
- package/lib/components/delete-confirm-pop/ConfirmPop.js +47 -16
- package/lib/components/delete-confirm-pop/style.js +14 -0
- package/lib/components/dialog/index.js +52 -25
- package/lib/components/dialog-confirm/index.js +38 -9
- package/lib/components/dialog-qq-docs/index.js +130 -45
- package/lib/components/dialog-qq-docs/request-apis.js +3 -0
- package/lib/components/dialog-qq-docs/utils.js +22 -0
- package/lib/components/dialog-select/index.js +15 -2
- package/lib/components/dialog-upload/index.js +63 -9
- package/lib/components/dialog-upload/type.js +5 -2
- package/lib/components/dialog-upload/uploaded-preview.js +20 -7
- package/lib/components/dialog-upload/util.js +38 -3
- package/lib/components/dialog-upload-type/components/upload-type-item/index.js +12 -2
- package/lib/components/dialog-upload-type/index.js +21 -2
- package/lib/components/dingding-btn/index.js +158 -120
- package/lib/components/drawer/headerAction.js +44 -17
- package/lib/components/drawer/headerDrop.js +41 -22
- package/lib/components/drawer/index.js +66 -31
- package/lib/components/drawer/utils/dom.js +10 -1
- package/lib/components/drawer/utils/index.js +1 -0
- package/lib/components/drawer/utils/useForceUpdate.js +16 -4
- package/lib/components/drawer-manager/context.js +4 -0
- package/lib/components/drawer-manager/drawerWrapper.js +60 -13
- package/lib/components/drawer-manager/index.js +46 -4
- package/lib/components/drawer-manager/utils/dom.js +10 -1
- package/lib/components/drawer-manager/utils/index.js +1 -0
- package/lib/components/drawer-manager/utils/useForceUpdate.js +16 -4
- package/lib/components/drop-selector/icon-item.js +13 -4
- package/lib/components/drop-selector/index.js +83 -40
- package/lib/components/dynamic/components/comments-dialog/api.js +10 -4
- package/lib/components/dynamic/components/comments-dialog/encourage.js +33 -8
- package/lib/components/dynamic/components/comments-dialog/index.js +55 -13
- package/lib/components/dynamic/components/comments-dialog/rate.js +31 -8
- package/lib/components/dynamic/components/obj-status/index.js +13 -4
- package/lib/components/dynamic/components/obj-status/utils.js +5 -0
- package/lib/components/dynamic/components/percent/index.js +13 -4
- package/lib/components/dynamic/components/title/index.js +21 -6
- package/lib/components/dynamic/constant.js +14 -0
- package/lib/components/dynamic/context/index.js +2 -0
- package/lib/components/dynamic/dynamic-item/components/feed-operate/index.js +22 -7
- package/lib/components/dynamic/dynamic-item/components/header/index.js +79 -31
- package/lib/components/dynamic/dynamic-item/components/okr-progress/constant.js +3 -0
- package/lib/components/dynamic/dynamic-item/components/okr-progress/index.js +42 -12
- package/lib/components/dynamic/dynamic-item/components/okr-progress/request-api.js +2 -0
- package/lib/components/dynamic/dynamic-item/components/okr-progress/utils.js +3 -0
- package/lib/components/dynamic/dynamic-item/components/progress/components/kr-progress/index.js +7 -0
- package/lib/components/dynamic/dynamic-item/components/progress/components/o-progress/index.js +7 -0
- package/lib/components/dynamic/dynamic-item/components/progress/components/okr-progress/index.js +68 -27
- package/lib/components/dynamic/dynamic-item/components/progress/components/okr-progress/request-api.js +5 -0
- package/lib/components/dynamic/dynamic-item/components/progress/components/okr-progress/util.js +21 -2
- package/lib/components/dynamic/dynamic-item/components/progress/components/task-progress/index.js +7 -1
- package/lib/components/dynamic/dynamic-item/components/progress/index.js +21 -3
- package/lib/components/dynamic/dynamic-item/components/schedule/index.js +9 -1
- package/lib/components/dynamic/dynamic-item/components/summary-header/constant.js +8 -0
- package/lib/components/dynamic/dynamic-item/components/summary-header/index.js +133 -57
- package/lib/components/dynamic/dynamic-item/components/summary-header/operate-record.js +12 -2
- package/lib/components/dynamic/dynamic-item/components/summary-header/request-api.js +5 -0
- package/lib/components/dynamic/dynamic-item/components/table-row-o-project/index.js +16 -2
- package/lib/components/dynamic/dynamic-item/components/table-row-okr/index.js +21 -8
- package/lib/components/dynamic/dynamic-item/components/table-row-okr/utils.js +18 -0
- package/lib/components/dynamic/dynamic-item/components/task-progress/constant.js +1 -0
- package/lib/components/dynamic/dynamic-item/components/task-progress/index.js +56 -18
- package/lib/components/dynamic/dynamic-item/components/task-progress/interface.js +3 -0
- package/lib/components/dynamic/dynamic-item/components/task-progress/render-row.js +18 -4
- package/lib/components/dynamic/dynamic-item/components/task-progress/request-api.js +4 -1
- package/lib/components/dynamic/dynamic-item/components/task-progress/utils.js +39 -8
- package/lib/components/dynamic/dynamic-item/components/work-progress/constant.js +2 -0
- package/lib/components/dynamic/dynamic-item/components/work-progress/index.js +40 -12
- package/lib/components/dynamic/dynamic-item/components/work-progress/interface.js +3 -0
- package/lib/components/dynamic/dynamic-item/components/work-progress/mile-stone.js +18 -1
- package/lib/components/dynamic/dynamic-item/components/work-progress/render-row.js +21 -2
- package/lib/components/dynamic/dynamic-item/components/work-progress/request-api.js +11 -6
- package/lib/components/dynamic/dynamic-item/components/work-progress/utils.js +50 -10
- package/lib/components/dynamic/dynamic-item/components/work-progress/work-task.js +14 -0
- package/lib/components/dynamic/dynamic-item/components/work-progress/work.js +14 -0
- package/lib/components/dynamic/dynamic-item/dynamic-ai-dialy/dynamic-footer.js +74 -20
- package/lib/components/dynamic/dynamic-item/dynamic-ai-dialy/index.js +12 -0
- package/lib/components/dynamic/dynamic-item/dynamic-align/index.js +47 -11
- package/lib/components/dynamic/dynamic-item/dynamic-announcement/index.js +26 -4
- package/lib/components/dynamic/dynamic-item/dynamic-assessment/index.js +26 -2
- package/lib/components/dynamic/dynamic-item/dynamic-chart/index.js +27 -5
- package/lib/components/dynamic/dynamic-item/dynamic-chart/utils.js +8 -0
- package/lib/components/dynamic/dynamic-item/dynamic-create-o/index.js +48 -17
- package/lib/components/dynamic/dynamic-item/dynamic-discovery/dynamic-footer.js +74 -20
- package/lib/components/dynamic/dynamic-item/dynamic-discovery/index.js +26 -3
- package/lib/components/dynamic/dynamic-item/dynamic-interview/index.js +13 -1
- package/lib/components/dynamic/dynamic-item/dynamic-interview/interview-content.js +13 -5
- package/lib/components/dynamic/dynamic-item/dynamic-interview-share/index.js +21 -6
- package/lib/components/dynamic/dynamic-item/dynamic-interview-share/interview-content.js +16 -6
- package/lib/components/dynamic/dynamic-item/dynamic-kr/index.js +32 -5
- package/lib/components/dynamic/dynamic-item/dynamic-learning/index.js +46 -10
- package/lib/components/dynamic/dynamic-item/dynamic-milestone/constant.js +2 -0
- package/lib/components/dynamic/dynamic-item/dynamic-milestone/index.js +37 -9
- package/lib/components/dynamic/dynamic-item/dynamic-new-report/components/evalute/index.js +58 -17
- package/lib/components/dynamic/dynamic-item/dynamic-new-report/components/remind-user-view/index.js +18 -7
- package/lib/components/dynamic/dynamic-item/dynamic-new-report/constant.js +10 -0
- package/lib/components/dynamic/dynamic-item/dynamic-new-report/index.js +92 -27
- package/lib/components/dynamic/dynamic-item/dynamic-new-report/util.js +16 -4
- package/lib/components/dynamic/dynamic-item/dynamic-okrs-communication/index.js +24 -3
- package/lib/components/dynamic/dynamic-item/dynamic-plan-communication/index.js +25 -3
- package/lib/components/dynamic/dynamic-item/dynamic-progress/index.js +49 -11
- package/lib/components/dynamic/dynamic-item/dynamic-progress/utils.js +10 -0
- package/lib/components/dynamic/dynamic-item/dynamic-project/constant.js +3 -0
- package/lib/components/dynamic/dynamic-item/dynamic-project/index.js +33 -7
- package/lib/components/dynamic/dynamic-item/dynamic-relative/index.js +63 -15
- package/lib/components/dynamic/dynamic-item/dynamic-reply/index.js +37 -3
- package/lib/components/dynamic/dynamic-item/dynamic-report/index.js +43 -9
- package/lib/components/dynamic/dynamic-item/dynamic-reward/index.js +45 -9
- package/lib/components/dynamic/dynamic-item/dynamic-reward/utils.js +7 -0
- package/lib/components/dynamic/dynamic-item/dynamic-share/index.js +41 -9
- package/lib/components/dynamic/dynamic-item/dynamic-task/constant.js +3 -0
- package/lib/components/dynamic/dynamic-item/dynamic-task/index.js +46 -10
- package/lib/components/dynamic/dynamic-item/index.js +151 -37
- package/lib/components/dynamic/dynamic-list/index.js +29 -11
- package/lib/components/dynamic/index.js +5 -0
- package/lib/components/dynamic/request-api.js +15 -0
- package/lib/components/dynamic/util.js +20 -0
- package/lib/components/e-priority/index.js +30 -6
- package/lib/components/e-status-dropdown/index.js +24 -5
- package/lib/components/eReport/eReportListEmpty.js +31 -0
- package/lib/components/eReport/eReportLists/reportList.js +52 -14
- package/lib/components/eReport/eReportLists/style.js +36 -0
- package/lib/components/eReport/eReportShare/index.js +51 -14
- package/lib/components/eReport/eReportShare/style.js +12 -0
- package/lib/components/eReport/eReportShare/toast/index.js +25 -2
- package/lib/components/eReport/eReportShare/toast/style.js +12 -0
- package/lib/components/edit-kr-wight/EditKrWightModal.js +86 -20
- package/lib/components/edit-kr-wight/FormItemV2.js +35 -5
- package/lib/components/edit-kr-wight/style/index.js +25 -2
- package/lib/components/edit-kr-wight/utils.js +13 -0
- package/lib/components/emotions-selector/index.js +3 -0
- package/lib/components/emotions-selector/selector-content.js +41 -6
- package/lib/components/emotions-selector/selector-pop.js +35 -6
- package/lib/components/emotions-selector/style.js +24 -0
- package/lib/components/ereport-list/index.js +53 -14
- package/lib/components/ereport-list/style.js +36 -0
- package/lib/components/error-boundary/index.js +30 -2
- package/lib/components/expiration-reminder/index.js +65 -21
- package/lib/components/expiration-reminder/utils.js +15 -3
- package/lib/components/file-list/components/single-file/index.js +37 -12
- package/lib/components/file-list/index.js +19 -2
- package/lib/components/file-list/util.js +18 -0
- package/lib/components/file-preview/index.js +16 -6
- package/lib/components/filter-buttons/department.js +20 -3
- package/lib/components/filter-buttons/group.js +10 -0
- package/lib/components/filter-buttons/index.js +35 -19
- package/lib/components/filter-buttons/modular.js +32 -6
- package/lib/components/filter-buttons/name.js +34 -9
- package/lib/components/filter-buttons/search-dropdown/index.js +11 -3
- package/lib/components/filter-buttons/timer.js +15 -4
- package/lib/components/firework/firework.js +42 -31
- package/lib/components/firework/index.js +13 -0
- package/lib/components/follower-visitor/index.js +46 -14
- package/lib/components/follower-visitor/request-api.js +3 -0
- package/lib/components/form/form-fields/cycle/index.js +41 -10
- package/lib/components/form/form-fields/cycle/utils.js +6 -0
- package/lib/components/form/form-fields/date/index.js +29 -8
- package/lib/components/form/form-fields/department/department-input.js +17 -6
- package/lib/components/form/form-fields/department/index.js +60 -26
- package/lib/components/form/form-fields/dropdown/index.js +38 -13
- package/lib/components/form/form-fields/duties/duties-input.js +15 -6
- package/lib/components/form/form-fields/duties/index.js +61 -28
- package/lib/components/form/form-fields/group/index.js +16 -5
- package/lib/components/form/form-fields/input/index.js +84 -37
- package/lib/components/form/form-fields/input-verification-code/index.js +91 -41
- package/lib/components/form/form-fields/password/index.js +66 -26
- package/lib/components/form/form-fields/radios/index.js +31 -11
- package/lib/components/form/form-fields/textarea/index.js +63 -26
- package/lib/components/form/form-fields/user/index.js +83 -35
- package/lib/components/form/form-fields/user/user-input.js +17 -5
- package/lib/components/form/index.js +45 -11
- package/lib/components/form/layout/index.js +6 -0
- package/lib/components/grid-layout/commen-components/advize.js +5 -2
- package/lib/components/grid-layout/commen-components/card-contain.js +5 -2
- package/lib/components/grid-layout/commen-components/card-title.js +10 -3
- package/lib/components/grid-layout/commen-components/carditem-flexcontent.js +5 -2
- package/lib/components/grid-layout/commen-components/data-item.js +14 -6
- package/lib/components/grid-layout/commen-components/empty-backgrounds.js +10 -3
- package/lib/components/grid-layout/commen-components/gap.js +3 -0
- package/lib/components/grid-layout/commen-components/index.js +10 -0
- package/lib/components/grid-layout/commen-components/scroll-tips.js +34 -14
- package/lib/components/grid-layout/essay-component/essay-item.js +7 -3
- package/lib/components/grid-layout/essay-component/index.js +30 -10
- package/lib/components/grid-layout/index.js +18 -4
- package/lib/components/grid-layout/near-visitors/index.js +27 -6
- package/lib/components/grid-layout/near-visitors/visitor.js +25 -7
- package/lib/components/grid-layout/okr-align/index.js +41 -13
- package/lib/components/grid-layout/okr-progress/index.js +45 -15
- package/lib/components/grid-layout/okr-target/index.js +44 -7
- package/lib/components/grid-layout/over-view/index.js +50 -20
- package/lib/components/grid-layout/personal-info/index.js +77 -37
- package/lib/components/grid-layout/sub-employee-okr/index.js +45 -13
- package/lib/components/grid-layout/sub-employee-okr/person-okr.js +29 -8
- package/lib/components/grid-layout/util/click-link.js +13 -2
- package/lib/components/grid-layout/util/network.js +37 -7
- package/lib/components/grid-layout/week-task/index.js +39 -13
- package/lib/components/grid-layout/words-cloud/index.js +29 -7
- package/lib/components/grid-page/commen-components/scroll-tips.js +34 -14
- package/lib/components/grid-page/near-visitors/visitor.js +25 -7
- package/lib/components/grid-page/personal-info/index.js +77 -37
- package/lib/components/guide-order/index.css +3 -5
- package/lib/components/guide-order/index.js +78 -46
- package/lib/components/guide-tip/index.js +46 -20
- package/lib/components/help-card/index.js +86 -22
- package/lib/components/help-card/interface.js +2 -0
- package/lib/components/help-card/request-api.js +10 -0
- package/lib/components/hr-header/index.js +35 -9
- package/lib/components/icon-button-list/index.js +22 -9
- package/lib/components/img-viewer/icon/enlarge.js +3 -0
- package/lib/components/img-viewer/icon/left-rotate.js +3 -0
- package/lib/components/img-viewer/icon/right-rotate.js +3 -0
- package/lib/components/img-viewer/icon/shrink.js +3 -0
- package/lib/components/img-viewer/index.js +76 -30
- package/lib/components/img-viewer/util.js +3 -0
- package/lib/components/import-modal/helper.js +43 -3
- package/lib/components/import-modal/import-okr-modal/index.js +48 -15
- package/lib/components/import-modal/import-task-modal/index.js +93 -41
- package/lib/components/import-modal/import-task-modal/search-form.js +43 -13
- package/lib/components/import-modal/index.js +5 -0
- package/lib/components/import-modal/radio.js +27 -8
- package/lib/components/import-modal/request-api.js +65 -33
- package/lib/components/import-modal/search/category-select.js +23 -4
- package/lib/components/import-modal/search/okr-classify-select.js +23 -4
- package/lib/components/import-modal/search/okr-status-select.js +23 -4
- package/lib/components/import-modal/search/okr-type-select.js +28 -8
- package/lib/components/import-modal/search/principal.js +40 -13
- package/lib/components/import-modal/search/relation.js +28 -7
- package/lib/components/import-modal/search/search-dropdown/index.js +7 -1
- package/lib/components/import-modal/search/task-relation.js +24 -4
- package/lib/components/import-modal/search/task-status-select.js +24 -4
- package/lib/components/import-modal/search/work-relation.js +24 -4
- package/lib/components/import-modal/search/work-status-select.js +23 -4
- package/lib/components/import-modal/tree/okr-tree/index.js +90 -38
- package/lib/components/import-modal/tree/okr-tree/search-form.js +60 -23
- package/lib/components/import-modal/tree/task-work-tree/index.js +35 -6
- package/lib/components/import-modal/tree-node/index.js +14 -0
- package/lib/components/import-modal/tree-node/kr-node/index.js +26 -10
- package/lib/components/import-modal/tree-node/milestone-node/index.js +27 -9
- package/lib/components/import-modal/tree-node/o-node/index.js +40 -13
- package/lib/components/import-modal/tree-node/work-node/index.js +28 -10
- package/lib/components/invite-people/index.js +8 -0
- package/lib/components/keyword-search/index.js +46 -13
- package/lib/components/loading/index.js +24 -5
- package/lib/components/magnet/index.js +68 -31
- package/lib/components/mblog/common/index.js +31 -19
- package/lib/components/mblog/components/ConfirmPop.js +31 -0
- package/lib/components/mblog/components/MblogAction.js +68 -29
- package/lib/components/mblog/components/MblogContent.js +69 -32
- package/lib/components/mblog/context.js +4 -0
- package/lib/components/mblog/index.js +168 -96
- package/lib/components/mblog/style.js +45 -6
- package/lib/components/menus/components/drag-resize/index.js +23 -10
- package/lib/components/menus/components/flip-menu-card/flip-back-header.js +7 -0
- package/lib/components/menus/components/flip-menu-card/index.js +89 -24
- package/lib/components/menus/components/menu-card/index.js +24 -3
- package/lib/components/menus/components/menu-close-btn/index.js +14 -7
- package/lib/components/menus/components/menu-tree/index.js +22 -7
- package/lib/components/menus/components/menu-tree/tree-node/assess-manage.js +11 -1
- package/lib/components/menus/components/menu-tree/tree-node/assess-template.js +11 -1
- package/lib/components/menus/components/menu-tree/tree-node/avatar/index.js +23 -4
- package/lib/components/menus/components/menu-tree/tree-node/company-all.js +14 -1
- package/lib/components/menus/components/menu-tree/tree-node/compony/index.js +15 -1
- package/lib/components/menus/components/menu-tree/tree-node/depart/index.js +25 -6
- package/lib/components/menus/components/menu-tree/tree-node/follower/index.js +21 -3
- package/lib/components/menus/components/menu-tree/tree-node/group-name.js +6 -0
- package/lib/components/menus/components/menu-tree/tree-node/index.js +49 -0
- package/lib/components/menus/components/menu-tree/tree-node/loading.js +6 -0
- package/lib/components/menus/components/menu-tree/tree-node/menu-item.js +9 -1
- package/lib/components/menus/components/menu-tree/tree-node/no-follower.js +8 -0
- package/lib/components/menus/components/menu-tree/tree-node/no-subordinates.js +7 -0
- package/lib/components/menus/components/menu-tree/tree-node/parent-menu.js +9 -1
- package/lib/components/menus/components/menu-tree/tree-node/same-level-user/index.js +10 -2
- package/lib/components/menus/components/menu-tree/tree-node/sub-menu-item.js +28 -6
- package/lib/components/menus/components/menu-tree/tree-node/subordinates.js +26 -5
- package/lib/components/menus/components/menu-tree/tree-node/summary-follower/index.js +21 -3
- package/lib/components/menus/components/menu-tree/tree-node/summary-share.js +27 -8
- package/lib/components/menus/components/menu-tree/tree-node/summary-tongji.js +26 -5
- package/lib/components/menus/components/menu-tree/tree-node/summary-user-concern.js +25 -5
- package/lib/components/menus/components/menu-tree/tree-node/user/index.js +22 -6
- package/lib/components/menus/components/menu-tree/tree-node/user-concern.js +25 -5
- package/lib/components/menus/components/search-colleague/index.js +54 -25
- package/lib/components/menus/context.js +8 -0
- package/lib/components/menus/export-modules/appraisal-menus/index.js +64 -25
- package/lib/components/menus/export-modules/appraisal-menus/menu-highlight.js +32 -24
- package/lib/components/menus/export-modules/appraisal-menus/menus.js +34 -12
- package/lib/components/menus/export-modules/demo-menus/index.js +52 -20
- package/lib/components/menus/export-modules/demo-menus/menu-highlight.js +21 -10
- package/lib/components/menus/export-modules/demo-menus/menus.js +15 -0
- package/lib/components/menus/export-modules/interview-menus/constant.js +12 -5
- package/lib/components/menus/export-modules/interview-menus/handle-highlight.js +14 -0
- package/lib/components/menus/export-modules/interview-menus/index.js +47 -11
- package/lib/components/menus/export-modules/interview-menus/menus.js +26 -5
- package/lib/components/menus/export-modules/manage-menus/constant.js +2 -0
- package/lib/components/menus/export-modules/manage-menus/handle-highlight.js +15 -0
- package/lib/components/menus/export-modules/manage-menus/index.js +37 -3
- package/lib/components/menus/export-modules/okr-menus/depart-menus/helper.js +8 -0
- package/lib/components/menus/export-modules/okr-menus/depart-menus/index.js +67 -28
- package/lib/components/menus/export-modules/okr-menus/index.js +44 -12
- package/lib/components/menus/export-modules/okr-menus/menu-highlight.js +10 -0
- package/lib/components/menus/export-modules/okr-menus/menus.js +46 -5
- package/lib/components/menus/export-modules/okr-menus/okr-front-menus.js +84 -44
- package/lib/components/menus/export-modules/okr-menus/subordinate-menus/helper.js +3 -0
- package/lib/components/menus/export-modules/okr-menus/subordinate-menus/index.js +67 -26
- package/lib/components/menus/export-modules/research-menu/index.js +40 -12
- package/lib/components/menus/export-modules/research-menu/menu-highlight.js +10 -0
- package/lib/components/menus/export-modules/research-menu/menus.js +13 -0
- package/lib/components/menus/export-modules/research-menu/research-front-menus.js +59 -27
- package/lib/components/menus/export-modules/skynet-dashboard-menu/index.js +42 -14
- package/lib/components/menus/export-modules/skynet-dashboard-menu/menu-highlight.js +10 -0
- package/lib/components/menus/export-modules/skynet-dashboard-menu/menus.js +14 -1
- package/lib/components/menus/export-modules/skynet-dashboard-menu/survey-front-menus.js +65 -33
- package/lib/components/menus/export-modules/summary-menus/depart-menus/helper.js +8 -0
- package/lib/components/menus/export-modules/summary-menus/depart-menus/index.js +75 -26
- package/lib/components/menus/export-modules/summary-menus/index.js +47 -12
- package/lib/components/menus/export-modules/summary-menus/menu-highlight.js +10 -0
- package/lib/components/menus/export-modules/summary-menus/menus.js +54 -8
- package/lib/components/menus/export-modules/summary-menus/request-api.js +6 -0
- package/lib/components/menus/export-modules/summary-menus/subordinate-menus/helper.js +3 -0
- package/lib/components/menus/export-modules/summary-menus/subordinate-menus/index.js +70 -26
- package/lib/components/menus/export-modules/summary-menus/summary-front-menus.js +114 -64
- package/lib/components/menus/export-modules/survey-menu/index.js +40 -12
- package/lib/components/menus/export-modules/survey-menu/menu-highlight.js +10 -0
- package/lib/components/menus/export-modules/survey-menu/menus.js +13 -0
- package/lib/components/menus/export-modules/survey-menu/survey-front-menus.js +62 -27
- package/lib/components/menus/i18n.js +6 -0
- package/lib/components/menus/index.js +31 -1
- package/lib/components/menus/request-apis.js +57 -13
- package/lib/components/menus/utils.js +5 -0
- package/lib/components/mirroring/index.js +13 -4
- package/lib/components/nav/index.js +8 -2
- package/lib/components/nav-top/components/app-center/index.js +121 -38
- package/lib/components/nav-top/components/app-center/interface.js +2 -0
- package/lib/components/nav-top/components/menu/index.js +50 -9
- package/lib/components/nav-top/components/user-message/components/empty/index.js +10 -0
- package/lib/components/nav-top/components/user-message/components/inform/index.js +58 -20
- package/lib/components/nav-top/components/user-message/components/inform/inform-item.js +71 -11
- package/lib/components/nav-top/components/user-message/components/red-pack/index.js +28 -4
- package/lib/components/nav-top/components/user-message/components/red-pack/request-api.js +3 -0
- package/lib/components/nav-top/components/user-message/components/remind/index.js +37 -7
- package/lib/components/nav-top/components/user-message/components/remind/remind-item.js +32 -9
- package/lib/components/nav-top/components/user-message/components/reply/index.js +57 -18
- package/lib/components/nav-top/components/user-message/components/reply/reply-item.js +24 -3
- package/lib/components/nav-top/components/user-message/components/tab-title/index.js +10 -2
- package/lib/components/nav-top/components/user-message/components/todos/index.js +56 -18
- package/lib/components/nav-top/components/user-message/components/todos/todo-item.js +17 -2
- package/lib/components/nav-top/components/user-message/constant.js +4 -0
- package/lib/components/nav-top/components/user-message/hrMessage.js +69 -34
- package/lib/components/nav-top/components/user-message/index.js +77 -30
- package/lib/components/nav-top/components/user-message/msg/index.js +38 -8
- package/lib/components/nav-top/components/user-message/utils.js +4 -0
- package/lib/components/nav-top/components/user-own-menu/components/own-menu/index.js +29 -2
- package/lib/components/nav-top/components/user-own-menu/index.js +16 -3
- package/lib/components/nav-top/components/user-own-menu/utils.js +12 -0
- package/lib/components/nav-top/components/version/index.js +27 -3
- package/lib/components/nav-top/constant.js +7 -0
- package/lib/components/nav-top/index.js +138 -45
- package/lib/components/nav-top/request.apis.js +34 -2
- package/lib/components/nav-top/useGlobalValue.js +3 -0
- package/lib/components/nav-top/utils.js +11 -15
- package/lib/components/new-confidence/constant.js +16 -0
- package/lib/components/new-confidence/index.js +36 -10
- package/lib/components/okr-detail/auth.js +55 -25
- package/lib/components/okr-detail/base-info/base-info.js +119 -51
- package/lib/components/okr-detail/base-info/index.js +3 -0
- package/lib/components/okr-detail/base-info/o-desc/index.js +54 -24
- package/lib/components/okr-detail/base-info/other-infos/classify/index.js +17 -3
- package/lib/components/okr-detail/base-info/other-infos/common/border-wrapper/index.js +17 -3
- package/lib/components/okr-detail/base-info/other-infos/date-cycle/index.js +35 -11
- package/lib/components/okr-detail/base-info/other-infos/index.js +3 -0
- package/lib/components/okr-detail/base-info/other-infos/okr-type/index.js +36 -12
- package/lib/components/okr-detail/base-info/other-infos/other-infos.js +34 -13
- package/lib/components/okr-detail/base-info/other-infos/principal/index.js +54 -19
- package/lib/components/okr-detail/base-info/other-infos/visibility/index.js +47 -11
- package/lib/components/okr-detail/base-info/person/index.js +23 -9
- package/lib/components/okr-detail/base-info/util.js +12 -1
- package/lib/components/okr-detail/base-info/utils/setting.js +3 -2
- package/lib/components/okr-detail/components/ao-nice/index.js +60 -16
- package/lib/components/okr-detail/components/base-okr-type/confirm/buttonv2.js +35 -5
- package/lib/components/okr-detail/components/base-okr-type/confirm/confirm.js +45 -6
- package/lib/components/okr-detail/components/base-okr-type/index.js +25 -9
- package/lib/components/okr-detail/components/base-okr-type/object-type.js +73 -24
- package/lib/components/okr-detail/components/block-line/index.js +4 -0
- package/lib/components/okr-detail/components/editable-input/index.js +48 -19
- package/lib/components/okr-detail/components/header/edit-name.js +63 -14
- package/lib/components/okr-detail/components/header/index.js +63 -20
- package/lib/components/okr-detail/components/header/o-avatar.js +45 -9
- package/lib/components/okr-detail/components/header/o-classify.js +41 -6
- package/lib/components/okr-detail/components/header/o-cycle.js +21 -6
- package/lib/components/okr-detail/components/header/o-name.js +18 -7
- package/lib/components/okr-detail/components/header/o-score.js +53 -12
- package/lib/components/okr-detail/components/icon-text/index.js +43 -16
- package/lib/components/okr-detail/components/o-classify.js +47 -10
- package/lib/components/okr-detail/components/o-progress-update/index.js +43 -7
- package/lib/components/okr-detail/components/okr-tree/index.js +16 -3
- package/lib/components/okr-detail/components/okr-tree/tree-node/default-node.js +6 -0
- package/lib/components/okr-detail/components/okr-tree/tree-node/e-kr-node/index.js +64 -16
- package/lib/components/okr-detail/components/okr-tree/tree-node/e-node/constant.js +2 -0
- package/lib/components/okr-detail/components/okr-tree/tree-node/e-node/e-empty.js +8 -0
- package/lib/components/okr-detail/components/okr-tree/tree-node/e-node/e-priority-dropdown.js +26 -6
- package/lib/components/okr-detail/components/okr-tree/tree-node/e-node/e-project.js +60 -22
- package/lib/components/okr-detail/components/okr-tree/tree-node/e-node/e-status-dropdown.js +26 -5
- package/lib/components/okr-detail/components/okr-tree/tree-node/e-node/e-task-level2.js +108 -38
- package/lib/components/okr-detail/components/okr-tree/tree-node/e-node/e-task.js +121 -48
- package/lib/components/okr-detail/components/okr-tree/tree-node/get-process-color.js +5 -0
- package/lib/components/okr-detail/components/okr-tree/tree-node/index.js +25 -0
- package/lib/components/okr-detail/components/okr-tree/tree-node/kr-node/get-process-color.js +4 -0
- package/lib/components/okr-detail/components/okr-tree/tree-node/kr-node/index.js +161 -67
- package/lib/components/okr-detail/components/okr-tree/tree-node/kr-node/kr-score-editor/edit-pop.js +75 -21
- package/lib/components/okr-detail/components/okr-tree/tree-node/kr-node/kr-score-editor/index.js +13 -4
- package/lib/components/okr-detail/components/okr-tree/tree-node/kr-node/kr-score-editor/kr-push-score.js +84 -24
- package/lib/components/okr-detail/components/okr-tree/tree-node/kr-node/kr-score-editor/style.js +26 -1
- package/lib/components/okr-detail/components/okr-tree/tree-node/kr-node/range-picker-pop.js +32 -8
- package/lib/components/okr-detail/components/okr-tree/tree-node/kr-parent-node/index.js +77 -25
- package/lib/components/okr-detail/components/okr-tree/tree-node/o-child-node/edit-child-okr-weight.js +74 -13
- package/lib/components/okr-detail/components/okr-tree/tree-node/o-child-node/index.js +80 -36
- package/lib/components/okr-detail/components/okr-tree/tree-node/o-child-node/weight-input.js +29 -5
- package/lib/components/okr-detail/components/okr-tree/tree-node/o-parent-node/index.js +74 -22
- package/lib/components/okr-detail/components/okr-type.js +35 -15
- package/lib/components/okr-detail/components/padding-layout.js +5 -2
- package/lib/components/okr-detail/components/score/index.js +17 -5
- package/lib/components/okr-detail/components/tab-panel-content/index.js +7 -1
- package/lib/components/okr-detail/context.js +10 -0
- package/lib/components/okr-detail/cooperation/index.js +9 -3
- package/lib/components/okr-detail/detail-footer/index.js +54 -15
- package/lib/components/okr-detail/detail-header/actions.js +46 -20
- package/lib/components/okr-detail/detail-header/confirm.js +26 -7
- package/lib/components/okr-detail/detail-header/constant.js +10 -0
- package/lib/components/okr-detail/detail-header/delete-confirm/delete-confirm.js +39 -9
- package/lib/components/okr-detail/detail-header/enums.js +3 -0
- package/lib/components/okr-detail/detail-header/index.js +100 -17
- package/lib/components/okr-detail/e-list/constant.js +1 -0
- package/lib/components/okr-detail/e-list/index.js +97 -60
- package/lib/components/okr-detail/e-list/search-form/fields/e-order.js +48 -16
- package/lib/components/okr-detail/e-list/search-form/fields/e-status.js +25 -1
- package/lib/components/okr-detail/e-list/search-form/fields/e-user.js +11 -1
- package/lib/components/okr-detail/e-list/search-form/index.js +44 -12
- package/lib/components/okr-detail/e-list/util.js +39 -12
- package/lib/components/okr-detail/error-page/index.js +8 -0
- package/lib/components/okr-detail/helper.js +23 -4
- package/lib/components/okr-detail/index.js +125 -46
- package/lib/components/okr-detail/loading/index.js +7 -1
- package/lib/components/okr-detail/okr-list/add-parent-okr.js +11 -1
- package/lib/components/okr-detail/okr-list/create-kr-item/dom.js +10 -1
- package/lib/components/okr-detail/okr-list/create-kr-item/heart.js +11 -3
- package/lib/components/okr-detail/okr-list/create-kr-item/index.js +89 -44
- package/lib/components/okr-detail/okr-list/create-kr-item/style.js +54 -0
- package/lib/components/okr-detail/okr-list/drag-order-kr.js +15 -0
- package/lib/components/okr-detail/okr-list/empty/index.js +10 -3
- package/lib/components/okr-detail/okr-list/index.js +154 -65
- package/lib/components/okr-detail/okr-list/warp-parent-okr.js +3 -0
- package/lib/components/okr-detail/request-apis.js +152 -34
- package/lib/components/okr-detail/schedule/components/detail-title/index.js +8 -3
- package/lib/components/okr-detail/schedule/components/kr-progress/index.js +13 -0
- package/lib/components/okr-detail/schedule/components/o-progress/index.js +102 -46
- package/lib/components/okr-detail/schedule/components/sub-o-progress/index.js +11 -0
- package/lib/components/okr-detail/schedule/components/title/index.js +6 -1
- package/lib/components/okr-detail/schedule/index.js +3 -0
- package/lib/components/okr-detail/schedule/schedule.js +41 -12
- package/lib/components/okr-detail/schedule/util.js +8 -0
- package/lib/components/okr-excel/hooks.js +70 -30
- package/lib/components/okr-excel/index.js +32 -10
- package/lib/components/okr-excel/renders.js +70 -6
- package/lib/components/okr-excel/setting.js +7 -0
- package/lib/components/okr-excel-create/components/kr-confidence/index.js +22 -3
- package/lib/components/okr-excel-create/components/kr-weight/index.js +39 -13
- package/lib/components/okr-excel-create/components/okr-align/index.js +45 -15
- package/lib/components/okr-excel-create/components/okr-classify/index.js +33 -7
- package/lib/components/okr-excel-create/components/okr-cycle/index.js +28 -7
- package/lib/components/okr-excel-create/components/okr-name/index.js +38 -8
- package/lib/components/okr-excel-create/components/okr-principal/index.js +34 -10
- package/lib/components/okr-excel-create/components/okr-progress/components/kr-progress/index.js +16 -7
- package/lib/components/okr-excel-create/components/okr-progress/components/o-progress/index.js +16 -7
- package/lib/components/okr-excel-create/components/okr-progress/components/okr-progress/index.js +95 -43
- package/lib/components/okr-excel-create/components/okr-progress/components/okr-progress/request-api.js +5 -0
- package/lib/components/okr-excel-create/components/okr-progress/components/okr-progress/util.js +21 -2
- package/lib/components/okr-excel-create/components/okr-progress/index.js +31 -15
- package/lib/components/okr-excel-create/components/okr-type/base-okr-type/confirm/buttonv2.js +35 -5
- package/lib/components/okr-excel-create/components/okr-type/base-okr-type/confirm/confirm.js +45 -6
- package/lib/components/okr-excel-create/components/okr-type/base-okr-type/index.js +22 -9
- package/lib/components/okr-excel-create/components/okr-type/base-okr-type/object-type.js +73 -24
- package/lib/components/okr-excel-create/components/okr-type/index.js +56 -28
- package/lib/components/okr-excel-create/components/okr-visibility/index.js +57 -12
- package/lib/components/okr-excel-create/components-new/kr-confidence/index.js +25 -6
- package/lib/components/okr-excel-create/components-new/kr-weight/index.js +71 -28
- package/lib/components/okr-excel-create/components-new/okr-align/index.js +42 -10
- package/lib/components/okr-excel-create/components-new/okr-classify/index.js +37 -9
- package/lib/components/okr-excel-create/components-new/okr-cycle/index.js +33 -11
- package/lib/components/okr-excel-create/components-new/okr-name/index.js +59 -13
- package/lib/components/okr-excel-create/components-new/okr-principal/index.js +37 -13
- package/lib/components/okr-excel-create/components-new/okr-progress/components/kr-progress/index.js +16 -7
- package/lib/components/okr-excel-create/components-new/okr-progress/components/o-progress/index.js +16 -7
- package/lib/components/okr-excel-create/components-new/okr-progress/components/okr-progress/index.js +95 -43
- package/lib/components/okr-excel-create/components-new/okr-progress/components/okr-progress/request-api.js +5 -0
- package/lib/components/okr-excel-create/components-new/okr-progress/components/okr-progress/util.js +21 -2
- package/lib/components/okr-excel-create/components-new/okr-progress/index.js +31 -15
- package/lib/components/okr-excel-create/components-new/okr-type/base-okr-type/confirm/buttonv2.js +35 -5
- package/lib/components/okr-excel-create/components-new/okr-type/base-okr-type/confirm/confirm.js +45 -6
- package/lib/components/okr-excel-create/components-new/okr-type/base-okr-type/index.js +22 -9
- package/lib/components/okr-excel-create/components-new/okr-type/base-okr-type/object-type.js +73 -24
- package/lib/components/okr-excel-create/components-new/okr-type/index.js +51 -21
- package/lib/components/okr-excel-create/components-new/okr-visibility/index.js +60 -16
- package/lib/components/okr-excel-create/hooks.js +70 -30
- package/lib/components/okr-excel-create/index-old.js +56 -13
- package/lib/components/okr-excel-create/index.js +85 -35
- package/lib/components/okr-excel-create/setting.js +7 -0
- package/lib/components/okr-excel-create/utils.js +24 -2
- package/lib/components/okr-filter-drawer/filter-form.js +61 -17
- package/lib/components/okr-filter-drawer/index.js +14 -5
- package/lib/components/okr-flow/child-node/fields/creator.js +54 -17
- package/lib/components/okr-flow/child-node/fields/okrClassify.js +9 -0
- package/lib/components/okr-flow/child-node/fields/okrType.js +5 -0
- package/lib/components/okr-flow/child-node/helper.js +2 -0
- package/lib/components/okr-flow/child-node/index.js +39 -20
- package/lib/components/okr-flow/child-node/kr-node.js +23 -13
- package/lib/components/okr-flow/child-node/work-node.js +95 -38
- package/lib/components/okr-flow/context.js +4 -0
- package/lib/components/okr-flow/empty/index.js +7 -0
- package/lib/components/okr-flow/export-modal/index.js +114 -31
- package/lib/components/okr-flow/export-modules/okr-search-panel/index.js +112 -38
- package/lib/components/okr-flow/index.js +4 -0
- package/lib/components/okr-flow/mini-map/index.js +35 -7
- package/lib/components/okr-flow/mini-map/map.js +46 -20
- package/lib/components/okr-flow/mini-map/mini-node.js +24 -11
- package/lib/components/okr-flow/mini-map/utils.js +20 -8
- package/lib/components/okr-flow/okr-map/index.js +75 -35
- package/lib/components/okr-flow/open-data/index.js +26 -0
- package/lib/components/okr-flow/request-apis.js +44 -20
- package/lib/components/okr-flow/root-node/index.js +66 -22
- package/lib/components/okr-flow/utils/config.js +5 -1
- package/lib/components/okr-flow/utils/helper.js +7 -0
- package/lib/components/okr-flow/utils/index.js +16 -4
- package/lib/components/okr-flow/utils/tree-handler.js +79 -31
- package/lib/components/okr-guide/index.js +68 -20
- package/lib/components/okr-guide/request-api.js +14 -1
- package/lib/components/okr-period-selector/index.js +26 -11
- package/lib/components/okr-period-selector/request-apis.js +5 -0
- package/lib/components/okr-period-selector/select-cycle.js +63 -23
- package/lib/components/okr-progress/components/detail-title/index.js +8 -3
- package/lib/components/okr-progress/components/kr-progress/index.js +13 -0
- package/lib/components/okr-progress/components/o-progress/index.js +97 -44
- package/lib/components/okr-progress/components/o-progress-update/index.js +40 -7
- package/lib/components/okr-progress/components/sub-o-progress/index.js +11 -1
- package/lib/components/okr-progress/components/title/index.js +6 -1
- package/lib/components/okr-progress/index.js +3 -0
- package/lib/components/okr-progress/okr-progress/index.js +45 -15
- package/lib/components/okr-progress/request-apis.js +24 -5
- package/lib/components/okr-progress/util.js +8 -0
- package/lib/components/okr-progress-detail/constant.js +1 -0
- package/lib/components/okr-progress-detail/index.js +47 -21
- package/lib/components/okr-progress-detail/utils.js +18 -0
- package/lib/components/okr-progress-modal/helper.js +23 -2
- package/lib/components/okr-progress-modal/index.js +96 -42
- package/lib/components/okr-progress-modal/request-apis.js +9 -0
- package/lib/components/okr-progress-modal/style.js +18 -0
- package/lib/components/okr-progress-modal/textarea/index.js +11 -4
- package/lib/components/okr-progress-modal/textarea/style.js +8 -0
- package/lib/components/okr-review/ReviewPop/components/ReviewBody/index.js +139 -25
- package/lib/components/okr-review/ReviewPop/components/ReviewBody/style.js +44 -0
- package/lib/components/okr-review/ReviewPop/components/Toast/index.js +24 -2
- package/lib/components/okr-review/ReviewPop/components/Toast/style.js +6 -0
- package/lib/components/okr-review/ReviewPop/index.js +73 -21
- package/lib/components/okr-review/ReviewPop/style.js +20 -0
- package/lib/components/okr-review/common.js +3 -0
- package/lib/components/okr-review/components/ReviewItem/index.js +31 -7
- package/lib/components/okr-review/components/ReviewItem/style.js +18 -0
- package/lib/components/okr-review/components/confirm-pop/ConfirmPop.js +44 -13
- package/lib/components/okr-review/components/confirm-pop/style.js +14 -0
- package/lib/components/okr-review/index.js +61 -17
- package/lib/components/okr-review/style.js +24 -0
- package/lib/components/okr-share/common-painter/darwAvatar.js +21 -0
- package/lib/components/okr-share/common-painter/openDataPainter.js +27 -10
- package/lib/components/okr-share/common-painter/setSize.js +5 -4
- package/lib/components/okr-share/common-painter/utils.js +40 -0
- package/lib/components/okr-share/index.js +34 -13
- package/lib/components/okr-share/pink-card/card.js +8 -0
- package/lib/components/okr-share/pink-card/drawDepartmentName.js +11 -0
- package/lib/components/okr-share/pink-card/drawKrs.js +27 -0
- package/lib/components/okr-share/pink-card/drawOKrName.js +3 -0
- package/lib/components/okr-share/pink-card/drawQuote.js +11 -0
- package/lib/components/okr-share/pink-card/drawUserName.js +12 -0
- package/lib/components/okr-share/pink-card/index.js +28 -0
- package/lib/components/okr-share/publishMblog.js +49 -12
- package/lib/components/okr-share/request-apis.js +13 -0
- package/lib/components/okr-share/shareCardSelector.js +24 -2
- package/lib/components/okr-type-icon/index.js +9 -0
- package/lib/components/okrcase-library/index.js +158 -93
- package/lib/components/okrcase-library/okrcases-components/caseLibrary-cardList/index.js +15 -5
- package/lib/components/okrcase-library/okrcases-components/caseLibrary-cardList/okrcase-card.js +51 -25
- package/lib/components/okrcase-library/okrcases-components/caseLibrary-main.js +22 -14
- package/lib/components/okrcase-library/okrcases-components/caseLibrary-nav.js +29 -13
- package/lib/components/okrcase-library/okrcases-components/caseLibray-header.js +10 -1
- package/lib/components/okrcase-library/okrcases-components/submitOkr-dialog.js +112 -65
- package/lib/components/okrcase-library/server/network.js +93 -36
- package/lib/components/okrcase-library-card/index.js +53 -27
- package/lib/components/open-data-painter/index.js +39 -12
- package/lib/components/operation-records/OperationRecordItem.js +27 -2
- package/lib/components/operation-records/index.js +67 -18
- package/lib/components/operation-records/style.js +34 -0
- package/lib/components/order-have-award/index.js +26 -0
- package/lib/components/order-have-award/interface.js +2 -0
- package/lib/components/pagination/index.js +3 -0
- package/lib/components/pagination/pagination.js +30 -4
- package/lib/components/part-notice/index.js +41 -15
- package/lib/components/password-input/icon/close-eye.js +3 -0
- package/lib/components/password-input/icon/open-eye.js +3 -0
- package/lib/components/password-input/index.js +44 -14
- package/lib/components/period-selector/common.js +50 -0
- package/lib/components/period-selector/components/button/index.js +30 -12
- package/lib/components/period-selector/components/button/style.js +8 -0
- package/lib/components/period-selector/components/selector/index.js +87 -36
- package/lib/components/period-selector/components/selector/style.js +19 -0
- package/lib/components/period-selector/helper/index.js +42 -18
- package/lib/components/period-selector/index.js +89 -58
- package/lib/components/period-selector/interface.js +0 -1
- package/lib/components/period-selector/mockData.js +7 -0
- package/lib/components/period-selector/style.js +8 -0
- package/lib/components/photo-card/components/card/index.js +49 -19
- package/lib/components/photo-card/index.js +42 -8
- package/lib/components/photo-card/request.apis.js +11 -0
- package/lib/components/picker/components/panels/date-panel/date-body.js +16 -6
- package/lib/components/picker/components/panels/date-panel/date-head.js +23 -6
- package/lib/components/picker/components/panels/date-panel/date-rows.js +46 -20
- package/lib/components/picker/components/panels/date-panel/index.js +33 -6
- package/lib/components/picker/components/panels/date-panel/useRowsData.js +30 -10
- package/lib/components/picker/components/panels/month-panel/index.js +32 -6
- package/lib/components/picker/components/panels/month-panel/month-body.js +12 -1
- package/lib/components/picker/components/panels/month-panel/month-head.js +25 -7
- package/lib/components/picker/components/panels/month-panel/useRowsData.js +20 -3
- package/lib/components/picker/components/panels/panel-body/index.js +16 -1
- package/lib/components/picker/components/panels/panel-head/index.js +13 -4
- package/lib/components/picker/components/panels/week-panel/index.js +15 -2
- package/lib/components/picker/components/panels/week-panel/utils.js +33 -10
- package/lib/components/picker/components/panels/week-panel/week-body.js +19 -2
- package/lib/components/picker/components/panels/week-panel/week-head.js +12 -3
- package/lib/components/picker/components/panels/year-panel/index.js +20 -1
- package/lib/components/picker/components/panels/year-panel/useRowsData.js +21 -3
- package/lib/components/picker/components/panels/year-panel/year-body.js +24 -8
- package/lib/components/picker/components/panels/year-panel/year-head.js +20 -5
- package/lib/components/picker/components/picker-trigger/index.js +32 -11
- package/lib/components/picker/context.js +11 -0
- package/lib/components/picker/index.js +4 -0
- package/lib/components/picker/picker-panels.js +65 -15
- package/lib/components/picker/picker.js +61 -28
- package/lib/components/picker/range-picker/components/operations/index.js +11 -3
- package/lib/components/picker/range-picker/components/picker-trigger/index.js +33 -10
- package/lib/components/picker/range-picker/components/placeholder/index.js +23 -4
- package/lib/components/picker/range-picker/components/select-input/index.js +18 -3
- package/lib/components/picker/range-picker/components/shortcuts/index.js +24 -1
- package/lib/components/picker/range-picker/index.js +79 -29
- package/lib/components/picker/utils.js +52 -12
- package/lib/components/point-demo/constant.js +4 -0
- package/lib/components/point-demo/drop-down-box/index.js +49 -29
- package/lib/components/point-demo/index.js +135 -67
- package/lib/components/point-demo/input/index.js +32 -0
- package/lib/components/point-demo/point-demo.js +24 -4
- package/lib/components/point-demo/popup/index.js +51 -30
- package/lib/components/point-demo/popup/placement.js +4 -0
- package/lib/components/popup/index.js +58 -39
- package/lib/components/popup/placement.js +4 -0
- package/lib/components/popup-select/index.js +52 -17
- package/lib/components/praise-record/PraiseRecordItem.js +27 -2
- package/lib/components/praise-record/index.js +53 -10
- package/lib/components/praise-record/style.js +24 -0
- package/lib/components/progress/circle-progress/index.js +30 -25
- package/lib/components/progress/index.js +5 -0
- package/lib/components/progress/line-progress/index.js +20 -15
- package/lib/components/progress/okr-progress/index.js +10 -1
- package/lib/components/progress/ring-progress/index.js +8 -1
- package/lib/components/progress/ring-progress/util.js +2 -0
- package/lib/components/progress/utils.js +6 -2
- package/lib/components/promise-confirm/index.js +37 -14
- package/lib/components/publish-dynamic-modal/index.js +3 -0
- package/lib/components/publish-dynamic-modal/publish-dynamic-modal.js +49 -13
- package/lib/components/publish-dynamic-modal/requist-api.js +10 -0
- package/lib/components/quick-entrance/index.js +69 -10
- package/lib/components/quick-entrance/render-item.js +8 -2
- package/lib/components/quick-entrance/request-api.js +6 -1
- package/lib/components/radio/index.js +4 -0
- package/lib/components/radio/radio.js +34 -13
- package/lib/components/radio/radioGroup.js +12 -4
- package/lib/components/range-picker-pop/index.js +72 -12
- package/lib/components/range-selector-pop/RangeList.js +23 -0
- package/lib/components/range-selector-pop/RangeSelectorPop.js +35 -7
- package/lib/components/rate/index.js +38 -17
- package/lib/components/regulation-setting-item/index.js +13 -5
- package/lib/components/rich-editor/enums.js +3 -0
- package/lib/components/rich-editor/index.js +19 -4
- package/lib/components/rich-editor/keymap.js +22 -7
- package/lib/components/rich-editor/keymaps/index.js +22 -0
- package/lib/components/rich-editor/models/controller.js +5 -0
- package/lib/components/rich-editor/models/editor.js +11 -2
- package/lib/components/rich-editor/models/plugin.js +6 -0
- package/lib/components/rich-editor/models/schema.js +40 -0
- package/lib/components/rich-editor/plugins/block/block-quote/commond.js +5 -0
- package/lib/components/rich-editor/plugins/block/block-quote/index.js +44 -0
- package/lib/components/rich-editor/plugins/block/heading/commonds.js +8 -0
- package/lib/components/rich-editor/plugins/block/heading/index.js +43 -0
- package/lib/components/rich-editor/plugins/block/index.js +8 -0
- package/lib/components/rich-editor/plugins/block/lists/actions/conversions.js +49 -25
- package/lib/components/rich-editor/plugins/block/lists/actions/indent-list-items-selected.js +57 -25
- package/lib/components/rich-editor/plugins/block/lists/actions/indent-list.js +21 -11
- package/lib/components/rich-editor/plugins/block/lists/actions/join-list-items-forward.js +19 -6
- package/lib/components/rich-editor/plugins/block/lists/actions/join-list-items-scenarios/index.js +5 -0
- package/lib/components/rich-editor/plugins/block/lists/actions/join-list-items-scenarios/join-list-item-with-paragraph.js +27 -12
- package/lib/components/rich-editor/plugins/block/lists/actions/join-list-items-scenarios/join-list-item-with-parent-nested-list.js +9 -3
- package/lib/components/rich-editor/plugins/block/lists/actions/join-list-items-scenarios/join-nested-list-with-parent-list-item.js +12 -3
- package/lib/components/rich-editor/plugins/block/lists/actions/join-list-items-scenarios/join-paragraph-with-list.js +6 -3
- package/lib/components/rich-editor/plugins/block/lists/actions/join-list-items-scenarios/join-sibling-list-items.js +8 -3
- package/lib/components/rich-editor/plugins/block/lists/actions/merge-lists.js +10 -3
- package/lib/components/rich-editor/plugins/block/lists/actions/outdent-list-items-selected.js +70 -14
- package/lib/components/rich-editor/plugins/block/lists/actions/wrap-and-join-lists.js +46 -14
- package/lib/components/rich-editor/plugins/block/lists/baseCommand.js +87 -58
- package/lib/components/rich-editor/plugins/block/lists/commond/indent-list.js +14 -3
- package/lib/components/rich-editor/plugins/block/lists/commond/index.js +118 -39
- package/lib/components/rich-editor/plugins/block/lists/commond/join-list-item-forward.js +12 -1
- package/lib/components/rich-editor/plugins/block/lists/commond/listBackspace.js +50 -16
- package/lib/components/rich-editor/plugins/block/lists/commond/outdent-list.js +10 -0
- package/lib/components/rich-editor/plugins/block/lists/index.js +64 -0
- package/lib/components/rich-editor/plugins/block/lists/messages.js +2 -1
- package/lib/components/rich-editor/plugins/block/lists/pm-plugins/input-rule.js +34 -17
- package/lib/components/rich-editor/plugins/block/lists/pm-plugins/keymap.js +8 -0
- package/lib/components/rich-editor/plugins/block/lists/pm-plugins/main.js +24 -8
- package/lib/components/rich-editor/plugins/block/lists/styles.js +4 -0
- package/lib/components/rich-editor/plugins/block/lists/transforms.js +95 -47
- package/lib/components/rich-editor/plugins/block/lists/utils/analytics.js +12 -4
- package/lib/components/rich-editor/plugins/block/lists/utils/find.js +31 -0
- package/lib/components/rich-editor/plugins/block/lists/utils/indentation.js +24 -1
- package/lib/components/rich-editor/plugins/block/lists/utils/node.js +40 -11
- package/lib/components/rich-editor/plugins/block/lists/utils/replace-content.js +8 -1
- package/lib/components/rich-editor/plugins/block/lists/utils/selection.js +63 -20
- package/lib/components/rich-editor/plugins/block/lists/utils.js +17 -4
- package/lib/components/rich-editor/plugins/block/paragraph/index.js +32 -0
- package/lib/components/rich-editor/plugins/core/index.js +36 -0
- package/lib/components/rich-editor/plugins/core/pm-plugins/focus-handler.js +12 -0
- package/lib/components/rich-editor/plugins/core/pm-plugins/keymap.js +8 -0
- package/lib/components/rich-editor/plugins/core/pm-plugins/reactNodeView.js +13 -2
- package/lib/components/rich-editor/plugins/extension/alignment/commond.js +5 -0
- package/lib/components/rich-editor/plugins/extension/alignment/index.js +34 -0
- package/lib/components/rich-editor/plugins/extension/alignment/utils.js +3 -2
- package/lib/components/rich-editor/plugins/extension/index.js +2 -0
- package/lib/components/rich-editor/plugins/extension/placeholder/index.js +37 -0
- package/lib/components/rich-editor/plugins/extension/placeholder/styles.js +5 -0
- package/lib/components/rich-editor/plugins/index.js +6 -0
- package/lib/components/rich-editor/plugins/inline/color/commond.js +41 -20
- package/lib/components/rich-editor/plugins/inline/color/consts.js +3 -0
- package/lib/components/rich-editor/plugins/inline/color/index.js +61 -0
- package/lib/components/rich-editor/plugins/inline/color/selector.js +59 -14
- package/lib/components/rich-editor/plugins/inline/color/util.js +5 -0
- package/lib/components/rich-editor/plugins/inline/delete-line/index.js +46 -0
- package/lib/components/rich-editor/plugins/inline/em/index.js +32 -0
- package/lib/components/rich-editor/plugins/inline/index.js +12 -0
- package/lib/components/rich-editor/plugins/inline/link/commands.js +47 -13
- package/lib/components/rich-editor/plugins/inline/link/index.js +48 -2
- package/lib/components/rich-editor/plugins/inline/link/pm-plugins/fake-cursor-for-toolbar.js +18 -6
- package/lib/components/rich-editor/plugins/inline/link/pm-plugins/main.js +68 -14
- package/lib/components/rich-editor/plugins/inline/link/ui/linkEditor.js +48 -16
- package/lib/components/rich-editor/plugins/inline/link/ui/linkToolbar.js +28 -5
- package/lib/components/rich-editor/plugins/inline/link/ui/toolbarBtn.js +33 -4
- package/lib/components/rich-editor/plugins/inline/link/utils.js +6 -0
- package/lib/components/rich-editor/plugins/inline/strong/index.js +44 -0
- package/lib/components/rich-editor/plugins/inline/under-line/index.js +47 -0
- package/lib/components/rich-editor/plugins/util.js +55 -9
- package/lib/components/rich-editor/react/reactNodeView.js +117 -54
- package/lib/components/rich-editor/react/uiProvider.js +56 -5
- package/lib/components/rich-editor/schemas/basic.js +13 -15
- package/lib/components/rich-editor/schemas/index.js +5 -0
- package/lib/components/rich-editor/schemas/list.js +90 -61
- package/lib/components/rich-editor/types/index.js +2 -0
- package/lib/components/rich-editor/ui/Popup/index.js +64 -20
- package/lib/components/rich-editor/ui/Popup/utils.js +135 -65
- package/lib/components/rich-editor/ui/editor/index.js +51 -18
- package/lib/components/rich-editor/ui/normal-toolbar/index.js +30 -4
- package/lib/components/rich-editor/utils/browser.js +2 -0
- package/lib/components/rich-editor/utils/commands.js +69 -15
- package/lib/components/rich-editor/utils/document.js +48 -10
- package/lib/components/rich-editor/utils/event.js +19 -4
- package/lib/components/rich-editor/utils/helpers.js +1 -0
- package/lib/components/rich-editor/utils/mark.js +42 -14
- package/lib/components/rich-editor/utils/slice.js +21 -0
- package/lib/components/rich-editor/utils/toolbar.js +51 -6
- package/lib/components/rich-editor-at/components/index.js +53 -25
- package/lib/components/rich-editor-at/index.js +50 -21
- package/lib/components/rich-editor-upload/index.js +33 -11
- package/lib/components/scroll-container/index.js +112 -50
- package/lib/components/scrollbar/index.js +37 -15
- package/lib/components/scrollbar/scroll-mask/index.js +53 -22
- package/lib/components/scrollbar/simplebar/helpers.js +12 -0
- package/lib/components/scrollbar/simplebar/index.js +16 -6
- package/lib/components/scrollbar/simplebar/scrollbar-width.js +10 -0
- package/lib/components/scrollbar/simplebar/simplebar.js +136 -52
- package/lib/components/scrollbar/simplebar-react.js +33 -3
- package/lib/components/search-dropdown/index.js +11 -0
- package/lib/components/search-input/index.js +43 -13
- package/lib/components/search-key-handle/index.js +11 -5
- package/lib/components/select/Option.js +31 -2
- package/lib/components/select/index.js +80 -15
- package/lib/components/select-layer/index.js +47 -23
- package/lib/components/select-tags/index.js +48 -21
- package/lib/components/selector-input/debounce.js +7 -0
- package/lib/components/selector-input/index.js +37 -11
- package/lib/components/slider-input/index.js +42 -17
- package/lib/components/stateless-dropdown/dropdown-selector.js +0 -11
- package/lib/components/stateless-dropdown/index.js +3 -0
- package/lib/components/stateless-dropdown/stateless-dropdown.js +14 -4
- package/lib/components/status-time/index.js +47 -24
- package/lib/components/stop-taking-modal/index.js +38 -15
- package/lib/components/superset-charts/components/chart/index.js +5 -2
- package/lib/components/superset-charts/fetch-assets-and-append/append-assets.js +22 -0
- package/lib/components/superset-charts/fetch-assets-and-append/get-assets-with-cache.js +32 -3
- package/lib/components/superset-charts/fetch-assets-and-append/index.js +17 -0
- package/lib/components/superset-charts/index.js +3 -0
- package/lib/components/superset-charts/utils/axios.js +24 -0
- package/lib/components/survey-model/contact.js +29 -5
- package/lib/components/survey-model/index.js +72 -25
- package/lib/components/survey-model/instance.js +20 -0
- package/lib/components/survey-model/request-api.js +14 -4
- package/lib/components/switch/index.js +14 -3
- package/lib/components/table/index.js +89 -32
- package/lib/components/table-excel/index.js +14 -2
- package/lib/components/table-excel-v2/index.js +184 -95
- package/lib/components/table-excel-v2/utils.js +4 -0
- package/lib/components/tabs/index.js +25 -5
- package/lib/components/tabs/tabBtns.js +27 -7
- package/lib/components/tag/index.js +23 -8
- package/lib/components/task-relation-modal/context.js +4 -0
- package/lib/components/task-relation-modal/helper.js +30 -0
- package/lib/components/task-relation-modal/index.js +102 -35
- package/lib/components/task-relation-modal/okr-relation/relation-task-model/index.js +101 -50
- package/lib/components/task-relation-modal/okr-relation/relation-task-model/search-form.js +57 -22
- package/lib/components/task-relation-modal/okr-relation/relation-work-model/index.js +61 -28
- package/lib/components/task-relation-modal/okr-relation/request-api.js +27 -12
- package/lib/components/task-relation-modal/okr-relation/tree/task-tree/index.js +36 -8
- package/lib/components/task-relation-modal/radio.js +27 -8
- package/lib/components/task-relation-modal/relation-single-okr/index.js +59 -24
- package/lib/components/task-relation-modal/request-api.js +42 -21
- package/lib/components/task-relation-modal/search/category-select.js +23 -4
- package/lib/components/task-relation-modal/search/okr-status-select.js +23 -4
- package/lib/components/task-relation-modal/search/okr-type-select.js +28 -8
- package/lib/components/task-relation-modal/search/principal.js +42 -15
- package/lib/components/task-relation-modal/search/relation.js +24 -4
- package/lib/components/task-relation-modal/search/search-dropdown/index.js +7 -1
- package/lib/components/task-relation-modal/search/task-relation.js +24 -4
- package/lib/components/task-relation-modal/search/task-status-select.js +24 -4
- package/lib/components/task-relation-modal/search/work-relation.js +24 -4
- package/lib/components/task-relation-modal/search/work-status-select.js +23 -4
- package/lib/components/task-relation-modal/tree/category-tree/index.js +83 -29
- package/lib/components/task-relation-modal/tree/category-tree/search-form.js +26 -6
- package/lib/components/task-relation-modal/tree/okr-tree/index.js +91 -37
- package/lib/components/task-relation-modal/tree/okr-tree/search-form.js +53 -20
- package/lib/components/task-relation-modal/tree/work-list/index.js +68 -30
- package/lib/components/task-relation-modal/tree/work-list/search-form.js +42 -15
- package/lib/components/task-relation-modal/tree/work-tree/index.js +82 -30
- package/lib/components/task-relation-modal/tree/work-tree/search-form.js +42 -14
- package/lib/components/task-relation-modal/tree-node/category-node/index.js +27 -9
- package/lib/components/task-relation-modal/tree-node/index.js +16 -0
- package/lib/components/task-relation-modal/tree-node/kr-node/index.js +28 -7
- package/lib/components/task-relation-modal/tree-node/milestone-node/index.js +30 -7
- package/lib/components/task-relation-modal/tree-node/o-node/index.js +40 -10
- package/lib/components/task-relation-modal/tree-node/work-node/index.js +30 -7
- package/lib/components/task-relation-modal/work-relation/index.js +79 -24
- package/lib/components/task-tree/helper.js +10 -0
- package/lib/components/task-tree/index.js +4 -0
- package/lib/components/task-tree/request-apis.js +23 -11
- package/lib/components/task-tree/task-item-node/constant.js +7 -0
- package/lib/components/task-tree/task-item-node/e-empty.js +8 -0
- package/lib/components/task-tree/task-item-node/e-project.js +58 -15
- package/lib/components/task-tree/task-item-node/e-status-dropdown.js +30 -5
- package/lib/components/task-tree/task-item-node/e-task.js +119 -54
- package/lib/components/task-tree/task-item-node/get-process-color.js +5 -0
- package/lib/components/task-tree/task-item-node/task-node-render.js +12 -0
- package/lib/components/task-tree/task-tree.js +17 -4
- package/lib/components/textarea/index.js +102 -54
- package/lib/components/time-picker/index.js +3 -0
- package/lib/components/time-picker/time-picker-selector.js +38 -14
- package/lib/components/time-picker/time-picker.js +67 -18
- package/lib/components/time-picker/timer-picker-input.js +27 -12
- package/lib/components/time-picker/utils.js +9 -2
- package/lib/components/tita-chart/base/index.js +2 -0
- package/lib/components/tita-chart/charts/custom-tooltip.js +4 -0
- package/lib/components/tita-chart/charts/liquid-ball.js +41 -20
- package/lib/components/tita-chart/charts/pie.js +19 -11
- package/lib/components/tita-chart/charts/words-cloud.js +25 -3
- package/lib/components/tita-chart/errorBoundary/index.js +25 -0
- package/lib/components/tita-chart/hooks/useChart.js +53 -15
- package/lib/components/tita-chart/index.js +5 -0
- package/lib/components/tita-chart/interface.js +4 -0
- package/lib/components/tita-chart/plots/liquid/index.js +27 -11
- package/lib/components/tita-chart/plots/pie/index.js +27 -11
- package/lib/components/tita-chart/plots/wordscloud/index.js +27 -11
- package/lib/components/tita-chart/util/createLoading.js +8 -0
- package/lib/components/tita-chart/util/createNode.js +7 -1
- package/lib/components/tita-chart/util/getChart.js +4 -0
- package/lib/components/tita-chart/util/index.js +2 -0
- package/lib/components/tita-chart/util/utils.js +27 -8
- package/lib/components/toast/components/SuccessRender.js +12 -0
- package/lib/components/toast/index.js +45 -12
- package/lib/components/toast/style/index.js +8 -0
- package/lib/components/tooltip/error-tip.js +7 -0
- package/lib/components/tooltip/index.js +6 -0
- package/lib/components/tooltip/tooltip-rows/index.js +40 -22
- package/lib/components/tooltip/tooltip-text/index.js +35 -18
- package/lib/components/tooltip/tooltip.js +10 -1
- package/lib/components/top-global-prompt/index.js +15 -2
- package/lib/components/tree/index.js +16 -3
- package/lib/components/try-version-modal/img/bg.png +0 -0
- package/lib/components/try-version-modal/img/img-bg.png +0 -0
- package/lib/components/try-version-modal/index.css +61 -0
- package/lib/components/try-version-modal/index.js +111 -0
- package/lib/components/update-modal/index.js +28 -8
- package/lib/components/update-modal/request-api.js +5 -0
- package/lib/components/upload/components/uploadedPreview.js +57 -14
- package/lib/components/upload/index.js +182 -37
- package/lib/components/upload/index2.js +112 -52
- package/lib/components/upload/style.js +24 -0
- package/lib/components/upload/type.js +5 -2
- package/lib/components/upload/util.js +35 -0
- package/lib/components/upload-modal/index.js +46 -9
- package/lib/components/upload-photo-modal/constant.js +2 -0
- package/lib/components/upload-photo-modal/index.js +68 -20
- package/lib/components/upload-photo-modal/request-api.js +10 -0
- package/lib/components/upvote/attitude.js +3 -0
- package/lib/components/upvote/index.js +86 -27
- package/lib/components/upvote/request-apis.js +15 -4
- package/lib/components/upvote/selector.js +50 -23
- package/lib/components/upvote/upvoteListModal.js +34 -7
- package/lib/components/user-selector/action-btns/index.js +5 -0
- package/lib/components/user-selector/category-selector-panel/depart-tree.js +27 -13
- package/lib/components/user-selector/category-selector-panel/group-tree.js +25 -11
- package/lib/components/user-selector/category-selector-panel/index.js +47 -22
- package/lib/components/user-selector/category-selector-panel/subordinate-tree.js +21 -7
- package/lib/components/user-selector/constant.js +7 -0
- package/lib/components/user-selector/context.js +6 -0
- package/lib/components/user-selector/empty/group.js +8 -0
- package/lib/components/user-selector/empty/index.js +7 -1
- package/lib/components/user-selector/enum.js +1 -0
- package/lib/components/user-selector/export-modules/depart-search-selector/index.js +105 -56
- package/lib/components/user-selector/export-modules/depart-search-selector/result-part.js +10 -4
- package/lib/components/user-selector/export-modules/duties-selector/index.js +61 -25
- package/lib/components/user-selector/export-modules/field-tree-selector/index.js +135 -92
- package/lib/components/user-selector/export-modules/field-tree-selector/multiple-selector/index.js +55 -18
- package/lib/components/user-selector/export-modules/field-tree-selector/selector-generater.js +15 -1
- package/lib/components/user-selector/export-modules/field-tree-selector/single-selector/index.js +40 -14
- package/lib/components/user-selector/export-modules/field-tree-selector/single-selector/user-list.js +19 -5
- package/lib/components/user-selector/export-modules/group-selector/index.js +57 -22
- package/lib/components/user-selector/export-modules/group-selector/searched-panel.js +28 -9
- package/lib/components/user-selector/export-modules/multiple-user-selector--bak/index.js +81 -49
- package/lib/components/user-selector/export-modules/single-selector/index.js +52 -28
- package/lib/components/user-selector/index.js +7 -0
- package/lib/components/user-selector/layout/index.js +6 -2
- package/lib/components/user-selector/loading/index.js +4 -0
- package/lib/components/user-selector/request-apis.js +81 -41
- package/lib/components/user-selector/searched-panel/index.js +75 -40
- package/lib/components/user-selector/searched-panel/result-part.js +11 -5
- package/lib/components/user-selector/select-tree/choose-tree/index.js +81 -35
- package/lib/components/user-selector/select-tree/selected-tree/index.js +31 -6
- package/lib/components/user-selector/select-tree/tree-nodes/tree-depart-node/index.js +11 -2
- package/lib/components/user-selector/select-tree/tree-nodes/tree-duties-node/index.js +5 -0
- package/lib/components/user-selector/select-tree/tree-nodes/tree-group-node/index.js +16 -3
- package/lib/components/user-selector/select-tree/tree-nodes/tree-person-node/index.js +22 -3
- package/lib/components/user-selector/selected-panel/index.js +31 -12
- package/lib/components/user-selector/utils.js +19 -2
- package/lib/components/version-change-modal/constant.js +3 -0
- package/lib/components/version-change-modal/index.js +53 -9
- package/lib/components/version-change-modal/request-api.js +11 -0
- package/lib/components/video-modal/components/video-box/index.js +100 -70
- package/lib/components/video-modal/index.js +54 -32
- package/lib/components/video-modal/utils.js +4 -0
- package/lib/components/viewer/ImageListRender.js +44 -8
- package/lib/components/viewer/index.js +53 -5
- package/lib/components/wechat-btn/index.js +86 -44
- package/lib/components/weekly-report/board.js +5 -0
- package/lib/components/weekly-report/card.js +52 -11
- package/lib/components/weekly-report/common-painter/darwAvatar.js +26 -0
- package/lib/components/weekly-report/common-painter/drawName.js +11 -0
- package/lib/components/weekly-report/common-painter/openDataPainter.js +23 -7
- package/lib/components/weekly-report/common-painter/setSize.js +5 -4
- package/lib/components/weekly-report/common-painter/utils.js +18 -1
- package/lib/components/weekly-report/index.js +55 -12
- package/lib/components/weekly-report/statistics.js +7 -0
- package/lib/components/word-cloud/index.js +28 -8
- package/lib/components/word-cloud/request-apis.js +7 -0
- package/lib/components/write-summary-modal/index.js +40 -11
- package/lib/components/write-summary-modal/interface.js +2 -0
- package/lib/components/write-summary-modal/request-api.js +3 -0
- package/lib/components/write-summary-modal/utils.js +5 -0
- package/lib/components-v1/animate/AnimateChild.js +26 -0
- package/lib/components-v1/animate/animate.js +41 -0
- package/lib/components-v1/animate/index.js +3 -0
- package/lib/components-v1/avatar/index.js +52 -8
- package/lib/components-v1/avatar/styles.js +8 -0
- package/lib/components-v1/buttonv2/ButtonLinked.js +12 -3
- package/lib/components-v1/buttonv2/ButtonOutlined.js +24 -2
- package/lib/components-v1/buttonv2/ButtonRounded.js +35 -7
- package/lib/components-v1/buttonv2/DefaultButton.js +31 -5
- package/lib/components-v1/buttonv2/index.js +4 -0
- package/lib/components-v1/buttonv2/style/style.js +15 -4
- package/lib/components-v1/confirm/index.js +45 -6
- package/lib/components-v1/dom/index.js +3 -1
- package/lib/components-v1/dropDownSelector/StatelessDropdown.js +31 -3
- package/lib/components-v1/dropDownSelector/dropDownSelector.js +47 -11
- package/lib/components-v1/dropDownSelector/styles/index.js +8 -0
- package/lib/components-v1/input/Enums.js +1 -0
- package/lib/components-v1/input/Input.js +58 -11
- package/lib/components-v1/input/InputNumber.js +62 -13
- package/lib/components-v1/input/style/index.js +14 -0
- package/lib/components-v1/placement/index.js +3 -0
- package/lib/components-v1/placement/placement.js +33 -0
- package/lib/components-v1/placement/placementInner.js +35 -0
- package/lib/components-v1/pop/Pop.js +64 -9
- package/lib/components-v1/pop/PopInner.js +49 -14
- package/lib/components-v1/pop/index.js +3 -0
- package/lib/components-v1/popConfirm/index.js +60 -22
- package/lib/components-v1/popConfirm/style.js +8 -0
- package/lib/components-v1/portals/Portals.js +27 -2
- package/lib/components-v1/progress/CircleProgress.js +40 -14
- package/lib/components-v1/progress/LineProgress.js +25 -4
- package/lib/components-v1/progress/index.js +31 -2
- package/lib/components-v1/radio/index.js +3 -0
- package/lib/components-v1/radio/radio.js +39 -4
- package/lib/components-v1/radio/radioGroup.js +35 -8
- package/lib/components-v1/search/cache.js +17 -0
- package/lib/components-v1/search/index.js +53 -6
- package/lib/components-v1/select/Option.js +31 -2
- package/lib/components-v1/select/index.js +80 -15
- package/lib/components-v1/tabs/index.js +30 -4
- package/lib/components-v1/tabs/style.js +14 -0
- package/lib/components-v1/textarea/index.js +56 -20
- package/lib/components-v1/textarea/style.js +12 -0
- package/lib/components-v1/transition/index.js +81 -35
- package/lib/components-v1/userSelector/UserSelectorPop.js +51 -17
- package/lib/components-v1/userSelector/components/MultiMode/CommonList.js +40 -2
- package/lib/components-v1/userSelector/components/MultiMode/DepartmentList.js +46 -3
- package/lib/components-v1/userSelector/components/MultiMode/DepartmentTree.js +53 -16
- package/lib/components-v1/userSelector/components/MultiMode/SubsList.js +33 -0
- package/lib/components-v1/userSelector/components/MultiMode/index.js +52 -16
- package/lib/components-v1/userSelector/components/SearchBar.js +37 -2
- package/lib/components-v1/userSelector/components/SingleMode.js +51 -5
- package/lib/components-v1/userSelector/components/UserItem.js +32 -5
- package/lib/components-v1/userSelector/index.js +62 -13
- package/lib/components-v1/userSelector/style.js +64 -0
- package/lib/components-v1/utils/animate/animate.js +23 -0
- package/lib/components-v1/utils/animate/event.js +8 -0
- package/lib/components-v1/utils/common/tools.js +3 -0
- package/lib/components-v1/utils/dom/index.js +3 -1
- package/lib/components-v1/utils/placement/autoAdjustPlacement.js +10 -6
- package/lib/components-v1/utils/placement/getContainerVisibleArea.js +1 -1
- package/lib/components-v1/utils/placement/getExpectPlacement.js +3 -0
- package/lib/components-v1/utils/placement/getPlacementInContainer.js +1 -0
- package/lib/components-v1/utils/placement/placement.js +17 -1
- package/lib/hooks/useGlobalState.js +14 -3
- package/lib/hooks/useLocalStorage.js +13 -3
- package/lib/hooks/useTouch.js +57 -32
- package/lib/index.js +136 -0
- package/lib/pages/aha2021/index.js +50 -5
- package/lib/pages/aha2021/new-menu-switcher/index.js +31 -9
- package/lib/pages/aha2021/request-api.js +3 -0
- package/lib/pages/appointment-demo/drop-down-box/index.js +49 -28
- package/lib/pages/appointment-demo/index.js +122 -59
- package/lib/pages/appointment-demo/input/index.js +32 -0
- package/lib/pages/appointment-demo/popup/index.js +51 -30
- package/lib/pages/appointment-demo/popup/placement.js +4 -0
- package/lib/pages/demo-free/index.js +7 -0
- package/lib/pages/dynamic/index.js +13 -0
- package/lib/pages/group-management/components/checkbox/index.js +8 -0
- package/lib/pages/group-management/components/input-form/index.js +32 -0
- package/lib/pages/group-management/components/openData/index.js +67 -8
- package/lib/pages/group-management/components/radio/index.js +5 -0
- package/lib/pages/group-management/components/table/index.js +52 -14
- package/lib/pages/group-management/groupInterface.js +68 -17
- package/lib/pages/group-management/index.js +3 -0
- package/lib/pages/group-management/page-view/empty.js +32 -8
- package/lib/pages/group-management/page-view/group-empty.js +21 -3
- package/lib/pages/group-management/page-view/importGroupStaff/index.js +57 -21
- package/lib/pages/group-management/page-view/index.js +132 -70
- package/lib/pages/group-management/page-view/loading/index.js +10 -0
- package/lib/pages/group-management/table/index.js +21 -5
- package/lib/pages/group-management/tree/add-group-dialog/index.js +43 -11
- package/lib/pages/group-management/tree/delete-group-dialog/index.js +19 -2
- package/lib/pages/group-management/tree/edit-group-dialog/index.js +43 -11
- package/lib/pages/group-management/tree/group-form/index.js +60 -26
- package/lib/pages/group-management/tree/index.js +46 -13
- package/lib/pages/group-management/tree/operation-panel.js +11 -1
- package/lib/pages/group-management/tree/trigger-render.js +29 -3
- package/lib/pages/home/components/data-list/index.js +49 -18
- package/lib/pages/home/components/data-list/nav-selector/index.js +17 -7
- package/lib/pages/home/components/data-list/table/columns/createDate.js +4 -0
- package/lib/pages/home/components/data-list/table/columns/cycleTime.js +5 -0
- package/lib/pages/home/components/data-list/table/columns/index.js +12 -0
- package/lib/pages/home/components/data-list/table/columns/krName.js +6 -0
- package/lib/pages/home/components/data-list/table/columns/link.js +5 -1
- package/lib/pages/home/components/data-list/table/columns/okrName.js +10 -3
- package/lib/pages/home/components/data-list/table/columns/progressAndRisk.js +30 -8
- package/lib/pages/home/components/data-list/table/columns/tag.js +7 -1
- package/lib/pages/home/components/data-list/table/columns/updateTime.js +6 -0
- package/lib/pages/home/components/data-list/table/columns/user.js +11 -4
- package/lib/pages/home/components/data-list/table/empty-table.js +9 -4
- package/lib/pages/home/components/data-list/table/index.js +44 -17
- package/lib/pages/home/components/data-list/table/utils-function.js +42 -11
- package/lib/pages/home/components/guide/index.js +27 -4
- package/lib/pages/home/components/guide/stepItem.js +13 -5
- package/lib/pages/home/components/header/index.js +13 -1
- package/lib/pages/home/index.js +12 -1
- package/lib/pages/home-page-data-list/index.js +49 -18
- package/lib/pages/like-ranking/column.js +17 -2
- package/lib/pages/like-ranking/index.js +86 -35
- package/lib/pages/like-ranking/request-api.js +3 -0
- package/lib/pages/new-okr-list/context.js +4 -0
- package/lib/pages/new-okr-list/header/comments.js +25 -10
- package/lib/pages/new-okr-list/header/common.js +12 -0
- package/lib/pages/new-okr-list/header/create-okr.js +29 -3
- package/lib/pages/new-okr-list/header/depart-title.js +16 -4
- package/lib/pages/new-okr-list/header/filter.js +76 -39
- package/lib/pages/new-okr-list/header/index.js +127 -49
- package/lib/pages/new-okr-list/header/okr-import.js +53 -10
- package/lib/pages/new-okr-list/header/operate-record.js +34 -12
- package/lib/pages/new-okr-list/header/relation-title.js +7 -0
- package/lib/pages/new-okr-list/header/user-title.js +6 -1
- package/lib/pages/new-okr-list/index.js +127 -47
- package/lib/pages/new-okr-list/init-cycle-setting.js +19 -3
- package/lib/pages/new-okr-list/keyword-search/index.js +36 -8
- package/lib/pages/new-okr-list/list/index.js +28 -14
- package/lib/pages/new-okr-list/loading.js +7 -1
- package/lib/pages/new-okr-list/request-api.js +47 -0
- package/lib/pages/okr-map/export-modules/okr-map/header/index.js +62 -23
- package/lib/pages/okr-map/export-modules/okr-map/header/show-kr-confirm.js +10 -3
- package/lib/pages/okr-map/export-modules/okr-map/index.js +5 -0
- package/lib/pages/okr-map/export-modules/okr-map/okr-map.js +170 -81
- package/lib/pages/okr-map/export-modules/share-okr-page/header/index.js +33 -12
- package/lib/pages/okr-map/export-modules/share-okr-page/index.js +5 -0
- package/lib/pages/okr-map/export-modules/share-okr-page/share-okr-map.js +76 -36
- package/lib/pages/okr-map/hooks/useStorage.js +46 -21
- package/lib/pages/okr-map/index.js +4 -0
- package/lib/pages/okr-map/level2-search/depart.js +13 -3
- package/lib/pages/okr-map/level2-search/group.js +21 -3
- package/lib/pages/okr-map/level2-search/index.js +17 -4
- package/lib/pages/okr-map/level2-search/level2-input.js +11 -2
- package/lib/pages/okr-map/level2-search/user.js +15 -3
- package/lib/pages/okr-map/no-okr/index.js +3 -0
- package/lib/pages/okr-map/number-select/index.js +31 -12
- package/lib/pages/okr-map/open-data/index.js +26 -0
- package/lib/pages/okr-map/request-apis.js +20 -2
- package/lib/pages/okr-map/share-dialog/index.js +43 -14
- package/lib/pages/okr-map/unsupport-ie/index.js +30 -6
- package/lib/pages/okr-map/utils.js +19 -3
- package/lib/pages/pay/index.js +16 -6
- package/lib/pages/personal-info/components/base-info/index.js +39 -11
- package/lib/pages/personal-info/components/edit-base-info/index.js +50 -16
- package/lib/pages/personal-info/components/person-photo/index.js +34 -9
- package/lib/pages/personal-info/index.js +9 -0
- package/lib/pages/personal-info/request-api.js +8 -0
- package/lib/utils/array.js +5 -3
- package/lib/utils/auth.js +100 -42
- package/lib/utils/bs-global.js +38 -9
- package/lib/utils/check.js +2 -0
- package/lib/utils/constant.js +7 -0
- package/lib/utils/date-test-change.js +18 -4
- package/lib/utils/editor.js +22 -6
- package/lib/utils/error-level.js +2 -0
- package/lib/utils/format-time.js +57 -30
- package/lib/utils/getLocale.js +3 -0
- package/lib/utils/helpers.js +62 -10
- package/lib/utils/hooks.js +37 -16
- package/lib/utils/i18n-front-translate.js +7 -0
- package/lib/utils/local-storage.js +9 -0
- package/lib/utils/mblog.js +2 -0
- package/lib/utils/open-data.js +124 -25
- package/lib/utils/platform.js +27 -4
- package/lib/utils/request-v1.js +32 -6
- package/lib/utils/request.js +39 -16
- package/lib/utils/roundWeight.js +22 -0
- package/lib/utils/tita-okr-cycle.js +0 -2
- package/lib/utils/tools.js +83 -23
- package/package.json +1 -1
|
@@ -1,40 +1,64 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
4
5
|
Object.defineProperty(exports, "__esModule", {
|
|
5
6
|
value: true
|
|
6
7
|
});
|
|
7
8
|
exports["default"] = void 0;
|
|
9
|
+
|
|
8
10
|
var _react = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
9
12
|
var _avatar = _interopRequireDefault(require("../../avatar"));
|
|
13
|
+
|
|
10
14
|
var _style = require("../style");
|
|
15
|
+
|
|
11
16
|
var _openData = require("../../../utils/open-data");
|
|
17
|
+
|
|
12
18
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
19
|
+
|
|
13
20
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
21
|
+
|
|
14
22
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
23
|
+
|
|
15
24
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
25
|
+
|
|
16
26
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
27
|
+
|
|
17
28
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
29
|
+
|
|
18
30
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
31
|
+
|
|
19
32
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
33
|
+
|
|
20
34
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
35
|
+
|
|
21
36
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
37
|
+
|
|
22
38
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
39
|
+
|
|
23
40
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
41
|
+
|
|
24
42
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
43
|
+
|
|
25
44
|
var UserItem = /*#__PURE__*/function (_PureComponent) {
|
|
26
45
|
_inherits(UserItem, _PureComponent);
|
|
46
|
+
|
|
27
47
|
var _super = _createSuper(UserItem);
|
|
48
|
+
|
|
28
49
|
function UserItem() {
|
|
29
50
|
var _this;
|
|
51
|
+
|
|
30
52
|
_classCallCheck(this, UserItem);
|
|
53
|
+
|
|
31
54
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
32
55
|
args[_key] = arguments[_key];
|
|
33
56
|
}
|
|
57
|
+
|
|
34
58
|
return _possibleConstructorReturn(_this, (_this = _super.call.apply(_super, [this].concat(args)), _this.handleClick = function () {
|
|
35
59
|
var _this$props = _this.props,
|
|
36
|
-
|
|
37
|
-
|
|
60
|
+
onClick = _this$props.onClick,
|
|
61
|
+
user = _this$props.user;
|
|
38
62
|
onClick && onClick(user);
|
|
39
63
|
}, _this.colorKeywords = function (str) {
|
|
40
64
|
var keyword = _this.props.keyword;
|
|
@@ -49,13 +73,14 @@ var UserItem = /*#__PURE__*/function (_PureComponent) {
|
|
|
49
73
|
}));
|
|
50
74
|
}, _assertThisInitialized(_this)));
|
|
51
75
|
}
|
|
76
|
+
|
|
52
77
|
_createClass(UserItem, [{
|
|
53
78
|
key: "render",
|
|
54
79
|
value: function render() {
|
|
55
80
|
var _this$props2 = this.props,
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
81
|
+
user = _this$props2.user,
|
|
82
|
+
onDeleteUser = _this$props2.onDeleteUser,
|
|
83
|
+
active = _this$props2.active;
|
|
59
84
|
return /*#__PURE__*/_react["default"].createElement(_style.ItemWrapper, {
|
|
60
85
|
onMouseDown: this.handleClick,
|
|
61
86
|
style: active ? {
|
|
@@ -87,6 +112,8 @@ var UserItem = /*#__PURE__*/function (_PureComponent) {
|
|
|
87
112
|
}));
|
|
88
113
|
}
|
|
89
114
|
}]);
|
|
115
|
+
|
|
90
116
|
return UserItem;
|
|
91
117
|
}(_react.PureComponent);
|
|
118
|
+
|
|
92
119
|
exports["default"] = UserItem;
|
|
@@ -1,69 +1,107 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
4
5
|
Object.defineProperty(exports, "__esModule", {
|
|
5
6
|
value: true
|
|
6
7
|
});
|
|
7
8
|
exports["default"] = void 0;
|
|
9
|
+
|
|
8
10
|
var _react = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
9
12
|
var _style = require("./style");
|
|
13
|
+
|
|
10
14
|
var _SearchBar = _interopRequireDefault(require("./components/SearchBar"));
|
|
15
|
+
|
|
11
16
|
var _SingleMode = _interopRequireDefault(require("./components/SingleMode"));
|
|
17
|
+
|
|
12
18
|
var _MultiMode = _interopRequireDefault(require("./components/MultiMode"));
|
|
19
|
+
|
|
13
20
|
var _getLocale = require("../../utils/getLocale");
|
|
21
|
+
|
|
14
22
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
23
|
+
|
|
15
24
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
25
|
+
|
|
16
26
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
27
|
+
|
|
17
28
|
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
29
|
+
|
|
18
30
|
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
31
|
+
|
|
19
32
|
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
33
|
+
|
|
20
34
|
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
|
|
35
|
+
|
|
21
36
|
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
37
|
+
|
|
22
38
|
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
39
|
+
|
|
23
40
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
41
|
+
|
|
24
42
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
43
|
+
|
|
25
44
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
45
|
+
|
|
26
46
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
47
|
+
|
|
27
48
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
49
|
+
|
|
28
50
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
51
|
+
|
|
29
52
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
53
|
+
|
|
30
54
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
55
|
+
|
|
31
56
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
57
|
+
|
|
32
58
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
59
|
+
|
|
33
60
|
var UserSelector = /*#__PURE__*/function (_PureComponent) {
|
|
34
61
|
_inherits(UserSelector, _PureComponent);
|
|
62
|
+
|
|
35
63
|
var _super = _createSuper(UserSelector);
|
|
64
|
+
|
|
36
65
|
function UserSelector(p) {
|
|
37
66
|
var _this;
|
|
67
|
+
|
|
38
68
|
_classCallCheck(this, UserSelector);
|
|
69
|
+
|
|
39
70
|
_this = _super.call(this, p);
|
|
40
71
|
_this.canSubmit = true;
|
|
72
|
+
|
|
41
73
|
_this.handleSearch = function (txt) {
|
|
42
74
|
_this.setState({
|
|
43
75
|
searchTxt: txt
|
|
44
76
|
});
|
|
45
77
|
};
|
|
78
|
+
|
|
46
79
|
_this.openMutiMode = function (e) {
|
|
47
80
|
e.nativeEvent.stopImmediatePropagation();
|
|
48
81
|
e.stopPropagation();
|
|
82
|
+
|
|
49
83
|
_this.setState({
|
|
50
|
-
mode: "multi"
|
|
51
|
-
|
|
84
|
+
mode: "multi" // searchTxt:''
|
|
85
|
+
|
|
52
86
|
});
|
|
53
87
|
|
|
54
88
|
_this.search.clear();
|
|
89
|
+
|
|
55
90
|
_this.search.focus();
|
|
56
91
|
};
|
|
92
|
+
|
|
57
93
|
_this.handleSelectUser = function (u) {
|
|
58
94
|
_this.setState({
|
|
59
95
|
selectedUser: [].concat(_toConsumableArray(_this.state.selectedUser), _toConsumableArray(u))
|
|
60
96
|
});
|
|
61
97
|
};
|
|
98
|
+
|
|
62
99
|
_this.handleSelectDept = function (d) {
|
|
63
100
|
_this.setState({
|
|
64
101
|
selectedDept: [].concat(_toConsumableArray(_this.state.selectedDept), [d])
|
|
65
102
|
});
|
|
66
103
|
};
|
|
104
|
+
|
|
67
105
|
_this.handleDeleteUser = function (u) {
|
|
68
106
|
_this.setState({
|
|
69
107
|
selectedUser: _toConsumableArray(_this.state.selectedUser).filter(function (user) {
|
|
@@ -71,6 +109,7 @@ var UserSelector = /*#__PURE__*/function (_PureComponent) {
|
|
|
71
109
|
})
|
|
72
110
|
});
|
|
73
111
|
};
|
|
112
|
+
|
|
74
113
|
_this.handleDeleteDept = function (d) {
|
|
75
114
|
_this.setState({
|
|
76
115
|
selectedDept: _toConsumableArray(_this.state.selectedDept).filter(function (dept) {
|
|
@@ -78,17 +117,21 @@ var UserSelector = /*#__PURE__*/function (_PureComponent) {
|
|
|
78
117
|
})
|
|
79
118
|
});
|
|
80
119
|
};
|
|
120
|
+
|
|
81
121
|
_this.handleClear = function () {
|
|
82
122
|
var _this$state = _this.state,
|
|
83
|
-
|
|
84
|
-
|
|
123
|
+
selectedDept = _this$state.selectedDept,
|
|
124
|
+
selectedUser = _this$state.selectedUser;
|
|
85
125
|
if (!(selectedDept.length > 0) && !(selectedUser.length > 0)) return;
|
|
126
|
+
|
|
86
127
|
_this.setState({
|
|
87
128
|
selectedDept: [],
|
|
88
129
|
selectedUser: []
|
|
89
130
|
});
|
|
90
131
|
};
|
|
132
|
+
|
|
91
133
|
_this.handleSearchConfirm = function () {};
|
|
134
|
+
|
|
92
135
|
_this.handleSubmit = function (u, d) {
|
|
93
136
|
var onSubmit = _this.props.onSubmit;
|
|
94
137
|
if (!_this.canSubmit) return;
|
|
@@ -98,6 +141,7 @@ var UserSelector = /*#__PURE__*/function (_PureComponent) {
|
|
|
98
141
|
}, 300);
|
|
99
142
|
onSubmit && onSubmit(u, d);
|
|
100
143
|
};
|
|
144
|
+
|
|
101
145
|
_this.state = {
|
|
102
146
|
mode: _this.props.mode || "single",
|
|
103
147
|
selectedUser: _this.props.selectedUser || [],
|
|
@@ -105,10 +149,12 @@ var UserSelector = /*#__PURE__*/function (_PureComponent) {
|
|
|
105
149
|
};
|
|
106
150
|
return _this;
|
|
107
151
|
}
|
|
152
|
+
|
|
108
153
|
_createClass(UserSelector, [{
|
|
109
154
|
key: "componentDidUpdate",
|
|
110
155
|
value: function componentDidUpdate(prevProps, prevState) {
|
|
111
156
|
var onOpenMultiMode = this.props.onOpenMultiMode;
|
|
157
|
+
|
|
112
158
|
if (prevState.mode != this.state.mode) {
|
|
113
159
|
onOpenMultiMode && onOpenMultiMode();
|
|
114
160
|
}
|
|
@@ -122,18 +168,19 @@ var UserSelector = /*#__PURE__*/function (_PureComponent) {
|
|
|
122
168
|
key: "render",
|
|
123
169
|
value: function render() {
|
|
124
170
|
var _this2 = this;
|
|
171
|
+
|
|
125
172
|
var _this$state2 = this.state,
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
173
|
+
mode = _this$state2.mode,
|
|
174
|
+
selectedUser = _this$state2.selectedUser,
|
|
175
|
+
searchTxt = _this$state2.searchTxt,
|
|
176
|
+
selectedDept = _this$state2.selectedDept;
|
|
130
177
|
var isSingleMode = mode == "single";
|
|
131
178
|
var _this$props = this.props,
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
179
|
+
onSubmit = _this$props.onSubmit,
|
|
180
|
+
onCancel = _this$props.onCancel,
|
|
181
|
+
multi = _this$props.multi,
|
|
182
|
+
deptSelectable = _this$props.deptSelectable,
|
|
183
|
+
rootSelectable = _this$props.rootSelectable;
|
|
137
184
|
return /*#__PURE__*/_react["default"].createElement(_style.Wrapper, {
|
|
138
185
|
isSingleMode: isSingleMode
|
|
139
186
|
}, /*#__PURE__*/_react["default"].createElement(_SearchBar["default"], {
|
|
@@ -185,8 +232,10 @@ var UserSelector = /*#__PURE__*/function (_PureComponent) {
|
|
|
185
232
|
}, (0, _getLocale.getLocale)("OKR_MyO_Butt_Determine"))]));
|
|
186
233
|
}
|
|
187
234
|
}]);
|
|
235
|
+
|
|
188
236
|
return UserSelector;
|
|
189
237
|
}(_react.PureComponent);
|
|
238
|
+
|
|
190
239
|
exports["default"] = UserSelector;
|
|
191
240
|
UserSelector.defaultProps = {
|
|
192
241
|
multi: true,
|
|
@@ -4,70 +4,125 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.Wrapper = exports.TreeList = exports.TreeHeader = exports.SingleModeWrapper = exports.SingleList = exports.SelectedList = exports.SelectedHeader = exports.SearchIcon = exports.MutiModeWrapper = exports.MutiModeRight = exports.MutiModeLeft = exports.ListWrapper = exports.ListHeader = exports.ListEmptyText = exports.List = exports.LinkWrapper = exports.ItemWrapper = exports.ItemTextContent = exports.ItemText = exports.ItemName = exports.InputWrapper = exports.Input = exports.Footer = exports.EmptyWrapper = exports.EmptyText = exports.DepartmentListWrapper = exports.ClearBtn = exports.CleanBtn = exports.Btn = exports.AdvancedModLink = void 0;
|
|
7
|
+
|
|
7
8
|
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
9
|
+
|
|
8
10
|
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12, _templateObject13, _templateObject14, _templateObject15, _templateObject16, _templateObject17, _templateObject18, _templateObject19, _templateObject20, _templateObject21, _templateObject22, _templateObject23, _templateObject24, _templateObject25, _templateObject26, _templateObject27, _templateObject28, _templateObject29, _templateObject30;
|
|
11
|
+
|
|
9
12
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
13
|
+
|
|
10
14
|
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
15
|
+
|
|
11
16
|
var Wrapper = _styledComponents["default"].div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n overflow: hidden;\n background-color: #fff;\n box-shadow: 0 3px 10px 0 rgba(0,0,0,0.15);\n border-radius: 5px;\n height: 415px;\n padding: 0 15px;\n width: ", ";\n box-sizing: border-box;\n display: flex;\n flex-direction: column;\n /* transition: width .2s ease,margin .2s ease; */\n /* margin-left: ", "; */\n"])), function (p) {
|
|
12
17
|
return p.isSingleMode ? "310px" : "538px";
|
|
13
18
|
}, function (p) {
|
|
14
19
|
return p.isSingleMode ? "0px" : "-228px";
|
|
15
20
|
});
|
|
21
|
+
|
|
16
22
|
exports.Wrapper = Wrapper;
|
|
23
|
+
|
|
17
24
|
var InputWrapper = _styledComponents["default"].div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n position: relative;\n box-sizing: border-box;\n height: 30px;\n display: flex;\n align-items: center;\n margin: 10px 0;\n padding: 15px 0;\n border: 1px solid #E9ECF0;\n border-radius: 5px;\n transition: all .3s ease-in;\n overflow: hidden;\n border-color: ", ";\n ", ";\n &:hover {\n border-color: #2879ff;\n }\n"])), function (p) {
|
|
18
25
|
return p.focus ? "#2879ff!important" : "#E9ECF0";
|
|
19
26
|
}, function (p) {
|
|
20
27
|
return p.focus ? "box-shadow:0 0 6px 0px rgba(40, 121, 255, 0.3)" : "";
|
|
21
28
|
});
|
|
29
|
+
|
|
22
30
|
exports.InputWrapper = InputWrapper;
|
|
31
|
+
|
|
23
32
|
var Input = _styledComponents["default"].input(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n flex: 1;\n border: none;\n outline: none;\n font-size: 14px;\n height: 30px;\n line-height: 30px;\n"])));
|
|
33
|
+
|
|
24
34
|
exports.Input = Input;
|
|
35
|
+
|
|
25
36
|
var SearchIcon = _styledComponents["default"].i(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n color: ", ";\n margin-right: 5px;\n font-size: 11px;\n background: #fff;\n margin-left: 11px;\n"])), function (p) {
|
|
26
37
|
return p.active ? "#2879ff !important" : "#8f9ca6";
|
|
27
38
|
});
|
|
39
|
+
|
|
28
40
|
exports.SearchIcon = SearchIcon;
|
|
41
|
+
|
|
29
42
|
var CleanBtn = _styledComponents["default"].a(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n color: #acb7bf;\n font-size: 14px;\n margin-right: 5px;\n &:hover {\n color: #F05E5E;\n }\n"])));
|
|
43
|
+
|
|
30
44
|
exports.CleanBtn = CleanBtn;
|
|
45
|
+
|
|
31
46
|
var ItemWrapper = _styledComponents["default"].div(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["\n height: 46px;\n display: flex;\n align-items: center;\n cursor: pointer;\n &:hover {\n background-color: #f5f8fa;\n > i {\n display: inline-block;\n }\n }\n > i {\n display: none;\n color: #acb7bf;\n &:hover {\n color: #F05E5E;\n }\n }\n"])));
|
|
47
|
+
|
|
32
48
|
exports.ItemWrapper = ItemWrapper;
|
|
49
|
+
|
|
33
50
|
var ItemTextContent = _styledComponents["default"].div(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n height: 100%;\n width: calc(100% - 64px);\n display: flex;\n flex-direction: column;\n justify-content: center;\n margin-left: 5px;\n"])));
|
|
51
|
+
|
|
34
52
|
exports.ItemTextContent = ItemTextContent;
|
|
53
|
+
|
|
35
54
|
var ItemName = _styledComponents["default"].span(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["\n color: #36434d;\n font-size: 12px;\n margin-right: 12px;\n"])));
|
|
55
|
+
|
|
36
56
|
exports.ItemName = ItemName;
|
|
57
|
+
|
|
37
58
|
var ItemText = _styledComponents["default"].div(_templateObject9 || (_templateObject9 = _taggedTemplateLiteral(["\n color: #acb7bf;\n font-size: 12px;\n line-height: 20px;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n"])));
|
|
59
|
+
|
|
38
60
|
exports.ItemText = ItemText;
|
|
61
|
+
|
|
39
62
|
var SingleModeWrapper = _styledComponents["default"].div(_templateObject10 || (_templateObject10 = _taggedTemplateLiteral(["\n /* height: 365px; */\n height: 0;\n flex: 1;\n box-sizing: border-box;\n display: flex;\n flex-direction: column;\n padding: 5px 0;\n overflow: hidden;\n"])));
|
|
63
|
+
|
|
40
64
|
exports.SingleModeWrapper = SingleModeWrapper;
|
|
65
|
+
|
|
41
66
|
var SingleList = _styledComponents["default"].div(_templateObject11 || (_templateObject11 = _taggedTemplateLiteral(["\n flex: 1;\n"])));
|
|
67
|
+
|
|
42
68
|
exports.SingleList = SingleList;
|
|
69
|
+
|
|
43
70
|
var LinkWrapper = _styledComponents["default"].div(_templateObject12 || (_templateObject12 = _taggedTemplateLiteral(["\n display: flex;\n margin: 10px 0;\n justify-content: flex-end;\n"])));
|
|
71
|
+
|
|
44
72
|
exports.LinkWrapper = LinkWrapper;
|
|
73
|
+
|
|
45
74
|
var AdvancedModLink = _styledComponents["default"].a(_templateObject13 || (_templateObject13 = _taggedTemplateLiteral(["\n color: #2879ff;\n font-size: 14px;\n display: flex;\n align-items: center;\n\n :hover {\n color: #1b6cf1;\n }\n"])));
|
|
75
|
+
|
|
46
76
|
exports.AdvancedModLink = AdvancedModLink;
|
|
77
|
+
|
|
47
78
|
var Footer = _styledComponents["default"].div(_templateObject14 || (_templateObject14 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: flex-end;\n align-items: center;\n"])));
|
|
79
|
+
|
|
48
80
|
exports.Footer = Footer;
|
|
81
|
+
|
|
49
82
|
var MutiModeWrapper = _styledComponents["default"].div(_templateObject15 || (_templateObject15 = _taggedTemplateLiteral(["\n display: flex;\n flex: 1;\n height: 0;\n overflow: hidden;\n"])));
|
|
83
|
+
|
|
50
84
|
exports.MutiModeWrapper = MutiModeWrapper;
|
|
85
|
+
|
|
51
86
|
var MutiModeLeft = _styledComponents["default"].div(_templateObject16 || (_templateObject16 = _taggedTemplateLiteral(["\n /* flex: 1; */\n width: 50%;\n border-right: 1px solid #E9ECF0;\n box-sizing: border-box;\n padding-right: 10px;\n /* width: 0; */\n"])));
|
|
87
|
+
|
|
52
88
|
exports.MutiModeLeft = MutiModeLeft;
|
|
89
|
+
|
|
53
90
|
var MutiModeRight = _styledComponents["default"].div(_templateObject17 || (_templateObject17 = _taggedTemplateLiteral(["\n /* flex: 1; */\n width: 50%;\n box-sizing: border-box;\n padding-left: 10px;\n /* width: 0; */\n display: flex;\n flex-direction: column;\n"])));
|
|
91
|
+
|
|
54
92
|
exports.MutiModeRight = MutiModeRight;
|
|
93
|
+
|
|
55
94
|
var ListWrapper = _styledComponents["default"].div(_templateObject18 || (_templateObject18 = _taggedTemplateLiteral(["\n height: 100%;\n display: flex;\n flex-direction: column;\n"])));
|
|
95
|
+
|
|
56
96
|
exports.ListWrapper = ListWrapper;
|
|
97
|
+
|
|
57
98
|
var ListHeader = _styledComponents["default"].div(_templateObject19 || (_templateObject19 = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 5px 0 5px 10px;\n margin-top: 0;\n margin-bottom: 0;\n font-size: 12px;\n line-height: 20px;\n color: #36434d;\n i {\n display: none;\n cursor: pointer;\n margin-right: 15px;\n color: #acb7bf;\n font-size: 14px;\n &:hover {\n color: #2879ff;\n }\n }\n &:hover {\n background-color: #f5f8fa;\n i {\n display: block;\n }\n }\n"])));
|
|
99
|
+
|
|
58
100
|
exports.ListHeader = ListHeader;
|
|
101
|
+
|
|
59
102
|
var SelectedHeader = _styledComponents["default"].div(_templateObject20 || (_templateObject20 = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-top: 0;\n margin-bottom: 10px;\n color: #36434d;\n font-size: 12px;\n line-height: 20px;\n padding: 5px 0;\n"])));
|
|
103
|
+
|
|
60
104
|
exports.SelectedHeader = SelectedHeader;
|
|
105
|
+
|
|
61
106
|
var List = _styledComponents["default"].div(_templateObject21 || (_templateObject21 = _taggedTemplateLiteral(["\n flex: 1;\n height: 0;\n overflow: hidden;\n"])));
|
|
107
|
+
|
|
62
108
|
exports.List = List;
|
|
109
|
+
|
|
63
110
|
var TreeHeader = _styledComponents["default"].div(_templateObject22 || (_templateObject22 = _taggedTemplateLiteral(["\n padding-left: 10px;\n display: flex;\n height: 30px;\n align-items: center;\n cursor: pointer;\n color: #36434d;\n justify-content: space-between;\n &:hover {\n background-color: #f5f8fa;\n .tu-icon-add2,\n .tu-icon-cross {\n display: inline-block;\n }\n }\n div {\n display: flex;\n align-items: center;\n }\n .tu-icon-cross {\n display: none;\n cursor: pointer;\n margin-right: 15px;\n color: #acb7bf;\n font-size: 14px;\n &:hover {\n color: #F05E5E;\n }\n }\n .tu-icon-add2 {\n display: none;\n cursor: pointer;\n margin-right: 15px;\n color: #acb7bf;\n font-size: 14px;\n &:hover {\n color: #2879ff;\n }\n }\n span {\n font-size: 12px;\n display: inline-block;\n margin-left: 10px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n }\n i {\n transition: transform 0.3s ease;\n }\n"])));
|
|
111
|
+
|
|
64
112
|
exports.TreeHeader = TreeHeader;
|
|
113
|
+
|
|
65
114
|
var TreeList = _styledComponents["default"].div(_templateObject23 || (_templateObject23 = _taggedTemplateLiteral(["\n padding-left: 10px;\n"])));
|
|
115
|
+
|
|
66
116
|
exports.TreeList = TreeList;
|
|
117
|
+
|
|
67
118
|
var DepartmentListWrapper = _styledComponents["default"].div(_templateObject24 || (_templateObject24 = _taggedTemplateLiteral(["\n height: 100%;\n"])));
|
|
119
|
+
|
|
68
120
|
exports.DepartmentListWrapper = DepartmentListWrapper;
|
|
121
|
+
|
|
69
122
|
var SelectedList = _styledComponents["default"].div(_templateObject25 || (_templateObject25 = _taggedTemplateLiteral(["\n flex: 1;\n height: 0;\n overflow: hidden;\n"])));
|
|
123
|
+
|
|
70
124
|
exports.SelectedList = SelectedList;
|
|
125
|
+
|
|
71
126
|
var ClearBtn = _styledComponents["default"].a(_templateObject26 || (_templateObject26 = _taggedTemplateLiteral(["\n cursor: ", ";\n color: ", ";\n &:hover {\n color: ", ";\n }\n"])), function (p) {
|
|
72
127
|
return p.active ? "pointer" : "not-allowed";
|
|
73
128
|
}, function (p) {
|
|
@@ -75,12 +130,21 @@ var ClearBtn = _styledComponents["default"].a(_templateObject26 || (_templateObj
|
|
|
75
130
|
}, function (p) {
|
|
76
131
|
return p.active ? "#1b6cf1" : "#acb7bf";
|
|
77
132
|
});
|
|
133
|
+
|
|
78
134
|
exports.ClearBtn = ClearBtn;
|
|
135
|
+
|
|
79
136
|
var EmptyText = _styledComponents["default"].p(_templateObject27 || (_templateObject27 = _taggedTemplateLiteral(["\n font-size: 20px;\n color: #e4ebf0;\n line-height: 36px;\n margin-top: 95px;\n text-align: center;\n"])));
|
|
137
|
+
|
|
80
138
|
exports.EmptyText = EmptyText;
|
|
139
|
+
|
|
81
140
|
var Btn = _styledComponents["default"].a(_templateObject28 || (_templateObject28 = _taggedTemplateLiteral(["\n display: inline-block;\n color: #36434d;\n background-color: #f5f8fa;\n border-radius: 2px;\n font-size: 12px;\n line-height: 20px;\n padding: 3px 10px;\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);\n transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s;\n cursor:pointer;\n &:hover {\n color: #36434d;\n box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);\n transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s;\n }\n"])));
|
|
141
|
+
|
|
82
142
|
exports.Btn = Btn;
|
|
143
|
+
|
|
83
144
|
var EmptyWrapper = _styledComponents["default"].div(_templateObject29 || (_templateObject29 = _taggedTemplateLiteral(["\n width: 100%;\n height: 100%;\n display: flex;\n align-items: center;\n justify-content: center;\n flex-direction: column;\n"])));
|
|
145
|
+
|
|
84
146
|
exports.EmptyWrapper = EmptyWrapper;
|
|
147
|
+
|
|
85
148
|
var ListEmptyText = _styledComponents["default"].p(_templateObject30 || (_templateObject30 = _taggedTemplateLiteral(["\n color: #bbbfee;\n font-size: 14px;\n line-height: 1.2;\n text-align: center;\n"])));
|
|
149
|
+
|
|
86
150
|
exports.ListEmptyText = ListEmptyText;
|
|
@@ -4,66 +4,88 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports["default"] = void 0;
|
|
7
|
+
|
|
7
8
|
var _event = _interopRequireDefault(require("./event"));
|
|
9
|
+
|
|
8
10
|
var _dom = require("../dom");
|
|
11
|
+
|
|
9
12
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
13
|
+
|
|
10
14
|
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
15
|
+
|
|
11
16
|
var prefixes = ["-webkit-", "-moz-", "-o-", "ms-", ""];
|
|
17
|
+
|
|
12
18
|
function getStyleProperty(node, name) {
|
|
13
19
|
// old ff need null, https://developer.mozilla.org/en-US/docs/Web/API/Window/getComputedStyle
|
|
14
20
|
var style = window.getComputedStyle(node, null);
|
|
15
21
|
var ret = "";
|
|
22
|
+
|
|
16
23
|
for (var i = 0; i < prefixes.length; i++) {
|
|
17
24
|
ret = style.getPropertyValue(prefixes[i] + name);
|
|
25
|
+
|
|
18
26
|
if (ret) {
|
|
19
27
|
break;
|
|
20
28
|
}
|
|
21
29
|
}
|
|
30
|
+
|
|
22
31
|
return ret;
|
|
23
32
|
}
|
|
33
|
+
|
|
24
34
|
function checkAnimation(node) {
|
|
25
35
|
var transitionDelay = parseFloat(getStyleProperty(node, "transition-delay")) || 0;
|
|
26
36
|
var transitionDuration = parseFloat(getStyleProperty(node, "transition-duration")) || 0;
|
|
27
37
|
var animationDelay = parseFloat(getStyleProperty(node, "animation-delay")) || 0;
|
|
28
38
|
var animationDuration = parseFloat(getStyleProperty(node, "animation-duration")) || 0;
|
|
39
|
+
|
|
29
40
|
if (transitionDelay || transitionDuration || animationDelay || animationDuration) {
|
|
30
41
|
return;
|
|
31
42
|
}
|
|
43
|
+
|
|
32
44
|
setTimeout(function () {
|
|
33
45
|
node.endAniListener && node.endAniListener();
|
|
34
46
|
}, 0);
|
|
35
47
|
}
|
|
48
|
+
|
|
36
49
|
var animation = function animation(node, name, callback) {
|
|
37
50
|
var className = name;
|
|
38
51
|
var activeName;
|
|
39
52
|
var start;
|
|
40
53
|
var end = callback;
|
|
54
|
+
|
|
41
55
|
if (name && _typeof(name) === "object") {
|
|
42
56
|
className = name.name;
|
|
43
57
|
activeName = name.active;
|
|
44
58
|
} else {
|
|
45
59
|
activeName = "".concat(name, "-active");
|
|
46
60
|
}
|
|
61
|
+
|
|
47
62
|
if (callback && _typeof(callback) === "object") {
|
|
48
63
|
start = callback.start;
|
|
49
64
|
end = callback.end;
|
|
50
65
|
}
|
|
66
|
+
|
|
51
67
|
if (node.endAniListener) {
|
|
52
68
|
node.endAniListener();
|
|
53
69
|
}
|
|
70
|
+
|
|
54
71
|
if (node.activeTimer) {
|
|
55
72
|
clearTimeout(node.activeTimer);
|
|
56
73
|
node.activeTimer = null;
|
|
57
74
|
}
|
|
75
|
+
|
|
58
76
|
node.endAniListener = function (e) {
|
|
59
77
|
if (e && e.target != node) return;
|
|
60
78
|
(0, _dom.removeClass)(node, className);
|
|
61
79
|
(0, _dom.removeClass)(node, activeName);
|
|
80
|
+
|
|
62
81
|
_event["default"].removeEndListener(node, node.endAniListener);
|
|
82
|
+
|
|
63
83
|
node.endAniListener = null;
|
|
64
84
|
end && end();
|
|
65
85
|
};
|
|
86
|
+
|
|
66
87
|
_event["default"].addEndListener(node, node.endAniListener);
|
|
88
|
+
|
|
67
89
|
(0, _dom.addClass)(node, className);
|
|
68
90
|
node.activeTimer = setTimeout(function () {
|
|
69
91
|
(0, _dom.addClass)(node, activeName);
|
|
@@ -76,5 +98,6 @@ var animation = function animation(node, name, callback) {
|
|
|
76
98
|
}
|
|
77
99
|
};
|
|
78
100
|
};
|
|
101
|
+
|
|
79
102
|
var _default = animation;
|
|
80
103
|
exports["default"] = _default;
|
|
@@ -4,6 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports["default"] = void 0;
|
|
7
|
+
|
|
7
8
|
/*
|
|
8
9
|
* @Author: lianghaosen
|
|
9
10
|
* @Date: 2018-12-03 11:47:08
|
|
@@ -16,17 +17,21 @@ var startEvents = [];
|
|
|
16
17
|
var endEvents = [];
|
|
17
18
|
var test = document.createElement("div");
|
|
18
19
|
var style = test.style;
|
|
20
|
+
|
|
19
21
|
function walkPrefix(type, eventsArr) {
|
|
20
22
|
for (var _i = 0, _EVENTS_NAME = EVENTS_NAME; _i < _EVENTS_NAME.length; _i++) {
|
|
21
23
|
var name = _EVENTS_NAME[_i];
|
|
22
24
|
var withoutPrefix = name.toLowerCase();
|
|
25
|
+
|
|
23
26
|
if (withoutPrefix in style) {
|
|
24
27
|
eventsArr.push((name + type).toLocaleLowerCase());
|
|
25
28
|
continue;
|
|
26
29
|
}
|
|
30
|
+
|
|
27
31
|
for (var _i2 = 0, _prefixArr = prefixArr; _i2 < _prefixArr.length; _i2++) {
|
|
28
32
|
var prefix = _prefixArr[_i2];
|
|
29
33
|
var evName = prefix + name;
|
|
34
|
+
|
|
30
35
|
if (evName in style) {
|
|
31
36
|
eventsArr.push(evName + type);
|
|
32
37
|
break;
|
|
@@ -34,6 +39,7 @@ function walkPrefix(type, eventsArr) {
|
|
|
34
39
|
}
|
|
35
40
|
}
|
|
36
41
|
}
|
|
42
|
+
|
|
37
43
|
walkPrefix("Start", startEvents);
|
|
38
44
|
walkPrefix("End", endEvents);
|
|
39
45
|
var _default = {
|
|
@@ -44,6 +50,7 @@ var _default = {
|
|
|
44
50
|
setTimeout(callback, 0);
|
|
45
51
|
return;
|
|
46
52
|
}
|
|
53
|
+
|
|
47
54
|
startEvents.forEach(function (evName) {
|
|
48
55
|
node.addEventListener(evName, callback, false);
|
|
49
56
|
});
|
|
@@ -53,6 +60,7 @@ var _default = {
|
|
|
53
60
|
setTimeout(callback, 0);
|
|
54
61
|
return;
|
|
55
62
|
}
|
|
63
|
+
|
|
56
64
|
endEvents.forEach(function (evName) {
|
|
57
65
|
node.addEventListener(evName, callback);
|
|
58
66
|
});
|
|
@@ -4,13 +4,16 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports["default"] = TextHighlighter;
|
|
7
|
+
|
|
7
8
|
function TextHighlighter(val, keyWords, HighlightColor) {
|
|
8
9
|
val = "".concat(val);
|
|
9
10
|
var color = HighlightColor || "#dd182b";
|
|
10
11
|
var reg = new RegExp(keyWords, "g");
|
|
12
|
+
|
|
11
13
|
if (val.indexOf(keyWords) !== -1 && keyWords !== "") {
|
|
12
14
|
// 找到并且不为空
|
|
13
15
|
return val.replace(reg, "<font color=\"".concat(color, "\">").concat(keyWords, "</font>"));
|
|
14
16
|
}
|
|
17
|
+
|
|
15
18
|
return val;
|
|
16
19
|
}
|
|
@@ -5,21 +5,23 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.addClass = addClass;
|
|
7
7
|
exports.removeClass = removeClass;
|
|
8
|
+
|
|
8
9
|
/*
|
|
9
10
|
* @Author: lianghaosen
|
|
10
11
|
* @Date: 2018-12-03 15:49:28
|
|
11
12
|
* @Last Modified by: lianghaosen
|
|
12
13
|
* @Last Modified time: 2018-12-04 11:16:16
|
|
13
14
|
*/
|
|
14
|
-
|
|
15
15
|
function addClass(node, className) {
|
|
16
16
|
node.className += " ".concat(className);
|
|
17
17
|
}
|
|
18
|
+
|
|
18
19
|
function removeClass(node, className) {
|
|
19
20
|
var arr = className.split(/\s+/);
|
|
20
21
|
var nArr = node.className.split(/\s+/);
|
|
21
22
|
arr.forEach(function (a) {
|
|
22
23
|
var index = nArr.indexOf(a);
|
|
24
|
+
|
|
23
25
|
if (index !== -1) {
|
|
24
26
|
nArr.splice(index, 1);
|
|
25
27
|
}
|