@titaui/pc 1.16.66 → 1.16.67
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 +111 -62
- 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.js +77 -44
- package/lib/components/guide-tip/index.js +43 -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.css +5 -2
- package/lib/components/nav-top/components/version/index.js +19 -3
- package/lib/components/nav-top/constant.js +8 -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 +69 -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 +37 -12
- 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/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-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 +5 -0
- package/lib/components/version-change-modal/index.js +63 -13
- 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 +127 -0
- package/lib/pages/aha2021/index.css +0 -2
- 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/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 +54 -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
|
@@ -4,121 +4,169 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports["default"] = void 0;
|
|
7
|
+
|
|
7
8
|
var _lodash = _interopRequireDefault(require("lodash.throttle"));
|
|
9
|
+
|
|
8
10
|
var _lodash2 = _interopRequireDefault(require("lodash.debounce"));
|
|
11
|
+
|
|
9
12
|
var _lodash3 = _interopRequireDefault(require("lodash.memoize"));
|
|
13
|
+
|
|
10
14
|
var _resizeObserverPolyfill = _interopRequireDefault(require("resize-observer-polyfill"));
|
|
15
|
+
|
|
11
16
|
var _canUseDom = _interopRequireDefault(require("can-use-dom"));
|
|
17
|
+
|
|
12
18
|
var _scrollbarWidth = _interopRequireDefault(require("./scrollbar-width"));
|
|
19
|
+
|
|
13
20
|
var _helpers = require("./helpers");
|
|
21
|
+
|
|
14
22
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
23
|
+
|
|
15
24
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
25
|
+
|
|
16
26
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
27
|
+
|
|
17
28
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
29
|
+
|
|
18
30
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
31
|
+
|
|
19
32
|
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); } }
|
|
33
|
+
|
|
20
34
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
35
|
+
|
|
21
36
|
var SimpleBar = /*#__PURE__*/function () {
|
|
22
37
|
function SimpleBar(element, options) {
|
|
23
38
|
var _this = this;
|
|
39
|
+
|
|
24
40
|
_classCallCheck(this, SimpleBar);
|
|
41
|
+
|
|
25
42
|
this.onScroll = function () {
|
|
26
43
|
var elWindow = (0, _helpers.getElementWindow)(_this.el);
|
|
44
|
+
|
|
27
45
|
if (!_this.scrollXTicking) {
|
|
28
46
|
elWindow.requestAnimationFrame(_this.scrollX);
|
|
29
47
|
_this.scrollXTicking = true;
|
|
30
48
|
}
|
|
49
|
+
|
|
31
50
|
if (!_this.scrollYTicking) {
|
|
32
51
|
elWindow.requestAnimationFrame(_this.scrollY);
|
|
33
52
|
_this.scrollYTicking = true;
|
|
34
53
|
}
|
|
35
54
|
};
|
|
55
|
+
|
|
36
56
|
this.scrollX = function () {
|
|
37
57
|
if (_this.axis.x.isOverflowing) {
|
|
38
58
|
_this.showScrollbar("x");
|
|
59
|
+
|
|
39
60
|
_this.positionScrollbar("x");
|
|
40
61
|
}
|
|
62
|
+
|
|
41
63
|
_this.scrollXTicking = false;
|
|
42
64
|
};
|
|
65
|
+
|
|
43
66
|
this.scrollY = function () {
|
|
44
67
|
if (_this.axis.y.isOverflowing) {
|
|
45
68
|
_this.showScrollbar("y");
|
|
69
|
+
|
|
46
70
|
_this.positionScrollbar("y");
|
|
47
71
|
}
|
|
72
|
+
|
|
48
73
|
_this.scrollYTicking = false;
|
|
49
74
|
};
|
|
75
|
+
|
|
50
76
|
this.onMouseEnter = function () {
|
|
51
77
|
_this.showScrollbar("x");
|
|
78
|
+
|
|
52
79
|
_this.showScrollbar("y");
|
|
53
80
|
};
|
|
81
|
+
|
|
54
82
|
this.onMouseMove = function (e) {
|
|
55
83
|
_this.mouseX = e.clientX;
|
|
56
84
|
_this.mouseY = e.clientY;
|
|
85
|
+
|
|
57
86
|
if (_this.axis.x.isOverflowing || _this.axis.x.forceVisible) {
|
|
58
87
|
_this.onMouseMoveForAxis("x");
|
|
59
88
|
}
|
|
89
|
+
|
|
60
90
|
if (_this.axis.y.isOverflowing || _this.axis.y.forceVisible) {
|
|
61
91
|
_this.onMouseMoveForAxis("y");
|
|
62
92
|
}
|
|
63
93
|
};
|
|
94
|
+
|
|
64
95
|
this.onMouseLeave = function () {
|
|
65
96
|
_this.onMouseMove.cancel();
|
|
97
|
+
|
|
66
98
|
if (_this.axis.x.isOverflowing || _this.axis.x.forceVisible) {
|
|
67
99
|
_this.onMouseLeaveForAxis("x");
|
|
68
100
|
}
|
|
101
|
+
|
|
69
102
|
if (_this.axis.y.isOverflowing || _this.axis.y.forceVisible) {
|
|
70
103
|
_this.onMouseLeaveForAxis("y");
|
|
71
104
|
}
|
|
105
|
+
|
|
72
106
|
_this.mouseX = -1;
|
|
73
107
|
_this.mouseY = -1;
|
|
74
108
|
};
|
|
109
|
+
|
|
75
110
|
this.onWindowResize = function () {
|
|
76
111
|
// Recalculate scrollbarWidth in case it's a zoom
|
|
77
112
|
_this.scrollbarWidth = _this.getScrollbarWidth();
|
|
113
|
+
|
|
78
114
|
_this.hideNativeScrollbar();
|
|
79
115
|
};
|
|
116
|
+
|
|
80
117
|
this.hideScrollbars = function () {
|
|
81
118
|
_this.axis.x.track.rect = _this.axis.x.track.el.getBoundingClientRect();
|
|
82
119
|
_this.axis.y.track.rect = _this.axis.y.track.el.getBoundingClientRect();
|
|
120
|
+
|
|
83
121
|
if (!_this.isWithinBounds(_this.axis.y.track.rect)) {
|
|
84
122
|
_this.axis.y.scrollbar.el.classList.remove(_this.classNames.visible);
|
|
123
|
+
|
|
85
124
|
_this.axis.y.isVisible = false;
|
|
86
125
|
}
|
|
126
|
+
|
|
87
127
|
if (!_this.isWithinBounds(_this.axis.x.track.rect)) {
|
|
88
128
|
_this.axis.x.scrollbar.el.classList.remove(_this.classNames.visible);
|
|
129
|
+
|
|
89
130
|
_this.axis.x.isVisible = false;
|
|
90
131
|
}
|
|
91
132
|
};
|
|
133
|
+
|
|
92
134
|
this.onPointerEvent = function (e) {
|
|
93
135
|
var isWithinTrackXBounds;
|
|
94
136
|
var isWithinTrackYBounds;
|
|
95
137
|
_this.axis.x.track.rect = _this.axis.x.track.el.getBoundingClientRect();
|
|
96
138
|
_this.axis.y.track.rect = _this.axis.y.track.el.getBoundingClientRect();
|
|
139
|
+
|
|
97
140
|
if (_this.axis.x.isOverflowing || _this.axis.x.forceVisible) {
|
|
98
141
|
isWithinTrackXBounds = _this.isWithinBounds(_this.axis.x.track.rect);
|
|
99
142
|
}
|
|
143
|
+
|
|
100
144
|
if (_this.axis.y.isOverflowing || _this.axis.y.forceVisible) {
|
|
101
145
|
isWithinTrackYBounds = _this.isWithinBounds(_this.axis.y.track.rect);
|
|
102
|
-
}
|
|
146
|
+
} // If any pointer event is called on the scrollbar
|
|
147
|
+
|
|
103
148
|
|
|
104
|
-
// If any pointer event is called on the scrollbar
|
|
105
149
|
if (isWithinTrackXBounds || isWithinTrackYBounds) {
|
|
106
150
|
// Preventing the event's default action stops text being
|
|
107
151
|
// selectable during the drag.
|
|
108
|
-
e.preventDefault();
|
|
109
|
-
|
|
152
|
+
e.preventDefault(); // Prevent event leaking
|
|
153
|
+
|
|
110
154
|
e.stopPropagation();
|
|
155
|
+
|
|
111
156
|
if (e.type === "mousedown") {
|
|
112
157
|
if (isWithinTrackXBounds) {
|
|
113
158
|
_this.axis.x.scrollbar.rect = _this.axis.x.scrollbar.el.getBoundingClientRect();
|
|
159
|
+
|
|
114
160
|
if (_this.isWithinBounds(_this.axis.x.scrollbar.rect)) {
|
|
115
161
|
_this.onDragStart(e, "x");
|
|
116
162
|
} else {
|
|
117
163
|
_this.onTrackClick(e, "x");
|
|
118
164
|
}
|
|
119
165
|
}
|
|
166
|
+
|
|
120
167
|
if (isWithinTrackYBounds) {
|
|
121
168
|
_this.axis.y.scrollbar.rect = _this.axis.y.scrollbar.el.getBoundingClientRect();
|
|
169
|
+
|
|
122
170
|
if (_this.isWithinBounds(_this.axis.y.scrollbar.rect)) {
|
|
123
171
|
_this.onDragStart(e, "y");
|
|
124
172
|
} else {
|
|
@@ -128,6 +176,7 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
128
176
|
}
|
|
129
177
|
}
|
|
130
178
|
};
|
|
179
|
+
|
|
131
180
|
this.drag = function (e) {
|
|
132
181
|
var eventOffset;
|
|
133
182
|
var track = _this.axis[_this.draggedAxis].track;
|
|
@@ -137,33 +186,36 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
137
186
|
var hostSize = parseInt(_this.elStyles[_this.axis[_this.draggedAxis].sizeAttr], 10);
|
|
138
187
|
e.preventDefault();
|
|
139
188
|
e.stopPropagation();
|
|
189
|
+
|
|
140
190
|
if (_this.draggedAxis === "y") {
|
|
141
191
|
eventOffset = e.pageY;
|
|
142
192
|
} else {
|
|
143
193
|
eventOffset = e.pageX;
|
|
144
|
-
}
|
|
194
|
+
} // Calculate how far the user's mouse is from the top/left of the scrollbar (minus the dragOffset).
|
|
195
|
+
|
|
145
196
|
|
|
146
|
-
|
|
147
|
-
var dragPos = eventOffset - track.rect[_this.axis[_this.draggedAxis].offsetAttr] - _this.axis[_this.draggedAxis].dragOffset;
|
|
148
|
-
// Convert the mouse position into a percentage of the scrollbar height/width.
|
|
149
|
-
var dragPerc = dragPos / (trackSize - scrollbar.size);
|
|
197
|
+
var dragPos = eventOffset - track.rect[_this.axis[_this.draggedAxis].offsetAttr] - _this.axis[_this.draggedAxis].dragOffset; // Convert the mouse position into a percentage of the scrollbar height/width.
|
|
150
198
|
|
|
151
|
-
// Scroll the content by the same percentage.
|
|
152
|
-
|
|
199
|
+
var dragPerc = dragPos / (trackSize - scrollbar.size); // Scroll the content by the same percentage.
|
|
200
|
+
|
|
201
|
+
var scrollPos = dragPerc * (contentSize - hostSize); // Fix browsers inconsistency on RTL
|
|
153
202
|
|
|
154
|
-
// Fix browsers inconsistency on RTL
|
|
155
203
|
if (_this.draggedAxis === "x") {
|
|
156
204
|
scrollPos = _this.isRtl && SimpleBar.getRtlHelpers().isRtlScrollbarInverted ? scrollPos - (trackSize + scrollbar.size) : scrollPos;
|
|
157
205
|
scrollPos = _this.isRtl && SimpleBar.getRtlHelpers().isRtlScrollingInverted ? -scrollPos : scrollPos;
|
|
158
206
|
}
|
|
207
|
+
|
|
159
208
|
_this.contentWrapperEl[_this.axis[_this.draggedAxis].scrollOffsetAttr] = scrollPos;
|
|
160
209
|
};
|
|
210
|
+
|
|
161
211
|
this.onEndDrag = function (e) {
|
|
162
212
|
var elDocument = (0, _helpers.getElementDocument)(_this.el);
|
|
163
213
|
var elWindow = (0, _helpers.getElementWindow)(_this.el);
|
|
164
214
|
e.preventDefault();
|
|
165
215
|
e.stopPropagation();
|
|
216
|
+
|
|
166
217
|
_this.el.classList.remove(_this.classNames.dragging);
|
|
218
|
+
|
|
167
219
|
elDocument.removeEventListener("mousemove", _this.drag, true);
|
|
168
220
|
elDocument.removeEventListener("mouseup", _this.onEndDrag, true);
|
|
169
221
|
_this.removePreventClickId = elWindow.setTimeout(function () {
|
|
@@ -174,10 +226,12 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
174
226
|
_this.removePreventClickId = null;
|
|
175
227
|
});
|
|
176
228
|
};
|
|
229
|
+
|
|
177
230
|
this.preventClick = function (e) {
|
|
178
231
|
e.preventDefault();
|
|
179
232
|
e.stopPropagation();
|
|
180
233
|
};
|
|
234
|
+
|
|
181
235
|
this.el = element;
|
|
182
236
|
this.minScrollbarWidth = 20;
|
|
183
237
|
this.options = _objectSpread(_objectSpread({}, SimpleBar.defaultOptions), options);
|
|
@@ -212,13 +266,13 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
212
266
|
scrollbar: {}
|
|
213
267
|
}
|
|
214
268
|
};
|
|
215
|
-
this.removePreventClickId = null;
|
|
269
|
+
this.removePreventClickId = null; // Don't re-instantiate over an existing one
|
|
216
270
|
|
|
217
|
-
// Don't re-instantiate over an existing one
|
|
218
271
|
if (SimpleBar.instances.has(this.el)) {
|
|
219
272
|
return;
|
|
220
|
-
}
|
|
221
|
-
|
|
273
|
+
} // Tita TODO: 修改 64 到 1,解决卡顿问题
|
|
274
|
+
|
|
275
|
+
|
|
222
276
|
this.recalculate = (0, _lodash["default"])(this.recalculate.bind(this), 1);
|
|
223
277
|
this.onMouseMove = (0, _lodash["default"])(this.onMouseMove.bind(this), 64);
|
|
224
278
|
this.hideScrollbars = (0, _lodash2["default"])(this.hideScrollbars.bind(this), this.options.timeout);
|
|
@@ -228,7 +282,6 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
228
282
|
SimpleBar.getRtlHelpers = (0, _lodash3["default"])(SimpleBar.getRtlHelpers);
|
|
229
283
|
this.init();
|
|
230
284
|
}
|
|
231
|
-
|
|
232
285
|
/**
|
|
233
286
|
* Static properties
|
|
234
287
|
*/
|
|
@@ -239,13 +292,14 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
239
292
|
* - IE11 inverts both scrollbar position and scrolling offset
|
|
240
293
|
* Directly inspired by @KingSora's OverlayScrollbars https://github.com/KingSora/OverlayScrollbars/blob/master/js/OverlayScrollbars.js#L1634
|
|
241
294
|
*/
|
|
295
|
+
|
|
296
|
+
|
|
242
297
|
_createClass(SimpleBar, [{
|
|
243
298
|
key: "init",
|
|
244
299
|
value: function init() {
|
|
245
300
|
// Save a reference to the instance, so we know this DOM node has already been instancied
|
|
246
|
-
SimpleBar.instances.set(this.el, this);
|
|
301
|
+
SimpleBar.instances.set(this.el, this); // We stop here on server-side
|
|
247
302
|
|
|
248
|
-
// We stop here on server-side
|
|
249
303
|
if (_canUseDom["default"]) {
|
|
250
304
|
this.initDOM();
|
|
251
305
|
this.setAccessibilityAttributes();
|
|
@@ -258,6 +312,7 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
258
312
|
key: "initDOM",
|
|
259
313
|
value: function initDOM() {
|
|
260
314
|
var _this2 = this;
|
|
315
|
+
|
|
261
316
|
// make sure this element doesn't have the elements yet
|
|
262
317
|
if (Array.prototype.filter.call(this.el.children, function (child) {
|
|
263
318
|
return child.classList.contains(_this2.classNames.wrapper);
|
|
@@ -291,9 +346,11 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
291
346
|
this.placeholderEl.classList.add(this.classNames.placeholder);
|
|
292
347
|
this.heightAutoObserverWrapperEl.classList.add(this.classNames.heightAutoObserverWrapperEl);
|
|
293
348
|
this.heightAutoObserverEl.classList.add(this.classNames.heightAutoObserverEl);
|
|
349
|
+
|
|
294
350
|
while (this.el.firstChild) {
|
|
295
351
|
this.contentEl.appendChild(this.el.firstChild);
|
|
296
352
|
}
|
|
353
|
+
|
|
297
354
|
this.contentWrapperEl.appendChild(this.contentEl);
|
|
298
355
|
this.offsetEl.appendChild(this.contentWrapperEl);
|
|
299
356
|
this.maskEl.appendChild(this.offsetEl);
|
|
@@ -303,6 +360,7 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
303
360
|
this.wrapperEl.appendChild(this.placeholderEl);
|
|
304
361
|
this.el.appendChild(this.wrapperEl);
|
|
305
362
|
}
|
|
363
|
+
|
|
306
364
|
if (!this.axis.x.track.el || !this.axis.y.track.el) {
|
|
307
365
|
var track = document.createElement("div");
|
|
308
366
|
var scrollbar = document.createElement("div");
|
|
@@ -316,12 +374,15 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
316
374
|
this.el.appendChild(this.axis.x.track.el);
|
|
317
375
|
this.el.appendChild(this.axis.y.track.el);
|
|
318
376
|
}
|
|
377
|
+
|
|
319
378
|
this.axis.x.scrollbar.el = this.axis.x.track.el.querySelector(".".concat(this.classNames.scrollbar));
|
|
320
379
|
this.axis.y.scrollbar.el = this.axis.y.track.el.querySelector(".".concat(this.classNames.scrollbar));
|
|
380
|
+
|
|
321
381
|
if (!this.options.autoHide) {
|
|
322
382
|
this.axis.x.scrollbar.el.classList.add(this.classNames.visible);
|
|
323
383
|
this.axis.y.scrollbar.el.classList.add(this.classNames.visible);
|
|
324
384
|
}
|
|
385
|
+
|
|
325
386
|
this.el.setAttribute("data-simplebar", "init");
|
|
326
387
|
}
|
|
327
388
|
}, {
|
|
@@ -336,11 +397,13 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
336
397
|
key: "initListeners",
|
|
337
398
|
value: function initListeners() {
|
|
338
399
|
var _this3 = this;
|
|
339
|
-
|
|
340
|
-
// Event listeners
|
|
400
|
+
|
|
401
|
+
var elWindow = (0, _helpers.getElementWindow)(this.el); // Event listeners
|
|
402
|
+
|
|
341
403
|
if (this.options.autoHide) {
|
|
342
404
|
this.el.addEventListener("mouseenter", this.onMouseEnter);
|
|
343
405
|
}
|
|
406
|
+
|
|
344
407
|
["mousedown", "click", "dblclick"].forEach(function (e) {
|
|
345
408
|
_this3.el.addEventListener(e, _this3.onPointerEvent, true);
|
|
346
409
|
});
|
|
@@ -352,25 +415,23 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
352
415
|
});
|
|
353
416
|
this.el.addEventListener("mousemove", this.onMouseMove);
|
|
354
417
|
this.el.addEventListener("mouseleave", this.onMouseLeave);
|
|
355
|
-
this.contentWrapperEl.addEventListener("scroll", this.onScroll);
|
|
418
|
+
this.contentWrapperEl.addEventListener("scroll", this.onScroll); // Browser zoom triggers a window resize
|
|
356
419
|
|
|
357
|
-
|
|
358
|
-
elWindow.addEventListener("resize", this.onWindowResize);
|
|
420
|
+
elWindow.addEventListener("resize", this.onWindowResize); // Hack for https://github.com/WICG/ResizeObserver/issues/38
|
|
359
421
|
|
|
360
|
-
// Hack for https://github.com/WICG/ResizeObserver/issues/38
|
|
361
422
|
var resizeObserverStarted = false;
|
|
362
423
|
var resizeObserver = elWindow.ResizeObserver || _resizeObserverPolyfill["default"];
|
|
363
424
|
this.resizeObserver = new resizeObserver(function () {
|
|
364
425
|
if (!resizeObserverStarted) return;
|
|
426
|
+
|
|
365
427
|
_this3.recalculate();
|
|
366
428
|
});
|
|
367
429
|
this.resizeObserver.observe(this.el);
|
|
368
430
|
this.resizeObserver.observe(this.contentEl);
|
|
369
431
|
elWindow.requestAnimationFrame(function () {
|
|
370
432
|
resizeObserverStarted = true;
|
|
371
|
-
});
|
|
433
|
+
}); // This is required to detect horizontal scroll. Vertical scroll only needs the resizeObserver.
|
|
372
434
|
|
|
373
|
-
// This is required to detect horizontal scroll. Vertical scroll only needs the resizeObserver.
|
|
374
435
|
this.mutationObserver = new elWindow.MutationObserver(this.recalculate);
|
|
375
436
|
this.mutationObserver.observe(this.contentEl, {
|
|
376
437
|
childList: true,
|
|
@@ -394,23 +455,20 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
394
455
|
this.wrapperEl.style.margin = "-".concat(this.elStyles.paddingTop, " -").concat(this.elStyles.paddingRight, " -").concat(this.elStyles.paddingBottom, " -").concat(this.elStyles.paddingLeft);
|
|
395
456
|
var contentElScrollHeight = this.contentEl.scrollHeight;
|
|
396
457
|
var contentElScrollWidth = this.contentEl.scrollWidth;
|
|
397
|
-
this.contentWrapperEl.style.height = isHeightAuto ? "auto" : "100%";
|
|
458
|
+
this.contentWrapperEl.style.height = isHeightAuto ? "auto" : "100%"; // Determine placeholder size
|
|
398
459
|
|
|
399
|
-
// Determine placeholder size
|
|
400
460
|
this.placeholderEl.style.width = isWidthAuto ? "".concat(contentElOffsetWidth, "px") : "auto";
|
|
401
461
|
this.placeholderEl.style.height = "".concat(contentElScrollHeight, "px");
|
|
402
462
|
var contentWrapperElOffsetHeight = this.contentWrapperEl.offsetHeight;
|
|
403
463
|
this.axis.x.isOverflowing = contentElScrollWidth > contentElOffsetWidth;
|
|
404
|
-
this.axis.y.isOverflowing = contentElScrollHeight > contentWrapperElOffsetHeight;
|
|
464
|
+
this.axis.y.isOverflowing = contentElScrollHeight > contentWrapperElOffsetHeight; // Set isOverflowing to false if user explicitely set hidden overflow
|
|
405
465
|
|
|
406
|
-
// Set isOverflowing to false if user explicitely set hidden overflow
|
|
407
466
|
this.axis.x.isOverflowing = elOverflowX === "hidden" ? false : this.axis.x.isOverflowing;
|
|
408
467
|
this.axis.y.isOverflowing = elOverflowY === "hidden" ? false : this.axis.y.isOverflowing;
|
|
409
468
|
this.axis.x.forceVisible = this.options.forceVisible === "x" || this.options.forceVisible === true;
|
|
410
469
|
this.axis.y.forceVisible = this.options.forceVisible === "y" || this.options.forceVisible === true;
|
|
411
|
-
this.hideNativeScrollbar();
|
|
470
|
+
this.hideNativeScrollbar(); // Set isOverflowing to false if scrollbar is not necessary (content is shorter than offset)
|
|
412
471
|
|
|
413
|
-
// Set isOverflowing to false if scrollbar is not necessary (content is shorter than offset)
|
|
414
472
|
var offsetForXScrollbar = this.axis.x.isOverflowing ? this.scrollbarWidth : 0;
|
|
415
473
|
var offsetForYScrollbar = this.axis.y.isOverflowing ? this.scrollbarWidth : 0;
|
|
416
474
|
this.axis.x.isOverflowing = this.axis.x.isOverflowing && contentElScrollWidth > contentWrapperElOffsetWidth - offsetForYScrollbar;
|
|
@@ -424,36 +482,41 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
424
482
|
this.toggleTrackVisibility("x");
|
|
425
483
|
this.toggleTrackVisibility("y");
|
|
426
484
|
}
|
|
427
|
-
|
|
428
485
|
/**
|
|
429
486
|
* Calculate scrollbar size
|
|
430
487
|
*/
|
|
488
|
+
|
|
431
489
|
}, {
|
|
432
490
|
key: "getScrollbarSize",
|
|
433
491
|
value: function getScrollbarSize() {
|
|
434
492
|
var axis = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "y";
|
|
493
|
+
|
|
435
494
|
if (!this.axis[axis].isOverflowing) {
|
|
436
495
|
return 0;
|
|
437
496
|
}
|
|
497
|
+
|
|
438
498
|
var contentSize = this.contentEl[this.axis[axis].scrollSizeAttr];
|
|
439
499
|
var trackSize = this.axis[axis].track.el[this.axis[axis].offsetSizeAttr];
|
|
440
500
|
var scrollbarSize;
|
|
441
|
-
var scrollbarRatio = trackSize / contentSize;
|
|
501
|
+
var scrollbarRatio = trackSize / contentSize; // Calculate new height/position of drag handle.
|
|
442
502
|
|
|
443
|
-
// Calculate new height/position of drag handle.
|
|
444
503
|
scrollbarSize = Math.max(~~(scrollbarRatio * trackSize), this.options.scrollbarMinSize);
|
|
504
|
+
|
|
445
505
|
if (this.options.scrollbarMaxSize) {
|
|
446
506
|
scrollbarSize = Math.min(scrollbarSize, this.options.scrollbarMaxSize);
|
|
447
507
|
}
|
|
508
|
+
|
|
448
509
|
return scrollbarSize;
|
|
449
510
|
}
|
|
450
511
|
}, {
|
|
451
512
|
key: "positionScrollbar",
|
|
452
513
|
value: function positionScrollbar() {
|
|
453
514
|
var axis = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "y";
|
|
515
|
+
|
|
454
516
|
if (!this.axis[axis].isOverflowing) {
|
|
455
517
|
return;
|
|
456
518
|
}
|
|
519
|
+
|
|
457
520
|
var contentSize = this.contentWrapperEl[this.axis[axis].scrollSizeAttr];
|
|
458
521
|
var trackSize = this.axis[axis].track.el[this.axis[axis].offsetSizeAttr];
|
|
459
522
|
var hostSize = parseInt(this.elStyles[this.axis[axis].sizeAttr], 10);
|
|
@@ -471,15 +534,16 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
471
534
|
var axis = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "y";
|
|
472
535
|
var track = this.axis[axis].track.el;
|
|
473
536
|
var scrollbar = this.axis[axis].scrollbar.el;
|
|
537
|
+
|
|
474
538
|
if (this.axis[axis].isOverflowing || this.axis[axis].forceVisible) {
|
|
475
539
|
track.style.visibility = "visible";
|
|
476
540
|
this.contentWrapperEl.style[this.axis[axis].overflowAttr] = "scroll";
|
|
477
541
|
} else {
|
|
478
542
|
track.style.visibility = "hidden";
|
|
479
543
|
this.contentWrapperEl.style[this.axis[axis].overflowAttr] = "hidden";
|
|
480
|
-
}
|
|
544
|
+
} // Even if forceVisible is enabled, scrollbar itself should be hidden
|
|
545
|
+
|
|
481
546
|
|
|
482
|
-
// Even if forceVisible is enabled, scrollbar itself should be hidden
|
|
483
547
|
if (this.axis[axis].isOverflowing) {
|
|
484
548
|
scrollbar.style.display = "block";
|
|
485
549
|
} else {
|
|
@@ -492,10 +556,10 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
492
556
|
this.offsetEl.style[this.isRtl ? "left" : "right"] = this.axis.y.isOverflowing || this.axis.y.forceVisible ? "-".concat(this.scrollbarWidth, "px") : 0;
|
|
493
557
|
this.offsetEl.style.bottom = this.axis.x.isOverflowing || this.axis.x.forceVisible ? "-".concat(this.scrollbarWidth, "px") : 0;
|
|
494
558
|
}
|
|
495
|
-
|
|
496
559
|
/**
|
|
497
560
|
* On scroll event handling
|
|
498
561
|
*/
|
|
562
|
+
|
|
499
563
|
}, {
|
|
500
564
|
key: "onMouseMoveForAxis",
|
|
501
565
|
value: function onMouseMoveForAxis() {
|
|
@@ -503,11 +567,13 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
503
567
|
this.axis[axis].track.rect = this.axis[axis].track.el.getBoundingClientRect();
|
|
504
568
|
this.axis[axis].scrollbar.rect = this.axis[axis].scrollbar.el.getBoundingClientRect();
|
|
505
569
|
var isWithinScrollbarBoundsX = this.isWithinBounds(this.axis[axis].scrollbar.rect);
|
|
570
|
+
|
|
506
571
|
if (isWithinScrollbarBoundsX) {
|
|
507
572
|
this.axis[axis].scrollbar.el.classList.add(this.classNames.hover);
|
|
508
573
|
} else {
|
|
509
574
|
this.axis[axis].scrollbar.el.classList.remove(this.classNames.hover);
|
|
510
575
|
}
|
|
576
|
+
|
|
511
577
|
if (this.isWithinBounds(this.axis[axis].track.rect)) {
|
|
512
578
|
this.showScrollbar(axis);
|
|
513
579
|
this.axis[axis].track.el.classList.add(this.classNames.hover);
|
|
@@ -531,18 +597,20 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
531
597
|
function showScrollbar() {
|
|
532
598
|
var axis = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "y";
|
|
533
599
|
var scrollbar = this.axis[axis].scrollbar.el;
|
|
600
|
+
|
|
534
601
|
if (!this.axis[axis].isVisible) {
|
|
535
602
|
scrollbar.classList.add(this.classNames.visible);
|
|
536
603
|
this.axis[axis].isVisible = true;
|
|
537
604
|
}
|
|
605
|
+
|
|
538
606
|
if (this.options.autoHide) {
|
|
539
607
|
this.hideScrollbars();
|
|
540
608
|
}
|
|
541
609
|
}
|
|
542
|
-
|
|
543
610
|
/**
|
|
544
611
|
* Hide Scrollbar
|
|
545
612
|
*/
|
|
613
|
+
|
|
546
614
|
}, {
|
|
547
615
|
key: "onDragStart",
|
|
548
616
|
value:
|
|
@@ -553,15 +621,15 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
553
621
|
var axis = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : "y";
|
|
554
622
|
var elDocument = (0, _helpers.getElementDocument)(this.el);
|
|
555
623
|
var elWindow = (0, _helpers.getElementWindow)(this.el);
|
|
556
|
-
var scrollbar = this.axis[axis].scrollbar;
|
|
624
|
+
var scrollbar = this.axis[axis].scrollbar; // Measure how far the user's mouse is from the top of the scrollbar drag handle.
|
|
557
625
|
|
|
558
|
-
// Measure how far the user's mouse is from the top of the scrollbar drag handle.
|
|
559
626
|
var eventOffset = axis === "y" ? e.pageY : e.pageX;
|
|
560
627
|
this.axis[axis].dragOffset = eventOffset - scrollbar.rect[this.axis[axis].offsetAttr];
|
|
561
628
|
this.draggedAxis = axis;
|
|
562
629
|
this.el.classList.add(this.classNames.dragging);
|
|
563
630
|
elDocument.addEventListener("mousemove", this.drag, true);
|
|
564
631
|
elDocument.addEventListener("mouseup", this.onEndDrag, true);
|
|
632
|
+
|
|
565
633
|
if (this.removePreventClickId === null) {
|
|
566
634
|
elDocument.addEventListener("click", this.preventClick, true);
|
|
567
635
|
elDocument.addEventListener("dblclick", this.preventClick, true);
|
|
@@ -570,14 +638,15 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
570
638
|
this.removePreventClickId = null;
|
|
571
639
|
}
|
|
572
640
|
}
|
|
573
|
-
|
|
574
641
|
/**
|
|
575
642
|
* Drag scrollbar handle
|
|
576
643
|
*/
|
|
644
|
+
|
|
577
645
|
}, {
|
|
578
646
|
key: "onTrackClick",
|
|
579
647
|
value: function onTrackClick(e) {
|
|
580
648
|
var _this4 = this;
|
|
649
|
+
|
|
581
650
|
var axis = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : "y";
|
|
582
651
|
if (!this.options.clickOnTrack) return;
|
|
583
652
|
var elWindow = (0, _helpers.getElementWindow)(this.el);
|
|
@@ -589,34 +658,40 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
589
658
|
var t = axis === "y" ? this.mouseY - scrollbarOffset : this.mouseX - scrollbarOffset;
|
|
590
659
|
var dir = t < 0 ? -1 : 1;
|
|
591
660
|
var scrollSize = dir === -1 ? scrolled - hostSize : scrolled + hostSize;
|
|
661
|
+
|
|
592
662
|
var scrollTo = function scrollTo() {
|
|
593
663
|
if (dir === -1) {
|
|
594
664
|
if (scrolled > scrollSize) {
|
|
595
665
|
scrolled -= _this4.options.clickOnTrackSpeed;
|
|
666
|
+
|
|
596
667
|
_this4.contentWrapperEl.scrollTo(_defineProperty({}, _this4.axis[axis].offsetAttr, scrolled));
|
|
668
|
+
|
|
597
669
|
elWindow.requestAnimationFrame(scrollTo);
|
|
598
670
|
}
|
|
599
671
|
} else if (scrolled < scrollSize) {
|
|
600
672
|
scrolled += _this4.options.clickOnTrackSpeed;
|
|
673
|
+
|
|
601
674
|
_this4.contentWrapperEl.scrollTo(_defineProperty({}, _this4.axis[axis].offsetAttr, scrolled));
|
|
675
|
+
|
|
602
676
|
elWindow.requestAnimationFrame(scrollTo);
|
|
603
677
|
}
|
|
604
678
|
};
|
|
679
|
+
|
|
605
680
|
scrollTo();
|
|
606
681
|
}
|
|
607
|
-
|
|
608
682
|
/**
|
|
609
683
|
* Getter for content element
|
|
610
684
|
*/
|
|
685
|
+
|
|
611
686
|
}, {
|
|
612
687
|
key: "getContentElement",
|
|
613
688
|
value: function getContentElement() {
|
|
614
689
|
return this.contentEl;
|
|
615
690
|
}
|
|
616
|
-
|
|
617
691
|
/**
|
|
618
692
|
* Getter for original scrolling element
|
|
619
693
|
*/
|
|
694
|
+
|
|
620
695
|
}, {
|
|
621
696
|
key: "getScrollElement",
|
|
622
697
|
value: function getScrollElement() {
|
|
@@ -631,6 +706,7 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
631
706
|
if (getComputedStyle(this.contentWrapperEl, "::-webkit-scrollbar").display === "none" || "scrollbarWidth" in document.documentElement.style || "-ms-overflow-style" in document.documentElement.style) {
|
|
632
707
|
return 0;
|
|
633
708
|
}
|
|
709
|
+
|
|
634
710
|
return (0, _scrollbarWidth["default"])(this.el);
|
|
635
711
|
} catch (e) {
|
|
636
712
|
return (0, _scrollbarWidth["default"])(this.el);
|
|
@@ -640,11 +716,13 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
640
716
|
key: "removeListeners",
|
|
641
717
|
value: function removeListeners() {
|
|
642
718
|
var _this5 = this;
|
|
643
|
-
|
|
644
|
-
// Event listeners
|
|
719
|
+
|
|
720
|
+
var elWindow = (0, _helpers.getElementWindow)(this.el); // Event listeners
|
|
721
|
+
|
|
645
722
|
if (this.options.autoHide) {
|
|
646
723
|
this.el.removeEventListener("mouseenter", this.onMouseEnter);
|
|
647
724
|
}
|
|
725
|
+
|
|
648
726
|
["mousedown", "click", "dblclick"].forEach(function (e) {
|
|
649
727
|
_this5.el.removeEventListener(e, _this5.onPointerEvent, true);
|
|
650
728
|
});
|
|
@@ -656,46 +734,50 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
656
734
|
});
|
|
657
735
|
this.el.removeEventListener("mousemove", this.onMouseMove);
|
|
658
736
|
this.el.removeEventListener("mouseleave", this.onMouseLeave);
|
|
737
|
+
|
|
659
738
|
if (this.contentWrapperEl) {
|
|
660
739
|
this.contentWrapperEl.removeEventListener("scroll", this.onScroll);
|
|
661
740
|
}
|
|
741
|
+
|
|
662
742
|
elWindow.removeEventListener("resize", this.onWindowResize);
|
|
743
|
+
|
|
663
744
|
if (this.mutationObserver) {
|
|
664
745
|
this.mutationObserver.disconnect();
|
|
665
746
|
}
|
|
747
|
+
|
|
666
748
|
if (this.resizeObserver) {
|
|
667
749
|
this.resizeObserver.disconnect();
|
|
668
|
-
}
|
|
750
|
+
} // Cancel all debounced functions
|
|
751
|
+
|
|
669
752
|
|
|
670
|
-
// Cancel all debounced functions
|
|
671
753
|
this.recalculate.cancel();
|
|
672
754
|
this.onMouseMove.cancel();
|
|
673
755
|
this.hideScrollbars.cancel();
|
|
674
756
|
this.onWindowResize.cancel();
|
|
675
757
|
}
|
|
676
|
-
|
|
677
758
|
/**
|
|
678
759
|
* UnMount mutation observer and delete SimpleBar instance from DOM element
|
|
679
760
|
*/
|
|
761
|
+
|
|
680
762
|
}, {
|
|
681
763
|
key: "unMount",
|
|
682
764
|
value: function unMount() {
|
|
683
765
|
this.removeListeners();
|
|
684
766
|
SimpleBar.instances["delete"](this.el);
|
|
685
767
|
}
|
|
686
|
-
|
|
687
768
|
/**
|
|
688
769
|
* Check if mouse is within bounds
|
|
689
770
|
*/
|
|
771
|
+
|
|
690
772
|
}, {
|
|
691
773
|
key: "isWithinBounds",
|
|
692
774
|
value: function isWithinBounds(bbox) {
|
|
693
775
|
return this.mouseX >= bbox.left && this.mouseX <= bbox.left + bbox.width && this.mouseY >= bbox.top && this.mouseY <= bbox.top + bbox.height;
|
|
694
776
|
}
|
|
695
|
-
|
|
696
777
|
/**
|
|
697
778
|
* Find element children matches query
|
|
698
779
|
*/
|
|
780
|
+
|
|
699
781
|
}, {
|
|
700
782
|
key: "findChild",
|
|
701
783
|
value: function findChild(el, query) {
|
|
@@ -736,8 +818,10 @@ var SimpleBar = /*#__PURE__*/function () {
|
|
|
736
818
|
};
|
|
737
819
|
}
|
|
738
820
|
}]);
|
|
821
|
+
|
|
739
822
|
return SimpleBar;
|
|
740
823
|
}();
|
|
824
|
+
|
|
741
825
|
exports["default"] = SimpleBar;
|
|
742
826
|
SimpleBar.defaultOptions = {
|
|
743
827
|
autoHide: true,
|