@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,1035 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<title>Code coverage report for components/menu/Menu.js</title>
|
|
5
|
-
<meta charset="utf-8" />
|
|
6
|
-
<link rel="stylesheet" href="../../prettify.css" />
|
|
7
|
-
<link rel="stylesheet" href="../../base.css" />
|
|
8
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
|
-
<style type='text/css'>
|
|
10
|
-
.coverage-summary .sorter {
|
|
11
|
-
background-image: url(../../sort-arrow-sprite.png);
|
|
12
|
-
}
|
|
13
|
-
</style>
|
|
14
|
-
</head>
|
|
15
|
-
<body>
|
|
16
|
-
<div class='wrapper'>
|
|
17
|
-
<div class='pad1'>
|
|
18
|
-
<h1>
|
|
19
|
-
<a href="../../index.html">All files</a> / <a href="index.html">components/menu</a> Menu.js
|
|
20
|
-
</h1>
|
|
21
|
-
<div class='clearfix'>
|
|
22
|
-
<div class='fl pad1y space-right2'>
|
|
23
|
-
<span class="strong">0% </span>
|
|
24
|
-
<span class="quiet">Statements</span>
|
|
25
|
-
<span class='fraction'>0/96</span>
|
|
26
|
-
</div>
|
|
27
|
-
<div class='fl pad1y space-right2'>
|
|
28
|
-
<span class="strong">0% </span>
|
|
29
|
-
<span class="quiet">Branches</span>
|
|
30
|
-
<span class='fraction'>0/71</span>
|
|
31
|
-
</div>
|
|
32
|
-
<div class='fl pad1y space-right2'>
|
|
33
|
-
<span class="strong">0% </span>
|
|
34
|
-
<span class="quiet">Functions</span>
|
|
35
|
-
<span class='fraction'>0/26</span>
|
|
36
|
-
</div>
|
|
37
|
-
<div class='fl pad1y space-right2'>
|
|
38
|
-
<span class="strong">0% </span>
|
|
39
|
-
<span class="quiet">Lines</span>
|
|
40
|
-
<span class='fraction'>0/96</span>
|
|
41
|
-
</div>
|
|
42
|
-
</div>
|
|
43
|
-
<p class="quiet">
|
|
44
|
-
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
|
|
45
|
-
</p>
|
|
46
|
-
</div>
|
|
47
|
-
<div class='status-line low'></div>
|
|
48
|
-
<pre><table class="coverage">
|
|
49
|
-
<tr><td class="line-count quiet"><a name='L1'></a><a href='#L1'>1</a>
|
|
50
|
-
<a name='L2'></a><a href='#L2'>2</a>
|
|
51
|
-
<a name='L3'></a><a href='#L3'>3</a>
|
|
52
|
-
<a name='L4'></a><a href='#L4'>4</a>
|
|
53
|
-
<a name='L5'></a><a href='#L5'>5</a>
|
|
54
|
-
<a name='L6'></a><a href='#L6'>6</a>
|
|
55
|
-
<a name='L7'></a><a href='#L7'>7</a>
|
|
56
|
-
<a name='L8'></a><a href='#L8'>8</a>
|
|
57
|
-
<a name='L9'></a><a href='#L9'>9</a>
|
|
58
|
-
<a name='L10'></a><a href='#L10'>10</a>
|
|
59
|
-
<a name='L11'></a><a href='#L11'>11</a>
|
|
60
|
-
<a name='L12'></a><a href='#L12'>12</a>
|
|
61
|
-
<a name='L13'></a><a href='#L13'>13</a>
|
|
62
|
-
<a name='L14'></a><a href='#L14'>14</a>
|
|
63
|
-
<a name='L15'></a><a href='#L15'>15</a>
|
|
64
|
-
<a name='L16'></a><a href='#L16'>16</a>
|
|
65
|
-
<a name='L17'></a><a href='#L17'>17</a>
|
|
66
|
-
<a name='L18'></a><a href='#L18'>18</a>
|
|
67
|
-
<a name='L19'></a><a href='#L19'>19</a>
|
|
68
|
-
<a name='L20'></a><a href='#L20'>20</a>
|
|
69
|
-
<a name='L21'></a><a href='#L21'>21</a>
|
|
70
|
-
<a name='L22'></a><a href='#L22'>22</a>
|
|
71
|
-
<a name='L23'></a><a href='#L23'>23</a>
|
|
72
|
-
<a name='L24'></a><a href='#L24'>24</a>
|
|
73
|
-
<a name='L25'></a><a href='#L25'>25</a>
|
|
74
|
-
<a name='L26'></a><a href='#L26'>26</a>
|
|
75
|
-
<a name='L27'></a><a href='#L27'>27</a>
|
|
76
|
-
<a name='L28'></a><a href='#L28'>28</a>
|
|
77
|
-
<a name='L29'></a><a href='#L29'>29</a>
|
|
78
|
-
<a name='L30'></a><a href='#L30'>30</a>
|
|
79
|
-
<a name='L31'></a><a href='#L31'>31</a>
|
|
80
|
-
<a name='L32'></a><a href='#L32'>32</a>
|
|
81
|
-
<a name='L33'></a><a href='#L33'>33</a>
|
|
82
|
-
<a name='L34'></a><a href='#L34'>34</a>
|
|
83
|
-
<a name='L35'></a><a href='#L35'>35</a>
|
|
84
|
-
<a name='L36'></a><a href='#L36'>36</a>
|
|
85
|
-
<a name='L37'></a><a href='#L37'>37</a>
|
|
86
|
-
<a name='L38'></a><a href='#L38'>38</a>
|
|
87
|
-
<a name='L39'></a><a href='#L39'>39</a>
|
|
88
|
-
<a name='L40'></a><a href='#L40'>40</a>
|
|
89
|
-
<a name='L41'></a><a href='#L41'>41</a>
|
|
90
|
-
<a name='L42'></a><a href='#L42'>42</a>
|
|
91
|
-
<a name='L43'></a><a href='#L43'>43</a>
|
|
92
|
-
<a name='L44'></a><a href='#L44'>44</a>
|
|
93
|
-
<a name='L45'></a><a href='#L45'>45</a>
|
|
94
|
-
<a name='L46'></a><a href='#L46'>46</a>
|
|
95
|
-
<a name='L47'></a><a href='#L47'>47</a>
|
|
96
|
-
<a name='L48'></a><a href='#L48'>48</a>
|
|
97
|
-
<a name='L49'></a><a href='#L49'>49</a>
|
|
98
|
-
<a name='L50'></a><a href='#L50'>50</a>
|
|
99
|
-
<a name='L51'></a><a href='#L51'>51</a>
|
|
100
|
-
<a name='L52'></a><a href='#L52'>52</a>
|
|
101
|
-
<a name='L53'></a><a href='#L53'>53</a>
|
|
102
|
-
<a name='L54'></a><a href='#L54'>54</a>
|
|
103
|
-
<a name='L55'></a><a href='#L55'>55</a>
|
|
104
|
-
<a name='L56'></a><a href='#L56'>56</a>
|
|
105
|
-
<a name='L57'></a><a href='#L57'>57</a>
|
|
106
|
-
<a name='L58'></a><a href='#L58'>58</a>
|
|
107
|
-
<a name='L59'></a><a href='#L59'>59</a>
|
|
108
|
-
<a name='L60'></a><a href='#L60'>60</a>
|
|
109
|
-
<a name='L61'></a><a href='#L61'>61</a>
|
|
110
|
-
<a name='L62'></a><a href='#L62'>62</a>
|
|
111
|
-
<a name='L63'></a><a href='#L63'>63</a>
|
|
112
|
-
<a name='L64'></a><a href='#L64'>64</a>
|
|
113
|
-
<a name='L65'></a><a href='#L65'>65</a>
|
|
114
|
-
<a name='L66'></a><a href='#L66'>66</a>
|
|
115
|
-
<a name='L67'></a><a href='#L67'>67</a>
|
|
116
|
-
<a name='L68'></a><a href='#L68'>68</a>
|
|
117
|
-
<a name='L69'></a><a href='#L69'>69</a>
|
|
118
|
-
<a name='L70'></a><a href='#L70'>70</a>
|
|
119
|
-
<a name='L71'></a><a href='#L71'>71</a>
|
|
120
|
-
<a name='L72'></a><a href='#L72'>72</a>
|
|
121
|
-
<a name='L73'></a><a href='#L73'>73</a>
|
|
122
|
-
<a name='L74'></a><a href='#L74'>74</a>
|
|
123
|
-
<a name='L75'></a><a href='#L75'>75</a>
|
|
124
|
-
<a name='L76'></a><a href='#L76'>76</a>
|
|
125
|
-
<a name='L77'></a><a href='#L77'>77</a>
|
|
126
|
-
<a name='L78'></a><a href='#L78'>78</a>
|
|
127
|
-
<a name='L79'></a><a href='#L79'>79</a>
|
|
128
|
-
<a name='L80'></a><a href='#L80'>80</a>
|
|
129
|
-
<a name='L81'></a><a href='#L81'>81</a>
|
|
130
|
-
<a name='L82'></a><a href='#L82'>82</a>
|
|
131
|
-
<a name='L83'></a><a href='#L83'>83</a>
|
|
132
|
-
<a name='L84'></a><a href='#L84'>84</a>
|
|
133
|
-
<a name='L85'></a><a href='#L85'>85</a>
|
|
134
|
-
<a name='L86'></a><a href='#L86'>86</a>
|
|
135
|
-
<a name='L87'></a><a href='#L87'>87</a>
|
|
136
|
-
<a name='L88'></a><a href='#L88'>88</a>
|
|
137
|
-
<a name='L89'></a><a href='#L89'>89</a>
|
|
138
|
-
<a name='L90'></a><a href='#L90'>90</a>
|
|
139
|
-
<a name='L91'></a><a href='#L91'>91</a>
|
|
140
|
-
<a name='L92'></a><a href='#L92'>92</a>
|
|
141
|
-
<a name='L93'></a><a href='#L93'>93</a>
|
|
142
|
-
<a name='L94'></a><a href='#L94'>94</a>
|
|
143
|
-
<a name='L95'></a><a href='#L95'>95</a>
|
|
144
|
-
<a name='L96'></a><a href='#L96'>96</a>
|
|
145
|
-
<a name='L97'></a><a href='#L97'>97</a>
|
|
146
|
-
<a name='L98'></a><a href='#L98'>98</a>
|
|
147
|
-
<a name='L99'></a><a href='#L99'>99</a>
|
|
148
|
-
<a name='L100'></a><a href='#L100'>100</a>
|
|
149
|
-
<a name='L101'></a><a href='#L101'>101</a>
|
|
150
|
-
<a name='L102'></a><a href='#L102'>102</a>
|
|
151
|
-
<a name='L103'></a><a href='#L103'>103</a>
|
|
152
|
-
<a name='L104'></a><a href='#L104'>104</a>
|
|
153
|
-
<a name='L105'></a><a href='#L105'>105</a>
|
|
154
|
-
<a name='L106'></a><a href='#L106'>106</a>
|
|
155
|
-
<a name='L107'></a><a href='#L107'>107</a>
|
|
156
|
-
<a name='L108'></a><a href='#L108'>108</a>
|
|
157
|
-
<a name='L109'></a><a href='#L109'>109</a>
|
|
158
|
-
<a name='L110'></a><a href='#L110'>110</a>
|
|
159
|
-
<a name='L111'></a><a href='#L111'>111</a>
|
|
160
|
-
<a name='L112'></a><a href='#L112'>112</a>
|
|
161
|
-
<a name='L113'></a><a href='#L113'>113</a>
|
|
162
|
-
<a name='L114'></a><a href='#L114'>114</a>
|
|
163
|
-
<a name='L115'></a><a href='#L115'>115</a>
|
|
164
|
-
<a name='L116'></a><a href='#L116'>116</a>
|
|
165
|
-
<a name='L117'></a><a href='#L117'>117</a>
|
|
166
|
-
<a name='L118'></a><a href='#L118'>118</a>
|
|
167
|
-
<a name='L119'></a><a href='#L119'>119</a>
|
|
168
|
-
<a name='L120'></a><a href='#L120'>120</a>
|
|
169
|
-
<a name='L121'></a><a href='#L121'>121</a>
|
|
170
|
-
<a name='L122'></a><a href='#L122'>122</a>
|
|
171
|
-
<a name='L123'></a><a href='#L123'>123</a>
|
|
172
|
-
<a name='L124'></a><a href='#L124'>124</a>
|
|
173
|
-
<a name='L125'></a><a href='#L125'>125</a>
|
|
174
|
-
<a name='L126'></a><a href='#L126'>126</a>
|
|
175
|
-
<a name='L127'></a><a href='#L127'>127</a>
|
|
176
|
-
<a name='L128'></a><a href='#L128'>128</a>
|
|
177
|
-
<a name='L129'></a><a href='#L129'>129</a>
|
|
178
|
-
<a name='L130'></a><a href='#L130'>130</a>
|
|
179
|
-
<a name='L131'></a><a href='#L131'>131</a>
|
|
180
|
-
<a name='L132'></a><a href='#L132'>132</a>
|
|
181
|
-
<a name='L133'></a><a href='#L133'>133</a>
|
|
182
|
-
<a name='L134'></a><a href='#L134'>134</a>
|
|
183
|
-
<a name='L135'></a><a href='#L135'>135</a>
|
|
184
|
-
<a name='L136'></a><a href='#L136'>136</a>
|
|
185
|
-
<a name='L137'></a><a href='#L137'>137</a>
|
|
186
|
-
<a name='L138'></a><a href='#L138'>138</a>
|
|
187
|
-
<a name='L139'></a><a href='#L139'>139</a>
|
|
188
|
-
<a name='L140'></a><a href='#L140'>140</a>
|
|
189
|
-
<a name='L141'></a><a href='#L141'>141</a>
|
|
190
|
-
<a name='L142'></a><a href='#L142'>142</a>
|
|
191
|
-
<a name='L143'></a><a href='#L143'>143</a>
|
|
192
|
-
<a name='L144'></a><a href='#L144'>144</a>
|
|
193
|
-
<a name='L145'></a><a href='#L145'>145</a>
|
|
194
|
-
<a name='L146'></a><a href='#L146'>146</a>
|
|
195
|
-
<a name='L147'></a><a href='#L147'>147</a>
|
|
196
|
-
<a name='L148'></a><a href='#L148'>148</a>
|
|
197
|
-
<a name='L149'></a><a href='#L149'>149</a>
|
|
198
|
-
<a name='L150'></a><a href='#L150'>150</a>
|
|
199
|
-
<a name='L151'></a><a href='#L151'>151</a>
|
|
200
|
-
<a name='L152'></a><a href='#L152'>152</a>
|
|
201
|
-
<a name='L153'></a><a href='#L153'>153</a>
|
|
202
|
-
<a name='L154'></a><a href='#L154'>154</a>
|
|
203
|
-
<a name='L155'></a><a href='#L155'>155</a>
|
|
204
|
-
<a name='L156'></a><a href='#L156'>156</a>
|
|
205
|
-
<a name='L157'></a><a href='#L157'>157</a>
|
|
206
|
-
<a name='L158'></a><a href='#L158'>158</a>
|
|
207
|
-
<a name='L159'></a><a href='#L159'>159</a>
|
|
208
|
-
<a name='L160'></a><a href='#L160'>160</a>
|
|
209
|
-
<a name='L161'></a><a href='#L161'>161</a>
|
|
210
|
-
<a name='L162'></a><a href='#L162'>162</a>
|
|
211
|
-
<a name='L163'></a><a href='#L163'>163</a>
|
|
212
|
-
<a name='L164'></a><a href='#L164'>164</a>
|
|
213
|
-
<a name='L165'></a><a href='#L165'>165</a>
|
|
214
|
-
<a name='L166'></a><a href='#L166'>166</a>
|
|
215
|
-
<a name='L167'></a><a href='#L167'>167</a>
|
|
216
|
-
<a name='L168'></a><a href='#L168'>168</a>
|
|
217
|
-
<a name='L169'></a><a href='#L169'>169</a>
|
|
218
|
-
<a name='L170'></a><a href='#L170'>170</a>
|
|
219
|
-
<a name='L171'></a><a href='#L171'>171</a>
|
|
220
|
-
<a name='L172'></a><a href='#L172'>172</a>
|
|
221
|
-
<a name='L173'></a><a href='#L173'>173</a>
|
|
222
|
-
<a name='L174'></a><a href='#L174'>174</a>
|
|
223
|
-
<a name='L175'></a><a href='#L175'>175</a>
|
|
224
|
-
<a name='L176'></a><a href='#L176'>176</a>
|
|
225
|
-
<a name='L177'></a><a href='#L177'>177</a>
|
|
226
|
-
<a name='L178'></a><a href='#L178'>178</a>
|
|
227
|
-
<a name='L179'></a><a href='#L179'>179</a>
|
|
228
|
-
<a name='L180'></a><a href='#L180'>180</a>
|
|
229
|
-
<a name='L181'></a><a href='#L181'>181</a>
|
|
230
|
-
<a name='L182'></a><a href='#L182'>182</a>
|
|
231
|
-
<a name='L183'></a><a href='#L183'>183</a>
|
|
232
|
-
<a name='L184'></a><a href='#L184'>184</a>
|
|
233
|
-
<a name='L185'></a><a href='#L185'>185</a>
|
|
234
|
-
<a name='L186'></a><a href='#L186'>186</a>
|
|
235
|
-
<a name='L187'></a><a href='#L187'>187</a>
|
|
236
|
-
<a name='L188'></a><a href='#L188'>188</a>
|
|
237
|
-
<a name='L189'></a><a href='#L189'>189</a>
|
|
238
|
-
<a name='L190'></a><a href='#L190'>190</a>
|
|
239
|
-
<a name='L191'></a><a href='#L191'>191</a>
|
|
240
|
-
<a name='L192'></a><a href='#L192'>192</a>
|
|
241
|
-
<a name='L193'></a><a href='#L193'>193</a>
|
|
242
|
-
<a name='L194'></a><a href='#L194'>194</a>
|
|
243
|
-
<a name='L195'></a><a href='#L195'>195</a>
|
|
244
|
-
<a name='L196'></a><a href='#L196'>196</a>
|
|
245
|
-
<a name='L197'></a><a href='#L197'>197</a>
|
|
246
|
-
<a name='L198'></a><a href='#L198'>198</a>
|
|
247
|
-
<a name='L199'></a><a href='#L199'>199</a>
|
|
248
|
-
<a name='L200'></a><a href='#L200'>200</a>
|
|
249
|
-
<a name='L201'></a><a href='#L201'>201</a>
|
|
250
|
-
<a name='L202'></a><a href='#L202'>202</a>
|
|
251
|
-
<a name='L203'></a><a href='#L203'>203</a>
|
|
252
|
-
<a name='L204'></a><a href='#L204'>204</a>
|
|
253
|
-
<a name='L205'></a><a href='#L205'>205</a>
|
|
254
|
-
<a name='L206'></a><a href='#L206'>206</a>
|
|
255
|
-
<a name='L207'></a><a href='#L207'>207</a>
|
|
256
|
-
<a name='L208'></a><a href='#L208'>208</a>
|
|
257
|
-
<a name='L209'></a><a href='#L209'>209</a>
|
|
258
|
-
<a name='L210'></a><a href='#L210'>210</a>
|
|
259
|
-
<a name='L211'></a><a href='#L211'>211</a>
|
|
260
|
-
<a name='L212'></a><a href='#L212'>212</a>
|
|
261
|
-
<a name='L213'></a><a href='#L213'>213</a>
|
|
262
|
-
<a name='L214'></a><a href='#L214'>214</a>
|
|
263
|
-
<a name='L215'></a><a href='#L215'>215</a>
|
|
264
|
-
<a name='L216'></a><a href='#L216'>216</a>
|
|
265
|
-
<a name='L217'></a><a href='#L217'>217</a>
|
|
266
|
-
<a name='L218'></a><a href='#L218'>218</a>
|
|
267
|
-
<a name='L219'></a><a href='#L219'>219</a>
|
|
268
|
-
<a name='L220'></a><a href='#L220'>220</a>
|
|
269
|
-
<a name='L221'></a><a href='#L221'>221</a>
|
|
270
|
-
<a name='L222'></a><a href='#L222'>222</a>
|
|
271
|
-
<a name='L223'></a><a href='#L223'>223</a>
|
|
272
|
-
<a name='L224'></a><a href='#L224'>224</a>
|
|
273
|
-
<a name='L225'></a><a href='#L225'>225</a>
|
|
274
|
-
<a name='L226'></a><a href='#L226'>226</a>
|
|
275
|
-
<a name='L227'></a><a href='#L227'>227</a>
|
|
276
|
-
<a name='L228'></a><a href='#L228'>228</a>
|
|
277
|
-
<a name='L229'></a><a href='#L229'>229</a>
|
|
278
|
-
<a name='L230'></a><a href='#L230'>230</a>
|
|
279
|
-
<a name='L231'></a><a href='#L231'>231</a>
|
|
280
|
-
<a name='L232'></a><a href='#L232'>232</a>
|
|
281
|
-
<a name='L233'></a><a href='#L233'>233</a>
|
|
282
|
-
<a name='L234'></a><a href='#L234'>234</a>
|
|
283
|
-
<a name='L235'></a><a href='#L235'>235</a>
|
|
284
|
-
<a name='L236'></a><a href='#L236'>236</a>
|
|
285
|
-
<a name='L237'></a><a href='#L237'>237</a>
|
|
286
|
-
<a name='L238'></a><a href='#L238'>238</a>
|
|
287
|
-
<a name='L239'></a><a href='#L239'>239</a>
|
|
288
|
-
<a name='L240'></a><a href='#L240'>240</a>
|
|
289
|
-
<a name='L241'></a><a href='#L241'>241</a>
|
|
290
|
-
<a name='L242'></a><a href='#L242'>242</a>
|
|
291
|
-
<a name='L243'></a><a href='#L243'>243</a>
|
|
292
|
-
<a name='L244'></a><a href='#L244'>244</a>
|
|
293
|
-
<a name='L245'></a><a href='#L245'>245</a>
|
|
294
|
-
<a name='L246'></a><a href='#L246'>246</a>
|
|
295
|
-
<a name='L247'></a><a href='#L247'>247</a>
|
|
296
|
-
<a name='L248'></a><a href='#L248'>248</a>
|
|
297
|
-
<a name='L249'></a><a href='#L249'>249</a>
|
|
298
|
-
<a name='L250'></a><a href='#L250'>250</a>
|
|
299
|
-
<a name='L251'></a><a href='#L251'>251</a>
|
|
300
|
-
<a name='L252'></a><a href='#L252'>252</a>
|
|
301
|
-
<a name='L253'></a><a href='#L253'>253</a>
|
|
302
|
-
<a name='L254'></a><a href='#L254'>254</a>
|
|
303
|
-
<a name='L255'></a><a href='#L255'>255</a>
|
|
304
|
-
<a name='L256'></a><a href='#L256'>256</a>
|
|
305
|
-
<a name='L257'></a><a href='#L257'>257</a>
|
|
306
|
-
<a name='L258'></a><a href='#L258'>258</a>
|
|
307
|
-
<a name='L259'></a><a href='#L259'>259</a>
|
|
308
|
-
<a name='L260'></a><a href='#L260'>260</a>
|
|
309
|
-
<a name='L261'></a><a href='#L261'>261</a>
|
|
310
|
-
<a name='L262'></a><a href='#L262'>262</a>
|
|
311
|
-
<a name='L263'></a><a href='#L263'>263</a>
|
|
312
|
-
<a name='L264'></a><a href='#L264'>264</a>
|
|
313
|
-
<a name='L265'></a><a href='#L265'>265</a>
|
|
314
|
-
<a name='L266'></a><a href='#L266'>266</a>
|
|
315
|
-
<a name='L267'></a><a href='#L267'>267</a>
|
|
316
|
-
<a name='L268'></a><a href='#L268'>268</a>
|
|
317
|
-
<a name='L269'></a><a href='#L269'>269</a>
|
|
318
|
-
<a name='L270'></a><a href='#L270'>270</a>
|
|
319
|
-
<a name='L271'></a><a href='#L271'>271</a>
|
|
320
|
-
<a name='L272'></a><a href='#L272'>272</a>
|
|
321
|
-
<a name='L273'></a><a href='#L273'>273</a>
|
|
322
|
-
<a name='L274'></a><a href='#L274'>274</a>
|
|
323
|
-
<a name='L275'></a><a href='#L275'>275</a>
|
|
324
|
-
<a name='L276'></a><a href='#L276'>276</a>
|
|
325
|
-
<a name='L277'></a><a href='#L277'>277</a>
|
|
326
|
-
<a name='L278'></a><a href='#L278'>278</a>
|
|
327
|
-
<a name='L279'></a><a href='#L279'>279</a>
|
|
328
|
-
<a name='L280'></a><a href='#L280'>280</a>
|
|
329
|
-
<a name='L281'></a><a href='#L281'>281</a>
|
|
330
|
-
<a name='L282'></a><a href='#L282'>282</a>
|
|
331
|
-
<a name='L283'></a><a href='#L283'>283</a>
|
|
332
|
-
<a name='L284'></a><a href='#L284'>284</a>
|
|
333
|
-
<a name='L285'></a><a href='#L285'>285</a>
|
|
334
|
-
<a name='L286'></a><a href='#L286'>286</a>
|
|
335
|
-
<a name='L287'></a><a href='#L287'>287</a>
|
|
336
|
-
<a name='L288'></a><a href='#L288'>288</a>
|
|
337
|
-
<a name='L289'></a><a href='#L289'>289</a>
|
|
338
|
-
<a name='L290'></a><a href='#L290'>290</a>
|
|
339
|
-
<a name='L291'></a><a href='#L291'>291</a>
|
|
340
|
-
<a name='L292'></a><a href='#L292'>292</a>
|
|
341
|
-
<a name='L293'></a><a href='#L293'>293</a>
|
|
342
|
-
<a name='L294'></a><a href='#L294'>294</a>
|
|
343
|
-
<a name='L295'></a><a href='#L295'>295</a>
|
|
344
|
-
<a name='L296'></a><a href='#L296'>296</a>
|
|
345
|
-
<a name='L297'></a><a href='#L297'>297</a>
|
|
346
|
-
<a name='L298'></a><a href='#L298'>298</a>
|
|
347
|
-
<a name='L299'></a><a href='#L299'>299</a>
|
|
348
|
-
<a name='L300'></a><a href='#L300'>300</a>
|
|
349
|
-
<a name='L301'></a><a href='#L301'>301</a>
|
|
350
|
-
<a name='L302'></a><a href='#L302'>302</a>
|
|
351
|
-
<a name='L303'></a><a href='#L303'>303</a>
|
|
352
|
-
<a name='L304'></a><a href='#L304'>304</a>
|
|
353
|
-
<a name='L305'></a><a href='#L305'>305</a>
|
|
354
|
-
<a name='L306'></a><a href='#L306'>306</a>
|
|
355
|
-
<a name='L307'></a><a href='#L307'>307</a>
|
|
356
|
-
<a name='L308'></a><a href='#L308'>308</a>
|
|
357
|
-
<a name='L309'></a><a href='#L309'>309</a>
|
|
358
|
-
<a name='L310'></a><a href='#L310'>310</a>
|
|
359
|
-
<a name='L311'></a><a href='#L311'>311</a>
|
|
360
|
-
<a name='L312'></a><a href='#L312'>312</a>
|
|
361
|
-
<a name='L313'></a><a href='#L313'>313</a>
|
|
362
|
-
<a name='L314'></a><a href='#L314'>314</a>
|
|
363
|
-
<a name='L315'></a><a href='#L315'>315</a>
|
|
364
|
-
<a name='L316'></a><a href='#L316'>316</a>
|
|
365
|
-
<a name='L317'></a><a href='#L317'>317</a>
|
|
366
|
-
<a name='L318'></a><a href='#L318'>318</a>
|
|
367
|
-
<a name='L319'></a><a href='#L319'>319</a>
|
|
368
|
-
<a name='L320'></a><a href='#L320'>320</a>
|
|
369
|
-
<a name='L321'></a><a href='#L321'>321</a>
|
|
370
|
-
<a name='L322'></a><a href='#L322'>322</a>
|
|
371
|
-
<a name='L323'></a><a href='#L323'>323</a></td><td class="line-coverage quiet"><span class="cline-any cline-neutral"> </span>
|
|
372
|
-
<span class="cline-any cline-neutral"> </span>
|
|
373
|
-
<span class="cline-any cline-neutral"> </span>
|
|
374
|
-
<span class="cline-any cline-neutral"> </span>
|
|
375
|
-
<span class="cline-any cline-neutral"> </span>
|
|
376
|
-
<span class="cline-any cline-neutral"> </span>
|
|
377
|
-
<span class="cline-any cline-neutral"> </span>
|
|
378
|
-
<span class="cline-any cline-neutral"> </span>
|
|
379
|
-
<span class="cline-any cline-neutral"> </span>
|
|
380
|
-
<span class="cline-any cline-neutral"> </span>
|
|
381
|
-
<span class="cline-any cline-no"> </span>
|
|
382
|
-
<span class="cline-any cline-neutral"> </span>
|
|
383
|
-
<span class="cline-any cline-neutral"> </span>
|
|
384
|
-
<span class="cline-any cline-neutral"> </span>
|
|
385
|
-
<span class="cline-any cline-no"> </span>
|
|
386
|
-
<span class="cline-any cline-no"> </span>
|
|
387
|
-
<span class="cline-any cline-no"> </span>
|
|
388
|
-
<span class="cline-any cline-no"> </span>
|
|
389
|
-
<span class="cline-any cline-no"> </span>
|
|
390
|
-
<span class="cline-any cline-no"> </span>
|
|
391
|
-
<span class="cline-any cline-neutral"> </span>
|
|
392
|
-
<span class="cline-any cline-no"> </span>
|
|
393
|
-
<span class="cline-any cline-neutral"> </span>
|
|
394
|
-
<span class="cline-any cline-neutral"> </span>
|
|
395
|
-
<span class="cline-any cline-neutral"> </span>
|
|
396
|
-
<span class="cline-any cline-neutral"> </span>
|
|
397
|
-
<span class="cline-any cline-neutral"> </span>
|
|
398
|
-
<span class="cline-any cline-no"> </span>
|
|
399
|
-
<span class="cline-any cline-neutral"> </span>
|
|
400
|
-
<span class="cline-any cline-neutral"> </span>
|
|
401
|
-
<span class="cline-any cline-neutral"> </span>
|
|
402
|
-
<span class="cline-any cline-no"> </span>
|
|
403
|
-
<span class="cline-any cline-no"> </span>
|
|
404
|
-
<span class="cline-any cline-neutral"> </span>
|
|
405
|
-
<span class="cline-any cline-no"> </span>
|
|
406
|
-
<span class="cline-any cline-neutral"> </span>
|
|
407
|
-
<span class="cline-any cline-neutral"> </span>
|
|
408
|
-
<span class="cline-any cline-neutral"> </span>
|
|
409
|
-
<span class="cline-any cline-neutral"> </span>
|
|
410
|
-
<span class="cline-any cline-neutral"> </span>
|
|
411
|
-
<span class="cline-any cline-no"> </span>
|
|
412
|
-
<span class="cline-any cline-no"> </span>
|
|
413
|
-
<span class="cline-any cline-neutral"> </span>
|
|
414
|
-
<span class="cline-any cline-neutral"> </span>
|
|
415
|
-
<span class="cline-any cline-neutral"> </span>
|
|
416
|
-
<span class="cline-any cline-neutral"> </span>
|
|
417
|
-
<span class="cline-any cline-neutral"> </span>
|
|
418
|
-
<span class="cline-any cline-neutral"> </span>
|
|
419
|
-
<span class="cline-any cline-no"> </span>
|
|
420
|
-
<span class="cline-any cline-neutral"> </span>
|
|
421
|
-
<span class="cline-any cline-neutral"> </span>
|
|
422
|
-
<span class="cline-any cline-neutral"> </span>
|
|
423
|
-
<span class="cline-any cline-no"> </span>
|
|
424
|
-
<span class="cline-any cline-neutral"> </span>
|
|
425
|
-
<span class="cline-any cline-neutral"> </span>
|
|
426
|
-
<span class="cline-any cline-neutral"> </span>
|
|
427
|
-
<span class="cline-any cline-no"> </span>
|
|
428
|
-
<span class="cline-any cline-no"> </span>
|
|
429
|
-
<span class="cline-any cline-neutral"> </span>
|
|
430
|
-
<span class="cline-any cline-neutral"> </span>
|
|
431
|
-
<span class="cline-any cline-neutral"> </span>
|
|
432
|
-
<span class="cline-any cline-neutral"> </span>
|
|
433
|
-
<span class="cline-any cline-no"> </span>
|
|
434
|
-
<span class="cline-any cline-neutral"> </span>
|
|
435
|
-
<span class="cline-any cline-neutral"> </span>
|
|
436
|
-
<span class="cline-any cline-neutral"> </span>
|
|
437
|
-
<span class="cline-any cline-no"> </span>
|
|
438
|
-
<span class="cline-any cline-neutral"> </span>
|
|
439
|
-
<span class="cline-any cline-neutral"> </span>
|
|
440
|
-
<span class="cline-any cline-neutral"> </span>
|
|
441
|
-
<span class="cline-any cline-no"> </span>
|
|
442
|
-
<span class="cline-any cline-no"> </span>
|
|
443
|
-
<span class="cline-any cline-neutral"> </span>
|
|
444
|
-
<span class="cline-any cline-neutral"> </span>
|
|
445
|
-
<span class="cline-any cline-neutral"> </span>
|
|
446
|
-
<span class="cline-any cline-no"> </span>
|
|
447
|
-
<span class="cline-any cline-neutral"> </span>
|
|
448
|
-
<span class="cline-any cline-neutral"> </span>
|
|
449
|
-
<span class="cline-any cline-no"> </span>
|
|
450
|
-
<span class="cline-any cline-no"> </span>
|
|
451
|
-
<span class="cline-any cline-no"> </span>
|
|
452
|
-
<span class="cline-any cline-neutral"> </span>
|
|
453
|
-
<span class="cline-any cline-no"> </span>
|
|
454
|
-
<span class="cline-any cline-no"> </span>
|
|
455
|
-
<span class="cline-any cline-no"> </span>
|
|
456
|
-
<span class="cline-any cline-no"> </span>
|
|
457
|
-
<span class="cline-any cline-neutral"> </span>
|
|
458
|
-
<span class="cline-any cline-no"> </span>
|
|
459
|
-
<span class="cline-any cline-neutral"> </span>
|
|
460
|
-
<span class="cline-any cline-no"> </span>
|
|
461
|
-
<span class="cline-any cline-neutral"> </span>
|
|
462
|
-
<span class="cline-any cline-no"> </span>
|
|
463
|
-
<span class="cline-any cline-neutral"> </span>
|
|
464
|
-
<span class="cline-any cline-no"> </span>
|
|
465
|
-
<span class="cline-any cline-no"> </span>
|
|
466
|
-
<span class="cline-any cline-neutral"> </span>
|
|
467
|
-
<span class="cline-any cline-neutral"> </span>
|
|
468
|
-
<span class="cline-any cline-no"> </span>
|
|
469
|
-
<span class="cline-any cline-no"> </span>
|
|
470
|
-
<span class="cline-any cline-neutral"> </span>
|
|
471
|
-
<span class="cline-any cline-no"> </span>
|
|
472
|
-
<span class="cline-any cline-neutral"> </span>
|
|
473
|
-
<span class="cline-any cline-no"> </span>
|
|
474
|
-
<span class="cline-any cline-neutral"> </span>
|
|
475
|
-
<span class="cline-any cline-neutral"> </span>
|
|
476
|
-
<span class="cline-any cline-neutral"> </span>
|
|
477
|
-
<span class="cline-any cline-neutral"> </span>
|
|
478
|
-
<span class="cline-any cline-no"> </span>
|
|
479
|
-
<span class="cline-any cline-neutral"> </span>
|
|
480
|
-
<span class="cline-any cline-neutral"> </span>
|
|
481
|
-
<span class="cline-any cline-neutral"> </span>
|
|
482
|
-
<span class="cline-any cline-neutral"> </span>
|
|
483
|
-
<span class="cline-any cline-no"> </span>
|
|
484
|
-
<span class="cline-any cline-no"> </span>
|
|
485
|
-
<span class="cline-any cline-no"> </span>
|
|
486
|
-
<span class="cline-any cline-no"> </span>
|
|
487
|
-
<span class="cline-any cline-no"> </span>
|
|
488
|
-
<span class="cline-any cline-no"> </span>
|
|
489
|
-
<span class="cline-any cline-no"> </span>
|
|
490
|
-
<span class="cline-any cline-no"> </span>
|
|
491
|
-
<span class="cline-any cline-neutral"> </span>
|
|
492
|
-
<span class="cline-any cline-no"> </span>
|
|
493
|
-
<span class="cline-any cline-no"> </span>
|
|
494
|
-
<span class="cline-any cline-neutral"> </span>
|
|
495
|
-
<span class="cline-any cline-neutral"> </span>
|
|
496
|
-
<span class="cline-any cline-no"> </span>
|
|
497
|
-
<span class="cline-any cline-no"> </span>
|
|
498
|
-
<span class="cline-any cline-neutral"> </span>
|
|
499
|
-
<span class="cline-any cline-neutral"> </span>
|
|
500
|
-
<span class="cline-any cline-neutral"> </span>
|
|
501
|
-
<span class="cline-any cline-neutral"> </span>
|
|
502
|
-
<span class="cline-any cline-neutral"> </span>
|
|
503
|
-
<span class="cline-any cline-no"> </span>
|
|
504
|
-
<span class="cline-any cline-neutral"> </span>
|
|
505
|
-
<span class="cline-any cline-no"> </span>
|
|
506
|
-
<span class="cline-any cline-no"> </span>
|
|
507
|
-
<span class="cline-any cline-neutral"> </span>
|
|
508
|
-
<span class="cline-any cline-no"> </span>
|
|
509
|
-
<span class="cline-any cline-no"> </span>
|
|
510
|
-
<span class="cline-any cline-neutral"> </span>
|
|
511
|
-
<span class="cline-any cline-neutral"> </span>
|
|
512
|
-
<span class="cline-any cline-neutral"> </span>
|
|
513
|
-
<span class="cline-any cline-no"> </span>
|
|
514
|
-
<span class="cline-any cline-no"> </span>
|
|
515
|
-
<span class="cline-any cline-neutral"> </span>
|
|
516
|
-
<span class="cline-any cline-no"> </span>
|
|
517
|
-
<span class="cline-any cline-no"> </span>
|
|
518
|
-
<span class="cline-any cline-neutral"> </span>
|
|
519
|
-
<span class="cline-any cline-neutral"> </span>
|
|
520
|
-
<span class="cline-any cline-neutral"> </span>
|
|
521
|
-
<span class="cline-any cline-no"> </span>
|
|
522
|
-
<span class="cline-any cline-neutral"> </span>
|
|
523
|
-
<span class="cline-any cline-neutral"> </span>
|
|
524
|
-
<span class="cline-any cline-neutral"> </span>
|
|
525
|
-
<span class="cline-any cline-neutral"> </span>
|
|
526
|
-
<span class="cline-any cline-neutral"> </span>
|
|
527
|
-
<span class="cline-any cline-no"> </span>
|
|
528
|
-
<span class="cline-any cline-no"> </span>
|
|
529
|
-
<span class="cline-any cline-neutral"> </span>
|
|
530
|
-
<span class="cline-any cline-no"> </span>
|
|
531
|
-
<span class="cline-any cline-neutral"> </span>
|
|
532
|
-
<span class="cline-any cline-neutral"> </span>
|
|
533
|
-
<span class="cline-any cline-neutral"> </span>
|
|
534
|
-
<span class="cline-any cline-neutral"> </span>
|
|
535
|
-
<span class="cline-any cline-no"> </span>
|
|
536
|
-
<span class="cline-any cline-neutral"> </span>
|
|
537
|
-
<span class="cline-any cline-neutral"> </span>
|
|
538
|
-
<span class="cline-any cline-neutral"> </span>
|
|
539
|
-
<span class="cline-any cline-neutral"> </span>
|
|
540
|
-
<span class="cline-any cline-no"> </span>
|
|
541
|
-
<span class="cline-any cline-neutral"> </span>
|
|
542
|
-
<span class="cline-any cline-no"> </span>
|
|
543
|
-
<span class="cline-any cline-no"> </span>
|
|
544
|
-
<span class="cline-any cline-neutral"> </span>
|
|
545
|
-
<span class="cline-any cline-neutral"> </span>
|
|
546
|
-
<span class="cline-any cline-no"> </span>
|
|
547
|
-
<span class="cline-any cline-neutral"> </span>
|
|
548
|
-
<span class="cline-any cline-neutral"> </span>
|
|
549
|
-
<span class="cline-any cline-neutral"> </span>
|
|
550
|
-
<span class="cline-any cline-neutral"> </span>
|
|
551
|
-
<span class="cline-any cline-neutral"> </span>
|
|
552
|
-
<span class="cline-any cline-neutral"> </span>
|
|
553
|
-
<span class="cline-any cline-no"> </span>
|
|
554
|
-
<span class="cline-any cline-no"> </span>
|
|
555
|
-
<span class="cline-any cline-neutral"> </span>
|
|
556
|
-
<span class="cline-any cline-neutral"> </span>
|
|
557
|
-
<span class="cline-any cline-neutral"> </span>
|
|
558
|
-
<span class="cline-any cline-neutral"> </span>
|
|
559
|
-
<span class="cline-any cline-neutral"> </span>
|
|
560
|
-
<span class="cline-any cline-neutral"> </span>
|
|
561
|
-
<span class="cline-any cline-neutral"> </span>
|
|
562
|
-
<span class="cline-any cline-neutral"> </span>
|
|
563
|
-
<span class="cline-any cline-neutral"> </span>
|
|
564
|
-
<span class="cline-any cline-neutral"> </span>
|
|
565
|
-
<span class="cline-any cline-no"> </span>
|
|
566
|
-
<span class="cline-any cline-neutral"> </span>
|
|
567
|
-
<span class="cline-any cline-neutral"> </span>
|
|
568
|
-
<span class="cline-any cline-neutral"> </span>
|
|
569
|
-
<span class="cline-any cline-neutral"> </span>
|
|
570
|
-
<span class="cline-any cline-neutral"> </span>
|
|
571
|
-
<span class="cline-any cline-neutral"> </span>
|
|
572
|
-
<span class="cline-any cline-neutral"> </span>
|
|
573
|
-
<span class="cline-any cline-no"> </span>
|
|
574
|
-
<span class="cline-any cline-neutral"> </span>
|
|
575
|
-
<span class="cline-any cline-no"> </span>
|
|
576
|
-
<span class="cline-any cline-no"> </span>
|
|
577
|
-
<span class="cline-any cline-neutral"> </span>
|
|
578
|
-
<span class="cline-any cline-neutral"> </span>
|
|
579
|
-
<span class="cline-any cline-neutral"> </span>
|
|
580
|
-
<span class="cline-any cline-neutral"> </span>
|
|
581
|
-
<span class="cline-any cline-neutral"> </span>
|
|
582
|
-
<span class="cline-any cline-neutral"> </span>
|
|
583
|
-
<span class="cline-any cline-neutral"> </span>
|
|
584
|
-
<span class="cline-any cline-no"> </span>
|
|
585
|
-
<span class="cline-any cline-neutral"> </span>
|
|
586
|
-
<span class="cline-any cline-neutral"> </span>
|
|
587
|
-
<span class="cline-any cline-neutral"> </span>
|
|
588
|
-
<span class="cline-any cline-neutral"> </span>
|
|
589
|
-
<span class="cline-any cline-neutral"> </span>
|
|
590
|
-
<span class="cline-any cline-neutral"> </span>
|
|
591
|
-
<span class="cline-any cline-no"> </span>
|
|
592
|
-
<span class="cline-any cline-neutral"> </span>
|
|
593
|
-
<span class="cline-any cline-neutral"> </span>
|
|
594
|
-
<span class="cline-any cline-neutral"> </span>
|
|
595
|
-
<span class="cline-any cline-no"> </span>
|
|
596
|
-
<span class="cline-any cline-neutral"> </span>
|
|
597
|
-
<span class="cline-any cline-neutral"> </span>
|
|
598
|
-
<span class="cline-any cline-neutral"> </span>
|
|
599
|
-
<span class="cline-any cline-neutral"> </span>
|
|
600
|
-
<span class="cline-any cline-no"> </span>
|
|
601
|
-
<span class="cline-any cline-no"> </span>
|
|
602
|
-
<span class="cline-any cline-no"> </span>
|
|
603
|
-
<span class="cline-any cline-no"> </span>
|
|
604
|
-
<span class="cline-any cline-no"> </span>
|
|
605
|
-
<span class="cline-any cline-no"> </span>
|
|
606
|
-
<span class="cline-any cline-neutral"> </span>
|
|
607
|
-
<span class="cline-any cline-no"> </span>
|
|
608
|
-
<span class="cline-any cline-no"> </span>
|
|
609
|
-
<span class="cline-any cline-neutral"> </span>
|
|
610
|
-
<span class="cline-any cline-neutral"> </span>
|
|
611
|
-
<span class="cline-any cline-neutral"> </span>
|
|
612
|
-
<span class="cline-any cline-neutral"> </span>
|
|
613
|
-
<span class="cline-any cline-neutral"> </span>
|
|
614
|
-
<span class="cline-any cline-neutral"> </span>
|
|
615
|
-
<span class="cline-any cline-neutral"> </span>
|
|
616
|
-
<span class="cline-any cline-neutral"> </span>
|
|
617
|
-
<span class="cline-any cline-neutral"> </span>
|
|
618
|
-
<span class="cline-any cline-neutral"> </span>
|
|
619
|
-
<span class="cline-any cline-neutral"> </span>
|
|
620
|
-
<span class="cline-any cline-neutral"> </span>
|
|
621
|
-
<span class="cline-any cline-neutral"> </span>
|
|
622
|
-
<span class="cline-any cline-neutral"> </span>
|
|
623
|
-
<span class="cline-any cline-neutral"> </span>
|
|
624
|
-
<span class="cline-any cline-neutral"> </span>
|
|
625
|
-
<span class="cline-any cline-neutral"> </span>
|
|
626
|
-
<span class="cline-any cline-neutral"> </span>
|
|
627
|
-
<span class="cline-any cline-neutral"> </span>
|
|
628
|
-
<span class="cline-any cline-no"> </span>
|
|
629
|
-
<span class="cline-any cline-neutral"> </span>
|
|
630
|
-
<span class="cline-any cline-neutral"> </span>
|
|
631
|
-
<span class="cline-any cline-neutral"> </span>
|
|
632
|
-
<span class="cline-any cline-no"> </span>
|
|
633
|
-
<span class="cline-any cline-neutral"> </span>
|
|
634
|
-
<span class="cline-any cline-neutral"> </span>
|
|
635
|
-
<span class="cline-any cline-neutral"> </span>
|
|
636
|
-
<span class="cline-any cline-no"> </span>
|
|
637
|
-
<span class="cline-any cline-no"> </span>
|
|
638
|
-
<span class="cline-any cline-no"> </span>
|
|
639
|
-
<span class="cline-any cline-neutral"> </span>
|
|
640
|
-
<span class="cline-any cline-neutral"> </span>
|
|
641
|
-
<span class="cline-any cline-no"> </span>
|
|
642
|
-
<span class="cline-any cline-neutral"> </span>
|
|
643
|
-
<span class="cline-any cline-no"> </span>
|
|
644
|
-
<span class="cline-any cline-neutral"> </span>
|
|
645
|
-
<span class="cline-any cline-neutral"> </span>
|
|
646
|
-
<span class="cline-any cline-neutral"> </span>
|
|
647
|
-
<span class="cline-any cline-neutral"> </span>
|
|
648
|
-
<span class="cline-any cline-neutral"> </span>
|
|
649
|
-
<span class="cline-any cline-neutral"> </span>
|
|
650
|
-
<span class="cline-any cline-neutral"> </span>
|
|
651
|
-
<span class="cline-any cline-neutral"> </span>
|
|
652
|
-
<span class="cline-any cline-neutral"> </span>
|
|
653
|
-
<span class="cline-any cline-neutral"> </span>
|
|
654
|
-
<span class="cline-any cline-neutral"> </span>
|
|
655
|
-
<span class="cline-any cline-neutral"> </span>
|
|
656
|
-
<span class="cline-any cline-neutral"> </span>
|
|
657
|
-
<span class="cline-any cline-neutral"> </span>
|
|
658
|
-
<span class="cline-any cline-neutral"> </span>
|
|
659
|
-
<span class="cline-any cline-neutral"> </span>
|
|
660
|
-
<span class="cline-any cline-neutral"> </span>
|
|
661
|
-
<span class="cline-any cline-neutral"> </span>
|
|
662
|
-
<span class="cline-any cline-no"> </span>
|
|
663
|
-
<span class="cline-any cline-neutral"> </span>
|
|
664
|
-
<span class="cline-any cline-neutral"> </span>
|
|
665
|
-
<span class="cline-any cline-neutral"> </span>
|
|
666
|
-
<span class="cline-any cline-neutral"> </span>
|
|
667
|
-
<span class="cline-any cline-neutral"> </span>
|
|
668
|
-
<span class="cline-any cline-neutral"> </span>
|
|
669
|
-
<span class="cline-any cline-neutral"> </span>
|
|
670
|
-
<span class="cline-any cline-neutral"> </span>
|
|
671
|
-
<span class="cline-any cline-no"> </span>
|
|
672
|
-
<span class="cline-any cline-neutral"> </span>
|
|
673
|
-
<span class="cline-any cline-neutral"> </span>
|
|
674
|
-
<span class="cline-any cline-neutral"> </span>
|
|
675
|
-
<span class="cline-any cline-neutral"> </span>
|
|
676
|
-
<span class="cline-any cline-neutral"> </span>
|
|
677
|
-
<span class="cline-any cline-neutral"> </span>
|
|
678
|
-
<span class="cline-any cline-neutral"> </span>
|
|
679
|
-
<span class="cline-any cline-neutral"> </span>
|
|
680
|
-
<span class="cline-any cline-neutral"> </span>
|
|
681
|
-
<span class="cline-any cline-neutral"> </span>
|
|
682
|
-
<span class="cline-any cline-neutral"> </span>
|
|
683
|
-
<span class="cline-any cline-neutral"> </span>
|
|
684
|
-
<span class="cline-any cline-neutral"> </span>
|
|
685
|
-
<span class="cline-any cline-neutral"> </span>
|
|
686
|
-
<span class="cline-any cline-neutral"> </span>
|
|
687
|
-
<span class="cline-any cline-neutral"> </span>
|
|
688
|
-
<span class="cline-any cline-neutral"> </span>
|
|
689
|
-
<span class="cline-any cline-neutral"> </span>
|
|
690
|
-
<span class="cline-any cline-neutral"> </span>
|
|
691
|
-
<span class="cline-any cline-neutral"> </span>
|
|
692
|
-
<span class="cline-any cline-neutral"> </span>
|
|
693
|
-
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js">import React, { Component } from 'react'
|
|
694
|
-
import PropTypes from 'prop-types'
|
|
695
|
-
import classNames from 'classnames'
|
|
696
|
-
import Icon from '../icon'
|
|
697
|
-
import Title from './Title'
|
|
698
|
-
import Item from './Item'
|
|
699
|
-
import SubMenu from './SubMenu'
|
|
700
|
-
import './style/index'
|
|
701
|
-
class Menu extends Component {
|
|
702
|
-
<span class="fstat-no" title="function not covered" > co</span>nstructor (props) {
|
|
703
|
-
<span class="cstat-no" title="statement not covered" > super(props)</span>
|
|
704
|
-
const {
|
|
705
|
-
activeId,
|
|
706
|
-
collapsed
|
|
707
|
-
} = <span class="cstat-no" title="statement not covered" >this.props</span>
|
|
708
|
-
const activeIndex = <span class="cstat-no" title="statement not covered" >this.getActiveIndex(activeId)</span>
|
|
709
|
-
let expandIndex = <span class="cstat-no" title="statement not covered" >[]</span>
|
|
710
|
-
<span class="cstat-no" title="statement not covered" > this.clickOutsideHandel = this.clickOutside.bind(this)</span>
|
|
711
|
-
<span class="cstat-no" title="statement not covered" > if (this.isNoMiniVertaicalMenu(collapsed)) { // 垂直非mini菜单默认打开激活项</span>
|
|
712
|
-
<span class="cstat-no" title="statement not covered" > expandIndex = [activeIndex.split('-').slice(0, -1).join('-')]</span>
|
|
713
|
-
}
|
|
714
|
-
<span class="cstat-no" title="statement not covered" > this.state = {</span>
|
|
715
|
-
activeId: this.props.activeId,
|
|
716
|
-
expandIndex,
|
|
717
|
-
activeIndex,
|
|
718
|
-
collapsed
|
|
719
|
-
}
|
|
720
|
-
<span class="cstat-no" title="statement not covered" > this.clickInsideFlag = false </span>// click在menu标识
|
|
721
|
-
}
|
|
722
|
-
|
|
723
|
-
<span class="fstat-no" title="function not covered" > co</span>mponentWillReceiveProps (nextProps) {
|
|
724
|
-
<span class="cstat-no" title="statement not covered" > if (nextProps.activeId !== this.props.activeId) {</span>
|
|
725
|
-
const activeIndex = <span class="cstat-no" title="statement not covered" >this.getActiveIndex(nextProps.activeId, nextProps.data)</span>
|
|
726
|
-
|
|
727
|
-
<span class="cstat-no" title="statement not covered" > this.setState({</span>
|
|
728
|
-
activeId: nextProps.activeId,
|
|
729
|
-
activeIndex
|
|
730
|
-
})
|
|
731
|
-
}
|
|
732
|
-
|
|
733
|
-
<span class="cstat-no" title="statement not covered" > if (nextProps.collapsed !== this.props.collapsed) {</span>
|
|
734
|
-
<span class="cstat-no" title="statement not covered" > this.setState({</span>
|
|
735
|
-
collapsed: nextProps.collapsed
|
|
736
|
-
})
|
|
737
|
-
}
|
|
738
|
-
}
|
|
739
|
-
|
|
740
|
-
<span class="fstat-no" title="function not covered" > co</span>mponentDidMount () {
|
|
741
|
-
<span class="cstat-no" title="statement not covered" > window.addEventListener('click', this.clickOutsideHandel)</span>
|
|
742
|
-
}
|
|
743
|
-
|
|
744
|
-
<span class="fstat-no" title="function not covered" > co</span>mponentWillUnmount () {
|
|
745
|
-
<span class="cstat-no" title="statement not covered" > window.removeEventListener('click', this.clickOutsideHandel)</span>
|
|
746
|
-
}
|
|
747
|
-
|
|
748
|
-
<span class="fstat-no" title="function not covered" > cl</span>ickOutside () {
|
|
749
|
-
<span class="cstat-no" title="statement not covered" > if (!this.clickInsideFlag && !this.isNoMiniVertaicalMenu()) {</span>
|
|
750
|
-
<span class="cstat-no" title="statement not covered" > this.setState({</span>
|
|
751
|
-
expandIndex: []
|
|
752
|
-
})
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
<span class="cstat-no" title="statement not covered" > this.clickInsideFlag = false</span>
|
|
756
|
-
}
|
|
757
|
-
|
|
758
|
-
<span class="fstat-no" title="function not covered" > cl</span>ickInside () {
|
|
759
|
-
<span class="cstat-no" title="statement not covered" > this.clickInsideFlag = true</span>
|
|
760
|
-
}
|
|
761
|
-
|
|
762
|
-
<span class="fstat-no" title="function not covered" > ge</span>tExpandIndex (clickedIndex) {
|
|
763
|
-
<span class="cstat-no" title="statement not covered" > if (!clickedIndex) {</span>
|
|
764
|
-
<span class="cstat-no" title="statement not covered" > return []</span>
|
|
765
|
-
}
|
|
766
|
-
const {
|
|
767
|
-
accordion
|
|
768
|
-
} = <span class="cstat-no" title="statement not covered" >this.props</span>
|
|
769
|
-
const {
|
|
770
|
-
expandIndex
|
|
771
|
-
} = <span class="cstat-no" title="statement not covered" >this.state</span>
|
|
772
|
-
let _clickedIndex = <span class="cstat-no" title="statement not covered" >clickedIndex</span>
|
|
773
|
-
let subInExpandIndex = <span class="cstat-no" title="statement not covered" >false</span>
|
|
774
|
-
|
|
775
|
-
let _expandIndex = <span class="cstat-no" title="statement not covered" >expandIndex.filter(<span class="fstat-no" title="function not covered" >it</span>em => { // 点击父菜单时,需要把已展开的子菜单过滤掉,因为父菜单关闭时所有子菜单也要关闭</span>
|
|
776
|
-
const flag = <span class="cstat-no" title="statement not covered" >item.startsWith(_clickedIndex)</span>
|
|
777
|
-
<span class="cstat-no" title="statement not covered" > if (flag) {</span>
|
|
778
|
-
<span class="cstat-no" title="statement not covered" > subInExpandIndex = true</span>
|
|
779
|
-
}
|
|
780
|
-
<span class="cstat-no" title="statement not covered" > return !flag</span>
|
|
781
|
-
})
|
|
782
|
-
<span class="cstat-no" title="statement not covered" > subInExpandIndex && _expandIndex.push(_clickedIndex) </span>// subInExpandIndex为true说明其有子菜单被展开,在点击需要关闭
|
|
783
|
-
|
|
784
|
-
const index = <span class="cstat-no" title="statement not covered" >_expandIndex.indexOf(clickedIndex)</span>
|
|
785
|
-
|
|
786
|
-
<span class="cstat-no" title="statement not covered" > if (index > -1) { // 点击同一个submenu,如果已展开则关闭</span>
|
|
787
|
-
<span class="cstat-no" title="statement not covered" > _clickedIndex = clickedIndex.split('-').slice(0, -1).join('-')</span>
|
|
788
|
-
}
|
|
789
|
-
|
|
790
|
-
<span class="cstat-no" title="statement not covered" > if (!accordion && this.isNoMiniVertaicalMenu()) { // 非手风琴模式只有在垂直非mini状态下才生效</span>
|
|
791
|
-
<span class="cstat-no" title="statement not covered" > index > -1 ? _expandIndex.splice(index, 1, _clickedIndex) : _expandIndex.push(_clickedIndex)</span>
|
|
792
|
-
|
|
793
|
-
<span class="cstat-no" title="statement not covered" > return _expandIndex</span>
|
|
794
|
-
} else {
|
|
795
|
-
<span class="cstat-no" title="statement not covered" > return _clickedIndex ? [_clickedIndex] : []</span>
|
|
796
|
-
}
|
|
797
|
-
}
|
|
798
|
-
|
|
799
|
-
<span class="fstat-no" title="function not covered" > is</span>NoMiniVertaicalMenu (collapsed = <span class="branch-0 cbranch-no" title="branch not covered" >this.state.collapsed)</span> { // 垂直非mini菜单
|
|
800
|
-
<span class="cstat-no" title="statement not covered" > return this.props.placement === 'vertical' && !collapsed</span>
|
|
801
|
-
}
|
|
802
|
-
|
|
803
|
-
<span class="fstat-no" title="function not covered" > ge</span>tActiveMenus (menus, activeId, activeMenus = <span class="branch-0 cbranch-no" title="branch not covered" >[])</span> {
|
|
804
|
-
let result
|
|
805
|
-
<span class="cstat-no" title="statement not covered" > for (let index in menus) {</span>
|
|
806
|
-
let _activeMenus = <span class="cstat-no" title="statement not covered" >[...activeMenus]</span>
|
|
807
|
-
<span class="cstat-no" title="statement not covered" > if (menus[index].children) {</span>
|
|
808
|
-
<span class="cstat-no" title="statement not covered" > _activeMenus.push(index)</span>
|
|
809
|
-
<span class="cstat-no" title="statement not covered" > result = this.getActiveMenus(menus[index].children, activeId, _activeMenus)</span>
|
|
810
|
-
} else <span class="cstat-no" title="statement not covered" >if (menus[index].id === activeId) {</span>
|
|
811
|
-
<span class="cstat-no" title="statement not covered" > _activeMenus.push(index)</span>
|
|
812
|
-
<span class="cstat-no" title="statement not covered" > result = _activeMenus</span>
|
|
813
|
-
}
|
|
814
|
-
<span class="cstat-no" title="statement not covered" > if (result) {</span>
|
|
815
|
-
<span class="cstat-no" title="statement not covered" > break</span>
|
|
816
|
-
}
|
|
817
|
-
}
|
|
818
|
-
<span class="cstat-no" title="statement not covered" > if (result) {</span>
|
|
819
|
-
<span class="cstat-no" title="statement not covered" > return result</span>
|
|
820
|
-
}
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
<span class="fstat-no" title="function not covered" > ge</span>tActiveIndex (activeId, menu) {
|
|
824
|
-
// 获取激活item对应的索引,以'-'拼接成字符串
|
|
825
|
-
const { data } = <span class="cstat-no" title="statement not covered" >this.props</span>
|
|
826
|
-
|
|
827
|
-
<span class="cstat-no" title="statement not covered" > if (activeId === undefined || activeId === '') {</span>
|
|
828
|
-
<span class="cstat-no" title="statement not covered" > return ''</span>
|
|
829
|
-
}
|
|
830
|
-
const activeMenus = <span class="cstat-no" title="statement not covered" >this.getActiveMenus(menu || data, activeId, [])</span>
|
|
831
|
-
<span class="cstat-no" title="statement not covered" > return (activeMenus && activeMenus.join('-')) || ''</span>
|
|
832
|
-
}
|
|
833
|
-
|
|
834
|
-
<span class="fstat-no" title="function not covered" > to</span>ggleMini () {
|
|
835
|
-
const collapsed = <span class="cstat-no" title="statement not covered" >!this.state.collapsed</span>
|
|
836
|
-
const expandIndex = <span class="cstat-no" title="statement not covered" >collapsed ? [] : this.state.expandIndex</span>
|
|
837
|
-
|
|
838
|
-
<span class="cstat-no" title="statement not covered" > setTimeout(<span class="fstat-no" title="function not covered" >()</span> => {</span>
|
|
839
|
-
<span class="cstat-no" title="statement not covered" > this.setState({</span>
|
|
840
|
-
collapsed,
|
|
841
|
-
expandIndex
|
|
842
|
-
}, <span class="fstat-no" title="function not covered" >()</span> => {
|
|
843
|
-
<span class="cstat-no" title="statement not covered" > this.props.onCollapse && this.props.onCollapse(collapsed)</span>
|
|
844
|
-
})
|
|
845
|
-
}, 0)
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
<span class="fstat-no" title="function not covered" > on</span>Click (indexs, id, data) {
|
|
849
|
-
const expandIndex = <span class="cstat-no" title="statement not covered" >this.isNoMiniVertaicalMenu() ? this.state.expandIndex : this.getExpandIndex('') </span>// 非mini垂直菜单选中时不需要收起子菜单
|
|
850
|
-
const oldId = <span class="cstat-no" title="statement not covered" >this.state.activeId</span>
|
|
851
|
-
|
|
852
|
-
<span class="cstat-no" title="statement not covered" > this.setState({</span>
|
|
853
|
-
activeId: id,
|
|
854
|
-
activeIndex: indexs,
|
|
855
|
-
expandIndex
|
|
856
|
-
}, <span class="fstat-no" title="function not covered" >()</span> => {
|
|
857
|
-
<span class="cstat-no" title="statement not covered" > this.props.onClick(id, oldId, data)</span>
|
|
858
|
-
})
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
<span class="fstat-no" title="function not covered" > on</span>ClickSubMenu (index) {
|
|
862
|
-
const expandIndex = <span class="cstat-no" title="statement not covered" >this.getExpandIndex(index)</span>
|
|
863
|
-
|
|
864
|
-
<span class="cstat-no" title="statement not covered" > this.clickInside()</span>
|
|
865
|
-
<span class="cstat-no" title="statement not covered" > this.setState({</span>
|
|
866
|
-
expandIndex
|
|
867
|
-
}, <span class="fstat-no" title="function not covered" >()</span> => {
|
|
868
|
-
<span class="cstat-no" title="statement not covered" > index && this.props.onClickSubMenu && this.props.onClickSubMenu(index.split('-'))</span>
|
|
869
|
-
})
|
|
870
|
-
}
|
|
871
|
-
|
|
872
|
-
<span class="fstat-no" title="function not covered" > re</span>nderItem (data, index, props = <span class="branch-0 cbranch-no" title="branch not covered" >{})</span> { // render menu item
|
|
873
|
-
const {
|
|
874
|
-
activeIndex
|
|
875
|
-
} = <span class="cstat-no" title="statement not covered" >this.state</span>
|
|
876
|
-
const mergeProps = <span class="cstat-no" title="statement not covered" >Object.assign({</span>
|
|
877
|
-
onClick: this.onClick.bind(this),
|
|
878
|
-
id: data.id,
|
|
879
|
-
icon: data.icon,
|
|
880
|
-
activeIndex,
|
|
881
|
-
index: index,
|
|
882
|
-
disabled: data.disabled,
|
|
883
|
-
key: index,
|
|
884
|
-
data
|
|
885
|
-
}, props)
|
|
886
|
-
|
|
887
|
-
<span class="cstat-no" title="statement not covered" > return (</span>
|
|
888
|
-
<Item {...mergeProps}>
|
|
889
|
-
{data.content}
|
|
890
|
-
</Item>
|
|
891
|
-
)
|
|
892
|
-
}
|
|
893
|
-
|
|
894
|
-
<span class="fstat-no" title="function not covered" > re</span>nderFatSubMenu (data, parentIndex) { // render胖菜单
|
|
895
|
-
let groups = <span class="cstat-no" title="statement not covered" >[]</span>
|
|
896
|
-
|
|
897
|
-
<span class="cstat-no" title="statement not covered" > data.forEach(<span class="fstat-no" title="function not covered" >(d</span>ataItem, groupIndex) => {</span>
|
|
898
|
-
<span class="cstat-no" title="statement not covered" > groups.push(</span>
|
|
899
|
-
<li className='hi-menu-fat' key={groupIndex}>
|
|
900
|
-
<div className='hi-menu-fat__title hi-menu__title'>
|
|
901
|
-
<Title icon={dataItem.icon} content={dataItem.content} />
|
|
902
|
-
</div>
|
|
903
|
-
{dataItem.children && <ul className='hi-menu-fat__content'>
|
|
904
|
-
{
|
|
905
|
-
dataItem.children.map(<span class="fstat-no" title="function not covered" >(c</span>hild, index) => {
|
|
906
|
-
<span class="cstat-no" title="statement not covered" > return this.renderItem(child, parentIndex + '-' + groupIndex + '-' + index, {level: 2})</span>
|
|
907
|
-
})
|
|
908
|
-
}
|
|
909
|
-
</ul>}
|
|
910
|
-
</li>
|
|
911
|
-
)
|
|
912
|
-
})
|
|
913
|
-
<span class="cstat-no" title="statement not covered" > return groups</span>
|
|
914
|
-
}
|
|
915
|
-
|
|
916
|
-
<span class="fstat-no" title="function not covered" > re</span>nderMenu (data, parentIndex = <span class="branch-0 cbranch-no" title="branch not covered" >'')</span> {
|
|
917
|
-
const {showAllSubMenus, placement} = <span class="cstat-no" title="statement not covered" >this.props</span>
|
|
918
|
-
const {
|
|
919
|
-
activeIndex,
|
|
920
|
-
expandIndex,
|
|
921
|
-
collapsed
|
|
922
|
-
} = <span class="cstat-no" title="statement not covered" >this.state</span>
|
|
923
|
-
let items = <span class="cstat-no" title="statement not covered" >[]</span>
|
|
924
|
-
const renderMenu = <span class="cstat-no" title="statement not covered" >showAllSubMenus ? this.renderFatSubMenu.bind(this) : this.renderMenu.bind(this)</span>
|
|
925
|
-
<span class="cstat-no" title="statement not covered" > data.forEach(<span class="fstat-no" title="function not covered" >(i</span>tem, index) => {</span>
|
|
926
|
-
const indexStr = <span class="cstat-no" title="statement not covered" >parentIndex !== '' ? parentIndex + '-' + index : '' + index</span>
|
|
927
|
-
const level = <span class="cstat-no" title="statement not covered" >indexStr.split('-').length</span>
|
|
928
|
-
|
|
929
|
-
<span class="cstat-no" title="statement not covered" > if (item.children) {</span>
|
|
930
|
-
<span class="cstat-no" title="statement not covered" > items.push(</span>
|
|
931
|
-
<SubMenu
|
|
932
|
-
key={index}
|
|
933
|
-
onClick={this.onClickSubMenu.bind(this)}
|
|
934
|
-
clickInside={this.clickInside.bind(this)}
|
|
935
|
-
index={indexStr}
|
|
936
|
-
level={level}
|
|
937
|
-
fatMenu={showAllSubMenus}
|
|
938
|
-
activeIndex={activeIndex}
|
|
939
|
-
expandIndex={expandIndex}
|
|
940
|
-
disabled={item.disabled}
|
|
941
|
-
content={item.content}
|
|
942
|
-
icon={item.icon}
|
|
943
|
-
renderMenu={renderMenu}
|
|
944
|
-
datas={item.children}
|
|
945
|
-
mode={placement}
|
|
946
|
-
mini={collapsed}
|
|
947
|
-
/>
|
|
948
|
-
)
|
|
949
|
-
} else {
|
|
950
|
-
<span class="cstat-no" title="statement not covered" > items.push(this.renderItem(item, indexStr, {level}))</span>
|
|
951
|
-
}
|
|
952
|
-
})
|
|
953
|
-
|
|
954
|
-
<span class="cstat-no" title="statement not covered" > return items</span>
|
|
955
|
-
}
|
|
956
|
-
|
|
957
|
-
<span class="fstat-no" title="function not covered" > re</span>nder () {
|
|
958
|
-
const {data, placement, showCollapse} = <span class="cstat-no" title="statement not covered" >this.props</span>
|
|
959
|
-
const {collapsed} = <span class="cstat-no" title="statement not covered" >this.state</span>
|
|
960
|
-
const cls = <span class="cstat-no" title="statement not covered" >classNames('hi-menu', `hi-menu--${placement}`, {</span>
|
|
961
|
-
'hi-menu--mini': collapsed
|
|
962
|
-
})
|
|
963
|
-
const miniIcon = <span class="cstat-no" title="statement not covered" >collapsed ? 'double-right' : 'double-left'</span>
|
|
964
|
-
|
|
965
|
-
<span class="cstat-no" title="statement not covered" > return (</span>
|
|
966
|
-
<div className={cls}>
|
|
967
|
-
<ul className='hi-menu-items'>
|
|
968
|
-
{ this.renderMenu(data) }
|
|
969
|
-
</ul>
|
|
970
|
-
{
|
|
971
|
-
placement === 'vertical' && showCollapse &&
|
|
972
|
-
<div
|
|
973
|
-
className='hi-menu--mini__toggle'
|
|
974
|
-
onClick={this.toggleMini.bind(this)}
|
|
975
|
-
>
|
|
976
|
-
<Icon name={miniIcon} />
|
|
977
|
-
</div>
|
|
978
|
-
}
|
|
979
|
-
</div>
|
|
980
|
-
)
|
|
981
|
-
}
|
|
982
|
-
}
|
|
983
|
-
|
|
984
|
-
<span class="cstat-no" title="statement not covered" >Menu.defaultProps = {</span>
|
|
985
|
-
placement: 'vertical',
|
|
986
|
-
onClick: <span class="fstat-no" title="function not covered" >()</span> => {},
|
|
987
|
-
activeId: '',
|
|
988
|
-
collapsed: false,
|
|
989
|
-
showCollapse: false,
|
|
990
|
-
showAllSubMenus: false,
|
|
991
|
-
accordion: true
|
|
992
|
-
}
|
|
993
|
-
<span class="cstat-no" title="statement not covered" >Menu.propTypes = {</span>
|
|
994
|
-
data: PropTypes.arrayOf(PropTypes.shape({
|
|
995
|
-
content: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
|
|
996
|
-
id: PropTypes.oneOfType([
|
|
997
|
-
PropTypes.string,
|
|
998
|
-
PropTypes.number
|
|
999
|
-
]),
|
|
1000
|
-
disabled: PropTypes.bool,
|
|
1001
|
-
icon: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
|
|
1002
|
-
children: PropTypes.array
|
|
1003
|
-
})),
|
|
1004
|
-
activeId: PropTypes.string,
|
|
1005
|
-
placement: PropTypes.oneOf(['horizontal', 'vertical']),
|
|
1006
|
-
collapsed: PropTypes.bool, // 是否是mini模式,需要同时placement=vertical时才生效
|
|
1007
|
-
showCollapse: PropTypes.bool, // mini状态开关,需要同时placement=vertical时才生效
|
|
1008
|
-
showAllSubMenus: PropTypes.bool, // 胖菜单,需要同时placement=horizontal时才生效
|
|
1009
|
-
accordion: PropTypes.bool,
|
|
1010
|
-
onClick: PropTypes.func,
|
|
1011
|
-
onClickSubMenu: PropTypes.func,
|
|
1012
|
-
onCollapse: PropTypes.func
|
|
1013
|
-
}
|
|
1014
|
-
export default Menu
|
|
1015
|
-
</pre></td></tr>
|
|
1016
|
-
</table></pre>
|
|
1017
|
-
<div class='push'></div><!-- for sticky footer -->
|
|
1018
|
-
</div><!-- /wrapper -->
|
|
1019
|
-
<div class='footer quiet pad2 space-top1 center small'>
|
|
1020
|
-
Code coverage
|
|
1021
|
-
generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Dec 16 2019 00:02:54 GMT+0800 (CST)
|
|
1022
|
-
</div>
|
|
1023
|
-
</div>
|
|
1024
|
-
<script src="../../prettify.js"></script>
|
|
1025
|
-
<script>
|
|
1026
|
-
window.onload = function () {
|
|
1027
|
-
if (typeof prettyPrint === 'function') {
|
|
1028
|
-
prettyPrint();
|
|
1029
|
-
}
|
|
1030
|
-
};
|
|
1031
|
-
</script>
|
|
1032
|
-
<script src="../../sorter.js"></script>
|
|
1033
|
-
<script src="../../block-navigation.js"></script>
|
|
1034
|
-
</body>
|
|
1035
|
-
</html>
|