@hi-ui/hiui 2.15.9 → 2.15.11
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/CHANGELOG.md +8 -0
- package/es/_util/warning.js +2 -2
- package/es/alert/__test__/index.test.js +67 -0
- package/es/alert/index.js +147 -6
- package/es/alert/style/index.css +1 -1
- package/es/badge/index.js +87 -9
- package/es/badge/style/index.css +1 -1
- package/es/badge/style/index.js +0 -0
- package/es/button/Button.js +52 -56
- package/es/button/ButtonGroup.js +32 -20
- package/es/button/IconLoading.js +2 -2
- package/es/button/__test__/index.test.js +29 -0
- package/es/button/index.js +2 -3
- package/es/button/style/index.css +1 -1
- package/es/card/index.js +43 -51
- package/es/card/style/index.css +1 -1
- package/es/cascader/Cascader.js +117 -178
- package/es/cascader/__test__/index.test.js +283 -0
- package/es/cascader/index.js +2 -5
- package/es/cascader/menu.js +155 -0
- package/es/cascader/style/cascader.css +1 -1
- package/es/cascader/style/menu.css +1 -1
- package/es/checkbox/{checkbox-legacy/Base.js → Base.js} +32 -43
- package/es/checkbox/{checkbox-legacy/CheckBox.js → CheckBox.js} +47 -23
- package/es/checkbox/index.js +4 -13
- package/es/checkbox/style/index.css +1 -1
- package/es/collapse/__test__/index.test.js +58 -0
- package/es/collapse/index.js +94 -76
- package/es/collapse/style/index.css +1 -1
- package/es/confirm/index.js +51 -34
- package/es/context/index.js +38 -36
- package/es/counter/__test__/index.test.js +52 -0
- package/es/counter/index.js +270 -6
- package/es/counter/style/index.css +1 -1
- package/es/date-picker/BasePicker.js +289 -371
- package/es/date-picker/Calender.js +90 -322
- package/es/date-picker/DatePanel.js +187 -172
- package/es/date-picker/DatePicker.js +51 -151
- package/es/date-picker/DateRangePanel.js +182 -250
- package/es/date-picker/Modal.js +24 -14
- package/es/date-picker/Time.js +337 -227
- package/es/date-picker/TimePanel.js +33 -24
- package/es/date-picker/TimePeriodPanel.js +33 -18
- package/es/date-picker/TimePicker.js +39 -41
- package/es/date-picker/TimeRangePanel.js +43 -29
- package/es/date-picker/Type.js +1 -5
- package/es/date-picker/WeekRangePanel.js +152 -235
- package/es/date-picker/constants.js +28 -14
- package/es/date-picker/dateUtil.js +52 -221
- package/es/date-picker/index.js +2 -5
- package/es/date-picker/style/index.css +1 -1
- package/es/date-picker/util.js +8 -101
- package/es/dropdown/Dropdown.js +200 -190
- package/es/dropdown/{tests → __test__}/index.test.js +2 -2
- package/es/dropdown/index.js +4 -69
- package/es/dropdown/style/index.css +1 -1
- package/es/dropdown/style/index.js +2 -0
- package/es/ficon/index.js +22 -12
- package/es/form/index.js +171 -6
- package/es/form/{Item.js → item.js} +48 -44
- package/es/form/style/index.css +1 -1
- package/es/grid/index.js +38 -22
- package/es/icon/index.js +31 -20
- package/es/index.js +9 -61
- package/es/input/index.js +347 -26
- package/es/input/style/index.css +1 -1
- package/es/input/util.js +18 -26
- package/es/lib/withDragDropContext.js +2 -2
- package/es/loading/index.js +129 -5
- package/es/loading/style/index.css +0 -0
- package/es/loading/style/index.js +0 -0
- package/es/locales/en-US.js +11 -45
- package/es/locales/index.js +2 -16
- package/es/locales/zh-CN.js +12 -46
- package/es/menu/Item.js +42 -29
- package/es/menu/ItemGroup.js +81 -0
- package/es/menu/SubMenu.js +75 -52
- package/es/menu/Title.js +43 -33
- package/es/menu/index.js +419 -12
- package/es/menu/style/index.css +1 -1
- package/es/modal/__test__/index.test.js +123 -0
- package/es/modal/index.js +62 -74
- package/es/modal/style/index.css +1 -1
- package/es/nav-menu/NavMenu.js +46 -28
- package/es/nav-menu/__test__/index.test.js +2 -2
- package/es/nav-menu/index.js +2 -2
- package/es/notification/__test__/index.test.js +56 -0
- package/es/notification/index.js +231 -68
- package/es/notification/style/index.css +1 -1
- package/es/notification/style/index.js +0 -0
- package/es/pagination/Pager.js +8 -6
- package/es/pagination/Pagination.js +116 -121
- package/es/pagination/__test__/index.test.js +140 -0
- package/es/pagination/index.js +8 -9
- package/es/pagination/style/index.css +1 -1
- package/es/panel/index.js +34 -20
- package/es/popover/__test__/index.test.js +2 -2
- package/es/popover/index.js +70 -68
- package/es/popper/index.js +55 -61
- package/es/popper/style/index.css +1 -1
- package/es/progress/BarProgress.js +43 -109
- package/es/progress/CircleProgress.js +10 -9
- package/es/progress/DashboardProgress.js +9 -7
- package/es/progress/index.js +100 -8
- package/es/progress/style/index.css +1 -1
- package/es/radio/{radio-legacy/__test__ → __test__}/index.test.js +10 -10
- package/es/radio/index.js +216 -10
- package/es/radio/style/index.css +1 -1
- package/es/rate/Icons.js +2 -2
- package/es/rate/Rate.js +91 -62
- package/es/rate/__test__/index.test.js +54 -0
- package/es/rate/index.js +2 -5
- package/es/rate/style/index.css +1 -1
- package/es/select/Option.js +93 -0
- package/es/select/Select.js +253 -321
- package/es/select/SelectDropdown.js +64 -212
- package/es/select/SelectInput.js +55 -85
- package/es/select/__test__/index.test.js +429 -0
- package/es/select/index.js +4 -6
- package/es/select/style/select-dropdown.css +1 -1
- package/es/select/style/select-input.css +1 -1
- package/es/stepper/index.js +127 -21
- package/es/stepper/style/index.css +1 -1
- package/es/style/color/colors.css +0 -0
- package/es/style/icon/diyIcon.css +1 -1
- package/es/style/icon/index.css +1 -1
- package/es/style/index.css +0 -0
- package/es/style/mixins/colors.css +0 -0
- package/es/style/mixins/index.css +0 -0
- package/es/style/theme/dark.css +0 -0
- package/es/style/theme/default.css +0 -0
- package/es/switch/{__tests__ → __test__}/index.test.js +2 -31
- package/es/switch/index.js +37 -21
- package/es/switch/style/index.css +1 -1
- package/es/table/__test__/index.test.js +73 -0
- package/es/table/{Body.js → body.js} +53 -33
- package/es/table/checkbox/index.js +37 -30
- package/es/table/clickOuterside.js +115 -0
- package/es/table/{Footer.js → footer.js} +42 -21
- package/es/table/{Header.js → header.js} +55 -38
- package/es/table/index.js +269 -227
- package/es/table/menu/index.js +35 -29
- package/es/table/pover.js +154 -0
- package/es/table/prefix.js +2 -2
- package/es/table/style/Table.css +1 -1
- package/es/table/style/index.css +1 -1
- package/es/table/tableContent.js +120 -0
- package/es/tabs/ItemDropdown.js +52 -36
- package/es/tabs/TabPane.js +36 -22
- package/es/tabs/Tabs.js +92 -95
- package/es/tabs/index.js +3 -9
- package/es/tabs/style/index.css +1 -1
- package/es/timeline/__test__/index.test.js +49 -0
- package/es/timeline/foldingItem.js +82 -0
- package/es/timeline/index.js +128 -200
- package/es/timeline/style/index.css +1 -1
- package/es/tooltip/__test__/index.test.js +67 -0
- package/es/tooltip/index.js +40 -83
- package/es/tooltip/style/index.css +1 -1
- package/es/transfer/Item.js +45 -50
- package/es/transfer/__test__/index.test.js +11 -0
- package/es/transfer/index.js +443 -4
- package/es/transfer/style/index.css +1 -1
- package/es/tree/Tree.js +87 -73
- package/es/tree/TreeDivider.js +3 -3
- package/es/tree/TreeItem.js +110 -204
- package/es/tree/TreeNode.js +318 -453
- package/es/tree/index.js +2 -9
- package/es/tree/style/index.css +1 -1
- package/es/tree/util.js +256 -8
- package/es/upload/{upload-legacy/Preview.js → Preview.js} +38 -28
- package/es/upload/Upload.js +193 -285
- package/es/upload/UploadAvatar.js +56 -42
- package/es/upload/UploadClick.js +44 -48
- package/es/upload/UploadDrag.js +42 -43
- package/es/upload/UploadPhoto.js +54 -69
- package/es/upload/UploadPictureCard.js +43 -38
- package/es/upload/index.js +71 -8
- package/es/upload/style/index.css +1 -1
- package/es/upload/tool.js +1 -0
- package/package.json +4 -1
- package/es/_util/SwitchVersion.js +0 -40
- package/es/_util/depreactedPropsCompat.js +0 -58
- package/es/_util/index.js +0 -31
- package/es/alert/Alert.js +0 -130
- package/es/alert/__tests__/index.test.js +0 -84
- package/es/badge/Badge.js +0 -86
- package/es/badge/__tests__/index.test.js +0 -82
- package/es/breadcrumb/__tests__/index.test.js +0 -61
- package/es/breadcrumb/index.js +0 -89
- package/es/breadcrumb/style/index.css +0 -1
- package/es/button/__tests__/index.test.js +0 -221
- package/es/card/__tests__/index.test.js +0 -180
- package/es/carousel/__tests__/index.test.js +0 -104
- package/es/carousel/index.js +0 -223
- package/es/carousel/style/index.css +0 -1
- package/es/carousel/style/index.js +0 -3
- package/es/cascader/Menu.js +0 -170
- package/es/cascader/__tests__/index.test.js +0 -393
- package/es/checkbox/Checkbox.js +0 -140
- package/es/checkbox/Group.js +0 -198
- package/es/checkbox/__tests__/index.test.js +0 -226
- package/es/checkbox/checkbox-legacy/index.js +0 -15
- package/es/checkbox/checkbox-legacy/style/index.css +0 -1
- package/es/checkbox/checkbox-legacy/style/index.js +0 -3
- package/es/collapse/__tests__/index.test.js +0 -111
- package/es/counter/Counter.js +0 -343
- package/es/counter/__tests__/index.test.js +0 -134
- package/es/counter/counter-legacy/index.js +0 -271
- package/es/date-picker/TimeList.js +0 -250
- package/es/date-picker/YMRangePanel.js +0 -368
- package/es/date-picker/__tests__/index.test.js +0 -957
- package/es/date-picker/datepicker-legacy/BasePicker.js +0 -515
- package/es/date-picker/datepicker-legacy/Calender.js +0 -426
- package/es/date-picker/datepicker-legacy/DatePanel.js +0 -459
- package/es/date-picker/datepicker-legacy/DatePicker.js +0 -107
- package/es/date-picker/datepicker-legacy/DateRangePanel.js +0 -492
- package/es/date-picker/datepicker-legacy/Modal.js +0 -71
- package/es/date-picker/datepicker-legacy/Time.js +0 -409
- package/es/date-picker/datepicker-legacy/TimePanel.js +0 -89
- package/es/date-picker/datepicker-legacy/TimePeriodPanel.js +0 -122
- package/es/date-picker/datepicker-legacy/TimePicker.js +0 -82
- package/es/date-picker/datepicker-legacy/TimeRangePanel.js +0 -94
- package/es/date-picker/datepicker-legacy/Type.js +0 -31
- package/es/date-picker/datepicker-legacy/WeekRangePanel.js +0 -341
- package/es/date-picker/datepicker-legacy/constants.js +0 -79
- package/es/date-picker/datepicker-legacy/dateUtil.js +0 -258
- package/es/date-picker/datepicker-legacy/index.js +0 -15
- package/es/date-picker/datepicker-legacy/local.js +0 -11
- package/es/date-picker/datepicker-legacy/style/index.css +0 -1
- package/es/date-picker/datepicker-legacy/style/index.js +0 -3
- package/es/date-picker/datepicker-legacy/style/timepicker.css +0 -1
- package/es/date-picker/datepicker-legacy/util.js +0 -60
- package/es/date-picker/toLunar.js +0 -172
- package/es/dropdown/DropdownButton.js +0 -106
- package/es/dropdown/DropdownMenu.js +0 -111
- package/es/dropdown/DropdownMenuItem.js +0 -174
- package/es/dropdown/__tests__/index.test.js +0 -313
- package/es/dropdown/utils.js +0 -35
- package/es/form/Form.js +0 -180
- package/es/form/__tests__/index.test.js +0 -575
- package/es/grid/__tests__/index.test.js +0 -100
- package/es/input/Input.js +0 -408
- package/es/input/__tests__/index.test.js +0 -377
- package/es/input/input-legacy/index.js +0 -349
- package/es/input/input-legacy/util.js +0 -176
- package/es/loading/Loading.js +0 -177
- package/es/loading/__tests__/index.test.js +0 -110
- package/es/locales/zh-Hant-HK.js +0 -121
- package/es/locales/zh-Hant-TW.js +0 -123
- package/es/menu/Menu.js +0 -418
- package/es/menu/__tests__/index.test.js +0 -275
- package/es/message/__tests__/index.test.js +0 -71
- package/es/message/index.js +0 -58
- package/es/message/style/index.css +0 -1
- package/es/message/style/index.js +0 -5
- package/es/modal/__tests__/index.test.js +0 -178
- package/es/nav-menu/__tests__/index.test.js +0 -23
- package/es/notice/Notice.js +0 -138
- package/es/notice/NoticeContainer.js +0 -109
- package/es/notice/__tests__/index.test.js +0 -174
- package/es/notice/index.js +0 -66
- package/es/notice/style/index.css +0 -1
- package/es/notice/style/index.js +0 -5
- package/es/notification/HandleNotification/index.js +0 -220
- package/es/notification/HandleNotification/style/index.css +0 -1
- package/es/notification/HandleNotification/style/index.js +0 -5
- package/es/notification/__tests__/index.test.js +0 -114
- package/es/pagination/__tests__/index.test.js +0 -244
- package/es/popover/__tests__/index.test.js +0 -152
- package/es/preview/index.js +0 -523
- package/es/preview/style/index.css +0 -1
- package/es/preview/style/index.js +0 -3
- package/es/progress/Progress.js +0 -106
- package/es/progress/__tests__/index.test.js +0 -131
- package/es/radio/Group.js +0 -203
- package/es/radio/Radio.js +0 -151
- package/es/radio/__tests__/index.test.js +0 -128
- package/es/radio/radio-legacy/index.js +0 -218
- package/es/radio/radio-legacy/style/index.css +0 -1
- package/es/radio/radio-legacy/style/index.js +0 -3
- package/es/rate/__tests__/index.test.js +0 -124
- package/es/select/__tests__/index.test.js +0 -505
- package/es/select/select-legacy/Option.js +0 -81
- package/es/select/select-legacy/Select.js +0 -706
- package/es/select/select-legacy/SelectDropdown.js +0 -160
- package/es/select/select-legacy/SelectInput.js +0 -308
- package/es/select/select-legacy/common.js +0 -19
- package/es/select/select-legacy/index.js +0 -16
- package/es/stepper/Stepper.js +0 -151
- package/es/stepper/__tests__/index.test.js +0 -161
- package/es/table/ClickOuterside.js +0 -99
- package/es/table/TableContent.js +0 -105
- package/es/table/__tests__/index.test.js +0 -129
- package/es/table/checkbox/style/index.css +0 -1
- package/es/table/checkbox/style/index.js +0 -3
- package/es/tabs/__tests__/index.test.js +0 -333
- package/es/tabs/tabs-legacy/ItemDropdown.js +0 -166
- package/es/tabs/tabs-legacy/TabPane.js +0 -74
- package/es/tabs/tabs-legacy/Tabs.js +0 -295
- package/es/tabs/tabs-legacy/index.js +0 -18
- package/es/tabs/tabs-legacy/style/index.css +0 -1
- package/es/tabs/tabs-legacy/style/index.js +0 -3
- package/es/tag/__tests__/index.test.js +0 -46
- package/es/tag/index.js +0 -90
- package/es/tag/style/index.css +0 -1
- package/es/tag/style/index.js +0 -3
- package/es/timeline/__tests__/index.test.js +0 -198
- package/es/tooltip/__tests__/index.test.js +0 -170
- package/es/transfer/Transfer.js +0 -562
- package/es/transfer/__tests__/index.test.js +0 -210
- package/es/tree/IconLoading.js +0 -38
- package/es/tree/__tests__/index.test.js +0 -603
- package/es/tree/tree-legacy/Tree.js +0 -333
- package/es/tree/tree-legacy/TreeDivider.js +0 -25
- package/es/tree/tree-legacy/TreeItem.js +0 -329
- package/es/tree/tree-legacy/TreeNode.js +0 -715
- package/es/tree/tree-legacy/index.js +0 -13
- package/es/tree/tree-legacy/style/index.css +0 -1
- package/es/tree/tree-legacy/style/index.js +0 -3
- package/es/tree/tree-legacy/util.js +0 -434
- package/es/upload/__tests__/index.test.js +0 -760
- package/es/upload/main.js +0 -87
- package/es/upload/upload-legacy/Upload.js +0 -435
- package/es/upload/upload-legacy/UploadAvatar.js +0 -322
- package/es/upload/upload-legacy/UploadClick.js +0 -125
- package/es/upload/upload-legacy/UploadDrag.js +0 -180
- package/es/upload/upload-legacy/UploadPhoto.js +0 -183
- package/es/upload/upload-legacy/UploadPictureCard.js +0 -126
- package/es/upload/upload-legacy/index.js +0 -71
- package/es/upload/upload-legacy/style/index.css +0 -1
- package/es/upload/upload-legacy/style/index.js +0 -5
- package/es/upload/upload-legacy/tool.js +0 -84
- package/es/watermark/index.js +0 -101
- package/es/watermark/watermark.js +0 -252
- package/test/coverage/coverage-summary.json +0 -123
- package/test/coverage/lcov-report/Cascader.js.html +0 -1341
- package/test/coverage/lcov-report/Item.js.html +0 -402
- package/test/coverage/lcov-report/Menu.js.html +0 -372
- package/test/coverage/lcov-report/Select.js.html +0 -1983
- package/test/coverage/lcov-report/SelectDropdown.js.html +0 -468
- package/test/coverage/lcov-report/SelectInput.js.html +0 -885
- package/test/coverage/lcov-report/Transfer.js.html +0 -1347
- package/test/coverage/lcov-report/_util/SwitchVersion.js.html +0 -117
- package/test/coverage/lcov-report/_util/depreactedPropsCompat.js.html +0 -180
- package/test/coverage/lcov-report/_util/deprecatedPropsCheck.js.html +0 -120
- package/test/coverage/lcov-report/_util/index.html +0 -136
- package/test/coverage/lcov-report/_util/index.js.html +0 -75
- package/test/coverage/lcov-report/alert/Alert.js.html +0 -303
- package/test/coverage/lcov-report/alert/index.html +0 -97
- package/test/coverage/lcov-report/badge/Badge.js.html +0 -195
- package/test/coverage/lcov-report/badge/index.html +0 -97
- package/test/coverage/lcov-report/base.css +0 -224
- package/test/coverage/lcov-report/block-navigation.js +0 -79
- package/test/coverage/lcov-report/breadcrumb/index.html +0 -97
- package/test/coverage/lcov-report/breadcrumb/index.js.html +0 -165
- package/test/coverage/lcov-report/button/Button.js.html +0 -429
- package/test/coverage/lcov-report/button/ButtonGroup.js.html +0 -129
- package/test/coverage/lcov-report/button/IconLoading.js.html +0 -123
- package/test/coverage/lcov-report/button/index.html +0 -136
- package/test/coverage/lcov-report/button/index.js.html +0 -90
- package/test/coverage/lcov-report/card/index.html +0 -97
- package/test/coverage/lcov-report/card/index.js.html +0 -444
- package/test/coverage/lcov-report/carousel/index.html +0 -97
- package/test/coverage/lcov-report/carousel/index.js.html +0 -534
- package/test/coverage/lcov-report/cascader/Cascader.js.html +0 -1335
- package/test/coverage/lcov-report/cascader/Menu.js.html +0 -372
- package/test/coverage/lcov-report/cascader/index.html +0 -110
- package/test/coverage/lcov-report/checkbox/Checkbox.js.html +0 -360
- package/test/coverage/lcov-report/checkbox/Group.js.html +0 -423
- package/test/coverage/lcov-report/checkbox/index.html +0 -123
- package/test/coverage/lcov-report/checkbox/index.js.html +0 -105
- package/test/coverage/lcov-report/collapse/index.html +0 -97
- package/test/coverage/lcov-report/collapse/index.js.html +0 -432
- package/test/coverage/lcov-report/common.js.html +0 -105
- package/test/coverage/lcov-report/components/_util/SwitchVersion.js.html +0 -117
- package/test/coverage/lcov-report/components/_util/depreactedPropsCompat.js.html +0 -180
- package/test/coverage/lcov-report/components/_util/deprecatedPropsCheck.js.html +0 -120
- package/test/coverage/lcov-report/components/_util/index.html +0 -149
- package/test/coverage/lcov-report/components/_util/index.js.html +0 -75
- package/test/coverage/lcov-report/components/_util/warning.js.html +0 -96
- package/test/coverage/lcov-report/components/alert/Alert.js.html +0 -303
- package/test/coverage/lcov-report/components/alert/index.html +0 -110
- package/test/coverage/lcov-report/components/alert/index.js.html +0 -93
- package/test/coverage/lcov-report/components/badge/Badge.js.html +0 -195
- package/test/coverage/lcov-report/components/badge/index.html +0 -110
- package/test/coverage/lcov-report/components/badge/index.js.html +0 -96
- package/test/coverage/lcov-report/components/breadcrumb/index.html +0 -97
- package/test/coverage/lcov-report/components/breadcrumb/index.js.html +0 -165
- package/test/coverage/lcov-report/components/button/Button.js.html +0 -429
- package/test/coverage/lcov-report/components/button/ButtonGroup.js.html +0 -129
- package/test/coverage/lcov-report/components/button/IconLoading.js.html +0 -123
- package/test/coverage/lcov-report/components/button/index.html +0 -136
- package/test/coverage/lcov-report/components/button/index.js.html +0 -90
- package/test/coverage/lcov-report/components/card/index.html +0 -97
- package/test/coverage/lcov-report/components/card/index.js.html +0 -444
- package/test/coverage/lcov-report/components/carousel/index.html +0 -97
- package/test/coverage/lcov-report/components/carousel/index.js.html +0 -609
- package/test/coverage/lcov-report/components/cascader/Cascader.js.html +0 -1239
- package/test/coverage/lcov-report/components/cascader/Menu.js.html +0 -375
- package/test/coverage/lcov-report/components/cascader/index.html +0 -123
- package/test/coverage/lcov-report/components/cascader/index.js.html +0 -96
- package/test/coverage/lcov-report/components/checkbox/Checkbox.js.html +0 -360
- package/test/coverage/lcov-report/components/checkbox/Group.js.html +0 -423
- package/test/coverage/lcov-report/components/checkbox/index.html +0 -123
- package/test/coverage/lcov-report/components/checkbox/index.js.html +0 -105
- package/test/coverage/lcov-report/components/collapse/index.html +0 -97
- package/test/coverage/lcov-report/components/collapse/index.js.html +0 -432
- package/test/coverage/lcov-report/components/confirm/index.html +0 -97
- package/test/coverage/lcov-report/components/confirm/index.js.html +0 -288
- package/test/coverage/lcov-report/components/context/index.html +0 -97
- package/test/coverage/lcov-report/components/context/index.js.html +0 -252
- package/test/coverage/lcov-report/components/counter/Counter.js.html +0 -864
- package/test/coverage/lcov-report/components/counter/index.html +0 -110
- package/test/coverage/lcov-report/components/counter/index.js.html +0 -87
- package/test/coverage/lcov-report/components/date-picker/BasePicker.js.html +0 -1185
- package/test/coverage/lcov-report/components/date-picker/Calender.js.html +0 -975
- package/test/coverage/lcov-report/components/date-picker/DatePanel.js.html +0 -945
- package/test/coverage/lcov-report/components/date-picker/DatePicker.js.html +0 -231
- package/test/coverage/lcov-report/components/date-picker/DateRangePanel.js.html +0 -1017
- package/test/coverage/lcov-report/components/date-picker/Modal.js.html +0 -150
- package/test/coverage/lcov-report/components/date-picker/Time.js.html +0 -537
- package/test/coverage/lcov-report/components/date-picker/TimeList.js.html +0 -459
- package/test/coverage/lcov-report/components/date-picker/TimePanel.js.html +0 -195
- package/test/coverage/lcov-report/components/date-picker/TimePeriodPanel.js.html +0 -264
- package/test/coverage/lcov-report/components/date-picker/TimePicker.js.html +0 -225
- package/test/coverage/lcov-report/components/date-picker/TimeRangePanel.js.html +0 -165
- package/test/coverage/lcov-report/components/date-picker/Type.js.html +0 -144
- package/test/coverage/lcov-report/components/date-picker/WeekRangePanel.js.html +0 -618
- package/test/coverage/lcov-report/components/date-picker/constants.js.html +0 -228
- package/test/coverage/lcov-report/components/date-picker/dateUtil.js.html +0 -453
- package/test/coverage/lcov-report/components/date-picker/index.html +0 -331
- package/test/coverage/lcov-report/components/date-picker/index.js.html +0 -90
- package/test/coverage/lcov-report/components/date-picker/local.js.html +0 -81
- package/test/coverage/lcov-report/components/date-picker/util.js.html +0 -168
- package/test/coverage/lcov-report/components/dropdown/Dropdown.jsx.html +0 -507
- package/test/coverage/lcov-report/components/dropdown/DropdownButton.jsx.html +0 -285
- package/test/coverage/lcov-report/components/dropdown/DropdownMenu.jsx.html +0 -276
- package/test/coverage/lcov-report/components/dropdown/DropdownMenuItem.jsx.html +0 -402
- package/test/coverage/lcov-report/components/dropdown/index.html +0 -162
- package/test/coverage/lcov-report/components/dropdown/index.js.html +0 -201
- package/test/coverage/lcov-report/components/dropdown/tests/index.html +0 -97
- package/test/coverage/lcov-report/components/dropdown/tests/index.test.js.html +0 -261
- package/test/coverage/lcov-report/components/dropdown/utils.js.html +0 -126
- package/test/coverage/lcov-report/components/ficon/index.html +0 -97
- package/test/coverage/lcov-report/components/ficon/index.js.html +0 -126
- package/test/coverage/lcov-report/components/form/Form.js.html +0 -426
- package/test/coverage/lcov-report/components/form/Item.js.html +0 -732
- package/test/coverage/lcov-report/components/form/index.html +0 -123
- package/test/coverage/lcov-report/components/form/index.js.html +0 -93
- package/test/coverage/lcov-report/components/grid/index.html +0 -97
- package/test/coverage/lcov-report/components/grid/index.js.html +0 -357
- package/test/coverage/lcov-report/components/icon/index.html +0 -97
- package/test/coverage/lcov-report/components/icon/index.js.html +0 -114
- package/test/coverage/lcov-report/components/index.html +0 -97
- package/test/coverage/lcov-report/components/index.js.html +0 -207
- package/test/coverage/lcov-report/components/input/Input.js.html +0 -1035
- package/test/coverage/lcov-report/components/input/index.html +0 -123
- package/test/coverage/lcov-report/components/input/index.js.html +0 -90
- package/test/coverage/lcov-report/components/input/util.js.html +0 -498
- package/test/coverage/lcov-report/components/lib/index.html +0 -97
- package/test/coverage/lcov-report/components/lib/withDragDropContext.js.html +0 -81
- package/test/coverage/lcov-report/components/loading/Loading.js.html +0 -429
- package/test/coverage/lcov-report/components/loading/index.html +0 -110
- package/test/coverage/lcov-report/components/loading/index.js.html +0 -84
- package/test/coverage/lcov-report/components/locales/en-US.js.html +0 -339
- package/test/coverage/lcov-report/components/locales/index.html +0 -123
- package/test/coverage/lcov-report/components/locales/index.js.html +0 -90
- package/test/coverage/lcov-report/components/locales/zh-CN.js.html +0 -342
- package/test/coverage/lcov-report/components/menu/Item.js.html +0 -219
- package/test/coverage/lcov-report/components/menu/Menu.js.html +0 -1035
- package/test/coverage/lcov-report/components/menu/SubMenu.js.html +0 -558
- package/test/coverage/lcov-report/components/menu/Title.js.html +0 -201
- package/test/coverage/lcov-report/components/menu/index.html +0 -149
- package/test/coverage/lcov-report/components/menu/index.js.html +0 -105
- package/test/coverage/lcov-report/components/message/index.html +0 -97
- package/test/coverage/lcov-report/components/message/index.js.html +0 -198
- package/test/coverage/lcov-report/components/modal/index.html +0 -97
- package/test/coverage/lcov-report/components/modal/index.js.html +0 -534
- package/test/coverage/lcov-report/components/nav-menu/NavMenu.js.html +0 -702
- package/test/coverage/lcov-report/components/nav-menu/index.html +0 -110
- package/test/coverage/lcov-report/components/nav-menu/index.js.html +0 -81
- package/test/coverage/lcov-report/components/notice/Notice.js.html +0 -243
- package/test/coverage/lcov-report/components/notice/NoticeContainer.js.html +0 -219
- package/test/coverage/lcov-report/components/notice/index.html +0 -123
- package/test/coverage/lcov-report/components/notice/index.js.html +0 -168
- package/test/coverage/lcov-report/components/notification/HandleNotification/index.html +0 -97
- package/test/coverage/lcov-report/components/notification/HandleNotification/index.js.html +0 -534
- package/test/coverage/lcov-report/components/notification/index.html +0 -97
- package/test/coverage/lcov-report/components/notification/index.js.html +0 -282
- package/test/coverage/lcov-report/components/pagination/Pager.js.html +0 -204
- package/test/coverage/lcov-report/components/pagination/Pagination.js.html +0 -1338
- package/test/coverage/lcov-report/components/pagination/index.html +0 -123
- package/test/coverage/lcov-report/components/pagination/index.js.html +0 -102
- package/test/coverage/lcov-report/components/panel/index.html +0 -97
- package/test/coverage/lcov-report/components/panel/index.js.html +0 -189
- package/test/coverage/lcov-report/components/popover/index.html +0 -97
- package/test/coverage/lcov-report/components/popover/index.js.html +0 -510
- package/test/coverage/lcov-report/components/popper/index.html +0 -97
- package/test/coverage/lcov-report/components/popper/index.js.html +0 -666
- package/test/coverage/lcov-report/components/progress/BarProgress.js.html +0 -186
- package/test/coverage/lcov-report/components/progress/CircleProgress.js.html +0 -168
- package/test/coverage/lcov-report/components/progress/DashboardProgress.js.html +0 -222
- package/test/coverage/lcov-report/components/progress/Progress.js.html +0 -219
- package/test/coverage/lcov-report/components/progress/index.html +0 -149
- package/test/coverage/lcov-report/components/progress/index.js.html +0 -102
- package/test/coverage/lcov-report/components/radio/Group.js.html +0 -447
- package/test/coverage/lcov-report/components/radio/Radio.js.html +0 -399
- package/test/coverage/lcov-report/components/radio/index.html +0 -123
- package/test/coverage/lcov-report/components/radio/index.js.html +0 -105
- package/test/coverage/lcov-report/components/rate/Icons.js.html +0 -999
- package/test/coverage/lcov-report/components/rate/Rate.js.html +0 -579
- package/test/coverage/lcov-report/components/rate/index.html +0 -123
- package/test/coverage/lcov-report/components/rate/index.js.html +0 -84
- package/test/coverage/lcov-report/components/select/Select.js.html +0 -1968
- package/test/coverage/lcov-report/components/select/SelectDropdown.js.html +0 -468
- package/test/coverage/lcov-report/components/select/SelectInput.js.html +0 -885
- package/test/coverage/lcov-report/components/select/common.js.html +0 -105
- package/test/coverage/lcov-report/components/select/index.html +0 -149
- package/test/coverage/lcov-report/components/select/index.js.html +0 -87
- package/test/coverage/lcov-report/components/stepper/Stepper.js.html +0 -366
- package/test/coverage/lcov-report/components/stepper/index.html +0 -110
- package/test/coverage/lcov-report/components/stepper/index.js.html +0 -162
- package/test/coverage/lcov-report/components/switch/__tests__/__snapshots__/index.html +0 -97
- package/test/coverage/lcov-report/components/switch/__tests__/__snapshots__/index.test.js.snap.html +0 -171
- package/test/coverage/lcov-report/components/switch/index.html +0 -97
- package/test/coverage/lcov-report/components/switch/index.js.html +0 -282
- package/test/coverage/lcov-report/components/table/Body.js.html +0 -588
- package/test/coverage/lcov-report/components/table/ClickOuterside.js.html +0 -201
- package/test/coverage/lcov-report/components/table/Footer.js.html +0 -435
- package/test/coverage/lcov-report/components/table/Header.js.html +0 -480
- package/test/coverage/lcov-report/components/table/Pover.js.html +0 -288
- package/test/coverage/lcov-report/components/table/TableContent.js.html +0 -204
- package/test/coverage/lcov-report/components/table/checkbox/index.html +0 -97
- package/test/coverage/lcov-report/components/table/checkbox/index.js.html +0 -213
- package/test/coverage/lcov-report/components/table/index.html +0 -201
- package/test/coverage/lcov-report/components/table/index.js.html +0 -3078
- package/test/coverage/lcov-report/components/table/menu/index.html +0 -97
- package/test/coverage/lcov-report/components/table/menu/index.js.html +0 -207
- package/test/coverage/lcov-report/components/table/prefix.js.html +0 -87
- package/test/coverage/lcov-report/components/table/tool.js.html +0 -387
- package/test/coverage/lcov-report/components/tabs/ItemDropdown.js.html +0 -387
- package/test/coverage/lcov-report/components/tabs/TabPane.js.html +0 -162
- package/test/coverage/lcov-report/components/tabs/Tabs.js.html +0 -795
- package/test/coverage/lcov-report/components/tabs/index.html +0 -136
- package/test/coverage/lcov-report/components/tabs/index.js.html +0 -108
- package/test/coverage/lcov-report/components/tag/index.html +0 -97
- package/test/coverage/lcov-report/components/tag/index.js.html +0 -216
- package/test/coverage/lcov-report/components/timeline/FoldingItem.js.html +0 -135
- package/test/coverage/lcov-report/components/timeline/index.html +0 -110
- package/test/coverage/lcov-report/components/timeline/index.js.html +0 -435
- package/test/coverage/lcov-report/components/tooltip/index.html +0 -97
- package/test/coverage/lcov-report/components/tooltip/index.js.html +0 -501
- package/test/coverage/lcov-report/components/transfer/Item.js.html +0 -402
- package/test/coverage/lcov-report/components/transfer/Transfer.js.html +0 -1347
- package/test/coverage/lcov-report/components/transfer/index.html +0 -123
- package/test/coverage/lcov-report/components/transfer/index.js.html +0 -81
- package/test/coverage/lcov-report/components/tree/IconLoading.js.html +0 -123
- package/test/coverage/lcov-report/components/tree/Tree.js.html +0 -810
- package/test/coverage/lcov-report/components/tree/TreeDivider.js.html +0 -120
- package/test/coverage/lcov-report/components/tree/TreeItem.js.html +0 -1092
- package/test/coverage/lcov-report/components/tree/TreeNode.js.html +0 -2061
- package/test/coverage/lcov-report/components/tree/index.html +0 -175
- package/test/coverage/lcov-report/components/tree/index.js.html +0 -84
- package/test/coverage/lcov-report/components/tree/util.js.html +0 -1026
- package/test/coverage/lcov-report/components/upload/Preview.js.html +0 -960
- package/test/coverage/lcov-report/components/upload/Upload.js.html +0 -999
- package/test/coverage/lcov-report/components/upload/UploadAvatar.js.html +0 -795
- package/test/coverage/lcov-report/components/upload/UploadClick.js.html +0 -351
- package/test/coverage/lcov-report/components/upload/UploadDrag.js.html +0 -543
- package/test/coverage/lcov-report/components/upload/UploadPhoto.js.html +0 -465
- package/test/coverage/lcov-report/components/upload/UploadPictureCard.js.html +0 -345
- package/test/coverage/lcov-report/components/upload/index.html +0 -214
- package/test/coverage/lcov-report/components/upload/index.js.html +0 -87
- package/test/coverage/lcov-report/components/upload/main.js.html +0 -153
- package/test/coverage/lcov-report/components/upload/tool.js.html +0 -276
- package/test/coverage/lcov-report/context/index.html +0 -97
- package/test/coverage/lcov-report/context/index.js.html +0 -252
- package/test/coverage/lcov-report/counter/Counter.js.html +0 -828
- package/test/coverage/lcov-report/counter/index.html +0 -110
- package/test/coverage/lcov-report/counter/index.js.html +0 -87
- package/test/coverage/lcov-report/date-picker/BasePicker.js.html +0 -1173
- package/test/coverage/lcov-report/date-picker/Calender.js.html +0 -975
- package/test/coverage/lcov-report/date-picker/DatePanel.js.html +0 -945
- package/test/coverage/lcov-report/date-picker/DatePicker.js.html +0 -270
- package/test/coverage/lcov-report/date-picker/DateRangePanel.js.html +0 -1260
- package/test/coverage/lcov-report/date-picker/Modal.js.html +0 -150
- package/test/coverage/lcov-report/date-picker/Time.js.html +0 -537
- package/test/coverage/lcov-report/date-picker/TimeList.js.html +0 -459
- package/test/coverage/lcov-report/date-picker/TimePanel.js.html +0 -195
- package/test/coverage/lcov-report/date-picker/TimePeriodPanel.js.html +0 -264
- package/test/coverage/lcov-report/date-picker/TimePicker.js.html +0 -225
- package/test/coverage/lcov-report/date-picker/TimeRangePanel.js.html +0 -165
- package/test/coverage/lcov-report/date-picker/Type.js.html +0 -144
- package/test/coverage/lcov-report/date-picker/WeekRangePanel.js.html +0 -870
- package/test/coverage/lcov-report/date-picker/constants.js.html +0 -192
- package/test/coverage/lcov-report/date-picker/dateUtil.js.html +0 -453
- package/test/coverage/lcov-report/date-picker/index.html +0 -318
- package/test/coverage/lcov-report/date-picker/index.js.html +0 -90
- package/test/coverage/lcov-report/date-picker/util.js.html +0 -168
- package/test/coverage/lcov-report/dropdown/Dropdown.jsx.html +0 -507
- package/test/coverage/lcov-report/dropdown/DropdownButton.jsx.html +0 -285
- package/test/coverage/lcov-report/dropdown/DropdownMenu.jsx.html +0 -276
- package/test/coverage/lcov-report/dropdown/DropdownMenuItem.jsx.html +0 -402
- package/test/coverage/lcov-report/dropdown/index.html +0 -162
- package/test/coverage/lcov-report/dropdown/index.js.html +0 -201
- package/test/coverage/lcov-report/dropdown/utils.js.html +0 -114
- package/test/coverage/lcov-report/form/Form.js.html +0 -423
- package/test/coverage/lcov-report/form/Item.js.html +0 -729
- package/test/coverage/lcov-report/form/index.html +0 -123
- package/test/coverage/lcov-report/form/index.js.html +0 -93
- package/test/coverage/lcov-report/grid/index.html +0 -97
- package/test/coverage/lcov-report/grid/index.js.html +0 -357
- package/test/coverage/lcov-report/icon/index.html +0 -97
- package/test/coverage/lcov-report/icon/index.js.html +0 -114
- package/test/coverage/lcov-report/index.html +0 -656
- package/test/coverage/lcov-report/index.js.html +0 -87
- package/test/coverage/lcov-report/index.test.js.snap.html +0 -171
- package/test/coverage/lcov-report/input/Input.js.html +0 -1035
- package/test/coverage/lcov-report/input/index.html +0 -123
- package/test/coverage/lcov-report/input/index.js.html +0 -90
- package/test/coverage/lcov-report/input/util.js.html +0 -498
- package/test/coverage/lcov-report/lib/index.html +0 -97
- package/test/coverage/lcov-report/lib/withDragDropContext.js.html +0 -81
- package/test/coverage/lcov-report/loading/Loading.js.html +0 -423
- package/test/coverage/lcov-report/loading/index.html +0 -110
- package/test/coverage/lcov-report/loading/index.js.html +0 -84
- package/test/coverage/lcov-report/locales/en-US.js.html +0 -429
- package/test/coverage/lcov-report/locales/index.html +0 -123
- package/test/coverage/lcov-report/locales/index.js.html +0 -90
- package/test/coverage/lcov-report/locales/zh-CN.js.html +0 -354
- package/test/coverage/lcov-report/menu/Item.js.html +0 -219
- package/test/coverage/lcov-report/menu/Menu.js.html +0 -1035
- package/test/coverage/lcov-report/menu/SubMenu.js.html +0 -558
- package/test/coverage/lcov-report/menu/Title.js.html +0 -201
- package/test/coverage/lcov-report/menu/index.html +0 -149
- package/test/coverage/lcov-report/menu/index.js.html +0 -105
- package/test/coverage/lcov-report/message/index.html +0 -97
- package/test/coverage/lcov-report/message/index.js.html +0 -198
- package/test/coverage/lcov-report/modal/index.html +0 -97
- package/test/coverage/lcov-report/modal/index.js.html +0 -534
- package/test/coverage/lcov-report/notice/Notice.js.html +0 -243
- package/test/coverage/lcov-report/notice/NoticeContainer.js.html +0 -219
- package/test/coverage/lcov-report/notice/index.html +0 -123
- package/test/coverage/lcov-report/notice/index.js.html +0 -168
- package/test/coverage/lcov-report/notification/HandleNotification/index.html +0 -97
- package/test/coverage/lcov-report/notification/HandleNotification/index.js.html +0 -534
- package/test/coverage/lcov-report/notification/index.html +0 -97
- package/test/coverage/lcov-report/notification/index.js.html +0 -282
- package/test/coverage/lcov-report/pagination/Pager.js.html +0 -204
- package/test/coverage/lcov-report/pagination/Pagination.js.html +0 -1338
- package/test/coverage/lcov-report/pagination/index.html +0 -123
- package/test/coverage/lcov-report/pagination/index.js.html +0 -102
- package/test/coverage/lcov-report/popover/index.html +0 -97
- package/test/coverage/lcov-report/popover/index.js.html +0 -510
- package/test/coverage/lcov-report/popper/index.html +0 -97
- package/test/coverage/lcov-report/popper/index.js.html +0 -666
- package/test/coverage/lcov-report/prettify.css +0 -1
- package/test/coverage/lcov-report/prettify.js +0 -2
- package/test/coverage/lcov-report/progress/BarProgress.js.html +0 -186
- package/test/coverage/lcov-report/progress/CircleProgress.js.html +0 -168
- package/test/coverage/lcov-report/progress/DashboardProgress.js.html +0 -222
- package/test/coverage/lcov-report/progress/Progress.js.html +0 -219
- package/test/coverage/lcov-report/progress/index.html +0 -136
- package/test/coverage/lcov-report/radio/Group.js.html +0 -447
- package/test/coverage/lcov-report/radio/Radio.js.html +0 -399
- package/test/coverage/lcov-report/radio/index.html +0 -123
- package/test/coverage/lcov-report/radio/index.js.html +0 -105
- package/test/coverage/lcov-report/rate/Icons.js.html +0 -999
- package/test/coverage/lcov-report/rate/Rate.js.html +0 -579
- package/test/coverage/lcov-report/rate/index.html +0 -110
- package/test/coverage/lcov-report/select/Select.js.html +0 -1983
- package/test/coverage/lcov-report/select/SelectDropdown.js.html +0 -468
- package/test/coverage/lcov-report/select/SelectInput.js.html +0 -885
- package/test/coverage/lcov-report/select/common.js.html +0 -105
- package/test/coverage/lcov-report/select/index.html +0 -149
- package/test/coverage/lcov-report/select/index.js.html +0 -87
- package/test/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/test/coverage/lcov-report/sorter.js +0 -170
- package/test/coverage/lcov-report/stepper/Stepper.js.html +0 -366
- package/test/coverage/lcov-report/stepper/index.html +0 -110
- package/test/coverage/lcov-report/stepper/index.js.html +0 -162
- package/test/coverage/lcov-report/switch/__tests__/__snapshots__/index.html +0 -97
- package/test/coverage/lcov-report/switch/__tests__/__snapshots__/index.test.js.snap.html +0 -171
- package/test/coverage/lcov-report/switch/index.html +0 -97
- package/test/coverage/lcov-report/switch/index.js.html +0 -282
- package/test/coverage/lcov-report/tabs/ItemDropdown.js.html +0 -387
- package/test/coverage/lcov-report/tabs/TabPane.js.html +0 -162
- package/test/coverage/lcov-report/tabs/Tabs.js.html +0 -795
- package/test/coverage/lcov-report/tabs/index.html +0 -136
- package/test/coverage/lcov-report/tabs/index.js.html +0 -108
- package/test/coverage/lcov-report/tag/index.html +0 -97
- package/test/coverage/lcov-report/tag/index.js.html +0 -216
- package/test/coverage/lcov-report/timeline/FoldingItem.js.html +0 -135
- package/test/coverage/lcov-report/timeline/index.html +0 -110
- package/test/coverage/lcov-report/timeline/index.js.html +0 -435
- package/test/coverage/lcov-report/tooltip/index.html +0 -97
- package/test/coverage/lcov-report/tooltip/index.js.html +0 -483
- package/test/coverage/lcov-report/transfer/Item.js.html +0 -402
- package/test/coverage/lcov-report/transfer/Transfer.js.html +0 -1347
- package/test/coverage/lcov-report/transfer/index.html +0 -123
- package/test/coverage/lcov-report/transfer/index.js.html +0 -78
- package/test/coverage/lcov-report/tree/IconLoading.js.html +0 -123
- package/test/coverage/lcov-report/tree/Tree.js.html +0 -786
- package/test/coverage/lcov-report/tree/TreeDivider.js.html +0 -120
- package/test/coverage/lcov-report/tree/TreeItem.js.html +0 -1092
- package/test/coverage/lcov-report/tree/TreeNode.js.html +0 -2013
- package/test/coverage/lcov-report/tree/index.html +0 -175
- package/test/coverage/lcov-report/tree/index.js.html +0 -81
- package/test/coverage/lcov-report/tree/util.js.html +0 -483
- package/test/coverage/lcov-report/upload/Preview.js.html +0 -948
- package/test/coverage/lcov-report/upload/Upload.js.html +0 -1113
- package/test/coverage/lcov-report/upload/UploadAvatar.js.html +0 -825
- package/test/coverage/lcov-report/upload/UploadClick.js.html +0 -366
- package/test/coverage/lcov-report/upload/UploadDrag.js.html +0 -561
- package/test/coverage/lcov-report/upload/UploadPhoto.js.html +0 -492
- package/test/coverage/lcov-report/upload/UploadPictureCard.js.html +0 -369
- package/test/coverage/lcov-report/upload/index.html +0 -188
- package/test/coverage/lcov-report/upload/main.js.html +0 -153
- package/test/coverage/lcov.info +0 -10535
- /package/es/checkbox/{checkbox-legacy/common.js → common.js} +0 -0
- /package/es/{breadcrumb/style → style}/index.js +0 -0
- /package/es/upload/{upload-legacy/style → style}/preview.css +0 -0
- /package/es/upload/{upload-legacy/style → style}/preview.js +0 -0
|
@@ -1,174 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
|
-
var _react = _interopRequireDefault(require("react"));
|
|
6
|
-
|
|
7
|
-
var _enzyme = require("enzyme");
|
|
8
|
-
|
|
9
|
-
var _sinon = require("sinon");
|
|
10
|
-
|
|
11
|
-
var _Notice = require("../Notice");
|
|
12
|
-
|
|
13
|
-
var _NoticeContainer = _interopRequireDefault(require("../NoticeContainer"));
|
|
14
|
-
|
|
15
|
-
var _index = _interopRequireDefault(require("../index"));
|
|
16
|
-
|
|
17
|
-
/* eslint-env jest */
|
|
18
|
-
describe('Notice', function () {
|
|
19
|
-
beforeAll(function () {
|
|
20
|
-
jest.useFakeTimers();
|
|
21
|
-
});
|
|
22
|
-
afterAll(function () {
|
|
23
|
-
jest.useRealTimers();
|
|
24
|
-
});
|
|
25
|
-
describe('Lifecycle', function () {
|
|
26
|
-
it('componentDidMount', function () {
|
|
27
|
-
var callback = (0, _sinon.spy)();
|
|
28
|
-
var componentDidMountSpy = (0, _sinon.spy)(_Notice.Notice.prototype, 'componentDidMount');
|
|
29
|
-
var wrapper = (0, _enzyme.mount)( /*#__PURE__*/_react["default"].createElement(_Notice.Notice, {
|
|
30
|
-
onClose: callback,
|
|
31
|
-
duration: null
|
|
32
|
-
}));
|
|
33
|
-
expect(wrapper.find(_Notice.Notice).instance()).toBeInstanceOf(_Notice.Notice);
|
|
34
|
-
expect(componentDidMountSpy.callCount).toEqual(1);
|
|
35
|
-
expect(wrapper.state('open')).toBeTruthy();
|
|
36
|
-
componentDidMountSpy.restore();
|
|
37
|
-
});
|
|
38
|
-
it('componentWillunmount', function () {
|
|
39
|
-
var callback = (0, _sinon.spy)();
|
|
40
|
-
var componentWillunmountSpy = (0, _sinon.spy)(_Notice.Notice.prototype, 'componentWillUnmount');
|
|
41
|
-
var wrapper = (0, _enzyme.mount)( /*#__PURE__*/_react["default"].createElement(_Notice.Notice, {
|
|
42
|
-
onClose: callback
|
|
43
|
-
}));
|
|
44
|
-
wrapper.unmount();
|
|
45
|
-
expect(componentWillunmountSpy.callCount).toEqual(1);
|
|
46
|
-
componentWillunmountSpy.restore();
|
|
47
|
-
});
|
|
48
|
-
});
|
|
49
|
-
describe('PropTypes', function () {
|
|
50
|
-
it('closeable', function () {
|
|
51
|
-
var callback = (0, _sinon.spy)();
|
|
52
|
-
var prefix = 'prefix';
|
|
53
|
-
var wrapper = (0, _enzyme.mount)( /*#__PURE__*/_react["default"].createElement(_Notice.Notice, {
|
|
54
|
-
prefix: prefix,
|
|
55
|
-
onClose: callback
|
|
56
|
-
}));
|
|
57
|
-
expect(wrapper.find(".hi-prefix-button")).toHaveLength(0);
|
|
58
|
-
wrapper.setProps({
|
|
59
|
-
closeable: true
|
|
60
|
-
});
|
|
61
|
-
expect(wrapper.find(".hi-prefix__content--wrapper")).toHaveLength(1);
|
|
62
|
-
var wrapperLastChild = wrapper.find(".hi-prefix").at(0).find('span');
|
|
63
|
-
expect(wrapper.state('open')).toBeTruthy();
|
|
64
|
-
wrapperLastChild.simulate('click');
|
|
65
|
-
expect(wrapper.state('open')).toBeFalsy();
|
|
66
|
-
});
|
|
67
|
-
it('children', function () {
|
|
68
|
-
var callback = (0, _sinon.spy)();
|
|
69
|
-
|
|
70
|
-
var Children = function Children() {
|
|
71
|
-
return /*#__PURE__*/_react["default"].createElement("div", null, "children");
|
|
72
|
-
};
|
|
73
|
-
|
|
74
|
-
var wrapper = (0, _enzyme.mount)( /*#__PURE__*/_react["default"].createElement(_Notice.Notice, {
|
|
75
|
-
onClose: callback
|
|
76
|
-
}, /*#__PURE__*/_react["default"].createElement(Children, null)));
|
|
77
|
-
expect(wrapper.find(Children)).toHaveLength(1);
|
|
78
|
-
});
|
|
79
|
-
it('prefix', function () {
|
|
80
|
-
var callback = (0, _sinon.spy)();
|
|
81
|
-
var prefix = 'prefix';
|
|
82
|
-
var wrapper = (0, _enzyme.mount)( /*#__PURE__*/_react["default"].createElement(_Notice.Notice, {
|
|
83
|
-
prefix: prefix,
|
|
84
|
-
onClose: callback
|
|
85
|
-
}));
|
|
86
|
-
expect(wrapper.find(".hi-prefix")).toHaveLength(1);
|
|
87
|
-
});
|
|
88
|
-
it('type', function () {
|
|
89
|
-
var callback = (0, _sinon.spy)();
|
|
90
|
-
var prefix = 'prefix';
|
|
91
|
-
var wrapper = (0, _enzyme.mount)( /*#__PURE__*/_react["default"].createElement("div", null, /*#__PURE__*/_react["default"].createElement(_Notice.Notice, {
|
|
92
|
-
type: "info",
|
|
93
|
-
prefix: prefix,
|
|
94
|
-
onClose: callback
|
|
95
|
-
}), /*#__PURE__*/_react["default"].createElement(_Notice.Notice, {
|
|
96
|
-
type: "error",
|
|
97
|
-
prefix: prefix,
|
|
98
|
-
onClose: callback
|
|
99
|
-
}), /*#__PURE__*/_react["default"].createElement(_Notice.Notice, {
|
|
100
|
-
type: "success",
|
|
101
|
-
prefix: prefix,
|
|
102
|
-
onClose: callback
|
|
103
|
-
}), /*#__PURE__*/_react["default"].createElement(_Notice.Notice, {
|
|
104
|
-
type: "warning",
|
|
105
|
-
prefix: prefix,
|
|
106
|
-
onClose: callback
|
|
107
|
-
})));
|
|
108
|
-
expect(wrapper.find(".hi-prefix--info")).toHaveLength(1);
|
|
109
|
-
expect(wrapper.find(".hi-prefix--error")).toHaveLength(1);
|
|
110
|
-
expect(wrapper.find(".hi-prefix--success")).toHaveLength(1);
|
|
111
|
-
expect(wrapper.find(".hi-prefix--warning")).toHaveLength(1);
|
|
112
|
-
});
|
|
113
|
-
it('duration', function () {
|
|
114
|
-
var callback = (0, _sinon.spy)();
|
|
115
|
-
var wrapper = (0, _enzyme.mount)( /*#__PURE__*/_react["default"].createElement(_Notice.Notice, {
|
|
116
|
-
onClose: callback
|
|
117
|
-
}));
|
|
118
|
-
expect(wrapper.state('open')).toEqual(true);
|
|
119
|
-
wrapper.setProps({
|
|
120
|
-
duration: 1000
|
|
121
|
-
});
|
|
122
|
-
jest.runAllTimers();
|
|
123
|
-
expect(wrapper.state('open')).toEqual(false);
|
|
124
|
-
});
|
|
125
|
-
});
|
|
126
|
-
});
|
|
127
|
-
var queue = [{
|
|
128
|
-
key: 1,
|
|
129
|
-
noticeId: 1,
|
|
130
|
-
onClose: (0, _sinon.spy)(),
|
|
131
|
-
duraction: 1000,
|
|
132
|
-
type: 'sucess',
|
|
133
|
-
closeable: true,
|
|
134
|
-
onConfirm: 'onConfirm',
|
|
135
|
-
content: 'content'
|
|
136
|
-
}, {
|
|
137
|
-
key: 2,
|
|
138
|
-
noticeId: 2,
|
|
139
|
-
onClose: (0, _sinon.spy)(),
|
|
140
|
-
duraction: 1000,
|
|
141
|
-
type: 'sucess',
|
|
142
|
-
closeable: true,
|
|
143
|
-
onConfirm: 'onConfirm',
|
|
144
|
-
content: 'content'
|
|
145
|
-
}];
|
|
146
|
-
describe('NoticeContainer', function () {
|
|
147
|
-
describe('PropTypes', function () {
|
|
148
|
-
it('prefix', function () {
|
|
149
|
-
var prefix = 'prefix';
|
|
150
|
-
var wrapper = (0, _enzyme.mount)( /*#__PURE__*/_react["default"].createElement(_NoticeContainer["default"], {
|
|
151
|
-
prefix: prefix
|
|
152
|
-
}));
|
|
153
|
-
wrapper.setState({
|
|
154
|
-
queue: queue
|
|
155
|
-
});
|
|
156
|
-
expect(wrapper.find(".hi-prefix__container")).toHaveLength(1);
|
|
157
|
-
expect(wrapper.find(_Notice.Notice)).toHaveLength(2);
|
|
158
|
-
});
|
|
159
|
-
it('could be closed', function () {
|
|
160
|
-
var onClose = jest.fn();
|
|
161
|
-
var wrapper = (0, _enzyme.mount)( /*#__PURE__*/_react["default"].createElement(_Notice.Notice, {
|
|
162
|
-
prefix: 'prefix',
|
|
163
|
-
onClose: onClose
|
|
164
|
-
}));
|
|
165
|
-
expect(wrapper.find('.hi-prefix')).toHaveLength(1);
|
|
166
|
-
});
|
|
167
|
-
});
|
|
168
|
-
});
|
|
169
|
-
describe('Index', function () {
|
|
170
|
-
describe('open', function () {
|
|
171
|
-
var callback = (0, _sinon.spy)();
|
|
172
|
-
});
|
|
173
|
-
describe('close', function () {});
|
|
174
|
-
});
|
package/es/notice/index.js
DELETED
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports["default"] = void 0;
|
|
9
|
-
|
|
10
|
-
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
11
|
-
|
|
12
|
-
var _react = _interopRequireDefault(require("react"));
|
|
13
|
-
|
|
14
|
-
var _reactDom = require("react-dom");
|
|
15
|
-
|
|
16
|
-
var _NoticeContainer = _interopRequireDefault(require("./NoticeContainer"));
|
|
17
|
-
|
|
18
|
-
require("./style/index");
|
|
19
|
-
|
|
20
|
-
var noticeInstance = {};
|
|
21
|
-
|
|
22
|
-
function open(_ref) {
|
|
23
|
-
var prefix = _ref.prefix,
|
|
24
|
-
noticeProps = (0, _objectWithoutProperties2["default"])(_ref, ["prefix"]);
|
|
25
|
-
|
|
26
|
-
if (!noticeInstance[prefix]) {
|
|
27
|
-
var noticeContainer = document.createElement('div');
|
|
28
|
-
document.body.appendChild(noticeContainer);
|
|
29
|
-
|
|
30
|
-
var containterRef = /*#__PURE__*/_react["default"].createRef();
|
|
31
|
-
|
|
32
|
-
var noti = /*#__PURE__*/_react["default"].createElement(_NoticeContainer["default"], {
|
|
33
|
-
ref: containterRef,
|
|
34
|
-
prefix: prefix
|
|
35
|
-
});
|
|
36
|
-
|
|
37
|
-
(0, _reactDom.render)(noti, noticeContainer);
|
|
38
|
-
setTimeout(function () {
|
|
39
|
-
return containterRef.current.addNotice(noticeProps);
|
|
40
|
-
}, 0);
|
|
41
|
-
noticeInstance[prefix] = {
|
|
42
|
-
add: function add(notice) {
|
|
43
|
-
return containterRef.current.addNotice(notice);
|
|
44
|
-
},
|
|
45
|
-
remove: function remove(key) {
|
|
46
|
-
return containterRef.current.removeNotice(key);
|
|
47
|
-
},
|
|
48
|
-
destory: function destory() {
|
|
49
|
-
(0, _reactDom.unmountComponentAtNode)(noticeContainer);
|
|
50
|
-
noticeContainer.parentNode.removeChild(noticeContainer);
|
|
51
|
-
}
|
|
52
|
-
};
|
|
53
|
-
} else {
|
|
54
|
-
noticeInstance[prefix].add(noticeProps);
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
function close(prefix, key) {
|
|
59
|
-
noticeInstance[prefix].remove(key);
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
var _default = {
|
|
63
|
-
open: open,
|
|
64
|
-
close: close
|
|
65
|
-
};
|
|
66
|
-
exports["default"] = _default;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@font-face{font-family:'hi-icon';src:url("data:application/x-font-woff2;charset=utf-8;base64,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") format("woff2")}.hi-icon{font-family:'hi-icon' !important;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:baseline;text-align:center}.hi-icon+.hi-icon{margin-left:8px}.icon-alarm::before{content:'\e604'}.icon-alarm-clock::before{content:'\e605'}.icon-approve::before{content:'\e606'}.icon-archive::before{content:'\e607'}.icon-application-lock::before{content:'\e608'}.icon-arrow-left::before{content:'\e609'}.icon-arrow-right::before{content:'\e60a'}.icon-bottom::before{content:'\e60b'}.icon-man::before{content:'\e60c'}.icon-building::before{content:'\e60d'}.icon-chat-group::before{content:'\e60e'}.icon-menu::before{content:'\e60f'}.icon-check-circle-o::before{content:'\e610'}.icon-check-circle::before{content:'\e695'}.icon-check::before{content:'\e611'}.icon-circle::before{content:'\e612'}.icon-close-circle-o::before{content:'\e613'}.icon-close-circle::before{content:'\e614'}.icon-close::before{content:'\e615'}.icon-collection::before{content:'\e616'}.icon-comment-circle-o::before{content:'\e617'}.icon-copy::before{content:'\e618'}.icon-collection-list::before{content:'\e619'}.icon-component::before{content:'\e61a'}.icon-data::before{content:'\e61b'}.icon-cut::before{content:'\e61c'}.icon-date-end::before{content:'\e61d'}.icon-date-start::before{content:'\e61e'}.icon-date::before{content:'\e61f'}.icon-delete::before{content:'\e620'}.icon-document::before{content:'\e621'}.icon-double-left::before{content:'\e622'}.icon-double-right::before{content:'\e623'}.icon-down::before{content:'\e624'}.icon-download::before{content:'\e625'}.icon-edit::before{content:'\e626'}.icon-email::before{content:'\e627'}.icon-email-open::before{content:'\e628'}.icon-expand-alt::before{content:'\e629'}.icon-export::before{content:'\e62a'}.icon-eye::before{content:'\e62b'}.icon-face::before{content:'\e62c'}.icon-folder::before{content:'\e62d'}.icon-fullscreen-exit::before{content:'\e62e'}.icon-fullscreen::before{content:'\e62f'}.icon-hide::before{content:'\e630'}.icon-home::before{content:'\e631'}.icon-html::before{content:'\e632'}.icon-info-circle-o::before{content:'\e633'}.icon-info::before{content:'\e634'}.icon-left::before{content:'\e635'}.icon-internet::before{content:'\e636'}.icon-label::before{content:'\e637'}.icon-linechart::before{content:'\e638'}.icon-lock::before{content:'\e639'}.icon-list::before{content:'\e63a'}.icon-link::before{content:'\e63b'}.icon-mail-delivery::before{content:'\e63c'}.icon-mark::before{content:'\e63d'}.icon-message::before{content:'\e63e'}.icon-minus::before{content:'\e63f'}.icon-money-circle-o::before{content:'\e640'}.icon-more-circle-o::before{content:'\e641'}.icon-more::before{content:'\e642'}.icon-move-to::before{content:'\e643'}.icon-paste::before{content:'\e644'}.icon-move::before{content:'\e645'}.icon-pause::before{content:'\e646'}.icon-pc::before{content:'\e647'}.icon-phone::before{content:'\e648'}.icon-pic::before{content:'\e649'}.icon-play::before{content:'\e64a'}.icon-pie-chart::before{content:'\e64b'}.icon-plus::before{content:'\e64c'}.icon-polyline::before{content:'\e64d'}.icon-position::before{content:'\e64e'}.icon-problem-circle-o::before{content:'\e64f'}.icon-process::before{content:'\e650'}.icon-prompt::before{content:'\e651'}.icon-power-off::before{content:'\e652'}.icon-plugin::before{content:'\e653'}.icon-refer::before{content:'\e654'}.icon-qr::before{content:'\e655'}.icon-repeat::before{content:'\e656'}.icon-right::before{content:'\e657'}.icon-save::before{content:'\e658'}.icon-scan::before{content:'\e659'}.icon-search::before{content:'\e65a'}.icon-share::before{content:'\e65b'}.icon-set::before{content:'\e65c'}.icon-sound::before{content:'\e65d'}.icon-shrink::before{content:'\e65e'}.icon-square-selected-not::before{content:'\e65f'}.icon-square-selected::before{content:'\e660'}.icon-stop::before{content:'\e661'}.icon-star::before{content:'\e662'}.icon-step-on::before{content:'\e663'}.icon-store::before{content:'\e664'}.icon-task::before{content:'\e665'}.icon-synchronize::before{content:'\e666'}.icon-template::before{content:'\e667'}.icon-telephone::before{content:'\e668'}.icon-thumbs-up::before{content:'\e669'}.icon-time::before{content:'\e66a'}.icon-tool::before{content:'\e66b'}.icon-top::before{content:'\e66c'}.icon-time1::before{content:'\e66d'}.icon-unlock::before{content:'\e66e'}.icon-travel::before{content:'\e66f'}.icon-truck::before{content:'\e670'}.icon-up::before{content:'\e671'}.icon-update::before{content:'\e672'}.icon-upload::before{content:'\e673'}.icon-upload-cloud::before{content:'\e674'}.icon-user::before{content:'\e675'}.icon-user-add::before{content:'\e676'}.icon-usergroup::before{content:'\e677'}.icon-voice::before{content:'\e678'}.icon-woman::before{content:'\e679'}.icon-web::before{content:'\e67a'}.icon-reset::before{content:'\e68d'}.icon-api::before{content:'\e68c'}.icon-noapi::before{content:'\e68b'}.icon-columns::before{content:'\e685'}.icon-average::before{content:'\e684'}.icon-row-height::before{content:'\e603'}.icon-caveat::before{content:'\e682'}.icon-asc::before{content:'\e681'}.icon-desc::before{content:'\e67e'}.icon-import::before{content:'\e680'}.icon-freezing::before{content:'\e67f'}.icon-summation::before{content:'\e67d'}.icon-screen::before{content:'\e67c'}.icon-stattistics::before{content:'\e602'}.icon-stattistics::before{content:'\e602'}.icon-zoom-in::before{content:'\e687'}.icon-zoom-out::before{content:'\e686'}.icon-ratio::before{content:'\e689'}.icon-rotate-left::before{content:'\e688'}.icon-rotate-right::before{content:'\e68e'}.icon-maodian::before{content:'\e68f'}.icon-chenggong::before{content:'\e690'}.icon-jinggao::before{content:'\e691'}.icon-shibai::before{content:'\e692'}.icon-tishi::before{content:'\e693'}.icon-open::before{content:'\e683'}.icon-packup::before{content:'\e67b'}.icon-TreeMinus::before{content:'\e697'}.icon-TreePlus::before{content:'\e698'}.icon-Collapse::before{content:'\e695'}.icon-Expand::before{content:'\e69f'}.icon-fire::before{content:'\e699'}.icon-Moon::before{content:'\e69a'}.icon-Lightbulb::before{content:'\e69b'}.icon-Key::before{content:'\e69c'}.icon-lightning::before{content:'\e69d'}.icon-Check-circle-o1::before{content:'\e69e'}.icon-File::before{content:'\e6a0'}.icon-Folder-open::before{content:'\e6a1'}.hi-notice__container{position:absolute;top:20px;right:20px;z-index:1020;background-color:#fff}.hi-notice__container .hi-notice{padding:10px 12px;margin-bottom:10px;border:1px solid #e7e7e7;background:#fff;-webkit-transition:0.3s ease;transition:0.3s ease;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.hi-notice__container .hi-notice__closer{position:absolute;top:12px;right:12px}.hi-notice__container .hi-notice__title{font-size:14px}.hi-notice__container .hi-notice__content--wrapper{width:100%;padding-right:14px}.hi-notice__container .hi-notice__content{font-size:12px;color:#666}.hi-notice__container .hi-notice-enter{-webkit-transform:translateX(100%);transform:translateX(100%)}.hi-notice__container .hi-notice-enter-done{-webkit-transform:none;transform:none}.hi-notice__container .hi-notice-exit{-webkit-transform:none;transform:none}.hi-notice__container .hi-notice-exit-done{-webkit-transform:translateX(100%);transform:translateX(100%)}
|
package/es/notice/style/index.js
DELETED
|
@@ -1,220 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
|
|
4
|
-
|
|
5
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
6
|
-
|
|
7
|
-
Object.defineProperty(exports, "__esModule", {
|
|
8
|
-
value: true
|
|
9
|
-
});
|
|
10
|
-
exports["default"] = void 0;
|
|
11
|
-
|
|
12
|
-
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
13
|
-
|
|
14
|
-
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
15
|
-
|
|
16
|
-
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
17
|
-
|
|
18
|
-
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
19
|
-
|
|
20
|
-
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
21
|
-
|
|
22
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
23
|
-
|
|
24
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
25
|
-
|
|
26
|
-
var _reactDom = require("react-dom");
|
|
27
|
-
|
|
28
|
-
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
29
|
-
|
|
30
|
-
var _classnames = _interopRequireDefault(require("classnames"));
|
|
31
|
-
|
|
32
|
-
require("./style/index");
|
|
33
|
-
|
|
34
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; }
|
|
35
|
-
|
|
36
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
|
37
|
-
|
|
38
|
-
/**
|
|
39
|
-
*
|
|
40
|
-
*
|
|
41
|
-
* @class Notification
|
|
42
|
-
* @extends {Component}
|
|
43
|
-
*/
|
|
44
|
-
// info/error/success/warning
|
|
45
|
-
function handleNotificate(props) {
|
|
46
|
-
props = props || {};
|
|
47
|
-
var div = document.createElement('div');
|
|
48
|
-
|
|
49
|
-
var noti = /*#__PURE__*/_react["default"].createElement(Notification, Object.assign({}, props, {
|
|
50
|
-
removeContainDiv: function removeContainDiv() {
|
|
51
|
-
(0, _reactDom.unmountComponentAtNode)(div);
|
|
52
|
-
document.body.removeChild(div);
|
|
53
|
-
}
|
|
54
|
-
}));
|
|
55
|
-
|
|
56
|
-
(0, _reactDom.render)(noti, div);
|
|
57
|
-
document.body.appendChild(div);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
var Notification = /*#__PURE__*/function (_Component) {
|
|
61
|
-
(0, _inherits2["default"])(Notification, _Component);
|
|
62
|
-
|
|
63
|
-
var _super = _createSuper(Notification);
|
|
64
|
-
|
|
65
|
-
function Notification(props) {
|
|
66
|
-
var _this;
|
|
67
|
-
|
|
68
|
-
(0, _classCallCheck2["default"])(this, Notification);
|
|
69
|
-
_this = _super.call(this, props);
|
|
70
|
-
_this.state = {
|
|
71
|
-
show: false,
|
|
72
|
-
remove: false,
|
|
73
|
-
offsetTop: 20
|
|
74
|
-
};
|
|
75
|
-
return _this;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
(0, _createClass2["default"])(Notification, [{
|
|
79
|
-
key: "componentWillMount",
|
|
80
|
-
value: function componentWillMount() {
|
|
81
|
-
var lastele = [].slice.call(document.querySelectorAll('.' + this.props.prefixCls + '.show')).pop();
|
|
82
|
-
|
|
83
|
-
if (!lastele) {
|
|
84
|
-
return;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
var lastdis = lastele.offsetHeight - 0 + lastele.offsetTop + 10;
|
|
88
|
-
this.setState({
|
|
89
|
-
offsetTop: lastdis
|
|
90
|
-
});
|
|
91
|
-
}
|
|
92
|
-
}, {
|
|
93
|
-
key: "componentDidMount",
|
|
94
|
-
value: function componentDidMount() {
|
|
95
|
-
var _this2 = this;
|
|
96
|
-
|
|
97
|
-
var _this$props = this.props,
|
|
98
|
-
autoClose = _this$props.autoClose,
|
|
99
|
-
duration = _this$props.duration; // 为了做渐变效果所以没直接在初始化 state 的时候设置为 true。。可惜好像并不好用
|
|
100
|
-
|
|
101
|
-
this.setState({
|
|
102
|
-
show: true
|
|
103
|
-
}); // 开始计时
|
|
104
|
-
|
|
105
|
-
if (autoClose) {
|
|
106
|
-
setTimeout(function () {
|
|
107
|
-
_this2.closeNotify();
|
|
108
|
-
}, duration);
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
}, {
|
|
112
|
-
key: "closeNotify",
|
|
113
|
-
value: function closeNotify() {
|
|
114
|
-
this.setState({
|
|
115
|
-
show: false
|
|
116
|
-
});
|
|
117
|
-
this.props.onClose && this.props.onClose();
|
|
118
|
-
setTimeout(function () {
|
|
119
|
-
var eletsArr = [].slice.call(document.querySelectorAll('.' + this.props.prefixCls + '.show'));
|
|
120
|
-
eletsArr.reduce(function (top, item, idx, arr) {
|
|
121
|
-
item.style.top = "".concat(top, "px");
|
|
122
|
-
return top + item.offsetHeight - 0 + 10;
|
|
123
|
-
}, 20);
|
|
124
|
-
}.bind(this), 0);
|
|
125
|
-
}
|
|
126
|
-
}, {
|
|
127
|
-
key: "removeNotify",
|
|
128
|
-
value: function removeNotify() {
|
|
129
|
-
if (!this.state.show) {
|
|
130
|
-
this.setState({
|
|
131
|
-
remove: true
|
|
132
|
-
});
|
|
133
|
-
|
|
134
|
-
if (this.props.removeContainDiv) {
|
|
135
|
-
this.props.removeContainDiv();
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
}, {
|
|
140
|
-
key: "render",
|
|
141
|
-
value: function render() {
|
|
142
|
-
var _this3 = this;
|
|
143
|
-
|
|
144
|
-
var classnames = (0, _classnames["default"])(this.props.prefixCls, this.props.type, {
|
|
145
|
-
show: this.state.show
|
|
146
|
-
});
|
|
147
|
-
var type = this.props.type;
|
|
148
|
-
|
|
149
|
-
switch (type) {
|
|
150
|
-
case 'warning':
|
|
151
|
-
type = 'info-circle-o';
|
|
152
|
-
break;
|
|
153
|
-
|
|
154
|
-
case 'error':
|
|
155
|
-
type = 'close-circle-o';
|
|
156
|
-
break;
|
|
157
|
-
|
|
158
|
-
case 'success':
|
|
159
|
-
type = 'check-circle-o';
|
|
160
|
-
break;
|
|
161
|
-
|
|
162
|
-
default:
|
|
163
|
-
type = 'info-circle-o';
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
return !this.state.remove ? /*#__PURE__*/_react["default"].createElement("div", {
|
|
167
|
-
className: classnames,
|
|
168
|
-
onTransitionEnd: this.removeNotify.bind(this),
|
|
169
|
-
style: {
|
|
170
|
-
top: this.state.offsetTop + 'px'
|
|
171
|
-
},
|
|
172
|
-
ref: function ref(ele) {
|
|
173
|
-
_this3.rootEle = ele;
|
|
174
|
-
}
|
|
175
|
-
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
176
|
-
className: "icon-contain"
|
|
177
|
-
}, /*#__PURE__*/_react["default"].createElement("i", {
|
|
178
|
-
className: "hi-icon icon-".concat(type)
|
|
179
|
-
})), /*#__PURE__*/_react["default"].createElement("span", {
|
|
180
|
-
className: "title"
|
|
181
|
-
}, this.props.title), /*#__PURE__*/_react["default"].createElement("span", {
|
|
182
|
-
className: "message"
|
|
183
|
-
}, this.props.message), this.props.showClose && /*#__PURE__*/_react["default"].createElement("a", {
|
|
184
|
-
className: "close icon-img-delete",
|
|
185
|
-
onClick: this.closeNotify.bind(this)
|
|
186
|
-
}, /*#__PURE__*/_react["default"].createElement("i", {
|
|
187
|
-
className: "hi-icon icon-close"
|
|
188
|
-
}))) : null;
|
|
189
|
-
}
|
|
190
|
-
}]);
|
|
191
|
-
return Notification;
|
|
192
|
-
}(_react.Component);
|
|
193
|
-
|
|
194
|
-
(0, _defineProperty2["default"])(Notification, "propTypes", {
|
|
195
|
-
banner: _propTypes["default"].bool,
|
|
196
|
-
showClose: _propTypes["default"].bool,
|
|
197
|
-
autoClose: _propTypes["default"].bool,
|
|
198
|
-
duration: _propTypes["default"].number,
|
|
199
|
-
positionFrom: _propTypes["default"].string,
|
|
200
|
-
positionAlign: _propTypes["default"].string,
|
|
201
|
-
type: _propTypes["default"].string,
|
|
202
|
-
onClose: _propTypes["default"].func,
|
|
203
|
-
title: _propTypes["default"].string,
|
|
204
|
-
message: _propTypes["default"].string,
|
|
205
|
-
removeContainDiv: _propTypes["default"].func
|
|
206
|
-
});
|
|
207
|
-
(0, _defineProperty2["default"])(Notification, "defaultProps", {
|
|
208
|
-
showClose: true,
|
|
209
|
-
banner: false,
|
|
210
|
-
prefixCls: 'hi-notification-legacy',
|
|
211
|
-
autoClose: false,
|
|
212
|
-
duration: 3000,
|
|
213
|
-
positionFrom: 'top',
|
|
214
|
-
positionAlign: 'right',
|
|
215
|
-
type: 'info',
|
|
216
|
-
title: 'title',
|
|
217
|
-
message: 'message content'
|
|
218
|
-
});
|
|
219
|
-
var _default = handleNotificate;
|
|
220
|
-
exports["default"] = _default;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@font-face{font-family:'hi-icon';src:url("data:application/x-font-woff2;charset=utf-8;base64,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") format("woff2")}.hi-icon{font-family:'hi-icon' !important;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:baseline;text-align:center}.hi-icon+.hi-icon{margin-left:8px}.icon-alarm::before{content:'\e604'}.icon-alarm-clock::before{content:'\e605'}.icon-approve::before{content:'\e606'}.icon-archive::before{content:'\e607'}.icon-application-lock::before{content:'\e608'}.icon-arrow-left::before{content:'\e609'}.icon-arrow-right::before{content:'\e60a'}.icon-bottom::before{content:'\e60b'}.icon-man::before{content:'\e60c'}.icon-building::before{content:'\e60d'}.icon-chat-group::before{content:'\e60e'}.icon-menu::before{content:'\e60f'}.icon-check-circle-o::before{content:'\e610'}.icon-check-circle::before{content:'\e695'}.icon-check::before{content:'\e611'}.icon-circle::before{content:'\e612'}.icon-close-circle-o::before{content:'\e613'}.icon-close-circle::before{content:'\e614'}.icon-close::before{content:'\e615'}.icon-collection::before{content:'\e616'}.icon-comment-circle-o::before{content:'\e617'}.icon-copy::before{content:'\e618'}.icon-collection-list::before{content:'\e619'}.icon-component::before{content:'\e61a'}.icon-data::before{content:'\e61b'}.icon-cut::before{content:'\e61c'}.icon-date-end::before{content:'\e61d'}.icon-date-start::before{content:'\e61e'}.icon-date::before{content:'\e61f'}.icon-delete::before{content:'\e620'}.icon-document::before{content:'\e621'}.icon-double-left::before{content:'\e622'}.icon-double-right::before{content:'\e623'}.icon-down::before{content:'\e624'}.icon-download::before{content:'\e625'}.icon-edit::before{content:'\e626'}.icon-email::before{content:'\e627'}.icon-email-open::before{content:'\e628'}.icon-expand-alt::before{content:'\e629'}.icon-export::before{content:'\e62a'}.icon-eye::before{content:'\e62b'}.icon-face::before{content:'\e62c'}.icon-folder::before{content:'\e62d'}.icon-fullscreen-exit::before{content:'\e62e'}.icon-fullscreen::before{content:'\e62f'}.icon-hide::before{content:'\e630'}.icon-home::before{content:'\e631'}.icon-html::before{content:'\e632'}.icon-info-circle-o::before{content:'\e633'}.icon-info::before{content:'\e634'}.icon-left::before{content:'\e635'}.icon-internet::before{content:'\e636'}.icon-label::before{content:'\e637'}.icon-linechart::before{content:'\e638'}.icon-lock::before{content:'\e639'}.icon-list::before{content:'\e63a'}.icon-link::before{content:'\e63b'}.icon-mail-delivery::before{content:'\e63c'}.icon-mark::before{content:'\e63d'}.icon-message::before{content:'\e63e'}.icon-minus::before{content:'\e63f'}.icon-money-circle-o::before{content:'\e640'}.icon-more-circle-o::before{content:'\e641'}.icon-more::before{content:'\e642'}.icon-move-to::before{content:'\e643'}.icon-paste::before{content:'\e644'}.icon-move::before{content:'\e645'}.icon-pause::before{content:'\e646'}.icon-pc::before{content:'\e647'}.icon-phone::before{content:'\e648'}.icon-pic::before{content:'\e649'}.icon-play::before{content:'\e64a'}.icon-pie-chart::before{content:'\e64b'}.icon-plus::before{content:'\e64c'}.icon-polyline::before{content:'\e64d'}.icon-position::before{content:'\e64e'}.icon-problem-circle-o::before{content:'\e64f'}.icon-process::before{content:'\e650'}.icon-prompt::before{content:'\e651'}.icon-power-off::before{content:'\e652'}.icon-plugin::before{content:'\e653'}.icon-refer::before{content:'\e654'}.icon-qr::before{content:'\e655'}.icon-repeat::before{content:'\e656'}.icon-right::before{content:'\e657'}.icon-save::before{content:'\e658'}.icon-scan::before{content:'\e659'}.icon-search::before{content:'\e65a'}.icon-share::before{content:'\e65b'}.icon-set::before{content:'\e65c'}.icon-sound::before{content:'\e65d'}.icon-shrink::before{content:'\e65e'}.icon-square-selected-not::before{content:'\e65f'}.icon-square-selected::before{content:'\e660'}.icon-stop::before{content:'\e661'}.icon-star::before{content:'\e662'}.icon-step-on::before{content:'\e663'}.icon-store::before{content:'\e664'}.icon-task::before{content:'\e665'}.icon-synchronize::before{content:'\e666'}.icon-template::before{content:'\e667'}.icon-telephone::before{content:'\e668'}.icon-thumbs-up::before{content:'\e669'}.icon-time::before{content:'\e66a'}.icon-tool::before{content:'\e66b'}.icon-top::before{content:'\e66c'}.icon-time1::before{content:'\e66d'}.icon-unlock::before{content:'\e66e'}.icon-travel::before{content:'\e66f'}.icon-truck::before{content:'\e670'}.icon-up::before{content:'\e671'}.icon-update::before{content:'\e672'}.icon-upload::before{content:'\e673'}.icon-upload-cloud::before{content:'\e674'}.icon-user::before{content:'\e675'}.icon-user-add::before{content:'\e676'}.icon-usergroup::before{content:'\e677'}.icon-voice::before{content:'\e678'}.icon-woman::before{content:'\e679'}.icon-web::before{content:'\e67a'}.icon-reset::before{content:'\e68d'}.icon-api::before{content:'\e68c'}.icon-noapi::before{content:'\e68b'}.icon-columns::before{content:'\e685'}.icon-average::before{content:'\e684'}.icon-row-height::before{content:'\e603'}.icon-caveat::before{content:'\e682'}.icon-asc::before{content:'\e681'}.icon-desc::before{content:'\e67e'}.icon-import::before{content:'\e680'}.icon-freezing::before{content:'\e67f'}.icon-summation::before{content:'\e67d'}.icon-screen::before{content:'\e67c'}.icon-stattistics::before{content:'\e602'}.icon-stattistics::before{content:'\e602'}.icon-zoom-in::before{content:'\e687'}.icon-zoom-out::before{content:'\e686'}.icon-ratio::before{content:'\e689'}.icon-rotate-left::before{content:'\e688'}.icon-rotate-right::before{content:'\e68e'}.icon-maodian::before{content:'\e68f'}.icon-chenggong::before{content:'\e690'}.icon-jinggao::before{content:'\e691'}.icon-shibai::before{content:'\e692'}.icon-tishi::before{content:'\e693'}.icon-open::before{content:'\e683'}.icon-packup::before{content:'\e67b'}.icon-TreeMinus::before{content:'\e697'}.icon-TreePlus::before{content:'\e698'}.icon-Collapse::before{content:'\e695'}.icon-Expand::before{content:'\e69f'}.icon-fire::before{content:'\e699'}.icon-Moon::before{content:'\e69a'}.icon-Lightbulb::before{content:'\e69b'}.icon-Key::before{content:'\e69c'}.icon-lightning::before{content:'\e69d'}.icon-Check-circle-o1::before{content:'\e69e'}.icon-File::before{content:'\e6a0'}.icon-Folder-open::before{content:'\e6a1'}.hi-notification-legacy{position:fixed;top:-10px;right:20px;padding:15px 40px 15px 50px;width:20%;background-color:#e9f1ff;border-color:#b4d0ff;color:#4284f5;-webkit-transition:all 0.2s ease-out;transition:all 0.2s ease-out;opacity:0;z-index:1020}.hi-notification-legacy .title{font-size:16px;display:block;margin-bottom:5px}.hi-notification-legacy .message{font-size:12px;display:block}.hi-notification-legacy .close{position:absolute;right:20px;top:50%;margin-top:-0.5em;cursor:pointer;color:#999;font-size:12px;font-family:sans-serif;font-weight:700}.hi-notification-legacy .close::before{color:#999}.hi-notification-legacy.show{opacity:1;top:20px}.hi-notification-legacy .icon-contain{position:absolute;top:50%;left:16px;margin-top:-10px;font-size:0;color:#4284f5;font-weight:600}.hi-notification-legacy .icon-contain .hi-icon{font-size:20px}.hi-notification-legacy.error{background:#ffeaeb;border:1px solid #fbbfbf;color:#eb5252}.hi-notification-legacy.error .icon-contain{color:#eb5252}.hi-notification-legacy.success{background:#e9f5ed;border:1px solid #c5dcce;color:#1da653}.hi-notification-legacy.success .icon-contain{color:#1da653}.hi-notification-legacy.warning{background:#fff9ec;border:1px solid #fdca5e;color:#e19d0c}.hi-notification-legacy.warning .icon-contain{color:#e19d0c}
|