@douyinfe/semi-foundation 2.1.0-beta.2 → 2.1.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/anchor/foundation.ts +1 -1
- package/autoComplete/foundation.ts +1 -1
- package/base/foundation.ts +1 -1
- package/calendar/foundation.ts +3 -1
- package/cascader/foundation.ts +2 -2
- package/cascader/util.ts +1 -1
- package/collapse/foundation.ts +1 -1
- package/datePicker/_utils/getFullDateOffset.ts +1 -1
- package/datePicker/foundation.ts +1 -1
- package/datePicker/monthsGridFoundation.ts +1 -1
- package/form/foundation.ts +1 -1
- package/form/utils.ts +1 -1
- package/getBabelConfig.js +36 -0
- package/gulpfile.js +27 -9
- package/input/foundation.ts +1 -1
- package/input/textareaFoundation.ts +1 -1
- package/input/util/getSizingData.ts +1 -1
- package/inputNumber/foundation.ts +1 -1
- package/lib/cjs/_portal/portal.css +15 -0
- package/lib/cjs/_portal/portal.scss +17 -0
- package/lib/cjs/anchor/anchor.css +118 -0
- package/lib/cjs/anchor/anchor.scss +120 -0
- package/lib/cjs/anchor/constants.d.ts +11 -0
- package/lib/cjs/anchor/constants.js +24 -0
- package/lib/cjs/anchor/foundation.d.ts +41 -0
- package/lib/cjs/anchor/foundation.js +270 -0
- package/lib/cjs/anchor/linkFoundation.d.ts +14 -0
- package/lib/cjs/anchor/linkFoundation.js +50 -0
- package/lib/cjs/anchor/rtl.scss +18 -0
- package/lib/cjs/anchor/variables.scss +27 -0
- package/lib/cjs/autoComplete/autoComplete.css +103 -0
- package/lib/cjs/autoComplete/autoComplete.scss +37 -0
- package/lib/cjs/autoComplete/constants.d.ts +10 -0
- package/lib/cjs/autoComplete/constants.js +25 -0
- package/lib/cjs/autoComplete/foundation.d.ts +62 -0
- package/lib/cjs/autoComplete/foundation.js +465 -0
- package/lib/cjs/autoComplete/rtl.scss +8 -0
- package/lib/cjs/autoComplete/variables.scss +3 -0
- package/lib/cjs/avatar/avatar.css +426 -0
- package/lib/cjs/avatar/avatar.scss +205 -0
- package/lib/cjs/avatar/constants.d.ts +10 -0
- package/lib/cjs/avatar/constants.js +24 -0
- package/lib/cjs/avatar/foundation.d.ts +14 -0
- package/lib/cjs/avatar/foundation.js +49 -0
- package/lib/cjs/avatar/mixin.css +3 -0
- package/lib/cjs/avatar/mixin.scss +4 -0
- package/lib/cjs/avatar/rtl.scss +69 -0
- package/lib/cjs/avatar/variables.scss +45 -0
- package/lib/cjs/backtop/backtop.css +20 -0
- package/lib/cjs/backtop/backtop.scss +17 -0
- package/lib/cjs/backtop/constants.d.ts +5 -0
- package/lib/cjs/backtop/constants.js +18 -0
- package/lib/cjs/backtop/foundation.d.ts +21 -0
- package/lib/cjs/backtop/foundation.js +114 -0
- package/lib/cjs/backtop/rtl.scss +10 -0
- package/lib/cjs/backtop/variables.scss +3 -0
- package/lib/cjs/badge/badge.css +146 -0
- package/lib/cjs/badge/badge.scss +168 -0
- package/lib/cjs/badge/constants.d.ts +10 -0
- package/lib/cjs/badge/constants.js +24 -0
- package/lib/cjs/badge/rtl.scss +8 -0
- package/lib/cjs/badge/variables.scss +43 -0
- package/lib/cjs/banner/banner.css +92 -0
- package/lib/cjs/banner/banner.scss +109 -0
- package/lib/cjs/banner/constants.d.ts +7 -0
- package/lib/cjs/banner/constants.js +20 -0
- package/lib/cjs/banner/foundation.d.ts +9 -0
- package/lib/cjs/banner/foundation.js +30 -0
- package/lib/cjs/banner/rtl.scss +20 -0
- package/lib/cjs/banner/variables.scss +27 -0
- package/lib/cjs/base/base.css +24 -0
- package/lib/cjs/base/base.scss +33 -0
- package/lib/cjs/base/constants.d.ts +3 -0
- package/lib/cjs/base/constants.js +22 -0
- package/lib/cjs/base/env.d.ts +1 -0
- package/lib/cjs/base/env.js +11 -0
- package/lib/cjs/base/foundation.d.ts +59 -0
- package/lib/cjs/base/foundation.js +144 -0
- package/lib/cjs/base/index.d.ts +5 -0
- package/lib/cjs/base/index.js +18 -0
- package/lib/cjs/breadcrumb/breadcrumb.css +109 -0
- package/lib/cjs/breadcrumb/breadcrumb.scss +120 -0
- package/lib/cjs/breadcrumb/constants.d.ts +7 -0
- package/lib/cjs/breadcrumb/constants.js +20 -0
- package/lib/cjs/breadcrumb/foundation.d.ts +24 -0
- package/lib/cjs/breadcrumb/foundation.js +52 -0
- package/lib/cjs/breadcrumb/itemFoundation.d.ts +22 -0
- package/lib/cjs/breadcrumb/itemFoundation.js +31 -0
- package/lib/cjs/breadcrumb/rtl.scss +33 -0
- package/lib/cjs/breadcrumb/variables.scss +19 -0
- package/lib/cjs/button/button.css +309 -0
- package/lib/cjs/button/button.scss +219 -0
- package/lib/cjs/button/constants.d.ts +6 -0
- package/lib/cjs/button/constants.js +28 -0
- package/lib/cjs/button/iconButton.css +160 -0
- package/lib/cjs/button/iconButton.scss +70 -0
- package/lib/cjs/button/rtl.scss +128 -0
- package/lib/cjs/button/splitButtonGroup.scss +32 -0
- package/lib/cjs/button/variables.scss +128 -0
- package/lib/cjs/calendar/calendar.css +592 -0
- package/lib/cjs/calendar/calendar.scss +520 -0
- package/lib/cjs/calendar/constants.d.ts +7 -0
- package/lib/cjs/calendar/constants.js +20 -0
- package/lib/cjs/calendar/eventUtil.d.ts +93 -0
- package/lib/cjs/calendar/eventUtil.js +431 -0
- package/lib/cjs/calendar/foundation.d.ts +99 -0
- package/lib/cjs/calendar/foundation.js +483 -0
- package/lib/cjs/calendar/rtl.scss +134 -0
- package/lib/cjs/calendar/variables.scss +105 -0
- package/lib/cjs/card/card.css +148 -0
- package/lib/cjs/card/card.scss +146 -0
- package/lib/cjs/card/constants.d.ts +8 -0
- package/lib/cjs/card/constants.js +21 -0
- package/lib/cjs/card/rtl.scss +43 -0
- package/lib/cjs/card/variables.scss +30 -0
- package/lib/cjs/cascader/cascader.css +438 -0
- package/lib/cjs/cascader/cascader.scss +436 -0
- package/lib/cjs/cascader/constants.d.ts +14 -0
- package/lib/cjs/cascader/constants.js +28 -0
- package/lib/cjs/cascader/foundation.d.ts +221 -0
- package/lib/cjs/cascader/foundation.js +1061 -0
- package/lib/cjs/cascader/rtl.scss +114 -0
- package/lib/cjs/cascader/util.d.ts +4 -0
- package/lib/cjs/cascader/util.js +114 -0
- package/lib/cjs/cascader/variables.scss +117 -0
- package/lib/cjs/checkbox/checkbox.css +311 -0
- package/lib/cjs/checkbox/checkbox.scss +363 -0
- package/lib/cjs/checkbox/checkboxFoundation.d.ts +49 -0
- package/lib/cjs/checkbox/checkboxFoundation.js +105 -0
- package/lib/cjs/checkbox/checkboxGroupFoundation.d.ts +17 -0
- package/lib/cjs/checkbox/checkboxGroupFoundation.js +103 -0
- package/lib/cjs/checkbox/constants.d.ts +27 -0
- package/lib/cjs/checkbox/constants.js +42 -0
- package/lib/cjs/checkbox/mixin.css +3 -0
- package/lib/cjs/checkbox/mixin.scss +0 -0
- package/lib/cjs/checkbox/rtl.scss +54 -0
- package/lib/cjs/checkbox/variables.scss +62 -0
- package/lib/cjs/collapse/collapse.css +78 -0
- package/lib/cjs/collapse/collapse.scss +77 -0
- package/lib/cjs/collapse/constants.d.ts +7 -0
- package/lib/cjs/collapse/constants.js +20 -0
- package/lib/cjs/collapse/foundation.d.ts +28 -0
- package/lib/cjs/collapse/foundation.js +77 -0
- package/lib/cjs/collapse/rtl.scss +26 -0
- package/lib/cjs/collapse/variables.scss +22 -0
- package/lib/cjs/collapsible/constants.d.ts +4 -0
- package/lib/cjs/collapsible/constants.js +16 -0
- package/lib/cjs/datePicker/_utils/formatter.d.ts +14 -0
- package/lib/cjs/datePicker/_utils/formatter.js +72 -0
- package/lib/cjs/datePicker/_utils/getDayOfWeek.d.ts +11 -0
- package/lib/cjs/datePicker/_utils/getDayOfWeek.js +31 -0
- package/lib/cjs/datePicker/_utils/getDefaultFormatToken.d.ts +9 -0
- package/lib/cjs/datePicker/_utils/getDefaultFormatToken.js +29 -0
- package/lib/cjs/datePicker/_utils/getFullDateOffset.d.ts +7 -0
- package/lib/cjs/datePicker/_utils/getFullDateOffset.js +35 -0
- package/lib/cjs/datePicker/_utils/getMonthTable.d.ts +12 -0
- package/lib/cjs/datePicker/_utils/getMonthTable.js +97 -0
- package/lib/cjs/datePicker/_utils/getMonthsInYear.d.ts +2 -0
- package/lib/cjs/datePicker/_utils/getMonthsInYear.js +26 -0
- package/lib/cjs/datePicker/_utils/getYears.d.ts +2 -0
- package/lib/cjs/datePicker/_utils/getYears.js +24 -0
- package/lib/cjs/datePicker/_utils/index.d.ts +13 -0
- package/lib/cjs/datePicker/_utils/index.js +117 -0
- package/lib/cjs/datePicker/_utils/isAfter.d.ts +1 -0
- package/lib/cjs/datePicker/_utils/isAfter.js +21 -0
- package/lib/cjs/datePicker/_utils/isBefore.d.ts +1 -0
- package/lib/cjs/datePicker/_utils/isBefore.js +21 -0
- package/lib/cjs/datePicker/_utils/isBetween.d.ts +11 -0
- package/lib/cjs/datePicker/_utils/isBetween.js +36 -0
- package/lib/cjs/datePicker/_utils/isDate.d.ts +1 -0
- package/lib/cjs/datePicker/_utils/isDate.js +13 -0
- package/lib/cjs/datePicker/_utils/isSameDay.d.ts +1 -0
- package/lib/cjs/datePicker/_utils/isSameDay.js +21 -0
- package/lib/cjs/datePicker/_utils/isTimestamp.d.ts +1 -0
- package/lib/cjs/datePicker/_utils/isTimestamp.js +19 -0
- package/lib/cjs/datePicker/_utils/isUnixTimestamp.d.ts +1 -0
- package/lib/cjs/datePicker/_utils/isUnixTimestamp.js +19 -0
- package/lib/cjs/datePicker/_utils/isValidDate.d.ts +1 -0
- package/lib/cjs/datePicker/_utils/isValidDate.js +13 -0
- package/lib/cjs/datePicker/_utils/isWithinInterval.d.ts +4 -0
- package/lib/cjs/datePicker/_utils/isWithinInterval.js +29 -0
- package/lib/cjs/datePicker/_utils/parser.d.ts +4 -0
- package/lib/cjs/datePicker/_utils/parser.js +46 -0
- package/lib/cjs/datePicker/constants.d.ts +50 -0
- package/lib/cjs/datePicker/constants.js +75 -0
- package/lib/cjs/datePicker/datePicker.css +810 -0
- package/lib/cjs/datePicker/datePicker.scss +1034 -0
- package/lib/cjs/datePicker/foundation.d.ts +409 -0
- package/lib/cjs/datePicker/foundation.js +1167 -0
- package/lib/cjs/datePicker/inputFoundation.d.ts +59 -0
- package/lib/cjs/datePicker/inputFoundation.js +125 -0
- package/lib/cjs/datePicker/monthFoundation.d.ts +73 -0
- package/lib/cjs/datePicker/monthFoundation.js +96 -0
- package/lib/cjs/datePicker/monthsGridFoundation.d.ts +218 -0
- package/lib/cjs/datePicker/monthsGridFoundation.js +954 -0
- package/lib/cjs/datePicker/rtl.scss +171 -0
- package/lib/cjs/datePicker/variables.scss +169 -0
- package/lib/cjs/datePicker/yearAndMonthFoundation.d.ts +56 -0
- package/lib/cjs/datePicker/yearAndMonthFoundation.js +52 -0
- package/lib/cjs/descriptions/constants.d.ts +9 -0
- package/lib/cjs/descriptions/constants.js +23 -0
- package/lib/cjs/descriptions/descriptions.css +191 -0
- package/lib/cjs/descriptions/descriptions.scss +150 -0
- package/lib/cjs/descriptions/rtl.scss +91 -0
- package/lib/cjs/descriptions/variables.scss +15 -0
- package/lib/cjs/dropdown/constants.d.ts +16 -0
- package/lib/cjs/dropdown/constants.js +32 -0
- package/lib/cjs/dropdown/dropdown.css +123 -0
- package/lib/cjs/dropdown/dropdown.scss +106 -0
- package/lib/cjs/dropdown/foundation.d.ts +8 -0
- package/lib/cjs/dropdown/foundation.js +24 -0
- package/lib/cjs/dropdown/rtl.scss +27 -0
- package/lib/cjs/dropdown/variables.scss +38 -0
- package/lib/cjs/empty/constants.d.ts +7 -0
- package/lib/cjs/empty/constants.js +20 -0
- package/lib/cjs/empty/empty.css +50 -0
- package/lib/cjs/empty/empty.scss +54 -0
- package/lib/cjs/empty/rtl.scss +15 -0
- package/lib/cjs/empty/variables.scss +8 -0
- package/lib/cjs/form/constants.d.ts +11 -0
- package/lib/cjs/form/constants.js +25 -0
- package/lib/cjs/form/form.css +250 -0
- package/lib/cjs/form/form.scss +273 -0
- package/lib/cjs/form/foundation.d.ts +86 -0
- package/lib/cjs/form/foundation.js +845 -0
- package/lib/cjs/form/interface.d.ts +121 -0
- package/lib/cjs/form/interface.js +7 -0
- package/lib/cjs/form/rtl.scss +89 -0
- package/lib/cjs/form/utils.d.ts +52 -0
- package/lib/cjs/form/utils.js +242 -0
- package/lib/cjs/form/variables.scss +44 -0
- package/lib/cjs/grid/constants.d.ts +4 -0
- package/lib/cjs/grid/constants.js +16 -0
- package/lib/cjs/grid/grid.css +6295 -0
- package/lib/cjs/grid/grid.scss +121 -0
- package/lib/cjs/grid/mixin.css +3 -0
- package/lib/cjs/grid/mixin.scss +115 -0
- package/lib/cjs/grid/rtl.scss +9 -0
- package/lib/cjs/grid/variables.scss +35 -0
- package/lib/cjs/icons/constants.d.ts +9 -0
- package/lib/cjs/icons/constants.js +24 -0
- package/lib/cjs/input/constants.d.ts +12 -0
- package/lib/cjs/input/constants.js +26 -0
- package/lib/cjs/input/foundation.d.ts +79 -0
- package/lib/cjs/input/foundation.js +379 -0
- package/lib/cjs/input/input.css +567 -0
- package/lib/cjs/input/input.scss +628 -0
- package/lib/cjs/input/rtl.scss +100 -0
- package/lib/cjs/input/textarea.css +222 -0
- package/lib/cjs/input/textarea.scss +188 -0
- package/lib/cjs/input/textareaFoundation.d.ts +63 -0
- package/lib/cjs/input/textareaFoundation.js +299 -0
- package/lib/cjs/input/util/calculateNodeHeight.d.ts +1 -0
- package/lib/cjs/input/util/calculateNodeHeight.js +101 -0
- package/lib/cjs/input/util/getSizingData.d.ts +6 -0
- package/lib/cjs/input/util/getSizingData.js +47 -0
- package/lib/cjs/input/variables.scss +109 -0
- package/lib/cjs/inputNumber/constants.d.ts +17 -0
- package/lib/cjs/inputNumber/constants.js +27 -0
- package/lib/cjs/inputNumber/foundation.d.ts +107 -0
- package/lib/cjs/inputNumber/foundation.js +692 -0
- package/lib/cjs/inputNumber/inputNumber.css +99 -0
- package/lib/cjs/inputNumber/inputNumber.scss +108 -0
- package/lib/cjs/inputNumber/rtl.scss +30 -0
- package/lib/cjs/inputNumber/variables.scss +23 -0
- package/lib/cjs/keyframes/rotate.css +11 -0
- package/lib/cjs/keyframes/rotate.scss +8 -0
- package/lib/cjs/layout/constants.d.ts +7 -0
- package/lib/cjs/layout/constants.js +20 -0
- package/lib/cjs/layout/layout.css +40 -0
- package/lib/cjs/layout/layout.scss +49 -0
- package/lib/cjs/layout/rtl.scss +8 -0
- package/lib/cjs/list/constants.d.ts +9 -0
- package/lib/cjs/list/constants.js +22 -0
- package/lib/cjs/list/list.css +121 -0
- package/lib/cjs/list/list.scss +125 -0
- package/lib/cjs/list/rtl.scss +39 -0
- package/lib/cjs/list/variables.scss +17 -0
- package/lib/cjs/modal/constants.d.ts +10 -0
- package/lib/cjs/modal/constants.js +23 -0
- package/lib/cjs/modal/modal.css +233 -0
- package/lib/cjs/modal/modal.scss +267 -0
- package/lib/cjs/modal/modalContentFoundation.d.ts +33 -0
- package/lib/cjs/modal/modalContentFoundation.js +76 -0
- package/lib/cjs/modal/modalFoundation.d.ts +68 -0
- package/lib/cjs/modal/modalFoundation.js +52 -0
- package/lib/cjs/modal/rtl.scss +48 -0
- package/lib/cjs/modal/variables.scss +69 -0
- package/lib/cjs/navigation/NavItem.d.ts +10 -0
- package/lib/cjs/navigation/NavItem.js +74 -0
- package/lib/cjs/navigation/constants.d.ts +21 -0
- package/lib/cjs/navigation/constants.js +38 -0
- package/lib/cjs/navigation/foundation.d.ts +86 -0
- package/lib/cjs/navigation/foundation.js +313 -0
- package/lib/cjs/navigation/itemFoundation.d.ts +45 -0
- package/lib/cjs/navigation/itemFoundation.js +84 -0
- package/lib/cjs/navigation/mixin.css +3 -0
- package/lib/cjs/navigation/mixin.scss +98 -0
- package/lib/cjs/navigation/navigation.css +758 -0
- package/lib/cjs/navigation/navigation.scss +683 -0
- package/lib/cjs/navigation/rtl.scss +132 -0
- package/lib/cjs/navigation/subNavFoundation.d.ts +39 -0
- package/lib/cjs/navigation/subNavFoundation.js +147 -0
- package/lib/cjs/navigation/variables.scss +132 -0
- package/lib/cjs/notification/constants.d.ts +14 -0
- package/lib/cjs/notification/constants.js +29 -0
- package/lib/cjs/notification/notification.css +154 -0
- package/lib/cjs/notification/notification.scss +168 -0
- package/lib/cjs/notification/notificationFoundation.d.ts +48 -0
- package/lib/cjs/notification/notificationFoundation.js +74 -0
- package/lib/cjs/notification/notificationListFoundation.d.ts +28 -0
- package/lib/cjs/notification/notificationListFoundation.js +61 -0
- package/lib/cjs/notification/rtl.scss +23 -0
- package/lib/cjs/notification/variables.scss +43 -0
- package/lib/cjs/overflowList/constants.d.ts +23 -0
- package/lib/cjs/overflowList/constants.js +44 -0
- package/lib/cjs/overflowList/foundation.d.ts +14 -0
- package/lib/cjs/overflowList/foundation.js +143 -0
- package/lib/cjs/overflowList/overflowList.css +23 -0
- package/lib/cjs/overflowList/overflowList.scss +20 -0
- package/lib/cjs/overflowList/rtl.scss +8 -0
- package/lib/cjs/pagination/constants.d.ts +12 -0
- package/lib/cjs/pagination/constants.js +26 -0
- package/lib/cjs/pagination/foundation.d.ts +52 -0
- package/lib/cjs/pagination/foundation.js +385 -0
- package/lib/cjs/pagination/pagination.css +155 -0
- package/lib/cjs/pagination/pagination.scss +158 -0
- package/lib/cjs/pagination/rtl.scss +18 -0
- package/lib/cjs/pagination/variables.scss +51 -0
- package/lib/cjs/popconfirm/constants.d.ts +13 -0
- package/lib/cjs/popconfirm/constants.js +27 -0
- package/lib/cjs/popconfirm/popconfirm.css +117 -0
- package/lib/cjs/popconfirm/popconfirm.scss +105 -0
- package/lib/cjs/popconfirm/popconfirmFoundation.d.ts +16 -0
- package/lib/cjs/popconfirm/popconfirmFoundation.js +47 -0
- package/lib/cjs/popconfirm/rtl.scss +60 -0
- package/lib/cjs/popconfirm/variables.scss +36 -0
- package/lib/cjs/popover/constants.d.ts +25 -0
- package/lib/cjs/popover/constants.js +45 -0
- package/lib/cjs/popover/popover.css +160 -0
- package/lib/cjs/popover/popover.scss +54 -0
- package/lib/cjs/popover/rtl.scss +7 -0
- package/lib/cjs/popover/variables.scss +28 -0
- package/lib/cjs/progress/constants.d.ts +14 -0
- package/lib/cjs/progress/constants.js +28 -0
- package/lib/cjs/progress/progress.css +106 -0
- package/lib/cjs/progress/progress.scss +105 -0
- package/lib/cjs/progress/rtl.scss +29 -0
- package/lib/cjs/progress/variables.scss +25 -0
- package/lib/cjs/radio/constants.d.ts +29 -0
- package/lib/cjs/radio/constants.js +44 -0
- package/lib/cjs/radio/mixin.css +3 -0
- package/lib/cjs/radio/mixin.scss +0 -0
- package/lib/cjs/radio/radio.css +346 -0
- package/lib/cjs/radio/radio.scss +379 -0
- package/lib/cjs/radio/radioFoundation.d.ts +7 -0
- package/lib/cjs/radio/radioFoundation.js +22 -0
- package/lib/cjs/radio/radioGroupFoundation.d.ts +16 -0
- package/lib/cjs/radio/radioGroupFoundation.js +91 -0
- package/lib/cjs/radio/radioInnerFoundation.d.ts +22 -0
- package/lib/cjs/radio/radioInnerFoundation.js +74 -0
- package/lib/cjs/radio/rtl.scss +78 -0
- package/lib/cjs/radio/variables.scss +91 -0
- package/lib/cjs/rating/constants.d.ts +7 -0
- package/lib/cjs/rating/constants.js +20 -0
- package/lib/cjs/rating/foundation.d.ts +28 -0
- package/lib/cjs/rating/foundation.js +202 -0
- package/lib/cjs/rating/rating.css +81 -0
- package/lib/cjs/rating/rating.scss +87 -0
- package/lib/cjs/rating/rtl.scss +21 -0
- package/lib/cjs/rating/variables.scss +14 -0
- package/lib/cjs/scrollList/constants.d.ts +12 -0
- package/lib/cjs/scrollList/constants.js +26 -0
- package/lib/cjs/scrollList/foundation.d.ts +3 -0
- package/lib/cjs/scrollList/foundation.js +17 -0
- package/lib/cjs/scrollList/itemFoundation.d.ts +74 -0
- package/lib/cjs/scrollList/itemFoundation.js +320 -0
- package/lib/cjs/scrollList/rtl.scss +47 -0
- package/lib/cjs/scrollList/scrollList.css +181 -0
- package/lib/cjs/scrollList/scrollList.scss +182 -0
- package/lib/cjs/scrollList/scrollTo.d.ts +3 -0
- package/lib/cjs/scrollList/scrollTo.js +35 -0
- package/lib/cjs/scrollList/variables.scss +48 -0
- package/lib/cjs/select/constants.d.ts +16 -0
- package/lib/cjs/select/constants.js +33 -0
- package/lib/cjs/select/foundation.d.ts +107 -0
- package/lib/cjs/select/foundation.js +1220 -0
- package/lib/cjs/select/mixin.css +3 -0
- package/lib/cjs/select/mixin.scss +6 -0
- package/lib/cjs/select/option.css +76 -0
- package/lib/cjs/select/option.scss +95 -0
- package/lib/cjs/select/optionFoundation.d.ts +21 -0
- package/lib/cjs/select/optionFoundation.js +42 -0
- package/lib/cjs/select/rtl.scss +93 -0
- package/lib/cjs/select/select.css +465 -0
- package/lib/cjs/select/select.scss +422 -0
- package/lib/cjs/select/variables.scss +100 -0
- package/lib/cjs/sideSheet/constants.d.ts +15 -0
- package/lib/cjs/sideSheet/constants.js +28 -0
- package/lib/cjs/sideSheet/rtl.scss +17 -0
- package/lib/cjs/sideSheet/sideSheet.css +143 -0
- package/lib/cjs/sideSheet/sideSheet.scss +171 -0
- package/lib/cjs/sideSheet/sideSheetFoundation.d.ts +55 -0
- package/lib/cjs/sideSheet/sideSheetFoundation.js +126 -0
- package/lib/cjs/sideSheet/variables.scss +16 -0
- package/lib/cjs/skeleton/constants.d.ts +5 -0
- package/lib/cjs/skeleton/constants.js +18 -0
- package/lib/cjs/skeleton/rtl.scss +8 -0
- package/lib/cjs/skeleton/skeleton.css +87 -0
- package/lib/cjs/skeleton/skeleton.scss +115 -0
- package/lib/cjs/skeleton/variables.scss +20 -0
- package/lib/cjs/slider/constants.d.ts +15 -0
- package/lib/cjs/slider/constants.js +28 -0
- package/lib/cjs/slider/foundation.d.ts +203 -0
- package/lib/cjs/slider/foundation.js +734 -0
- package/lib/cjs/slider/slider.css +192 -0
- package/lib/cjs/slider/slider.scss +234 -0
- package/lib/cjs/slider/variables.scss +60 -0
- package/lib/cjs/space/constants.d.ts +10 -0
- package/lib/cjs/space/constants.js +23 -0
- package/lib/cjs/space/rtl.scss +8 -0
- package/lib/cjs/space/space.css +50 -0
- package/lib/cjs/space/space.scss +58 -0
- package/lib/cjs/space/variables.scss +3 -0
- package/lib/cjs/spin/constants.d.ts +8 -0
- package/lib/cjs/spin/constants.js +23 -0
- package/lib/cjs/spin/foundation.d.ts +12 -0
- package/lib/cjs/spin/foundation.js +62 -0
- package/lib/cjs/spin/mixin.css +3 -0
- package/lib/cjs/spin/mixin.scss +5 -0
- package/lib/cjs/spin/rtl.scss +12 -0
- package/lib/cjs/spin/spin.css +104 -0
- package/lib/cjs/spin/spin.scss +104 -0
- package/lib/cjs/spin/variables.scss +18 -0
- package/lib/cjs/steps/bacisSteps.scss +344 -0
- package/lib/cjs/steps/constants.d.ts +5 -0
- package/lib/cjs/steps/constants.js +17 -0
- package/lib/cjs/steps/fillSteps.scss +193 -0
- package/lib/cjs/steps/mixin.css +3 -0
- package/lib/cjs/steps/mixin.scss +0 -0
- package/lib/cjs/steps/navSteps.scss +63 -0
- package/lib/cjs/steps/rtl.scss +46 -0
- package/lib/cjs/steps/steps.css +444 -0
- package/lib/cjs/steps/steps.scss +9 -0
- package/lib/cjs/steps/variables.scss +104 -0
- package/lib/cjs/switch/constants.d.ts +18 -0
- package/lib/cjs/switch/constants.js +31 -0
- package/lib/cjs/switch/foundation.d.ts +14 -0
- package/lib/cjs/switch/foundation.js +58 -0
- package/lib/cjs/switch/rtl.scss +103 -0
- package/lib/cjs/switch/switch.css +288 -0
- package/lib/cjs/switch/switch.scss +282 -0
- package/lib/cjs/switch/variables.scss +70 -0
- package/lib/cjs/table/bodyFoundation.d.ts +38 -0
- package/lib/cjs/table/bodyFoundation.js +164 -0
- package/lib/cjs/table/cellFoundation.d.ts +7 -0
- package/lib/cjs/table/cellFoundation.js +22 -0
- package/lib/cjs/table/constants.d.ts +77 -0
- package/lib/cjs/table/constants.js +110 -0
- package/lib/cjs/table/foundation.d.ts +351 -0
- package/lib/cjs/table/foundation.js +1167 -0
- package/lib/cjs/table/mixin.css +3 -0
- package/lib/cjs/table/mixin.scss +10 -0
- package/lib/cjs/table/operationPanel.scss +46 -0
- package/lib/cjs/table/rtl.scss +158 -0
- package/lib/cjs/table/table.css +559 -0
- package/lib/cjs/table/table.scss +552 -0
- package/lib/cjs/table/tableRowFoundation.d.ts +14 -0
- package/lib/cjs/table/tableRowFoundation.js +44 -0
- package/lib/cjs/table/tableSelectionCellFoundation.d.ts +13 -0
- package/lib/cjs/table/tableSelectionCellFoundation.js +24 -0
- package/lib/cjs/table/utils.d.ts +95 -0
- package/lib/cjs/table/utils.js +617 -0
- package/lib/cjs/table/variables.scss +84 -0
- package/lib/cjs/tabs/constants.d.ts +28 -0
- package/lib/cjs/tabs/constants.js +42 -0
- package/lib/cjs/tabs/foundation.d.ts +23 -0
- package/lib/cjs/tabs/foundation.js +95 -0
- package/lib/cjs/tabs/rtl.scss +123 -0
- package/lib/cjs/tabs/tabs.css +378 -0
- package/lib/cjs/tabs/tabs.scss +411 -0
- package/lib/cjs/tabs/variables.scss +115 -0
- package/lib/cjs/tag/constants.d.ts +10 -0
- package/lib/cjs/tag/constants.js +24 -0
- package/lib/cjs/tag/mixin.css +3 -0
- package/lib/cjs/tag/mixin.scss +21 -0
- package/lib/cjs/tag/rtl.scss +61 -0
- package/lib/cjs/tag/tag.css +444 -0
- package/lib/cjs/tag/tag.scss +181 -0
- package/lib/cjs/tag/variables.scss +48 -0
- package/lib/cjs/tagInput/constants.d.ts +8 -0
- package/lib/cjs/tagInput/constants.js +21 -0
- package/lib/cjs/tagInput/foundation.d.ts +53 -0
- package/lib/cjs/tagInput/foundation.js +267 -0
- package/lib/cjs/tagInput/rtl.scss +23 -0
- package/lib/cjs/tagInput/tagInput.css +171 -0
- package/lib/cjs/tagInput/tagInput.scss +192 -0
- package/lib/cjs/tagInput/utils/getSplitedArray.d.ts +7 -0
- package/lib/cjs/tagInput/utils/getSplitedArray.js +47 -0
- package/lib/cjs/tagInput/variables.scss +39 -0
- package/lib/cjs/timePicker/ComboxFoundation.d.ts +31 -0
- package/lib/cjs/timePicker/ComboxFoundation.js +193 -0
- package/lib/cjs/timePicker/constants.d.ts +23 -0
- package/lib/cjs/timePicker/constants.js +43 -0
- package/lib/cjs/timePicker/foundation.d.ts +53 -0
- package/lib/cjs/timePicker/foundation.js +465 -0
- package/lib/cjs/timePicker/inputFoundation.d.ts +18 -0
- package/lib/cjs/timePicker/inputFoundation.js +81 -0
- package/lib/cjs/timePicker/rtl.scss +30 -0
- package/lib/cjs/timePicker/timePicker.css +72 -0
- package/lib/cjs/timePicker/timePicker.scss +86 -0
- package/lib/cjs/timePicker/utils/index.d.ts +41 -0
- package/lib/cjs/timePicker/utils/index.js +191 -0
- package/lib/cjs/timePicker/utils/localeDate.d.ts +2 -0
- package/lib/cjs/timePicker/utils/localeDate.js +47 -0
- package/lib/cjs/timePicker/variables.scss +22 -0
- package/lib/cjs/timeline/constants.d.ts +10 -0
- package/lib/cjs/timeline/constants.js +23 -0
- package/lib/cjs/timeline/rtl.scss +92 -0
- package/lib/cjs/timeline/timeline.css +197 -0
- package/lib/cjs/timeline/timeline.scss +175 -0
- package/lib/cjs/timeline/variables.scss +46 -0
- package/lib/cjs/toast/constants.d.ts +14 -0
- package/lib/cjs/toast/constants.js +30 -0
- package/lib/cjs/toast/rtl.scss +16 -0
- package/lib/cjs/toast/toast.css +76 -0
- package/lib/cjs/toast/toast.scss +92 -0
- package/lib/cjs/toast/toastFoundation.d.ts +48 -0
- package/lib/cjs/toast/toastFoundation.js +72 -0
- package/lib/cjs/toast/toastListFoundation.d.ts +17 -0
- package/lib/cjs/toast/toastListFoundation.js +62 -0
- package/lib/cjs/toast/variables.scss +34 -0
- package/lib/cjs/tooltip/arrow.scss +141 -0
- package/lib/cjs/tooltip/constants.d.ts +22 -0
- package/lib/cjs/tooltip/constants.js +37 -0
- package/lib/cjs/tooltip/foundation.d.ts +99 -0
- package/lib/cjs/tooltip/foundation.js +819 -0
- package/lib/cjs/tooltip/rtl.scss +12 -0
- package/lib/cjs/tooltip/tooltip.css +203 -0
- package/lib/cjs/tooltip/tooltip.scss +91 -0
- package/lib/cjs/tooltip/variables.scss +31 -0
- package/lib/cjs/transfer/constants.d.ts +10 -0
- package/lib/cjs/transfer/constants.js +24 -0
- package/lib/cjs/transfer/foundation.d.ts +51 -0
- package/lib/cjs/transfer/foundation.js +314 -0
- package/lib/cjs/transfer/rtl.scss +31 -0
- package/lib/cjs/transfer/transfer.css +202 -0
- package/lib/cjs/transfer/transfer.scss +200 -0
- package/lib/cjs/transfer/transferUtlls.d.ts +4 -0
- package/lib/cjs/transfer/transferUtlls.js +128 -0
- package/lib/cjs/transfer/variables.scss +55 -0
- package/lib/cjs/tree/constants.d.ts +9 -0
- package/lib/cjs/tree/constants.js +23 -0
- package/lib/cjs/tree/foundation.d.ts +281 -0
- package/lib/cjs/tree/foundation.js +711 -0
- package/lib/cjs/tree/rtl.scss +59 -0
- package/lib/cjs/tree/tree.css +478 -0
- package/lib/cjs/tree/tree.scss +372 -0
- package/lib/cjs/tree/treeUtil.d.ts +79 -0
- package/lib/cjs/tree/treeUtil.js +804 -0
- package/lib/cjs/tree/variables.scss +54 -0
- package/lib/cjs/treeSelect/constants.d.ts +13 -0
- package/lib/cjs/treeSelect/constants.js +27 -0
- package/lib/cjs/treeSelect/foundation.d.ts +162 -0
- package/lib/cjs/treeSelect/foundation.js +792 -0
- package/lib/cjs/treeSelect/rtl.scss +62 -0
- package/lib/cjs/treeSelect/treeSelect.css +308 -0
- package/lib/cjs/treeSelect/treeSelect.scss +332 -0
- package/lib/cjs/treeSelect/variables.scss +90 -0
- package/lib/cjs/typography/constants.d.ts +10 -0
- package/lib/cjs/typography/constants.js +23 -0
- package/lib/cjs/typography/rtl.scss +34 -0
- package/lib/cjs/typography/typography.css +220 -0
- package/lib/cjs/typography/typography.scss +218 -0
- package/lib/cjs/typography/variables.scss +45 -0
- package/lib/cjs/upload/constants.d.ts +28 -0
- package/lib/cjs/upload/constants.js +49 -0
- package/lib/cjs/upload/foundation.d.ts +166 -0
- package/lib/cjs/upload/foundation.js +1067 -0
- package/lib/cjs/upload/rtl.scss +87 -0
- package/lib/cjs/upload/upload.css +493 -0
- package/lib/cjs/upload/upload.scss +522 -0
- package/lib/cjs/upload/utils.d.ts +6 -0
- package/lib/cjs/upload/utils.js +165 -0
- package/lib/cjs/upload/variables.scss +81 -0
- package/lib/cjs/utils/Event.d.ts +7 -0
- package/lib/cjs/utils/Event.js +91 -0
- package/lib/cjs/utils/Logger.d.ts +15 -0
- package/lib/cjs/utils/Logger.js +77 -0
- package/lib/cjs/utils/Store.d.ts +9 -0
- package/lib/cjs/utils/Store.js +60 -0
- package/lib/cjs/utils/array.d.ts +22 -0
- package/lib/cjs/utils/array.js +64 -0
- package/lib/cjs/utils/classnames.d.ts +4 -0
- package/lib/cjs/utils/classnames.js +54 -0
- package/lib/cjs/utils/date-fns-extra.d.ts +55 -0
- package/lib/cjs/utils/date-fns-extra.js +148 -0
- package/lib/cjs/utils/dom.d.ts +27 -0
- package/lib/cjs/utils/dom.js +92 -0
- package/lib/cjs/utils/function.d.ts +4 -0
- package/lib/cjs/utils/function.js +15 -0
- package/lib/cjs/utils/getDataAttr.d.ts +1 -0
- package/lib/cjs/utils/getDataAttr.js +27 -0
- package/lib/cjs/utils/getHighlight.d.ts +45 -0
- package/lib/cjs/utils/getHighlight.js +211 -0
- package/lib/cjs/utils/getMotionObjFromProps.d.ts +26 -0
- package/lib/cjs/utils/getMotionObjFromProps.js +77 -0
- package/lib/cjs/utils/index.d.ts +2 -0
- package/lib/cjs/utils/index.js +41 -0
- package/lib/cjs/utils/isBothNaN.d.ts +8 -0
- package/lib/cjs/utils/isBothNaN.js +25 -0
- package/lib/cjs/utils/isElement.d.ts +1 -0
- package/lib/cjs/utils/isElement.js +21 -0
- package/lib/cjs/utils/isNullOrUndefined.d.ts +6 -0
- package/lib/cjs/utils/isNullOrUndefined.js +18 -0
- package/lib/cjs/utils/isNumber.d.ts +1 -0
- package/lib/cjs/utils/isNumber.js +13 -0
- package/lib/cjs/utils/isObject.d.ts +1 -0
- package/lib/cjs/utils/isObject.js +13 -0
- package/lib/cjs/utils/isPromise.d.ts +1 -0
- package/lib/cjs/utils/isPromise.js +17 -0
- package/lib/cjs/utils/isString.d.ts +1 -0
- package/lib/cjs/utils/isString.js +13 -0
- package/lib/cjs/utils/keyCode.d.ts +427 -0
- package/lib/cjs/utils/keyCode.js +542 -0
- package/lib/cjs/utils/log.d.ts +2 -0
- package/lib/cjs/utils/log.js +26 -0
- package/lib/cjs/utils/number.d.ts +10 -0
- package/lib/cjs/utils/number.js +29 -0
- package/lib/cjs/utils/object.d.ts +17 -0
- package/lib/cjs/utils/object.js +174 -0
- package/lib/cjs/utils/set.d.ts +7 -0
- package/lib/cjs/utils/set.js +44 -0
- package/lib/cjs/utils/shallowEqualObjects.d.ts +5 -0
- package/lib/cjs/utils/shallowEqualObjects.js +41 -0
- package/lib/cjs/utils/touchPolyfill.d.ts +2 -0
- package/lib/cjs/utils/touchPolyfill.js +50 -0
- package/lib/cjs/utils/type.d.ts +31 -0
- package/lib/cjs/utils/type.js +7 -0
- package/lib/cjs/utils/uuid.d.ts +3 -0
- package/lib/cjs/utils/uuid.js +29 -0
- package/lib/cjs/utils/warning.d.ts +1 -0
- package/lib/cjs/utils/warning.js +15 -0
- package/lib/es/anchor/foundation.js +8 -5
- package/lib/es/autoComplete/foundation.js +8 -5
- package/lib/es/base/foundation.js +12 -12
- package/lib/es/calendar/foundation.d.ts +2 -1
- package/lib/es/cascader/foundation.d.ts +1 -1
- package/lib/es/cascader/foundation.js +25 -17
- package/lib/es/cascader/util.js +5 -3
- package/lib/es/collapse/foundation.d.ts +1 -1
- package/lib/es/datePicker/_utils/getFullDateOffset.js +2 -2
- package/lib/es/datePicker/foundation.js +15 -10
- package/lib/es/datePicker/monthsGridFoundation.js +8 -6
- package/lib/es/form/foundation.js +9 -6
- package/lib/es/form/utils.js +2 -2
- package/lib/es/input/foundation.js +15 -10
- package/lib/es/input/textareaFoundation.js +17 -14
- package/lib/es/input/util/getSizingData.js +3 -3
- package/lib/es/inputNumber/foundation.js +13 -11
- package/lib/es/navigation/foundation.js +2 -2
- package/lib/es/notification/notificationFoundation.js +2 -2
- package/lib/es/overflowList/foundation.js +6 -3
- package/lib/es/pagination/foundation.d.ts +2 -2
- package/lib/es/popconfirm/popconfirmFoundation.d.ts +2 -0
- package/lib/es/popconfirm/popconfirmFoundation.js +4 -0
- package/lib/es/scrollList/itemFoundation.d.ts +3 -3
- package/lib/es/scrollList/itemFoundation.js +17 -7
- package/lib/es/select/foundation.d.ts +2 -1
- package/lib/es/select/foundation.js +17 -9
- package/lib/es/sideSheet/sideSheetFoundation.js +8 -7
- package/lib/es/table/bodyFoundation.js +14 -8
- package/lib/es/table/foundation.js +87 -67
- package/lib/es/table/utils.d.ts +1 -1
- package/lib/es/table/utils.js +65 -42
- package/lib/es/tabs/foundation.d.ts +3 -0
- package/lib/es/tabs/foundation.js +6 -10
- package/lib/es/tabs/tabs.css +13 -1
- package/lib/es/tabs/tabs.scss +96 -76
- package/lib/es/tagInput/foundation.d.ts +1 -0
- package/lib/es/tagInput/foundation.js +12 -7
- package/lib/es/tagInput/utils/getSplitedArray.js +6 -4
- package/lib/es/timePicker/foundation.js +6 -4
- package/lib/es/timePicker/utils/index.js +5 -5
- package/lib/es/timeline/timeline.css +1 -0
- package/lib/es/timeline/timeline.scss +1 -0
- package/lib/es/timeline/variables.scss +1 -0
- package/lib/es/toast/toastFoundation.js +2 -2
- package/lib/es/tooltip/foundation.js +20 -18
- package/lib/es/transfer/foundation.js +2 -2
- package/lib/es/transfer/transferUtlls.js +4 -4
- package/lib/es/tree/foundation.d.ts +1 -1
- package/lib/es/tree/foundation.js +14 -14
- package/lib/es/tree/treeUtil.js +31 -25
- package/lib/es/treeSelect/foundation.d.ts +10 -12
- package/lib/es/treeSelect/foundation.js +16 -9
- package/lib/es/utils/classnames.js +9 -5
- package/lib/es/utils/getHighlight.js +2 -3
- package/lib/es/utils/getMotionObjFromProps.js +6 -5
- package/lib/es/utils/log.js +3 -1
- package/lib/es/utils/object.js +31 -21
- package/lib/es/utils/set.js +2 -2
- package/navigation/foundation.ts +1 -1
- package/notification/notificationFoundation.ts +1 -1
- package/overflowList/foundation.ts +1 -1
- package/package.json +6 -4
- package/pagination/foundation.ts +2 -2
- package/popconfirm/popconfirmFoundation.ts +5 -0
- package/scrollList/itemFoundation.ts +4 -4
- package/select/foundation.ts +10 -8
- package/sideSheet/sideSheetFoundation.ts +1 -1
- package/table/bodyFoundation.ts +1 -1
- package/table/foundation.ts +1 -1
- package/table/utils.ts +2 -2
- package/tabs/foundation.ts +8 -9
- package/tabs/tabs.scss +96 -76
- package/tagInput/foundation.ts +3 -1
- package/tagInput/utils/getSplitedArray.ts +1 -1
- package/timePicker/foundation.ts +1 -1
- package/timePicker/utils/index.ts +1 -1
- package/timeline/timeline.scss +1 -0
- package/timeline/variables.scss +1 -0
- package/toast/toastFoundation.ts +1 -1
- package/tooltip/foundation.ts +5 -3
- package/transfer/foundation.ts +1 -1
- package/transfer/transferUtlls.ts +1 -1
- package/tree/foundation.ts +2 -2
- package/tree/treeUtil.ts +2 -2
- package/treeSelect/foundation.ts +12 -11
- package/utils/classnames.ts +1 -1
- package/utils/getHighlight.ts +1 -1
- package/utils/getMotionObjFromProps.ts +1 -1
- package/utils/log.ts +3 -1
- package/utils/object.ts +1 -1
- package/utils/set.ts +1 -1
- package/babel.config.js +0 -33
- package/icons/icons.scss +0 -39
- package/icons/variables.scss +0 -7
- package/lib/es/icons/icons.css +0 -40
- package/lib/es/icons/icons.scss +0 -39
- package/lib/es/icons/variables.scss +0 -7
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import _isNumber from "lodash/isNumber";
|
|
1
2
|
import _Object$assign from "@babel/runtime-corejs3/core-js-stable/object/assign";
|
|
2
3
|
import _setTimeout from "@babel/runtime-corejs3/core-js-stable/set-timeout";
|
|
3
4
|
import BaseFoundation from '../base/foundation';
|
|
4
|
-
import { isNumber } from 'lodash-es';
|
|
5
5
|
export default class ToastFoundation extends BaseFoundation {
|
|
6
6
|
constructor(adapter) {
|
|
7
7
|
super(_Object$assign(_Object$assign({}, ToastFoundation.defaultAdapter), adapter));
|
|
@@ -22,7 +22,7 @@ export default class ToastFoundation extends BaseFoundation {
|
|
|
22
22
|
// unit: s
|
|
23
23
|
const duration = this._adapter.getProp('duration');
|
|
24
24
|
|
|
25
|
-
if (duration &&
|
|
25
|
+
if (duration && _isNumber(duration)) {
|
|
26
26
|
this._timer = _setTimeout(() => {
|
|
27
27
|
this.close(); // call parent to remove itself
|
|
28
28
|
}, duration * 1000);
|
|
@@ -1,16 +1,11 @@
|
|
|
1
|
+
import _isEmpty from "lodash/isEmpty";
|
|
2
|
+
import _get from "lodash/get";
|
|
1
3
|
import _Object$assign from "@babel/runtime-corejs3/core-js-stable/object/assign";
|
|
2
4
|
import _setTimeout from "@babel/runtime-corejs3/core-js-stable/set-timeout";
|
|
3
5
|
import _includesInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/includes";
|
|
4
6
|
import _concatInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/concat";
|
|
5
7
|
import _Object$defineProperty from "@babel/runtime-corejs3/core-js-stable/object/define-property";
|
|
6
8
|
import _indexOfInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/index-of";
|
|
7
|
-
|
|
8
|
-
/* eslint-disable no-param-reassign */
|
|
9
|
-
|
|
10
|
-
/* eslint-disable prefer-destructuring, max-lines-per-function, one-var, max-len, @typescript-eslint/restrict-plus-operands */
|
|
11
|
-
|
|
12
|
-
/* argus-disable unPkgSensitiveInfo */
|
|
13
|
-
import { get, isEmpty } from 'lodash-es';
|
|
14
9
|
import BaseFoundation from '../base/foundation';
|
|
15
10
|
const REGS = {
|
|
16
11
|
TOP: /top/i,
|
|
@@ -77,6 +72,9 @@ export default class Tooltip extends BaseFoundation {
|
|
|
77
72
|
this._adapter.insertPortal(content, position);
|
|
78
73
|
|
|
79
74
|
if (trigger === 'custom') {
|
|
75
|
+
// eslint-disable-next-line
|
|
76
|
+
this._adapter.registerClickOutsideHandler(() => {});
|
|
77
|
+
|
|
80
78
|
this._togglePortalVisible(true);
|
|
81
79
|
}
|
|
82
80
|
/**
|
|
@@ -115,9 +113,9 @@ export default class Tooltip extends BaseFoundation {
|
|
|
115
113
|
|
|
116
114
|
this.calcPosition = function (triggerRect, wrapperRect, containerRect) {
|
|
117
115
|
let shouldUpdatePos = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true;
|
|
118
|
-
triggerRect = (
|
|
119
|
-
containerRect = (
|
|
120
|
-
wrapperRect = (
|
|
116
|
+
triggerRect = (_isEmpty(triggerRect) ? _this._adapter.getTriggerBounding() : triggerRect) || _Object$assign({}, defaultRect);
|
|
117
|
+
containerRect = (_isEmpty(containerRect) ? _this._adapter.getPopupContainerRect() : containerRect) || _Object$assign({}, defaultRect);
|
|
118
|
+
wrapperRect = (_isEmpty(wrapperRect) ? _this._adapter.getWrapperBounding() : wrapperRect) || _Object$assign({}, defaultRect); // console.log('containerRect: ', containerRect, 'triggerRect: ', triggerRect, 'wrapperRect: ', wrapperRect);
|
|
121
119
|
|
|
122
120
|
let style = _this.calcPosStyle(triggerRect, wrapperRect, containerRect);
|
|
123
121
|
|
|
@@ -199,12 +197,12 @@ export default class Tooltip extends BaseFoundation {
|
|
|
199
197
|
}
|
|
200
198
|
|
|
201
199
|
_bindEvent() {
|
|
202
|
-
const
|
|
200
|
+
const trigger = this.getProp('trigger'); // get trigger type
|
|
203
201
|
|
|
204
202
|
const {
|
|
205
203
|
triggerEventSet,
|
|
206
204
|
portalEventSet
|
|
207
|
-
} = this._generateEvent(
|
|
205
|
+
} = this._generateEvent(trigger);
|
|
208
206
|
|
|
209
207
|
this._bindTriggerEvent(triggerEventSet);
|
|
210
208
|
|
|
@@ -413,9 +411,9 @@ export default class Tooltip extends BaseFoundation {
|
|
|
413
411
|
}
|
|
414
412
|
|
|
415
413
|
calcPosStyle(triggerRect, wrapperRect, containerRect, position, spacing) {
|
|
416
|
-
triggerRect = (
|
|
417
|
-
containerRect = (
|
|
418
|
-
wrapperRect = (
|
|
414
|
+
triggerRect = (_isEmpty(triggerRect) ? triggerRect : this._adapter.getTriggerBounding()) || _Object$assign({}, defaultRect);
|
|
415
|
+
containerRect = (_isEmpty(containerRect) ? containerRect : this._adapter.getPopupContainerRect()) || _Object$assign({}, defaultRect);
|
|
416
|
+
wrapperRect = (_isEmpty(wrapperRect) ? wrapperRect : this._adapter.getWrapperBounding()) || _Object$assign({}, defaultRect); // eslint-disable-next-line
|
|
419
417
|
|
|
420
418
|
position = position != null ? position : this.getProp('position'); // eslint-disable-next-line
|
|
421
419
|
|
|
@@ -426,9 +424,13 @@ export default class Tooltip extends BaseFoundation {
|
|
|
426
424
|
arrowBounding
|
|
427
425
|
} = this.getProps();
|
|
428
426
|
const pointAtCenter = showArrow && arrowPointAtCenter;
|
|
429
|
-
|
|
430
|
-
const
|
|
431
|
-
|
|
427
|
+
|
|
428
|
+
const horizontalArrowWidth = _get(arrowBounding, 'width', 24);
|
|
429
|
+
|
|
430
|
+
const verticalArrowHeight = _get(arrowBounding, 'width', 24);
|
|
431
|
+
|
|
432
|
+
const arrowOffsetY = _get(arrowBounding, 'offsetY', 0);
|
|
433
|
+
|
|
432
434
|
const positionOffsetX = 6;
|
|
433
435
|
const positionOffsetY = 6; // You must use left/top when rendering, using right/bottom does not render the element position correctly
|
|
434
436
|
// Use left/top + translate to achieve tooltip positioning perfectly without knowing the size of the tooltip expansion layer
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import _omit from "lodash/omit";
|
|
1
2
|
import _Object$assign from "@babel/runtime-corejs3/core-js-stable/object/assign";
|
|
2
3
|
import _mapInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/map";
|
|
3
4
|
import _Set from "@babel/runtime-corejs3/core-js-stable/set";
|
|
@@ -8,7 +9,6 @@ import _forEachInstanceProperty from "@babel/runtime-corejs3/core-js-stable/inst
|
|
|
8
9
|
import _valuesInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/values";
|
|
9
10
|
import _sliceInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/slice";
|
|
10
11
|
import _spliceInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/splice";
|
|
11
|
-
import { omit } from 'lodash-es';
|
|
12
12
|
import BaseFoundation from '../base/foundation';
|
|
13
13
|
import { strings } from './constants';
|
|
14
14
|
import { _generateGroupedData, _generateTreeData } from './transferUtlls'; // eslint-disable-next-line max-len
|
|
@@ -246,7 +246,7 @@ export default class TransferFoundation extends BaseFoundation {
|
|
|
246
246
|
const values = [];
|
|
247
247
|
|
|
248
248
|
for (const item of selectedItems) {
|
|
249
|
-
const obj = type === strings.TYPE_GROUP_LIST ?
|
|
249
|
+
const obj = type === strings.TYPE_GROUP_LIST ? _omit(item[1], '_parent') : item[1];
|
|
250
250
|
items.push(obj);
|
|
251
251
|
values.push(obj.value);
|
|
252
252
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import _omit from "lodash/omit";
|
|
1
2
|
import _indexOfInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/index-of";
|
|
2
3
|
import _Object$getOwnPropertySymbols from "@babel/runtime-corejs3/core-js-stable/object/get-own-property-symbols";
|
|
3
4
|
import _forEachInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/for-each";
|
|
@@ -20,7 +21,6 @@ var __rest = this && this.__rest || function (s, e) {
|
|
|
20
21
|
return t;
|
|
21
22
|
};
|
|
22
23
|
|
|
23
|
-
import { omit } from 'lodash-es';
|
|
24
24
|
import { strings } from './constants';
|
|
25
25
|
export function _generateGroupedData(dataSource) {
|
|
26
26
|
const newData = [];
|
|
@@ -52,7 +52,7 @@ export function _generateTreeData(dataSource) {
|
|
|
52
52
|
|
|
53
53
|
while (stack.length) {
|
|
54
54
|
const current = stack.pop();
|
|
55
|
-
current.path = current.path || [
|
|
55
|
+
current.path = current.path || [_omit(current, ['children'])];
|
|
56
56
|
|
|
57
57
|
if (current.children && _Array$isArray(current.children)) {
|
|
58
58
|
const nodes = current.children;
|
|
@@ -62,14 +62,14 @@ export function _generateTreeData(dataSource) {
|
|
|
62
62
|
|
|
63
63
|
const child = _Object$assign({}, nodes[i]);
|
|
64
64
|
|
|
65
|
-
child.path = _concatInstanceProperty(_context3 = _concatInstanceProperty(_context4 = []).call(_context4, current.path)).call(_context3,
|
|
65
|
+
child.path = _concatInstanceProperty(_context3 = _concatInstanceProperty(_context4 = []).call(_context4, current.path)).call(_context3, _omit(child, ['children']));
|
|
66
66
|
stack.push(child);
|
|
67
67
|
}
|
|
68
68
|
} else {
|
|
69
69
|
current.isLeaf = true;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
newData.push(
|
|
72
|
+
newData.push(_omit(current, ['children']));
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
return newData;
|
|
@@ -162,7 +162,7 @@ export interface BasicTreeProps {
|
|
|
162
162
|
onDragOver?: (dragProps: BasicDragProps) => void;
|
|
163
163
|
onDragStart?: (dragProps: BasicDragProps) => void;
|
|
164
164
|
onDrop?: (onDragProps: BasicOnDragProps) => void;
|
|
165
|
-
onExpand?: (expandedKeys: string[],
|
|
165
|
+
onExpand?: (expandedKeys: string[], expandedOtherProps: BasicExpandedOtherProps) => void;
|
|
166
166
|
onLoad?: (loadedKeys?: Set<string>, treeNode?: BasicTreeNodeData) => void;
|
|
167
167
|
onContextMenu?: (e: any, node: BasicTreeNodeData) => void;
|
|
168
168
|
onSearch?: (sunInput: string) => void;
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
import _get from "lodash/get";
|
|
2
|
+
import _cloneDeep from "lodash/cloneDeep";
|
|
3
|
+
import _pick from "lodash/pick";
|
|
4
|
+
import _difference from "lodash/difference";
|
|
5
|
+
import _isUndefined from "lodash/isUndefined";
|
|
1
6
|
import _Object$assign from "@babel/runtime-corejs3/core-js-stable/object/assign";
|
|
2
7
|
import _forEachInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/for-each";
|
|
3
8
|
import _Set from "@babel/runtime-corejs3/core-js-stable/set";
|
|
@@ -9,12 +14,6 @@ import _someInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instanc
|
|
|
9
14
|
import _everyInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/every";
|
|
10
15
|
import _setTimeout from "@babel/runtime-corejs3/core-js-stable/set-timeout";
|
|
11
16
|
import _Object$keys from "@babel/runtime-corejs3/core-js-stable/object/keys";
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* The drag and drop handler implementation is referenced from rc-tree
|
|
15
|
-
* https://github.com/react-component/tree
|
|
16
|
-
*/
|
|
17
|
-
import { isUndefined, difference, pick, cloneDeep, get } from 'lodash-es';
|
|
18
17
|
import BaseFoundation from '../base/foundation';
|
|
19
18
|
import { flattenTreeData, findDescendantKeys, findAncestorKeys, filter, normalizedArr, normalizeKeyList, getMotionKeys, calcCheckedKeysForChecked, calcCheckedKeysForUnchecked, calcCheckedKeys, getValueOrKey, getDragNodesKeys, calcDropRelativePosition, calcDropActualPosition } from './treeUtil';
|
|
20
19
|
export default class TreeFoundation extends BaseFoundation {
|
|
@@ -43,11 +42,11 @@ export default class TreeFoundation extends BaseFoundation {
|
|
|
43
42
|
}
|
|
44
43
|
|
|
45
44
|
_isExpandControlled() {
|
|
46
|
-
return !
|
|
45
|
+
return !_isUndefined(this.getProp('expandedKeys'));
|
|
47
46
|
}
|
|
48
47
|
|
|
49
48
|
_isLoadControlled() {
|
|
50
|
-
return !
|
|
49
|
+
return !_isUndefined(this.getProp('loadedKeys'));
|
|
51
50
|
}
|
|
52
51
|
|
|
53
52
|
_isFilterable() {
|
|
@@ -71,7 +70,7 @@ export default class TreeFoundation extends BaseFoundation {
|
|
|
71
70
|
const res = {};
|
|
72
71
|
|
|
73
72
|
_forEachInstanceProperty(_context = normalizedArr(items)).call(_context, key => {
|
|
74
|
-
res[key] =
|
|
73
|
+
res[key] = _cloneDeep(this.getState(key));
|
|
75
74
|
});
|
|
76
75
|
|
|
77
76
|
return res;
|
|
@@ -131,7 +130,7 @@ export default class TreeFoundation extends BaseFoundation {
|
|
|
131
130
|
|
|
132
131
|
const selectedPath = _mapInstanceProperty(_context2 = normalizedArr(key)).call(_context2, i => i.replace('-', '.'));
|
|
133
132
|
|
|
134
|
-
const value =
|
|
133
|
+
const value = _pick(data, selectedPath);
|
|
135
134
|
|
|
136
135
|
this._adapter.notifyChange(value);
|
|
137
136
|
}
|
|
@@ -170,11 +169,12 @@ export default class TreeFoundation extends BaseFoundation {
|
|
|
170
169
|
let value;
|
|
171
170
|
|
|
172
171
|
if (this.getProp('onChangeWithObject')) {
|
|
173
|
-
value =
|
|
172
|
+
value = _get(keyEntities, key).data;
|
|
174
173
|
} else {
|
|
175
174
|
const {
|
|
176
175
|
data
|
|
177
|
-
} =
|
|
176
|
+
} = _get(keyEntities, key);
|
|
177
|
+
|
|
178
178
|
value = getValueOrKey(data);
|
|
179
179
|
}
|
|
180
180
|
|
|
@@ -348,7 +348,7 @@ export default class TreeFoundation extends BaseFoundation {
|
|
|
348
348
|
|
|
349
349
|
const nonDisabled = _filterInstanceProperty(descendantKeys).call(descendantKeys, key => !disabledKeys.has(key));
|
|
350
350
|
|
|
351
|
-
const newCheckedKeys = targetStatus ? [...nonDisabled, ...checkedKeys] :
|
|
351
|
+
const newCheckedKeys = targetStatus ? [...nonDisabled, ...checkedKeys] : _difference(normalizeKeyList([...checkedKeys], keyEntities, true), nonDisabled);
|
|
352
352
|
return calcCheckedKeys(newCheckedKeys, keyEntities);
|
|
353
353
|
}
|
|
354
354
|
/*
|
|
@@ -500,7 +500,7 @@ export default class TreeFoundation extends BaseFoundation {
|
|
|
500
500
|
|
|
501
501
|
|
|
502
502
|
getDragEventNodeData(node) {
|
|
503
|
-
return _Object$assign(_Object$assign({}, node.data),
|
|
503
|
+
return _Object$assign(_Object$assign({}, node.data), _pick(node, ['expanded', 'pos', 'children']));
|
|
504
504
|
}
|
|
505
505
|
|
|
506
506
|
triggerDragEvent(name, event, node) {
|
package/lib/es/tree/treeUtil.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
import _get from "lodash/get";
|
|
2
|
+
import _pick from "lodash/pick";
|
|
3
|
+
import _isEmpty from "lodash/isEmpty";
|
|
4
|
+
import _isUndefined from "lodash/isUndefined";
|
|
5
|
+
import _isNull from "lodash/isNull";
|
|
6
|
+
import _isObject from "lodash/isObject";
|
|
7
|
+
import _max from "lodash/max";
|
|
8
|
+
import _uniq from "lodash/uniq";
|
|
9
|
+
import _difference from "lodash/difference";
|
|
1
10
|
import _concatInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/concat";
|
|
2
11
|
import _mapInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/map";
|
|
3
12
|
import _Object$assign from "@babel/runtime-corejs3/core-js-stable/object/assign";
|
|
@@ -9,14 +18,9 @@ import _Set from "@babel/runtime-corejs3/core-js-stable/set";
|
|
|
9
18
|
import _everyInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/every";
|
|
10
19
|
import _Object$keys from "@babel/runtime-corejs3/core-js-stable/object/keys";
|
|
11
20
|
import _filterInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/filter";
|
|
21
|
+
import _Array$from from "@babel/runtime-corejs3/core-js-stable/array/from";
|
|
12
22
|
import _someInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/some";
|
|
13
23
|
import _Object$values from "@babel/runtime-corejs3/core-js-stable/object/values";
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* Part of the utils function implementation process reference
|
|
17
|
-
* https://github.com/react-component/tree/blob/master/src/util.tsx
|
|
18
|
-
*/
|
|
19
|
-
import { difference, uniq, max, isObject, isNull, isUndefined, isEmpty, pick, get } from 'lodash-es';
|
|
20
24
|
const DRAG_OFFSET = 0.45;
|
|
21
25
|
|
|
22
26
|
function getPosition(level, index) {
|
|
@@ -26,7 +30,7 @@ function getPosition(level, index) {
|
|
|
26
30
|
}
|
|
27
31
|
|
|
28
32
|
function isValid(val) {
|
|
29
|
-
return !
|
|
33
|
+
return !_isNull(val) && !_isUndefined(val);
|
|
30
34
|
}
|
|
31
35
|
/**
|
|
32
36
|
* Flat nest tree data into flatten list. This is used for virtual list render.
|
|
@@ -49,7 +53,7 @@ export function flattenTreeData(treeNodeList, expandedKeys) {
|
|
|
49
53
|
const pos = getPosition(parent ? parent.pos : '0', index);
|
|
50
54
|
const mergedKey = treeNode.key; // Add FlattenDataNode into list
|
|
51
55
|
|
|
52
|
-
const flattenNode = _Object$assign(_Object$assign({},
|
|
56
|
+
const flattenNode = _Object$assign(_Object$assign({}, _pick(treeNode, ['key', 'label', 'value', 'icon', 'disabled', 'isLeaf'])), {
|
|
53
57
|
parent,
|
|
54
58
|
pos,
|
|
55
59
|
children: null,
|
|
@@ -92,7 +96,7 @@ export function convertJsonToData(treeJson) {
|
|
|
92
96
|
value: children
|
|
93
97
|
};
|
|
94
98
|
|
|
95
|
-
if (
|
|
99
|
+
if (_isObject(children)) {
|
|
96
100
|
var _context2;
|
|
97
101
|
|
|
98
102
|
const childres = [];
|
|
@@ -166,7 +170,7 @@ export function convertDataToEntities(dataNodes) {
|
|
|
166
170
|
|
|
167
171
|
const entity = _Object$assign({}, data);
|
|
168
172
|
|
|
169
|
-
const value =
|
|
173
|
+
const value = _get(entity, 'data.value', null);
|
|
170
174
|
|
|
171
175
|
if (value !== null) {
|
|
172
176
|
valueEntities[value] = key;
|
|
@@ -199,7 +203,7 @@ export function findKeysForValues(valueList, valueEntities) {
|
|
|
199
203
|
valueList = [valueList];
|
|
200
204
|
}
|
|
201
205
|
|
|
202
|
-
if (
|
|
206
|
+
if (_isEmpty(valueEntities)) {
|
|
203
207
|
return valueList;
|
|
204
208
|
}
|
|
205
209
|
|
|
@@ -298,7 +302,7 @@ export function findSiblingKeys(selectedKeys, options) {
|
|
|
298
302
|
}
|
|
299
303
|
});
|
|
300
304
|
|
|
301
|
-
const res = findChildKeys(
|
|
305
|
+
const res = findChildKeys(_uniq(par), options, self ? [] : selectedKeys);
|
|
302
306
|
return res;
|
|
303
307
|
}
|
|
304
308
|
export function findAncestorKeys(selectedKeys, options) {
|
|
@@ -391,10 +395,10 @@ export function calcCheckedKeys(values, keyEntities) {
|
|
|
391
395
|
}; // Loop keyList from deepest Level to topLevel, bottom up
|
|
392
396
|
|
|
393
397
|
|
|
394
|
-
while (!
|
|
398
|
+
while (!_isEmpty(levelMap)) {
|
|
395
399
|
var _context5, _context6;
|
|
396
400
|
|
|
397
|
-
const maxLevel =
|
|
401
|
+
const maxLevel = _max(_mapInstanceProperty(_context5 = _Object$keys(levelMap)).call(_context5, key => Number(key)));
|
|
398
402
|
|
|
399
403
|
_forEachInstanceProperty(_context6 = levelMap[maxLevel]).call(_context6, key => calcCurrLevel(keyEntities[key]));
|
|
400
404
|
|
|
@@ -447,9 +451,9 @@ export function calcMotionKeys(oldKeySet, newKeySet, keyEntities) {
|
|
|
447
451
|
|
|
448
452
|
if (oldKeys.length > newKeys.length) {
|
|
449
453
|
motionType = 'hide';
|
|
450
|
-
diffKeys =
|
|
454
|
+
diffKeys = _difference(oldKeys, newKeys);
|
|
451
455
|
} else {
|
|
452
|
-
diffKeys =
|
|
456
|
+
diffKeys = _difference(newKeys, oldKeys);
|
|
453
457
|
}
|
|
454
458
|
|
|
455
459
|
return {
|
|
@@ -514,7 +518,9 @@ export function normalizeKeyList(keyList, keyEntities) {
|
|
|
514
518
|
res.push(key);
|
|
515
519
|
});
|
|
516
520
|
} else {
|
|
517
|
-
|
|
521
|
+
var _context8;
|
|
522
|
+
|
|
523
|
+
res = _filterInstanceProperty(_context8 = _Array$from(keyList)).call(_context8, key => keyEntities[key] && !isValid(keyEntities[key].children));
|
|
518
524
|
}
|
|
519
525
|
|
|
520
526
|
return res;
|
|
@@ -523,9 +529,9 @@ export function getMotionKeys(eventKey, expandedKeys, keyEntities) {
|
|
|
523
529
|
const res = [];
|
|
524
530
|
|
|
525
531
|
const getChild = itemKey => {
|
|
526
|
-
var
|
|
532
|
+
var _context9;
|
|
527
533
|
|
|
528
|
-
keyEntities[itemKey].children && _forEachInstanceProperty(
|
|
534
|
+
keyEntities[itemKey].children && _forEachInstanceProperty(_context9 = keyEntities[itemKey].children).call(_context9, item => {
|
|
529
535
|
const {
|
|
530
536
|
key
|
|
531
537
|
} = item;
|
|
@@ -641,7 +647,7 @@ export function calcCheckedKeysForUnchecked(key, keyEntities, checkedKeys, halfC
|
|
|
641
647
|
};
|
|
642
648
|
}
|
|
643
649
|
export function filterTreeData(info) {
|
|
644
|
-
var
|
|
650
|
+
var _context10, _context11;
|
|
645
651
|
|
|
646
652
|
const {
|
|
647
653
|
showFilteredOnly,
|
|
@@ -653,7 +659,7 @@ export function filterTreeData(info) {
|
|
|
653
659
|
prevExpandedKeys
|
|
654
660
|
} = info;
|
|
655
661
|
let filteredOptsKeys = [];
|
|
656
|
-
filteredOptsKeys = _mapInstanceProperty(
|
|
662
|
+
filteredOptsKeys = _mapInstanceProperty(_context10 = _filterInstanceProperty(_context11 = _Object$values(keyEntities)).call(_context11, item => filter(inputValue, item.data, filterTreeNode, filterProps))).call(_context10, item => item.key);
|
|
657
663
|
let expandedOptsKeys = findAncestorKeys(filteredOptsKeys, keyEntities, false);
|
|
658
664
|
|
|
659
665
|
if (prevExpandedKeys.length) {
|
|
@@ -675,10 +681,10 @@ export function filterTreeData(info) {
|
|
|
675
681
|
|
|
676
682
|
export function getValueOrKey(data) {
|
|
677
683
|
if (_Array$isArray(data)) {
|
|
678
|
-
return _mapInstanceProperty(data).call(data, item =>
|
|
684
|
+
return _mapInstanceProperty(data).call(data, item => _get(item, 'value', item.key));
|
|
679
685
|
}
|
|
680
686
|
|
|
681
|
-
return
|
|
687
|
+
return _get(data, 'value', data.key);
|
|
682
688
|
}
|
|
683
689
|
/* Convert value to string */
|
|
684
690
|
|
|
@@ -694,9 +700,9 @@ export function updateKeys(keySet, keyEntities) {
|
|
|
694
700
|
return _filterInstanceProperty(keyArr).call(keyArr, key => key in keyEntities);
|
|
695
701
|
}
|
|
696
702
|
export function calcDisabledKeys(keyEntities) {
|
|
697
|
-
var
|
|
703
|
+
var _context12;
|
|
698
704
|
|
|
699
|
-
const disabledKeys = _filterInstanceProperty(
|
|
705
|
+
const disabledKeys = _filterInstanceProperty(_context12 = _Object$keys(keyEntities)).call(_context12, key => keyEntities[key].data.disabled);
|
|
700
706
|
|
|
701
707
|
const {
|
|
702
708
|
checkedKeys
|
|
@@ -3,16 +3,15 @@ import { BasicTreeInnerData, BasicTreeProps, BasicTreeNodeData, BasicTreeNodePro
|
|
|
3
3
|
import { Motion } from '../utils/type';
|
|
4
4
|
export declare type ValidateStatus = 'error' | 'warning' | 'default';
|
|
5
5
|
export declare type Size = 'small' | 'large' | 'default';
|
|
6
|
-
export
|
|
7
|
-
|
|
8
|
-
(
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
6
|
+
export declare type BasicRenderSelectedItemInMultiple = (treeNode: BasicTreeNodeData, otherProps: {
|
|
7
|
+
index: number | string;
|
|
8
|
+
onClose: (tagContent: any, e: any) => void;
|
|
9
|
+
}) => {
|
|
10
|
+
isRenderInTag: boolean;
|
|
11
|
+
content: any;
|
|
12
|
+
};
|
|
13
|
+
export declare type BasicRenderSelectedItemInSingle = (treeNode: BasicTreeNodeData) => any;
|
|
14
|
+
export declare type BasicRenderSelectedItem = BasicRenderSelectedItemInSingle | BasicRenderSelectedItemInMultiple;
|
|
16
15
|
export interface BasicTriggerRenderProps {
|
|
17
16
|
[x: string]: any;
|
|
18
17
|
componentProps: BasicTreeSelectProps;
|
|
@@ -63,7 +62,6 @@ export interface BasicTreeSelectProps extends Pick<BasicTreeProps, 'virtualize'
|
|
|
63
62
|
searchRender?: (inputProps: any) => any;
|
|
64
63
|
renderSelectedItem?: BasicRenderSelectedItem;
|
|
65
64
|
getPopupContainer?: () => HTMLElement;
|
|
66
|
-
triggerRender?: (props: BasicTriggerRenderProps) => any;
|
|
67
65
|
onBlur?: (e: any) => void;
|
|
68
66
|
onChange?: BasicOnChange;
|
|
69
67
|
onFocus?: (e: any) => void;
|
|
@@ -94,7 +92,7 @@ export interface TreeSelectAdapter<P = Record<string, any>, S = Record<string, a
|
|
|
94
92
|
setOptionWrapperWidth: (width: null | number) => void;
|
|
95
93
|
notifyChange: BasicOnChangeWithBasic;
|
|
96
94
|
notifyChangeWithObject: BasicOnChangeWithObject;
|
|
97
|
-
notifyExpand: (expandedKeys: Set<string>,
|
|
95
|
+
notifyExpand: (expandedKeys: Set<string>, expandedOtherProps: BasicExpandedOtherProps) => void;
|
|
98
96
|
notifyFocus: (e: any) => void;
|
|
99
97
|
notifyBlur: (e: any) => void;
|
|
100
98
|
toggleHovering: (bool: boolean) => void;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
import _difference from "lodash/difference";
|
|
2
|
+
import _isEmpty from "lodash/isEmpty";
|
|
3
|
+
import _cloneDeep from "lodash/cloneDeep";
|
|
4
|
+
import _isString from "lodash/isString";
|
|
5
|
+
import _isUndefined from "lodash/isUndefined";
|
|
6
|
+
import _get from "lodash/get";
|
|
7
|
+
import _isFunction from "lodash/isFunction";
|
|
8
|
+
import _isNumber from "lodash/isNumber";
|
|
1
9
|
import _Object$assign from "@babel/runtime-corejs3/core-js-stable/object/assign";
|
|
2
10
|
import _includesInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/includes";
|
|
3
11
|
import _forEachInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/for-each";
|
|
@@ -8,7 +16,6 @@ import _filterInstanceProperty from "@babel/runtime-corejs3/core-js-stable/insta
|
|
|
8
16
|
import _Object$values from "@babel/runtime-corejs3/core-js-stable/object/values";
|
|
9
17
|
import _someInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/some";
|
|
10
18
|
import _everyInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/every";
|
|
11
|
-
import { isNumber, isFunction, get, isUndefined, isString, cloneDeep, isEmpty, difference } from 'lodash-es';
|
|
12
19
|
import { strings } from '../treeSelect/constants';
|
|
13
20
|
import BaseFoundation from '../base/foundation';
|
|
14
21
|
import { flattenTreeData, findDescendantKeys, findAncestorKeys, filter, normalizedArr, normalizeKeyList, getMotionKeys, calcCheckedKeysForChecked, calcCheckedKeys, calcCheckedKeysForUnchecked, getValueOrKey } from '../tree/treeUtil'; // eslint-disable-next-line max-len
|
|
@@ -51,9 +58,9 @@ export default class TreeSelectFoundation extends BaseFoundation {
|
|
|
51
58
|
if (dropdownMatchSelectWidth) {
|
|
52
59
|
var _context;
|
|
53
60
|
|
|
54
|
-
if (style &&
|
|
61
|
+
if (style && _isNumber(style.width)) {
|
|
55
62
|
width = style.width;
|
|
56
|
-
} else if (style &&
|
|
63
|
+
} else if (style && _isString(style.width) && !_includesInstanceProperty(_context = style.width).call(_context, '%')) {
|
|
57
64
|
width = style.width;
|
|
58
65
|
} else {
|
|
59
66
|
width = this._adapter.getTriggerWidth();
|
|
@@ -104,7 +111,7 @@ export default class TreeSelectFoundation extends BaseFoundation {
|
|
|
104
111
|
const res = {};
|
|
105
112
|
|
|
106
113
|
_forEachInstanceProperty(_context2 = normalizedArr(items)).call(_context2, key => {
|
|
107
|
-
res[key] =
|
|
114
|
+
res[key] = _cloneDeep(this.getState(key));
|
|
108
115
|
});
|
|
109
116
|
|
|
110
117
|
return res;
|
|
@@ -229,8 +236,8 @@ export default class TreeSelectFoundation extends BaseFoundation {
|
|
|
229
236
|
if (this._isMultiple() && _Array$isArray(key)) {
|
|
230
237
|
this._notifyMultipleChange(key, e);
|
|
231
238
|
} else {
|
|
232
|
-
const nodes =
|
|
233
|
-
const value =
|
|
239
|
+
const nodes = _isUndefined(key) ? key : keyEntities[key].data;
|
|
240
|
+
const value = _isUndefined(key) ? key : getValueOrKey(nodes);
|
|
234
241
|
|
|
235
242
|
if (this.getProp('onChangeWithObject')) {
|
|
236
243
|
this._adapter.notifyChangeWithObject(nodes, e);
|
|
@@ -332,7 +339,7 @@ export default class TreeSelectFoundation extends BaseFoundation {
|
|
|
332
339
|
|
|
333
340
|
if (filterTreeNode && searchPosition === strings.SEARCH_POSITION_TRIGGER) {
|
|
334
341
|
if (inputValue !== '') {
|
|
335
|
-
if (
|
|
342
|
+
if (_isEmpty(selectedKeys)) {
|
|
336
343
|
this.handleInputChange('');
|
|
337
344
|
} else {
|
|
338
345
|
this.clearInput();
|
|
@@ -573,7 +580,7 @@ export default class TreeSelectFoundation extends BaseFoundation {
|
|
|
573
580
|
|
|
574
581
|
const nonDisabled = _filterInstanceProperty(descendantKeys).call(descendantKeys, key => !disabledKeys.has(key));
|
|
575
582
|
|
|
576
|
-
const newCheckedKeys = targetStatus ? [...nonDisabled, ...checkedKeys] :
|
|
583
|
+
const newCheckedKeys = targetStatus ? [...nonDisabled, ...checkedKeys] : _difference(normalizeKeyList([...checkedKeys], keyEntities, true), nonDisabled);
|
|
577
584
|
return calcCheckedKeys(newCheckedKeys, keyEntities);
|
|
578
585
|
}
|
|
579
586
|
|
|
@@ -725,7 +732,7 @@ export default class TreeSelectFoundation extends BaseFoundation {
|
|
|
725
732
|
selectedKeys,
|
|
726
733
|
keyEntities
|
|
727
734
|
} = this.getStates();
|
|
728
|
-
const renderSelectedItem =
|
|
735
|
+
const renderSelectedItem = _isFunction(propRenderSelectedItem) ? propRenderSelectedItem : item => _get(item, treeNodeLabelProp, null);
|
|
729
736
|
const item = selectedKeys.length && keyEntities[selectedKeys[0]] ? keyEntities[selectedKeys[0]].data : undefined;
|
|
730
737
|
const renderText = item && treeNodeLabelProp in item ? renderSelectedItem(item) : null;
|
|
731
738
|
return renderText;
|
|
@@ -1,34 +1,38 @@
|
|
|
1
|
+
import _map from "lodash/map";
|
|
2
|
+
import _filter from "lodash/filter";
|
|
3
|
+
import _split from "lodash/split";
|
|
1
4
|
import _includesInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/includes";
|
|
2
5
|
import _indexOfInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/index-of";
|
|
3
6
|
import _spliceInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/splice";
|
|
4
7
|
import classnames from 'classnames';
|
|
5
|
-
import { split, filter, map } from 'lodash-es';
|
|
6
8
|
|
|
7
9
|
function addClass(rawCls) {
|
|
8
|
-
const clss =
|
|
10
|
+
const clss = _split(rawCls, /\s+/);
|
|
9
11
|
|
|
10
12
|
for (var _len = arguments.length, srcClss = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
11
13
|
srcClss[_key - 1] = arguments[_key];
|
|
12
14
|
}
|
|
13
15
|
|
|
14
|
-
const validClss =
|
|
16
|
+
const validClss = _filter(srcClss, cls => !_includesInstanceProperty(clss).call(clss, cls));
|
|
17
|
+
|
|
15
18
|
return classnames(rawCls, ...validClss);
|
|
16
19
|
}
|
|
17
20
|
|
|
18
21
|
function removeClass(rawCls) {
|
|
19
|
-
const clss =
|
|
22
|
+
const clss = _split(rawCls, /\s+/);
|
|
20
23
|
|
|
21
24
|
for (var _len2 = arguments.length, srcClss = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
|
|
22
25
|
srcClss[_key2 - 1] = arguments[_key2];
|
|
23
26
|
}
|
|
24
27
|
|
|
25
|
-
|
|
28
|
+
_map(srcClss, cls => {
|
|
26
29
|
const index = _indexOfInstanceProperty(clss).call(clss, cls);
|
|
27
30
|
|
|
28
31
|
if (index > -1) {
|
|
29
32
|
_spliceInstanceProperty(clss).call(clss, index, 1);
|
|
30
33
|
}
|
|
31
34
|
});
|
|
35
|
+
|
|
32
36
|
return classnames(...clss);
|
|
33
37
|
}
|
|
34
38
|
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
+
import _isString from "lodash/isString";
|
|
1
2
|
import _reduceInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/reduce";
|
|
2
3
|
import _filterInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/filter";
|
|
3
4
|
import _sortInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/sort";
|
|
4
5
|
import _forEachInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/for-each";
|
|
5
|
-
// Modified version based on 'highlight-words-core'
|
|
6
|
-
import { isString } from 'lodash-es';
|
|
7
6
|
|
|
8
7
|
const escapeRegExpFn = string => string.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, '\\$&');
|
|
9
8
|
/**
|
|
@@ -175,7 +174,7 @@ const findAll = _ref4 => {
|
|
|
175
174
|
sourceString
|
|
176
175
|
} = _ref4;
|
|
177
176
|
|
|
178
|
-
if (
|
|
177
|
+
if (_isString(searchWords)) {
|
|
179
178
|
searchWords = [searchWords];
|
|
180
179
|
}
|
|
181
180
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import _isObject from "lodash/isObject";
|
|
2
|
+
import _cloneDeep from "lodash/cloneDeep";
|
|
1
3
|
import _Object$keys from "@babel/runtime-corejs3/core-js-stable/object/keys";
|
|
2
|
-
import { cloneDeep, isObject } from 'lodash-es';
|
|
3
4
|
import warning from './warning';
|
|
4
5
|
/**
|
|
5
6
|
* get motion object from props
|
|
@@ -26,8 +27,8 @@ export default function getMotionObjFromProps(props) {
|
|
|
26
27
|
} = props;
|
|
27
28
|
let motion = {};
|
|
28
29
|
|
|
29
|
-
if (
|
|
30
|
-
motion =
|
|
30
|
+
if (_isObject(motionProp)) {
|
|
31
|
+
motion = _cloneDeep(motionProp);
|
|
31
32
|
|
|
32
33
|
for (const key of _Object$keys(motionProp)) {
|
|
33
34
|
const handler = motionProp[key];
|
|
@@ -46,10 +47,10 @@ export default function getMotionObjFromProps(props) {
|
|
|
46
47
|
}
|
|
47
48
|
} else if (typeof motionProp === 'function') {
|
|
48
49
|
const motionFnResult = motionProp(props);
|
|
49
|
-
motion =
|
|
50
|
+
motion = _isObject(motionFnResult) ? motionFnResult : {};
|
|
50
51
|
}
|
|
51
52
|
|
|
52
|
-
if (
|
|
53
|
+
if (_isObject(motion)) {
|
|
53
54
|
for (const key of MOTION_PROPS) {
|
|
54
55
|
if (key in props && !(key in motion)) {
|
|
55
56
|
motion[key] = props[key];
|