@douyinfe/semi-foundation 2.36.0-alpha.0 → 2.36.0
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/calendar/calendar.scss +1 -1
- package/calendar/foundation.ts +2 -1
- package/datePicker/_utils/getYears.ts +8 -4
- package/datePicker/foundation.ts +1 -1
- package/datePicker/monthsGridFoundation.ts +2 -1
- package/datePicker/yearAndMonthFoundation.ts +3 -1
- package/lib/cjs/anchor/constants.js +0 -2
- package/lib/cjs/anchor/foundation.js +10 -73
- package/lib/cjs/anchor/linkFoundation.js +4 -16
- package/lib/cjs/autoComplete/constants.js +0 -3
- package/lib/cjs/autoComplete/foundation.d.ts +1 -1
- package/lib/cjs/autoComplete/foundation.js +25 -139
- package/lib/cjs/autoComplete/optionFoundation.js +4 -14
- package/lib/cjs/avatar/constants.js +0 -2
- package/lib/cjs/avatar/foundation.js +0 -17
- package/lib/cjs/backtop/constants.js +0 -2
- package/lib/cjs/backtop/foundation.d.ts +2 -2
- package/lib/cjs/backtop/foundation.js +0 -21
- package/lib/cjs/badge/constants.js +0 -2
- package/lib/cjs/banner/constants.js +0 -2
- package/lib/cjs/banner/foundation.js +0 -7
- package/lib/cjs/base/constants.js +2 -4
- package/lib/cjs/base/foundation.d.ts +1 -1
- package/lib/cjs/base/foundation.js +12 -46
- package/lib/cjs/base/index.js +0 -3
- package/lib/cjs/breadcrumb/constants.js +0 -2
- package/lib/cjs/breadcrumb/foundation.js +1 -12
- package/lib/cjs/breadcrumb/itemFoundation.js +0 -7
- package/lib/cjs/button/constants.js +0 -2
- package/lib/cjs/calendar/calendar.css +2 -2
- package/lib/cjs/calendar/calendar.scss +1 -1
- package/lib/cjs/calendar/constants.js +0 -2
- package/lib/cjs/calendar/eventUtil.d.ts +1 -1
- package/lib/cjs/calendar/eventUtil.js +2 -74
- package/lib/cjs/calendar/foundation.d.ts +2 -2
- package/lib/cjs/calendar/foundation.js +28 -123
- package/lib/cjs/card/constants.js +0 -2
- package/lib/cjs/carousel/constants.js +0 -2
- package/lib/cjs/carousel/foundation.js +2 -52
- package/lib/cjs/cascader/constants.js +0 -3
- package/lib/cjs/cascader/foundation.d.ts +4 -4
- package/lib/cjs/cascader/foundation.js +28 -242
- package/lib/cjs/cascader/util.js +6 -24
- package/lib/cjs/checkbox/checkboxFoundation.js +2 -38
- package/lib/cjs/checkbox/checkboxGroupFoundation.js +2 -23
- package/lib/cjs/checkbox/constants.js +0 -2
- package/lib/cjs/collapse/constants.js +0 -2
- package/lib/cjs/collapse/foundation.d.ts +1 -1
- package/lib/cjs/collapse/foundation.js +2 -13
- package/lib/cjs/collapsible/constants.js +0 -2
- package/lib/cjs/collapsible/foundation.js +0 -9
- package/lib/cjs/datePicker/_utils/formatter.js +4 -10
- package/lib/cjs/datePicker/_utils/getDayOfWeek.d.ts +1 -1
- package/lib/cjs/datePicker/_utils/getDayOfWeek.js +0 -4
- package/lib/cjs/datePicker/_utils/getDefaultFormatToken.js +0 -5
- package/lib/cjs/datePicker/_utils/getDefaultPickerDate.d.ts +1 -1
- package/lib/cjs/datePicker/_utils/getDefaultPickerDate.js +0 -15
- package/lib/cjs/datePicker/_utils/getFullDateOffset.js +0 -7
- package/lib/cjs/datePicker/_utils/getInsetInputFormatToken.js +0 -5
- package/lib/cjs/datePicker/_utils/getInsetInputValueFromInsetInputStr.js +0 -6
- package/lib/cjs/datePicker/_utils/getMonthTable.d.ts +1 -1
- package/lib/cjs/datePicker/_utils/getMonthTable.js +3 -14
- package/lib/cjs/datePicker/_utils/getMonthsInYear.js +0 -2
- package/lib/cjs/datePicker/_utils/getYears.d.ts +1 -1
- package/lib/cjs/datePicker/_utils/getYears.js +9 -7
- package/lib/cjs/datePicker/_utils/index.js +0 -13
- package/lib/cjs/datePicker/_utils/isAfter.js +0 -4
- package/lib/cjs/datePicker/_utils/isBefore.js +0 -4
- package/lib/cjs/datePicker/_utils/isBetween.js +0 -4
- package/lib/cjs/datePicker/_utils/isDate.js +0 -1
- package/lib/cjs/datePicker/_utils/isSameDay.js +0 -4
- package/lib/cjs/datePicker/_utils/isTimestamp.js +0 -4
- package/lib/cjs/datePicker/_utils/isUnixTimestamp.js +0 -4
- package/lib/cjs/datePicker/_utils/isValidDate.js +0 -1
- package/lib/cjs/datePicker/_utils/isValidTimeZone.js +0 -1
- package/lib/cjs/datePicker/_utils/isWithinInterval.js +0 -4
- package/lib/cjs/datePicker/_utils/parser.js +0 -10
- package/lib/cjs/datePicker/constants.js +0 -3
- package/lib/cjs/datePicker/foundation.d.ts +25 -25
- package/lib/cjs/datePicker/foundation.js +22 -333
- package/lib/cjs/datePicker/inputFoundation.d.ts +3 -3
- package/lib/cjs/datePicker/inputFoundation.js +5 -86
- package/lib/cjs/datePicker/monthFoundation.d.ts +1 -1
- package/lib/cjs/datePicker/monthFoundation.js +3 -28
- package/lib/cjs/datePicker/monthsGridFoundation.d.ts +5 -4
- package/lib/cjs/datePicker/monthsGridFoundation.js +43 -238
- package/lib/cjs/datePicker/yearAndMonthFoundation.d.ts +3 -1
- package/lib/cjs/datePicker/yearAndMonthFoundation.js +12 -38
- package/lib/cjs/descriptions/constants.js +0 -2
- package/lib/cjs/divider/constants.js +0 -2
- package/lib/cjs/dropdown/constants.js +0 -3
- package/lib/cjs/dropdown/foundation.js +4 -23
- package/lib/cjs/dropdown/menuFoundation.js +8 -27
- package/lib/cjs/empty/constants.js +0 -2
- package/lib/cjs/form/constants.js +0 -2
- package/lib/cjs/form/foundation.js +75 -206
- package/lib/cjs/form/interface.d.ts +5 -5
- package/lib/cjs/form/utils.js +47 -77
- package/lib/cjs/grid/constants.js +0 -2
- package/lib/cjs/highlight/constants.js +0 -2
- package/lib/cjs/icons/constants.js +0 -2
- package/lib/cjs/image/constants.js +0 -2
- package/lib/cjs/image/imageFoundation.js +4 -18
- package/lib/cjs/image/previewFooterFoundation.js +0 -13
- package/lib/cjs/image/previewFoundation.js +0 -11
- package/lib/cjs/image/previewImageFoundation.js +6 -80
- package/lib/cjs/image/previewInnerFoundation.js +12 -77
- package/lib/cjs/image/utils.js +0 -14
- package/lib/cjs/input/constants.js +0 -2
- package/lib/cjs/input/foundation.js +17 -101
- package/lib/cjs/input/textareaFoundation.js +20 -85
- package/lib/cjs/input/util/calculateNodeHeight.js +6 -18
- package/lib/cjs/input/util/getSizingData.js +7 -11
- package/lib/cjs/inputNumber/constants.js +0 -2
- package/lib/cjs/inputNumber/foundation.js +29 -192
- package/lib/cjs/layout/constants.js +0 -2
- package/lib/cjs/list/constants.js +0 -2
- package/lib/cjs/modal/constants.js +0 -2
- package/lib/cjs/modal/modalContentFoundation.js +0 -20
- package/lib/cjs/modal/modalFoundation.d.ts +2 -2
- package/lib/cjs/modal/modalFoundation.js +2 -22
- package/lib/cjs/navigation/NavItem.js +0 -10
- package/lib/cjs/navigation/constants.js +0 -3
- package/lib/cjs/navigation/foundation.js +3 -67
- package/lib/cjs/navigation/itemFoundation.d.ts +0 -2
- package/lib/cjs/navigation/itemFoundation.js +3 -21
- package/lib/cjs/navigation/navigation.css +7 -77
- package/lib/cjs/navigation/navigation.scss +7 -119
- package/lib/cjs/navigation/subNavFoundation.d.ts +0 -2
- package/lib/cjs/navigation/subNavFoundation.js +4 -40
- package/lib/cjs/notification/constants.js +0 -3
- package/lib/cjs/notification/notificationFoundation.d.ts +3 -3
- package/lib/cjs/notification/notificationFoundation.js +0 -16
- package/lib/cjs/notification/notificationListFoundation.js +7 -17
- package/lib/cjs/overflowList/constants.js +0 -2
- package/lib/cjs/overflowList/foundation.js +11 -41
- package/lib/cjs/pagination/constants.js +0 -2
- package/lib/cjs/pagination/foundation.d.ts +3 -3
- package/lib/cjs/pagination/foundation.js +21 -90
- package/lib/cjs/popconfirm/constants.js +0 -2
- package/lib/cjs/popconfirm/popconfirmFoundation.js +1 -21
- package/lib/cjs/popover/constants.js +0 -3
- package/lib/cjs/progress/constants.js +0 -2
- package/lib/cjs/progress/generates.d.ts +2 -2
- package/lib/cjs/progress/generates.js +19 -60
- package/lib/cjs/radio/constants.js +0 -2
- package/lib/cjs/radio/radioFoundation.js +0 -14
- package/lib/cjs/radio/radioGroupFoundation.js +4 -23
- package/lib/cjs/radio/radioInnerFoundation.js +2 -19
- package/lib/cjs/rating/constants.js +0 -2
- package/lib/cjs/rating/foundation.js +11 -61
- package/lib/cjs/scrollList/constants.js +0 -2
- package/lib/cjs/scrollList/foundation.js +0 -4
- package/lib/cjs/scrollList/itemFoundation.js +8 -61
- package/lib/cjs/scrollList/scrollTo.js +2 -5
- package/lib/cjs/select/constants.js +0 -3
- package/lib/cjs/select/foundation.d.ts +2 -2
- package/lib/cjs/select/foundation.js +122 -425
- package/lib/cjs/select/optionFoundation.js +4 -14
- package/lib/cjs/sideSheet/constants.js +0 -2
- package/lib/cjs/sideSheet/sideSheetFoundation.js +0 -18
- package/lib/cjs/skeleton/constants.js +0 -2
- package/lib/cjs/slider/constants.js +0 -2
- package/lib/cjs/slider/foundation.d.ts +1 -1
- package/lib/cjs/slider/foundation.js +25 -204
- package/lib/cjs/space/constants.js +0 -2
- package/lib/cjs/spin/constants.js +0 -2
- package/lib/cjs/spin/foundation.js +3 -13
- package/lib/cjs/steps/bacisSteps.scss +238 -287
- package/lib/cjs/steps/constants.js +0 -2
- package/lib/cjs/steps/fillSteps.scss +142 -153
- package/lib/cjs/steps/navSteps.scss +40 -61
- package/lib/cjs/steps/steps.css +17 -381
- package/lib/cjs/switch/constants.js +0 -2
- package/lib/cjs/switch/foundation.js +2 -18
- package/lib/cjs/table/bodyFoundation.js +2 -34
- package/lib/cjs/table/cellFoundation.js +0 -5
- package/lib/cjs/table/constants.js +7 -8
- package/lib/cjs/table/foundation.d.ts +17 -14
- package/lib/cjs/table/foundation.js +72 -302
- package/lib/cjs/table/table.css +6 -0
- package/lib/cjs/table/table.scss +12 -0
- package/lib/cjs/table/tableRowFoundation.js +0 -11
- package/lib/cjs/table/tableSelectionCellFoundation.js +0 -6
- package/lib/cjs/table/utils.d.ts +2 -2
- package/lib/cjs/table/utils.js +5 -118
- package/lib/cjs/tabs/constants.js +0 -2
- package/lib/cjs/tabs/foundation.js +2 -40
- package/lib/cjs/tabs/tabs.css +14 -14
- package/lib/cjs/tabs/tabs.scss +16 -14
- package/lib/cjs/tag/constants.js +1 -2
- package/lib/cjs/tagInput/constants.js +0 -2
- package/lib/cjs/tagInput/foundation.d.ts +4 -4
- package/lib/cjs/tagInput/foundation.js +4 -94
- package/lib/cjs/tagInput/utils/getSplitedArray.js +0 -11
- package/lib/cjs/timePicker/ComboxFoundation.js +4 -39
- package/lib/cjs/timePicker/constants.js +0 -3
- package/lib/cjs/timePicker/foundation.d.ts +2 -2
- package/lib/cjs/timePicker/foundation.js +6 -102
- package/lib/cjs/timePicker/inputFoundation.js +6 -25
- package/lib/cjs/timePicker/utils/index.js +6 -45
- package/lib/cjs/timePicker/utils/localeDate.js +0 -10
- package/lib/cjs/timeline/constants.js +0 -2
- package/lib/cjs/timeline/timeline.css +0 -36
- package/lib/cjs/timeline/timeline.scss +46 -96
- package/lib/cjs/toast/constants.js +0 -3
- package/lib/cjs/toast/toastFoundation.d.ts +3 -3
- package/lib/cjs/toast/toastFoundation.js +0 -14
- package/lib/cjs/toast/toastListFoundation.js +4 -22
- package/lib/cjs/tooltip/constants.js +0 -2
- package/lib/cjs/tooltip/foundation.d.ts +1 -1
- package/lib/cjs/tooltip/foundation.js +63 -291
- package/lib/cjs/transfer/constants.js +0 -2
- package/lib/cjs/transfer/foundation.d.ts +1 -1
- package/lib/cjs/transfer/foundation.js +4 -68
- package/lib/cjs/transfer/transferUtils.js +5 -27
- package/lib/cjs/tree/constants.js +0 -2
- package/lib/cjs/tree/foundation.d.ts +3 -3
- package/lib/cjs/tree/foundation.js +34 -150
- package/lib/cjs/tree/treeUtil.js +54 -173
- package/lib/cjs/treeSelect/constants.js +0 -2
- package/lib/cjs/treeSelect/foundation.d.ts +7 -7
- package/lib/cjs/treeSelect/foundation.js +18 -192
- package/lib/cjs/typography/constants.d.ts +1 -0
- package/lib/cjs/typography/constants.js +1 -2
- package/lib/cjs/typography/formatNumeral.d.ts +3 -3
- package/lib/cjs/typography/formatNumeral.js +16 -32
- package/lib/cjs/typography/typography.css +120 -0
- package/lib/cjs/typography/typography.scss +131 -6
- package/lib/cjs/typography/variables.scss +48 -0
- package/lib/cjs/upload/constants.js +0 -2
- package/lib/cjs/upload/foundation.d.ts +5 -5
- package/lib/cjs/upload/foundation.js +36 -245
- package/lib/cjs/upload/utils.js +10 -29
- package/lib/cjs/utils/Event.js +2 -21
- package/lib/cjs/utils/FocusHandle.d.ts +1 -1
- package/lib/cjs/utils/FocusHandle.js +6 -35
- package/lib/cjs/utils/Logger.js +0 -21
- package/lib/cjs/utils/Store.js +0 -10
- package/lib/cjs/utils/a11y.js +18 -43
- package/lib/cjs/utils/array.d.ts +1 -1
- package/lib/cjs/utils/array.js +0 -7
- package/lib/cjs/utils/arrayMove.js +0 -1
- package/lib/cjs/utils/classnames.js +0 -12
- package/lib/cjs/utils/date-fns-extra.js +0 -35
- package/lib/cjs/utils/dom.d.ts +1 -1
- package/lib/cjs/utils/dom.js +0 -13
- package/lib/cjs/utils/function.js +0 -1
- package/lib/cjs/utils/getDataAttr.js +0 -2
- package/lib/cjs/utils/getHighlight.js +5 -26
- package/lib/cjs/utils/getMotionObjFromProps.js +0 -12
- package/lib/cjs/utils/index.js +0 -4
- package/lib/cjs/utils/isBothNaN.js +0 -2
- package/lib/cjs/utils/isElement.js +0 -1
- package/lib/cjs/utils/isEnterPress.js +0 -5
- package/lib/cjs/utils/isEscPress.js +0 -5
- package/lib/cjs/utils/isNullOrUndefined.js +0 -1
- package/lib/cjs/utils/isNumber.js +0 -1
- package/lib/cjs/utils/isObject.js +0 -1
- package/lib/cjs/utils/isPromise.js +0 -3
- package/lib/cjs/utils/isString.js +0 -1
- package/lib/cjs/utils/keyCode.js +0 -105
- package/lib/cjs/utils/log.js +0 -5
- package/lib/cjs/utils/number.js +0 -2
- package/lib/cjs/utils/object.d.ts +4 -4
- package/lib/cjs/utils/object.js +12 -34
- package/lib/cjs/utils/set.js +0 -8
- package/lib/cjs/utils/shallowEqualObjects.js +0 -7
- package/lib/cjs/utils/touchPolyfill.js +0 -7
- package/lib/cjs/utils/type.d.ts +3 -3
- package/lib/cjs/utils/uuid.js +2 -9
- package/lib/cjs/utils/warning.js +0 -1
- package/lib/es/anchor/foundation.js +10 -66
- package/lib/es/anchor/linkFoundation.js +4 -12
- package/lib/es/autoComplete/foundation.d.ts +1 -1
- package/lib/es/autoComplete/foundation.js +24 -132
- package/lib/es/autoComplete/optionFoundation.js +4 -10
- package/lib/es/avatar/foundation.js +0 -12
- package/lib/es/backtop/foundation.d.ts +2 -2
- package/lib/es/backtop/foundation.js +0 -16
- package/lib/es/banner/foundation.js +0 -3
- package/lib/es/base/constants.js +2 -2
- package/lib/es/base/foundation.d.ts +1 -1
- package/lib/es/base/foundation.js +11 -44
- package/lib/es/breadcrumb/foundation.js +0 -7
- package/lib/es/breadcrumb/itemFoundation.js +0 -3
- package/lib/es/calendar/calendar.css +2 -2
- package/lib/es/calendar/calendar.scss +1 -1
- package/lib/es/calendar/eventUtil.d.ts +1 -1
- package/lib/es/calendar/eventUtil.js +2 -36
- package/lib/es/calendar/foundation.d.ts +2 -2
- package/lib/es/calendar/foundation.js +28 -117
- package/lib/es/carousel/foundation.js +2 -47
- package/lib/es/cascader/constants.js +0 -1
- package/lib/es/cascader/foundation.d.ts +4 -4
- package/lib/es/cascader/foundation.js +30 -226
- package/lib/es/cascader/util.js +6 -15
- package/lib/es/checkbox/checkboxFoundation.js +2 -34
- package/lib/es/checkbox/checkboxGroupFoundation.js +2 -20
- package/lib/es/collapse/foundation.d.ts +1 -1
- package/lib/es/collapse/foundation.js +2 -9
- package/lib/es/collapsible/foundation.js +0 -7
- package/lib/es/datePicker/_utils/formatter.js +4 -8
- package/lib/es/datePicker/_utils/getDayOfWeek.d.ts +1 -1
- package/lib/es/datePicker/_utils/getDayOfWeek.js +0 -3
- package/lib/es/datePicker/_utils/getDefaultFormatToken.js +0 -2
- package/lib/es/datePicker/_utils/getDefaultPickerDate.d.ts +1 -1
- package/lib/es/datePicker/_utils/getDefaultPickerDate.js +0 -10
- package/lib/es/datePicker/_utils/getFullDateOffset.js +0 -3
- package/lib/es/datePicker/_utils/getInsetInputFormatToken.js +0 -4
- package/lib/es/datePicker/_utils/getInsetInputValueFromInsetInputStr.js +0 -5
- package/lib/es/datePicker/_utils/getMonthTable.d.ts +1 -1
- package/lib/es/datePicker/_utils/getMonthTable.js +4 -14
- package/lib/es/datePicker/_utils/getMonthsInYear.js +0 -1
- package/lib/es/datePicker/_utils/getYears.d.ts +1 -1
- package/lib/es/datePicker/_utils/getYears.js +9 -6
- package/lib/es/datePicker/_utils/isBetween.js +0 -1
- package/lib/es/datePicker/_utils/parser.js +0 -8
- package/lib/es/datePicker/foundation.d.ts +25 -25
- package/lib/es/datePicker/foundation.js +22 -318
- package/lib/es/datePicker/inputFoundation.d.ts +3 -3
- package/lib/es/datePicker/inputFoundation.js +5 -74
- package/lib/es/datePicker/monthFoundation.d.ts +1 -1
- package/lib/es/datePicker/monthFoundation.js +4 -22
- package/lib/es/datePicker/monthsGridFoundation.d.ts +5 -4
- package/lib/es/datePicker/monthsGridFoundation.js +42 -222
- package/lib/es/datePicker/yearAndMonthFoundation.d.ts +3 -1
- package/lib/es/datePicker/yearAndMonthFoundation.js +12 -36
- package/lib/es/dropdown/foundation.js +4 -18
- package/lib/es/dropdown/menuFoundation.js +8 -22
- package/lib/es/form/foundation.js +74 -195
- package/lib/es/form/interface.d.ts +5 -5
- package/lib/es/form/utils.js +47 -70
- package/lib/es/image/imageFoundation.js +4 -13
- package/lib/es/image/previewFooterFoundation.js +0 -9
- package/lib/es/image/previewFoundation.js +0 -7
- package/lib/es/image/previewImageFoundation.js +6 -72
- package/lib/es/image/previewInnerFoundation.js +12 -70
- package/lib/es/image/utils.js +0 -6
- package/lib/es/input/foundation.js +17 -93
- package/lib/es/input/textareaFoundation.js +20 -75
- package/lib/es/input/util/calculateNodeHeight.js +6 -18
- package/lib/es/input/util/getSizingData.js +7 -11
- package/lib/es/inputNumber/foundation.js +28 -183
- package/lib/es/modal/modalContentFoundation.js +0 -15
- package/lib/es/modal/modalFoundation.d.ts +2 -2
- package/lib/es/modal/modalFoundation.js +2 -17
- package/lib/es/navigation/NavItem.js +0 -6
- package/lib/es/navigation/constants.js +1 -1
- package/lib/es/navigation/foundation.js +2 -60
- package/lib/es/navigation/itemFoundation.d.ts +0 -2
- package/lib/es/navigation/itemFoundation.js +3 -18
- package/lib/es/navigation/navigation.css +7 -77
- package/lib/es/navigation/navigation.scss +7 -119
- package/lib/es/navigation/subNavFoundation.d.ts +0 -2
- package/lib/es/navigation/subNavFoundation.js +4 -36
- package/lib/es/notification/constants.js +1 -1
- package/lib/es/notification/notificationFoundation.d.ts +3 -3
- package/lib/es/notification/notificationFoundation.js +0 -11
- package/lib/es/notification/notificationListFoundation.js +6 -13
- package/lib/es/overflowList/foundation.js +11 -37
- package/lib/es/pagination/foundation.d.ts +3 -3
- package/lib/es/pagination/foundation.js +20 -87
- package/lib/es/popconfirm/popconfirmFoundation.js +1 -16
- package/lib/es/progress/generates.d.ts +2 -2
- package/lib/es/progress/generates.js +19 -59
- package/lib/es/radio/radioFoundation.js +0 -9
- package/lib/es/radio/radioGroupFoundation.js +4 -19
- package/lib/es/radio/radioInnerFoundation.js +2 -15
- package/lib/es/rating/foundation.js +10 -54
- package/lib/es/scrollList/itemFoundation.js +8 -60
- package/lib/es/scrollList/scrollTo.js +2 -4
- package/lib/es/select/foundation.d.ts +2 -2
- package/lib/es/select/foundation.js +122 -411
- package/lib/es/select/optionFoundation.js +4 -10
- package/lib/es/sideSheet/sideSheetFoundation.js +0 -12
- package/lib/es/slider/foundation.d.ts +1 -1
- package/lib/es/slider/foundation.js +24 -197
- package/lib/es/spin/foundation.js +3 -11
- package/lib/es/steps/bacisSteps.scss +238 -287
- package/lib/es/steps/fillSteps.scss +142 -153
- package/lib/es/steps/navSteps.scss +40 -61
- package/lib/es/steps/steps.css +17 -381
- package/lib/es/switch/foundation.js +2 -13
- package/lib/es/table/bodyFoundation.js +2 -25
- package/lib/es/table/cellFoundation.js +0 -1
- package/lib/es/table/constants.js +6 -6
- package/lib/es/table/foundation.d.ts +17 -14
- package/lib/es/table/foundation.js +72 -309
- package/lib/es/table/table.css +6 -0
- package/lib/es/table/table.scss +12 -0
- package/lib/es/table/tableRowFoundation.js +2 -9
- package/lib/es/table/tableSelectionCellFoundation.js +0 -2
- package/lib/es/table/utils.d.ts +2 -2
- package/lib/es/table/utils.js +5 -81
- package/lib/es/tabs/foundation.js +2 -35
- package/lib/es/tabs/tabs.css +14 -14
- package/lib/es/tabs/tabs.scss +16 -14
- package/lib/es/tagInput/foundation.d.ts +4 -4
- package/lib/es/tagInput/foundation.js +4 -84
- package/lib/es/tagInput/utils/getSplitedArray.js +0 -7
- package/lib/es/timePicker/ComboxFoundation.js +4 -30
- package/lib/es/timePicker/foundation.d.ts +2 -2
- package/lib/es/timePicker/foundation.js +7 -95
- package/lib/es/timePicker/inputFoundation.js +6 -22
- package/lib/es/timePicker/utils/index.js +6 -25
- package/lib/es/timePicker/utils/localeDate.js +0 -8
- package/lib/es/timeline/timeline.css +0 -36
- package/lib/es/timeline/timeline.scss +46 -96
- package/lib/es/toast/constants.js +1 -1
- package/lib/es/toast/toastFoundation.d.ts +3 -3
- package/lib/es/toast/toastFoundation.js +0 -9
- package/lib/es/toast/toastListFoundation.js +4 -18
- package/lib/es/tooltip/foundation.d.ts +1 -1
- package/lib/es/tooltip/foundation.js +63 -288
- package/lib/es/transfer/foundation.d.ts +1 -1
- package/lib/es/transfer/foundation.js +6 -62
- package/lib/es/transfer/transferUtils.js +5 -21
- package/lib/es/tree/foundation.d.ts +3 -3
- package/lib/es/tree/foundation.js +34 -143
- package/lib/es/tree/treeUtil.js +54 -139
- package/lib/es/treeSelect/foundation.d.ts +7 -7
- package/lib/es/treeSelect/foundation.js +20 -179
- package/lib/es/typography/constants.d.ts +1 -0
- package/lib/es/typography/constants.js +1 -0
- package/lib/es/typography/formatNumeral.d.ts +3 -3
- package/lib/es/typography/formatNumeral.js +16 -29
- package/lib/es/typography/typography.css +120 -0
- package/lib/es/typography/typography.scss +131 -6
- package/lib/es/typography/variables.scss +48 -0
- package/lib/es/upload/foundation.d.ts +5 -5
- package/lib/es/upload/foundation.js +36 -238
- package/lib/es/upload/utils.js +10 -24
- package/lib/es/utils/Event.js +2 -17
- package/lib/es/utils/FocusHandle.d.ts +1 -1
- package/lib/es/utils/FocusHandle.js +6 -32
- package/lib/es/utils/Logger.js +0 -20
- package/lib/es/utils/Store.js +0 -9
- package/lib/es/utils/a11y.js +18 -31
- package/lib/es/utils/array.d.ts +1 -1
- package/lib/es/utils/array.js +0 -5
- package/lib/es/utils/classnames.js +0 -10
- package/lib/es/utils/date-fns-extra.js +0 -27
- package/lib/es/utils/dom.d.ts +1 -1
- package/lib/es/utils/dom.js +0 -9
- package/lib/es/utils/getDataAttr.js +0 -1
- package/lib/es/utils/getHighlight.js +5 -26
- package/lib/es/utils/getMotionObjFromProps.js +0 -8
- package/lib/es/utils/isBothNaN.js +0 -1
- package/lib/es/utils/isEnterPress.js +0 -2
- package/lib/es/utils/isEscPress.js +0 -2
- package/lib/es/utils/keyCode.js +0 -104
- package/lib/es/utils/log.js +0 -3
- package/lib/es/utils/object.d.ts +4 -4
- package/lib/es/utils/object.js +12 -28
- package/lib/es/utils/set.js +0 -5
- package/lib/es/utils/shallowEqualObjects.js +0 -6
- package/lib/es/utils/touchPolyfill.js +0 -5
- package/lib/es/utils/type.d.ts +3 -3
- package/lib/es/utils/uuid.js +2 -8
- package/navigation/itemFoundation.ts +1 -3
- package/navigation/navigation.scss +7 -119
- package/navigation/subNavFoundation.ts +1 -3
- package/overflowList/foundation.ts +4 -4
- package/package.json +2 -2
- package/steps/bacisSteps.scss +238 -287
- package/steps/fillSteps.scss +142 -153
- package/steps/navSteps.scss +40 -61
- package/table/foundation.ts +8 -10
- package/table/table.scss +12 -0
- package/tabs/tabs.scss +16 -14
- package/timePicker/foundation.ts +4 -6
- package/timeline/timeline.scss +46 -96
- package/typography/constants.ts +1 -0
- package/typography/typography.scss +131 -6
- package/typography/variables.scss +48 -0
- package/upload/foundation.ts +8 -8
|
@@ -4,22 +4,16 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
-
|
|
8
7
|
var _foundation = _interopRequireDefault(require("../base/foundation"));
|
|
9
|
-
|
|
10
8
|
var _keyCode = _interopRequireDefault(require("../utils/keyCode"));
|
|
11
|
-
|
|
12
9
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
-
|
|
14
10
|
class ModalContentFoundation extends _foundation.default {
|
|
15
11
|
constructor(adapter) {
|
|
16
12
|
super(Object.assign(Object.assign({}, ModalContentFoundation.defaultAdapter), adapter));
|
|
17
|
-
|
|
18
13
|
this.handleKeyDown = e => {
|
|
19
14
|
const {
|
|
20
15
|
closeOnEsc
|
|
21
16
|
} = this.getProps();
|
|
22
|
-
|
|
23
17
|
if (closeOnEsc && e.keyCode === _keyCode.default.ESC) {
|
|
24
18
|
e.stopPropagation();
|
|
25
19
|
this.close(e);
|
|
@@ -27,59 +21,45 @@ class ModalContentFoundation extends _foundation.default {
|
|
|
27
21
|
}
|
|
28
22
|
};
|
|
29
23
|
}
|
|
30
|
-
|
|
31
24
|
destroy() {
|
|
32
25
|
this.handleKeyDownEventListenerUnmount();
|
|
33
26
|
this.modalDialogBlur();
|
|
34
27
|
this.prevFocusElementReFocus();
|
|
35
28
|
}
|
|
36
|
-
|
|
37
29
|
handleDialogMouseDown() {
|
|
38
30
|
this._adapter.notifyDialogMouseDown();
|
|
39
31
|
}
|
|
40
|
-
|
|
41
32
|
handleMaskMouseUp() {
|
|
42
33
|
this._adapter.notifyDialogMouseUp();
|
|
43
34
|
}
|
|
44
|
-
|
|
45
35
|
handleKeyDownEventListenerMount() {
|
|
46
36
|
this._adapter.addKeyDownEventListener();
|
|
47
37
|
}
|
|
48
|
-
|
|
49
38
|
handleKeyDownEventListenerUnmount() {
|
|
50
39
|
this._adapter.removeKeyDownEventListener();
|
|
51
40
|
}
|
|
52
|
-
|
|
53
41
|
getMouseState() {
|
|
54
42
|
this._adapter.getMouseState();
|
|
55
43
|
}
|
|
56
|
-
|
|
57
44
|
handleMaskClick(e) {
|
|
58
45
|
const {
|
|
59
46
|
dialogMouseDown
|
|
60
47
|
} = this.getStates();
|
|
61
|
-
|
|
62
48
|
if (e.target === e.currentTarget && !dialogMouseDown) {
|
|
63
49
|
this.close(e);
|
|
64
50
|
}
|
|
65
51
|
}
|
|
66
|
-
|
|
67
52
|
close(e) {
|
|
68
53
|
this._adapter.notifyClose(e);
|
|
69
54
|
}
|
|
70
|
-
|
|
71
55
|
modalDialogFocus() {
|
|
72
56
|
this._adapter.modalDialogFocus();
|
|
73
57
|
}
|
|
74
|
-
|
|
75
58
|
modalDialogBlur() {
|
|
76
59
|
this._adapter.modalDialogBlur();
|
|
77
60
|
}
|
|
78
|
-
|
|
79
61
|
prevFocusElementReFocus() {
|
|
80
62
|
this._adapter.prevFocusElementReFocus();
|
|
81
63
|
}
|
|
82
|
-
|
|
83
64
|
}
|
|
84
|
-
|
|
85
65
|
exports.default = ModalContentFoundation;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import BaseFoundation, { DefaultAdapter } from '../base/foundation';
|
|
2
|
-
export
|
|
3
|
-
export
|
|
2
|
+
export type OKType = 'primary' | 'secondary' | 'tertiary' | 'warning' | 'danger';
|
|
3
|
+
export type Size = 'small' | 'medium' | 'large' | 'full-width';
|
|
4
4
|
export interface ModalAdapter extends DefaultAdapter<ModalProps, ModalState> {
|
|
5
5
|
disabledBodyScroll: () => void;
|
|
6
6
|
enabledBodyScroll: () => void;
|
|
@@ -4,38 +4,29 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
-
|
|
8
7
|
var _foundation = _interopRequireDefault(require("../base/foundation"));
|
|
9
|
-
|
|
10
8
|
var _isPromise = _interopRequireDefault(require("../utils/isPromise"));
|
|
11
|
-
|
|
12
9
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
-
|
|
14
10
|
class ModalFoundation extends _foundation.default {
|
|
15
11
|
constructor(adapter) {
|
|
16
|
-
super(Object.assign({}, adapter));
|
|
12
|
+
super(Object.assign({}, adapter));
|
|
13
|
+
// afterClose() {
|
|
17
14
|
// this._adapter.notifyClose();
|
|
18
15
|
// }
|
|
19
|
-
|
|
20
16
|
this.toggleDisplayNone = (displayNone, callback) => {
|
|
21
17
|
this._adapter.toggleDisplayNone(displayNone, callback);
|
|
22
18
|
};
|
|
23
19
|
}
|
|
24
|
-
|
|
25
20
|
destroy() {
|
|
26
21
|
this.afterHide();
|
|
27
22
|
}
|
|
28
|
-
|
|
29
23
|
handleCancel(e) {
|
|
30
24
|
var _a;
|
|
31
|
-
|
|
32
25
|
const result = this._adapter.notifyCancel(e);
|
|
33
|
-
|
|
34
26
|
if ((0, _isPromise.default)(result)) {
|
|
35
27
|
this._adapter.setState({
|
|
36
28
|
onCancelReturnPromiseStatus: "pending"
|
|
37
29
|
});
|
|
38
|
-
|
|
39
30
|
(_a = result === null || result === void 0 ? void 0 : result.then(() => {
|
|
40
31
|
this._adapter.setState({
|
|
41
32
|
onCancelReturnPromiseStatus: "fulfilled"
|
|
@@ -44,22 +35,17 @@ class ModalFoundation extends _foundation.default {
|
|
|
44
35
|
this._adapter.setState({
|
|
45
36
|
onCancelReturnPromiseStatus: "rejected"
|
|
46
37
|
});
|
|
47
|
-
|
|
48
38
|
throw e;
|
|
49
39
|
});
|
|
50
40
|
}
|
|
51
41
|
}
|
|
52
|
-
|
|
53
42
|
handleOk(e) {
|
|
54
43
|
var _a;
|
|
55
|
-
|
|
56
44
|
const result = this._adapter.notifyOk(e);
|
|
57
|
-
|
|
58
45
|
if ((0, _isPromise.default)(result)) {
|
|
59
46
|
this._adapter.setState({
|
|
60
47
|
onOKReturnPromiseStatus: "pending"
|
|
61
48
|
});
|
|
62
|
-
|
|
63
49
|
(_a = result === null || result === void 0 ? void 0 : result.then(() => {
|
|
64
50
|
this._adapter.setState({
|
|
65
51
|
onOKReturnPromiseStatus: "fulfilled"
|
|
@@ -68,22 +54,16 @@ class ModalFoundation extends _foundation.default {
|
|
|
68
54
|
this._adapter.setState({
|
|
69
55
|
onOKReturnPromiseStatus: "rejected"
|
|
70
56
|
});
|
|
71
|
-
|
|
72
57
|
throw e;
|
|
73
58
|
});
|
|
74
59
|
}
|
|
75
60
|
}
|
|
76
|
-
|
|
77
61
|
beforeShow() {
|
|
78
62
|
this._adapter.disabledBodyScroll();
|
|
79
63
|
}
|
|
80
|
-
|
|
81
64
|
afterHide() {
|
|
82
65
|
this._adapter.enabledBodyScroll();
|
|
83
|
-
|
|
84
66
|
this._adapter.notifyClose();
|
|
85
67
|
}
|
|
86
|
-
|
|
87
68
|
}
|
|
88
|
-
|
|
89
69
|
exports.default = ModalFoundation;
|
|
@@ -4,19 +4,15 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = exports.DEFAULT_TOGGLE_ICON = void 0;
|
|
7
|
-
|
|
8
7
|
var _constants = require("./constants");
|
|
9
|
-
|
|
10
8
|
const DEFAULT_TOGGLE_ICON = {
|
|
11
9
|
open: 'chevron_up',
|
|
12
10
|
closed: 'chevron_down'
|
|
13
11
|
};
|
|
14
12
|
exports.DEFAULT_TOGGLE_ICON = DEFAULT_TOGGLE_ICON;
|
|
15
|
-
|
|
16
13
|
class NavItem {
|
|
17
14
|
constructor() {
|
|
18
15
|
let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
19
|
-
|
|
20
16
|
// eslint-disable-next-line eqeqeq
|
|
21
17
|
if (options == null || typeof options !== 'object') {
|
|
22
18
|
// eslint-disable-next-line no-param-reassign
|
|
@@ -32,14 +28,11 @@ class NavItem {
|
|
|
32
28
|
indent: false
|
|
33
29
|
};
|
|
34
30
|
}
|
|
35
|
-
|
|
36
31
|
for (const key of Object.keys(options)) {
|
|
37
32
|
this[key] = options[key];
|
|
38
33
|
}
|
|
39
|
-
|
|
40
34
|
if (options.items && Array.isArray(options.items) && options.items.length) {
|
|
41
35
|
this.items = options.items.map(item => new NavItem(item));
|
|
42
|
-
|
|
43
36
|
if ('toggleIcon' in options) {
|
|
44
37
|
this.toggleIcon = NavItem.isValidToggleIcon(options.toggleIcon) ? Object.assign({}, options.toggleIcon) : Object.assign({}, DEFAULT_TOGGLE_ICON);
|
|
45
38
|
} else {
|
|
@@ -49,11 +42,8 @@ class NavItem {
|
|
|
49
42
|
this.items = null;
|
|
50
43
|
}
|
|
51
44
|
}
|
|
52
|
-
|
|
53
45
|
static isValidToggleIcon(toggleIcon) {
|
|
54
46
|
return Boolean(toggleIcon && typeof toggleIcon === 'object' && typeof toggleIcon.open === 'string' && toggleIcon.open.length && typeof toggleIcon.closed === 'string' && toggleIcon.closed.length);
|
|
55
47
|
}
|
|
56
|
-
|
|
57
48
|
}
|
|
58
|
-
|
|
59
49
|
exports.default = NavItem;
|
|
@@ -4,9 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.strings = exports.numbers = exports.cssClasses = void 0;
|
|
7
|
-
|
|
8
7
|
var _constants = require("../base/constants");
|
|
9
|
-
|
|
10
8
|
const MODE_HORIZONTAL = 'horizontal';
|
|
11
9
|
const MODE_VERTICAL = 'vertical';
|
|
12
10
|
const cssClasses = {
|
|
@@ -30,6 +28,5 @@ const numbers = {
|
|
|
30
28
|
DEFAULT_TOOLTIP_HIDE_DELAY: 100,
|
|
31
29
|
DEFAULT_SUBNAV_OPEN_DELAY: 0,
|
|
32
30
|
DEFAULT_SUBNAV_CLOSE_DELAY: 100 // ms
|
|
33
|
-
|
|
34
31
|
};
|
|
35
32
|
exports.numbers = numbers;
|
|
@@ -4,72 +4,54 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
-
|
|
8
7
|
var _get2 = _interopRequireDefault(require("lodash/get"));
|
|
9
|
-
|
|
10
8
|
var _foundation = _interopRequireDefault(require("../base/foundation"));
|
|
11
|
-
|
|
12
9
|
var _NavItem = _interopRequireDefault(require("./NavItem"));
|
|
13
|
-
|
|
14
10
|
var _constants = require("./constants");
|
|
15
|
-
|
|
16
11
|
var _isNullOrUndefined = _interopRequireDefault(require("../utils/isNullOrUndefined"));
|
|
17
|
-
|
|
18
12
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
19
|
-
|
|
20
13
|
/* eslint-disable max-depth */
|
|
21
|
-
|
|
22
14
|
/* eslint-disable max-len */
|
|
15
|
+
|
|
23
16
|
class NavigationFoundation extends _foundation.default {
|
|
24
17
|
constructor(adapter) {
|
|
25
18
|
super(Object.assign({}, adapter));
|
|
26
19
|
}
|
|
27
20
|
/* istanbul ignore next */
|
|
28
|
-
|
|
29
|
-
|
|
30
21
|
static getZeroParentKeys() {
|
|
31
22
|
let itemKeysMap = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
32
23
|
const willAddKeys = [];
|
|
33
|
-
|
|
34
24
|
for (var _len = arguments.length, itemKeys = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
35
25
|
itemKeys[_key - 1] = arguments[_key];
|
|
36
26
|
}
|
|
37
|
-
|
|
38
27
|
if (itemKeys.length) {
|
|
39
28
|
for (const itemKey of itemKeys) {
|
|
40
29
|
if (Array.isArray(itemKeysMap[itemKey]) && itemKeysMap[itemKey].length) {
|
|
41
30
|
const levelZeroParentKey = itemKeysMap[itemKey][0];
|
|
42
|
-
|
|
43
31
|
if (!(0, _isNullOrUndefined.default)(levelZeroParentKey)) {
|
|
44
32
|
willAddKeys.push(levelZeroParentKey);
|
|
45
33
|
}
|
|
46
34
|
}
|
|
47
35
|
}
|
|
48
36
|
}
|
|
49
|
-
|
|
50
37
|
return willAddKeys;
|
|
51
38
|
}
|
|
52
|
-
|
|
53
39
|
static buildItemKeysMap() {
|
|
54
40
|
let items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
|
55
41
|
let keysMap = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
56
42
|
let parentKeys = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : [];
|
|
57
43
|
let keyPropName = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 'itemKey';
|
|
58
|
-
|
|
59
44
|
if (Array.isArray(items) && items.length) {
|
|
60
45
|
for (const item of items) {
|
|
61
46
|
if (Array.isArray(item)) {
|
|
62
47
|
NavigationFoundation.buildItemKeysMap(item, keysMap, [...parentKeys], keyPropName);
|
|
63
48
|
} else {
|
|
64
49
|
let itemKey;
|
|
65
|
-
|
|
66
50
|
if (item && typeof item === 'object') {
|
|
67
51
|
itemKey = item[keyPropName] || item.props && item.props[keyPropName];
|
|
68
52
|
}
|
|
69
|
-
|
|
70
53
|
if (itemKey) {
|
|
71
54
|
keysMap[itemKey] = [...parentKeys];
|
|
72
|
-
|
|
73
55
|
if (Array.isArray(item.items) && item.items.length) {
|
|
74
56
|
NavigationFoundation.buildItemKeysMap(item.items, keysMap, [...parentKeys, itemKey], keyPropName);
|
|
75
57
|
} else if (item.props && item.props.children) {
|
|
@@ -80,7 +62,6 @@ class NavigationFoundation extends _foundation.default {
|
|
|
80
62
|
}
|
|
81
63
|
}
|
|
82
64
|
}
|
|
83
|
-
|
|
84
65
|
return keysMap;
|
|
85
66
|
}
|
|
86
67
|
/**
|
|
@@ -90,8 +71,6 @@ class NavigationFoundation extends _foundation.default {
|
|
|
90
71
|
* @param {*} lifecycle
|
|
91
72
|
* @returns
|
|
92
73
|
*/
|
|
93
|
-
|
|
94
|
-
|
|
95
74
|
init(lifecycle) {
|
|
96
75
|
const {
|
|
97
76
|
defaultSelectedKeys,
|
|
@@ -105,7 +84,6 @@ class NavigationFoundation extends _foundation.default {
|
|
|
105
84
|
} = this.getCalcState();
|
|
106
85
|
const parentSelectKeys = this.selectLevelZeroParentKeys(itemKeysMap, willSelectedKeys);
|
|
107
86
|
willSelectedKeys = willSelectedKeys.concat(parentSelectKeys);
|
|
108
|
-
|
|
109
87
|
if (lifecycle === 'constructor') {
|
|
110
88
|
return {
|
|
111
89
|
selectedKeys: willSelectedKeys,
|
|
@@ -115,23 +93,16 @@ class NavigationFoundation extends _foundation.default {
|
|
|
115
93
|
};
|
|
116
94
|
} else {
|
|
117
95
|
this._adapter.updateSelectedKeys(willSelectedKeys);
|
|
118
|
-
|
|
119
96
|
this._adapter.setItemKeysMap(itemKeysMap);
|
|
120
|
-
|
|
121
97
|
this._adapter.updateOpenKeys(willOpenKeys);
|
|
122
|
-
|
|
123
98
|
this._adapter.updateItems(formattedItems);
|
|
124
|
-
|
|
125
99
|
this._adapter.setItemsChanged(true);
|
|
126
100
|
}
|
|
127
|
-
|
|
128
101
|
return undefined;
|
|
129
102
|
}
|
|
130
103
|
/**
|
|
131
104
|
* Get the state to be calculated
|
|
132
105
|
*/
|
|
133
|
-
|
|
134
|
-
|
|
135
106
|
getCalcState() {
|
|
136
107
|
const {
|
|
137
108
|
itemKeysMap,
|
|
@@ -147,8 +118,6 @@ class NavigationFoundation extends _foundation.default {
|
|
|
147
118
|
/**
|
|
148
119
|
* Calculate formatted items and itemsKeyMap
|
|
149
120
|
*/
|
|
150
|
-
|
|
151
|
-
|
|
152
121
|
getFormattedItems() {
|
|
153
122
|
const {
|
|
154
123
|
items,
|
|
@@ -166,8 +135,6 @@ class NavigationFoundation extends _foundation.default {
|
|
|
166
135
|
* Calculate the keys that will need to be opened soon
|
|
167
136
|
* @param {*} itemKeysMap
|
|
168
137
|
*/
|
|
169
|
-
|
|
170
|
-
|
|
171
138
|
getWillOpenKeys(itemKeysMap) {
|
|
172
139
|
const {
|
|
173
140
|
defaultOpenKeys,
|
|
@@ -177,116 +144,85 @@ class NavigationFoundation extends _foundation.default {
|
|
|
177
144
|
mode
|
|
178
145
|
} = this.getProps();
|
|
179
146
|
let willOpenKeys = openKeys || defaultOpenKeys || [];
|
|
180
|
-
|
|
181
147
|
if (!(Array.isArray(defaultOpenKeys) || Array.isArray(openKeys)) && mode === _constants.strings.MODE_VERTICAL && (Array.isArray(defaultSelectedKeys) || Array.isArray(selectedKeys))) {
|
|
182
148
|
const currentSelectedKeys = Array.isArray(selectedKeys) ? selectedKeys : defaultSelectedKeys;
|
|
183
149
|
willOpenKeys = this.getShouldOpenKeys(itemKeysMap, currentSelectedKeys);
|
|
184
150
|
}
|
|
185
|
-
|
|
186
151
|
return [...willOpenKeys];
|
|
187
152
|
}
|
|
188
|
-
|
|
189
153
|
getShouldOpenKeys() {
|
|
190
154
|
let itemKeysMap = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
191
155
|
let selectedKeys = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
|
|
192
156
|
const willOpenKeySet = new Set();
|
|
193
|
-
|
|
194
157
|
if (Array.isArray(selectedKeys) && selectedKeys.length) {
|
|
195
158
|
selectedKeys.forEach(item => {
|
|
196
159
|
if (item) {
|
|
197
160
|
const parentKeys = (0, _get2.default)(itemKeysMap, item);
|
|
198
|
-
|
|
199
161
|
if (Array.isArray(parentKeys)) {
|
|
200
162
|
parentKeys.forEach(k => willOpenKeySet.add(k));
|
|
201
163
|
}
|
|
202
164
|
}
|
|
203
165
|
});
|
|
204
166
|
}
|
|
205
|
-
|
|
206
167
|
return [...willOpenKeySet];
|
|
207
168
|
}
|
|
208
|
-
|
|
209
169
|
destroy() {} // eslint-disable-line
|
|
210
|
-
|
|
211
|
-
|
|
212
170
|
selectLevelZeroParentKeys(itemKeysMap) {
|
|
213
|
-
const _itemKeysMap = (0, _isNullOrUndefined.default)(itemKeysMap) ? this.getState('itemKeysMap') : itemKeysMap;
|
|
214
|
-
|
|
215
|
-
|
|
171
|
+
const _itemKeysMap = (0, _isNullOrUndefined.default)(itemKeysMap) ? this.getState('itemKeysMap') : itemKeysMap;
|
|
172
|
+
// console.log(itemKeysMap);
|
|
216
173
|
const willAddKeys = [];
|
|
217
|
-
|
|
218
174
|
for (var _len2 = arguments.length, itemKeys = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
|
|
219
175
|
itemKeys[_key2 - 1] = arguments[_key2];
|
|
220
176
|
}
|
|
221
|
-
|
|
222
177
|
if (itemKeys.length) {
|
|
223
178
|
for (const itemKey of itemKeys) {
|
|
224
179
|
if (Array.isArray(_itemKeysMap[itemKey]) && _itemKeysMap[itemKey].length) {
|
|
225
180
|
const levelZeroParentKey = _itemKeysMap[itemKey][0];
|
|
226
|
-
|
|
227
181
|
if (!(0, _isNullOrUndefined.default)(levelZeroParentKey)) {
|
|
228
182
|
willAddKeys.push(levelZeroParentKey);
|
|
229
183
|
}
|
|
230
184
|
}
|
|
231
185
|
}
|
|
232
186
|
}
|
|
233
|
-
|
|
234
187
|
if (willAddKeys.length) {
|
|
235
188
|
return willAddKeys;
|
|
236
189
|
}
|
|
237
|
-
|
|
238
190
|
return [];
|
|
239
191
|
}
|
|
240
|
-
|
|
241
192
|
formatItems() {
|
|
242
193
|
let items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
|
243
194
|
const formattedItems = [];
|
|
244
|
-
|
|
245
195
|
for (const item of items) {
|
|
246
196
|
formattedItems.push(new _NavItem.default(item));
|
|
247
197
|
}
|
|
248
|
-
|
|
249
198
|
return formattedItems;
|
|
250
199
|
}
|
|
251
|
-
|
|
252
200
|
handleSelect(data) {
|
|
253
201
|
this._adapter.notifySelect(data);
|
|
254
202
|
}
|
|
255
203
|
/* istanbul ignore next */
|
|
256
|
-
|
|
257
|
-
|
|
258
204
|
judgeIfOpen(openKeys, items) {
|
|
259
205
|
let shouldBeOpen = false;
|
|
260
|
-
|
|
261
206
|
const _openKeys = Array.isArray(openKeys) ? openKeys : openKeys && [openKeys];
|
|
262
|
-
|
|
263
207
|
if (_openKeys && Array.isArray(items) && items.length) {
|
|
264
208
|
for (const item of items) {
|
|
265
209
|
shouldBeOpen = _openKeys.includes(item.itemKey) || this.judgeIfOpen(_openKeys, item.items);
|
|
266
|
-
|
|
267
210
|
if (shouldBeOpen) {
|
|
268
211
|
break;
|
|
269
212
|
}
|
|
270
213
|
}
|
|
271
214
|
}
|
|
272
|
-
|
|
273
215
|
return shouldBeOpen;
|
|
274
216
|
}
|
|
275
|
-
|
|
276
217
|
handleCollapseChange() {
|
|
277
218
|
const isCollapsed = !this.getState('isCollapsed');
|
|
278
|
-
|
|
279
219
|
if (!this._isControlledComponent('isCollapsed')) {
|
|
280
220
|
this._adapter.setIsCollapsed(isCollapsed);
|
|
281
221
|
}
|
|
282
|
-
|
|
283
222
|
this._adapter.notifyCollapseChange(isCollapsed);
|
|
284
223
|
}
|
|
285
|
-
|
|
286
224
|
handleItemsChange(isChanged) {
|
|
287
225
|
this._adapter.setItemsChanged(isChanged);
|
|
288
226
|
}
|
|
289
|
-
|
|
290
227
|
}
|
|
291
|
-
|
|
292
228
|
exports.default = NavigationFoundation;
|
|
@@ -34,8 +34,6 @@ export interface ItemAdapter<P = Record<string, any>, S = Record<string, any>> e
|
|
|
34
34
|
getIsCollapsed(): boolean;
|
|
35
35
|
getSelected(): boolean;
|
|
36
36
|
getIsOpen(): boolean;
|
|
37
|
-
getIsInSubNav(): boolean;
|
|
38
|
-
getMode(): string;
|
|
39
37
|
}
|
|
40
38
|
export default class ItemFoundation<P = Record<string, any>, S = Record<string, any>> extends BaseFoundation<ItemAdapter<P, S>, P, S> {
|
|
41
39
|
_timer: number;
|
|
@@ -4,34 +4,27 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
-
|
|
8
7
|
var _get2 = _interopRequireDefault(require("lodash/get"));
|
|
9
|
-
|
|
10
8
|
var _foundation = _interopRequireDefault(require("../base/foundation"));
|
|
11
|
-
|
|
12
9
|
var _isEnterPress = _interopRequireDefault(require("../utils/isEnterPress"));
|
|
13
|
-
|
|
14
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
+
/* argus-disable unPkgSensitiveInfo */
|
|
15
12
|
|
|
16
13
|
class ItemFoundation extends _foundation.default {
|
|
17
14
|
constructor(adapter) {
|
|
18
15
|
super(Object.assign({}, adapter));
|
|
19
16
|
}
|
|
20
|
-
|
|
21
17
|
init() {
|
|
22
18
|
this._timer = null;
|
|
23
19
|
this._mounted = true;
|
|
24
20
|
}
|
|
25
|
-
|
|
26
21
|
destroy() {
|
|
27
22
|
this._mounted = false;
|
|
28
23
|
}
|
|
29
|
-
|
|
30
24
|
isValidKey(itemKey) {
|
|
31
25
|
// eslint-disable-next-line eqeqeq
|
|
32
26
|
return itemKey != null && (typeof itemKey === 'string' || typeof itemKey === 'number');
|
|
33
27
|
}
|
|
34
|
-
|
|
35
28
|
handleClick(e) {
|
|
36
29
|
const {
|
|
37
30
|
isSubNav,
|
|
@@ -39,22 +32,18 @@ class ItemFoundation extends _foundation.default {
|
|
|
39
32
|
text,
|
|
40
33
|
disabled
|
|
41
34
|
} = this.getProps();
|
|
42
|
-
|
|
43
35
|
if (disabled) {
|
|
44
36
|
return;
|
|
45
37
|
}
|
|
46
|
-
|
|
47
38
|
if (!isSubNav && this.isValidKey(itemKey) && !this._adapter.getSelectedKeysIsControlled() && !this._adapter.getSelected()) {
|
|
48
39
|
this._adapter.updateSelected(true);
|
|
49
40
|
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
41
|
+
const selectedKeys = [itemKey];
|
|
42
|
+
// If the current item is subNav, there is no need to trigger the global onSelect/onClick event, instead, the SubNav component will trigger the click event
|
|
53
43
|
if (!isSubNav) {
|
|
54
44
|
if (!this._adapter.getSelected()) {
|
|
55
45
|
// internal-issues:51
|
|
56
46
|
const selectedItems = [this._adapter.cloneDeep(this.getProps())];
|
|
57
|
-
|
|
58
47
|
this._adapter.notifyGlobalOnSelect({
|
|
59
48
|
itemKey,
|
|
60
49
|
selectedKeys,
|
|
@@ -62,14 +51,12 @@ class ItemFoundation extends _foundation.default {
|
|
|
62
51
|
domEvent: e
|
|
63
52
|
});
|
|
64
53
|
}
|
|
65
|
-
|
|
66
54
|
this._adapter.notifyGlobalOnClick({
|
|
67
55
|
itemKey,
|
|
68
56
|
text,
|
|
69
57
|
domEvent: e
|
|
70
58
|
});
|
|
71
59
|
}
|
|
72
|
-
|
|
73
60
|
this._adapter.notifyClick({
|
|
74
61
|
itemKey,
|
|
75
62
|
text,
|
|
@@ -79,8 +66,6 @@ class ItemFoundation extends _foundation.default {
|
|
|
79
66
|
/**
|
|
80
67
|
* A11y: simulate item click
|
|
81
68
|
*/
|
|
82
|
-
|
|
83
|
-
|
|
84
69
|
handleKeyPress(e) {
|
|
85
70
|
if ((0, _isEnterPress.default)(e)) {
|
|
86
71
|
const {
|
|
@@ -89,13 +74,10 @@ class ItemFoundation extends _foundation.default {
|
|
|
89
74
|
} = this.getProps();
|
|
90
75
|
const target = (0, _get2.default)(linkOptions, 'target', '_self');
|
|
91
76
|
this.handleClick(e);
|
|
92
|
-
|
|
93
77
|
if (typeof link === 'string') {
|
|
94
78
|
target === '_blank' ? window.open(link) : window.location.href = link;
|
|
95
79
|
}
|
|
96
80
|
}
|
|
97
81
|
}
|
|
98
|
-
|
|
99
82
|
}
|
|
100
|
-
|
|
101
83
|
exports.default = ItemFoundation;
|