@cloudbase/weda-ui 3.1.9 → 3.2.1
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/dist/configs/components/chart/bar.json +3 -3
- package/dist/configs/components/chart/line.json +3 -3
- package/dist/configs/components/chart/pie.json +3 -3
- package/dist/configs/components/form/departTreeSelect.json +124 -0
- package/dist/configs/components/form/userTreeSelect.json +128 -0
- package/dist/configs/components/formdetail.json +105 -0
- package/dist/configs/components/listView.json +9 -1
- package/dist/configs/components/lottery.json +1 -1
- package/dist/configs/components/tabs.json +10 -9
- package/dist/configs/components/wxOpenApi/share.json +5 -2
- package/dist/configs/index.d.ts +6 -0
- package/dist/configs/index.js +6 -0
- package/dist/cypress/support/commands.d.ts +1 -0
- package/dist/cypress/support/commands.js +40 -0
- package/dist/cypress/support/e2e.d.ts +24 -0
- package/dist/cypress/support/e2e.js +22 -0
- package/dist/src/configs/actions/showModal.json +48 -0
- package/dist/src/configs/actions/showToast.json +41 -0
- package/dist/src/configs/components/auth.json +16 -0
- package/dist/src/configs/components/button.json +239 -0
- package/dist/src/configs/components/calendar.json +81 -0
- package/dist/src/configs/components/carousel.json +292 -0
- package/dist/src/configs/components/chart/bar.json +954 -0
- package/dist/src/configs/components/chart/line.json +870 -0
- package/dist/src/configs/components/chart/pie.json +677 -0
- package/dist/src/configs/components/chart/statisticsCard.json +376 -0
- package/dist/src/configs/components/container.json +50 -0
- package/dist/src/configs/components/dataView.json +247 -0
- package/dist/src/configs/components/drawer.json +115 -0
- package/dist/src/configs/components/form/checkbox.json +179 -0
- package/dist/src/configs/components/form/departTreeSelect.json +124 -0
- package/dist/src/configs/components/form/form.json +73 -0
- package/dist/src/configs/components/form/input.json +154 -0
- package/dist/src/configs/components/form/location.json +216 -0
- package/dist/src/configs/components/form/radio.json +203 -0
- package/dist/src/configs/components/form/richText.json +133 -0
- package/dist/src/configs/components/form/select.json +449 -0
- package/dist/src/configs/components/form/switch.json +58 -0
- package/dist/src/configs/components/form/textarea.json +116 -0
- package/dist/src/configs/components/form/tips.json +34 -0
- package/dist/src/configs/components/form/uploader.json +171 -0
- package/dist/src/configs/components/form/uploaderFile.json +158 -0
- package/dist/src/configs/components/form/userTreeSelect.json +128 -0
- package/dist/src/configs/components/formdetail.json +105 -0
- package/dist/src/configs/components/graphicCard.json +413 -0
- package/dist/src/configs/components/image.json +187 -0
- package/dist/src/configs/components/link.json +79 -0
- package/dist/src/configs/components/listView.json +378 -0
- package/dist/src/configs/components/lottery.json +163 -0
- package/dist/src/configs/components/modal.json +72 -0
- package/dist/src/configs/components/navLayout.json +368 -0
- package/dist/src/configs/components/navigationBar.json +62 -0
- package/dist/src/configs/components/richtextview.json +26 -0
- package/dist/src/configs/components/scrollVeiw.json +253 -0
- package/dist/src/configs/components/slot.json +17 -0
- package/dist/src/configs/components/swiper.json +90 -0
- package/dist/src/configs/components/tabs.json +122 -0
- package/dist/src/configs/components/text.json +95 -0
- package/dist/src/configs/components/wedaVideo.json +89 -0
- package/dist/src/configs/components/wxOpenApi/phone.json +127 -0
- package/dist/src/configs/components/wxOpenApi/phoneCode.json +109 -0
- package/dist/src/configs/components/wxOpenApi/share.json +160 -0
- package/dist/src/configs/components/wxOpenApi/userInfo.json +156 -0
- package/dist/src/configs/index.d.ts +103 -0
- package/dist/src/configs/index.js +111 -0
- package/dist/src/docs/common/format.d.ts +13 -0
- package/dist/src/docs/common/format.js +122 -0
- package/dist/src/docs/common/tableView.d.ts +30 -0
- package/dist/src/docs/common/tableView.js +156 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.js +3 -0
- package/dist/src/setupTests.d.ts +2 -0
- package/dist/src/setupTests.js +19 -0
- package/dist/src/web/actions/index.d.ts +2 -0
- package/dist/src/web/actions/index.js +2 -0
- package/dist/src/web/actions/showModal/index.d.ts +4 -0
- package/dist/src/web/actions/showModal/index.js +67 -0
- package/dist/src/web/actions/showToast/index.d.ts +1 -0
- package/dist/src/web/actions/showToast/index.js +3 -0
- package/dist/src/web/components/button/index.d.ts +32 -0
- package/dist/src/web/components/button/index.js +48 -0
- package/dist/src/web/components/calendar/index.d.ts +19 -0
- package/dist/src/web/components/calendar/index.js +189 -0
- package/dist/src/web/components/calendar/util.d.ts +13 -0
- package/dist/src/web/components/calendar/util.js +74 -0
- package/dist/src/web/components/carousel/index.d.ts +41 -0
- package/dist/src/web/components/carousel/index.js +244 -0
- package/dist/src/web/components/chart/bar/index.d.ts +3 -0
- package/dist/src/web/components/chart/bar/index.js +41 -0
- package/dist/src/web/components/chart/bar/index.old.d.ts +40 -0
- package/dist/src/web/components/chart/bar/index.old.js +56 -0
- package/dist/src/web/components/chart/common/Chart.d.ts +9 -0
- package/dist/src/web/components/chart/common/Chart.js +23 -0
- package/dist/src/web/components/chart/common/chart-custom-connector.d.ts +6 -0
- package/dist/src/web/components/chart/common/chart-custom-connector.js +35 -0
- package/dist/src/web/components/chart/common/chart-error.d.ts +2 -0
- package/dist/src/web/components/chart/common/chart-error.js +2 -0
- package/dist/src/web/components/chart/common/config/bar.d.ts +48 -0
- package/dist/src/web/components/chart/common/config/bar.js +49 -0
- package/dist/src/web/components/chart/common/config/global.d.ts +13 -0
- package/dist/src/web/components/chart/common/config/global.js +16 -0
- package/dist/src/web/components/chart/common/config/line.d.ts +46 -0
- package/dist/src/web/components/chart/common/config/line.js +49 -0
- package/dist/src/web/components/chart/common/config/pie.d.ts +29 -0
- package/dist/src/web/components/chart/common/config/pie.js +36 -0
- package/dist/src/web/components/chart/common/core/eChartBar.d.ts +66 -0
- package/dist/src/web/components/chart/common/core/eChartBar.js +201 -0
- package/dist/src/web/components/chart/common/core/eChartBase.d.ts +127 -0
- package/dist/src/web/components/chart/common/core/eChartBase.js +394 -0
- package/dist/src/web/components/chart/common/core/eChartLine.d.ts +60 -0
- package/dist/src/web/components/chart/common/core/eChartLine.js +173 -0
- package/dist/src/web/components/chart/common/core/eChartPie.d.ts +48 -0
- package/dist/src/web/components/chart/common/core/eChartPie.js +135 -0
- package/dist/src/web/components/chart/common/core/type.d.ts +35 -0
- package/dist/src/web/components/chart/common/core/type.js +9 -0
- package/dist/src/web/components/chart/common/data-transform.d.ts +6 -0
- package/dist/src/web/components/chart/common/data-transform.js +246 -0
- package/dist/src/web/components/chart/common/echarts.d.ts +5 -0
- package/dist/src/web/components/chart/common/echarts.js +24 -0
- package/dist/src/web/components/chart/common/error-boundary.d.ts +5 -0
- package/dist/src/web/components/chart/common/error-boundary.js +26 -0
- package/dist/src/web/components/chart/common/useChart.d.ts +8 -0
- package/dist/src/web/components/chart/common/useChart.js +61 -0
- package/dist/src/web/components/chart/line/index.d.ts +3 -0
- package/dist/src/web/components/chart/line/index.js +42 -0
- package/dist/src/web/components/chart/line/index.old.d.ts +38 -0
- package/dist/src/web/components/chart/line/index.old.js +53 -0
- package/dist/src/web/components/chart/pie/index.d.ts +3 -0
- package/dist/src/web/components/chart/pie/index.js +42 -0
- package/dist/src/web/components/chart/pie/index.old.d.ts +27 -0
- package/dist/src/web/components/chart/pie/index.old.js +40 -0
- package/dist/src/web/components/chart/statisticsCard/index.d.ts +85 -0
- package/dist/src/web/components/chart/statisticsCard/index.js +203 -0
- package/dist/src/web/components/chart/statisticsCard/interface.d.ts +13 -0
- package/dist/src/web/components/chart/statisticsCard/interface.js +1 -0
- package/dist/src/web/components/common/portal.d.ts +7 -0
- package/dist/src/web/components/common/portal.js +14 -0
- package/dist/src/web/components/container/index.d.ts +6 -0
- package/dist/src/web/components/container/index.js +6 -0
- package/dist/src/web/components/dataView/index.d.ts +6 -0
- package/dist/src/web/components/dataView/index.js +8 -0
- package/dist/src/web/components/dataView/interface.d.ts +5 -0
- package/dist/src/web/components/dataView/interface.js +1 -0
- package/dist/src/web/components/drawer/index.d.ts +13 -0
- package/dist/src/web/components/drawer/index.js +12 -0
- package/dist/src/web/components/form/checkbox/index.d.ts +13 -0
- package/dist/src/web/components/form/checkbox/index.js +167 -0
- package/dist/src/web/components/form/enumSelect/MultipleSelect.d.ts +78 -0
- package/dist/src/web/components/form/enumSelect/MultipleSelect.js +52 -0
- package/dist/src/web/components/form/enumSelect/NormalSelect.d.ts +83 -0
- package/dist/src/web/components/form/enumSelect/NormalSelect.js +52 -0
- package/dist/src/web/components/form/enumSelect/SelectContainer.d.ts +16 -0
- package/dist/src/web/components/form/enumSelect/SelectContainer.js +30 -0
- package/dist/src/web/components/form/enumSelect/index.d.ts +82 -0
- package/dist/src/web/components/form/enumSelect/index.js +6 -0
- package/dist/src/web/components/form/enumSelect/props/defaultProps.d.ts +34 -0
- package/dist/src/web/components/form/enumSelect/props/defaultProps.js +40 -0
- package/dist/src/web/components/form/enumSelect/props/propsTypes.d.ts +39 -0
- package/dist/src/web/components/form/enumSelect/props/propsTypes.js +47 -0
- package/dist/src/web/components/form/form/index.d.ts +32 -0
- package/dist/src/web/components/form/form/index.js +141 -0
- package/dist/src/web/components/form/formcell/index.d.ts +8 -0
- package/dist/src/web/components/form/formcell/index.js +40 -0
- package/dist/src/web/components/form/input/index.d.ts +14 -0
- package/dist/src/web/components/form/input/index.js +86 -0
- package/dist/src/web/components/form/location/common/mapChoose.d.ts +15 -0
- package/dist/src/web/components/form/location/common/mapChoose.js +495 -0
- package/dist/src/web/components/form/location/common/mapView.d.ts +19 -0
- package/dist/src/web/components/form/location/common/mapView.js +172 -0
- package/dist/src/web/components/form/location/common/propsConfig.d.ts +59 -0
- package/dist/src/web/components/form/location/common/propsConfig.js +50 -0
- package/dist/src/web/components/form/location/common/selectModal.d.ts +21 -0
- package/dist/src/web/components/form/location/common/selectModal.js +44 -0
- package/dist/src/web/components/form/location/common/useLocationInfo.d.ts +36 -0
- package/dist/src/web/components/form/location/common/useLocationInfo.js +104 -0
- package/dist/src/web/components/form/location/components/LocationH5/location.h5.d.ts +8 -0
- package/dist/src/web/components/form/location/components/LocationH5/location.h5.js +325 -0
- package/dist/src/web/components/form/location/components/LocationPC/Header.d.ts +12 -0
- package/dist/src/web/components/form/location/components/LocationPC/Header.js +43 -0
- package/dist/src/web/components/form/location/components/LocationPC/location.PC.d.ts +8 -0
- package/dist/src/web/components/form/location/components/LocationPC/location.PC.js +224 -0
- package/dist/src/web/components/form/location/constants.d.ts +2 -0
- package/dist/src/web/components/form/location/constants.js +3 -0
- package/dist/src/web/components/form/location/index.d.ts +1 -0
- package/dist/src/web/components/form/location/index.js +17 -0
- package/dist/src/web/components/form/radio/index.d.ts +11 -0
- package/dist/src/web/components/form/radio/index.js +115 -0
- package/dist/src/web/components/form/renderDecorator.d.ts +6 -0
- package/dist/src/web/components/form/renderDecorator.js +20 -0
- package/dist/src/web/components/form/select/allTimePicker/calendar.d.ts +13 -0
- package/dist/src/web/components/form/select/allTimePicker/calendar.js +104 -0
- package/dist/src/web/components/form/select/allTimePicker/dataUtils.d.ts +24 -0
- package/dist/src/web/components/form/select/allTimePicker/dataUtils.js +265 -0
- package/dist/src/web/components/form/select/allTimePicker/index.d.ts +14 -0
- package/dist/src/web/components/form/select/allTimePicker/index.js +943 -0
- package/dist/src/web/components/form/select/dropdown-select/ui.d.ts +15 -0
- package/dist/src/web/components/form/select/dropdown-select/ui.js +55 -0
- package/dist/src/web/components/form/select/h5.d.ts +16 -0
- package/dist/src/web/components/form/select/h5.js +452 -0
- package/dist/src/web/components/form/select/index.d.ts +66 -0
- package/dist/src/web/components/form/select/index.js +241 -0
- package/dist/src/web/components/form/select/region/index.d.ts +6 -0
- package/dist/src/web/components/form/select/region/index.js +147 -0
- package/dist/src/web/components/form/select/time.d.ts +9 -0
- package/dist/src/web/components/form/select/time.js +146 -0
- package/dist/src/web/components/form/select/use-options.d.ts +26 -0
- package/dist/src/web/components/form/select/use-options.js +103 -0
- package/dist/src/web/components/form/select/year.d.ts +7 -0
- package/dist/src/web/components/form/select/year.js +72 -0
- package/dist/src/web/components/form/switch/index.d.ts +6 -0
- package/dist/src/web/components/form/switch/index.js +58 -0
- package/dist/src/web/components/form/textarea/index.d.ts +12 -0
- package/dist/src/web/components/form/textarea/index.js +66 -0
- package/dist/src/web/components/form/tips/index.d.ts +8 -0
- package/dist/src/web/components/form/tips/index.js +17 -0
- package/dist/src/web/components/form/uploader/index.d.ts +3 -0
- package/dist/src/web/components/form/uploader/index.js +42 -0
- package/dist/src/web/components/form/uploader/uploader.h5.d.ts +20 -0
- package/dist/src/web/components/form/uploader/uploader.h5.js +199 -0
- package/dist/src/web/components/form/uploader/uploader.pc.d.ts +29 -0
- package/dist/src/web/components/form/uploader/uploader.pc.js +208 -0
- package/dist/src/web/components/form/uploaderFile/index.d.ts +4 -0
- package/dist/src/web/components/form/uploaderFile/index.js +19 -0
- package/dist/src/web/components/form/uploaderFile/uploadFile.h5.d.ts +23 -0
- package/dist/src/web/components/form/uploaderFile/uploadFile.h5.js +328 -0
- package/dist/src/web/components/form/uploaderFile/uploadFile.pc.d.ts +24 -0
- package/dist/src/web/components/form/uploaderFile/uploadFile.pc.js +299 -0
- package/dist/src/web/components/form/userOrgSelect/comTool.d.ts +8 -0
- package/dist/src/web/components/form/userOrgSelect/comTool.js +107 -0
- package/dist/src/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.h5.d.ts +19 -0
- package/dist/src/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.h5.js +247 -0
- package/dist/src/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.pc.d.ts +4 -0
- package/dist/src/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.pc.js +158 -0
- package/dist/src/web/components/form/userOrgSelect/departTreeSelect/index.d.ts +2 -0
- package/dist/src/web/components/form/userOrgSelect/departTreeSelect/index.js +17 -0
- package/dist/src/web/components/form/userOrgSelect/index.d.ts +2 -0
- package/dist/src/web/components/form/userOrgSelect/index.js +17 -0
- package/dist/src/web/components/form/userOrgSelect/userTreeSelect.h5.d.ts +26 -0
- package/dist/src/web/components/form/userOrgSelect/userTreeSelect.h5.js +258 -0
- package/dist/src/web/components/form/userOrgSelect/userTreeSelect.pc.d.ts +9 -0
- package/dist/src/web/components/form/userOrgSelect/userTreeSelect.pc.js +271 -0
- package/dist/src/web/components/form/userOrgSelect/utils.d.ts +35 -0
- package/dist/src/web/components/form/userOrgSelect/utils.js +72 -0
- package/dist/src/web/components/formdetail/index.d.ts +28 -0
- package/dist/src/web/components/formdetail/index.js +170 -0
- package/dist/src/web/components/graphicCard/index.d.ts +46 -0
- package/dist/src/web/components/graphicCard/index.js +179 -0
- package/dist/src/web/components/image/image.d.ts +9 -0
- package/dist/src/web/components/image/image.js +119 -0
- package/dist/src/web/components/image/index.d.ts +13 -0
- package/dist/src/web/components/image/index.js +77 -0
- package/dist/src/web/components/index.d.ts +50 -0
- package/dist/src/web/components/index.js +99 -0
- package/dist/src/web/components/link/index.d.ts +24 -0
- package/dist/src/web/components/link/index.js +71 -0
- package/dist/src/web/components/listView/index.d.ts +7 -0
- package/dist/src/web/components/listView/index.js +296 -0
- package/dist/src/web/components/listView/interface.d.ts +127 -0
- package/dist/src/web/components/listView/interface.js +1 -0
- package/dist/src/web/components/lottery/index.d.ts +22 -0
- package/dist/src/web/components/lottery/index.js +391 -0
- package/dist/src/web/components/lottery/lotteryUtil.d.ts +23 -0
- package/dist/src/web/components/lottery/lotteryUtil.js +181 -0
- package/dist/src/web/components/modal/index.d.ts +17 -0
- package/dist/src/web/components/modal/index.js +11 -0
- package/dist/src/web/components/modal/modal.h5.d.ts +4 -0
- package/dist/src/web/components/modal/modal.h5.js +46 -0
- package/dist/src/web/components/modal/modal.pc.d.ts +3 -0
- package/dist/src/web/components/modal/modal.pc.js +31 -0
- package/dist/src/web/components/navLayout/index.d.ts +61 -0
- package/dist/src/web/components/navLayout/index.js +127 -0
- package/dist/src/web/components/navigationBar/common.d.ts +15 -0
- package/dist/src/web/components/navigationBar/common.js +127 -0
- package/dist/src/web/components/navigationBar/h5Menu.d.ts +14 -0
- package/dist/src/web/components/navigationBar/h5Menu.js +72 -0
- package/dist/src/web/components/navigationBar/horizontalMenu.d.ts +12 -0
- package/dist/src/web/components/navigationBar/horizontalMenu.js +99 -0
- package/dist/src/web/components/navigationBar/index.d.ts +13 -0
- package/dist/src/web/components/navigationBar/index.js +157 -0
- package/dist/src/web/components/navigationBar/verticalMenu.d.ts +13 -0
- package/dist/src/web/components/navigationBar/verticalMenu.js +38 -0
- package/dist/src/web/components/phone/index.d.ts +18 -0
- package/dist/src/web/components/phone/index.js +4 -0
- package/dist/src/web/components/phoneCode/index.d.ts +18 -0
- package/dist/src/web/components/phoneCode/index.js +4 -0
- package/dist/src/web/components/picker/datePicker.d.ts +10 -0
- package/dist/src/web/components/picker/datePicker.js +31 -0
- package/dist/src/web/components/picker/picker.d.ts +6 -0
- package/dist/src/web/components/picker/picker.js +45 -0
- package/dist/src/web/components/picker/timePicker.d.ts +7 -0
- package/dist/src/web/components/picker/timePicker.js +42 -0
- package/dist/src/web/components/richText/const.d.ts +1 -0
- package/dist/src/web/components/richText/const.js +2 -0
- package/dist/src/web/components/richText/index.d.ts +50 -0
- package/dist/src/web/components/richText/index.js +352 -0
- package/dist/src/web/components/richTextView/index.d.ts +7 -0
- package/dist/src/web/components/richTextView/index.js +44 -0
- package/dist/src/web/components/scrollView/index.d.ts +27 -0
- package/dist/src/web/components/scrollView/index.js +95 -0
- package/dist/src/web/components/share/index.d.ts +34 -0
- package/dist/src/web/components/share/index.js +4 -0
- package/dist/src/web/components/slot/index.d.ts +6 -0
- package/dist/src/web/components/slot/index.js +9 -0
- package/dist/src/web/components/swiper/index.d.ts +24 -0
- package/dist/src/web/components/swiper/index.js +153 -0
- package/dist/src/web/components/tabs/index.d.ts +13 -0
- package/dist/src/web/components/tabs/index.js +15 -0
- package/dist/src/web/components/tabs/tabs.h5.d.ts +4 -0
- package/dist/src/web/components/tabs/tabs.h5.js +42 -0
- package/dist/src/web/components/tabs/tabs.pc.d.ts +3 -0
- package/dist/src/web/components/tabs/tabs.pc.js +40 -0
- package/dist/src/web/components/text/index.d.ts +14 -0
- package/dist/src/web/components/text/index.js +17 -0
- package/dist/src/web/components/uploaderFileView/index.d.ts +10 -0
- package/dist/src/web/components/uploaderFileView/index.js +46 -0
- package/dist/src/web/components/uploaderView/index.d.ts +17 -0
- package/dist/src/web/components/uploaderView/index.js +48 -0
- package/dist/src/web/components/userInfo/index.d.ts +26 -0
- package/dist/src/web/components/userInfo/index.js +4 -0
- package/dist/src/web/components/wedaVideo/index.d.ts +17 -0
- package/dist/src/web/components/wedaVideo/index.js +144 -0
- package/dist/src/web/index.d.ts +8 -0
- package/dist/src/web/index.js +4 -0
- package/dist/src/web/utils/classnames.d.ts +2 -0
- package/dist/src/web/utils/classnames.js +37 -0
- package/dist/src/web/utils/constant.d.ts +23 -0
- package/dist/src/web/utils/constant.js +24 -0
- package/dist/src/web/utils/debounce.d.ts +2 -0
- package/dist/src/web/utils/debounce.js +92 -0
- package/dist/src/web/utils/getLocalCounter.d.ts +1 -0
- package/dist/src/web/utils/getLocalCounter.js +4 -0
- package/dist/src/web/utils/getUserService.d.ts +11 -0
- package/dist/src/web/utils/getUserService.js +156 -0
- package/dist/src/web/utils/isObjectEqual.d.ts +2 -0
- package/dist/src/web/utils/isObjectEqual.js +12 -0
- package/dist/src/web/utils/loading-fallback.d.ts +2 -0
- package/dist/src/web/utils/loading-fallback.js +2 -0
- package/dist/src/web/utils/lodash.d.ts +1 -0
- package/dist/src/web/utils/lodash.js +2 -0
- package/dist/src/web/utils/platform.d.ts +18 -0
- package/dist/src/web/utils/platform.js +193 -0
- package/dist/src/web/utils/tcb.d.ts +33 -0
- package/dist/src/web/utils/tcb.js +118 -0
- package/dist/src/web/utils/tmap.d.ts +3 -0
- package/dist/src/web/utils/tmap.js +21 -0
- package/dist/src/web/utils/use-cloud-id-temp-url.d.ts +1 -0
- package/dist/src/web/utils/use-cloud-id-temp-url.js +15 -0
- package/dist/src/web/utils/useSetState.d.ts +1 -0
- package/dist/src/web/utils/useSetState.js +8 -0
- package/dist/src/web/utils/useSyncValue.d.ts +4 -0
- package/dist/src/web/utils/useSyncValue.js +15 -0
- package/dist/src/web/utils/weui.d.ts +1 -0
- package/dist/src/web/utils/weui.js +2 -0
- package/dist/web/components/calendar/index.js +10 -2
- package/dist/web/components/carousel/index.js +4 -0
- package/dist/web/components/chart/common/core/eChartBase.js +8 -2
- package/dist/web/components/form/form/index.js +10 -7
- package/dist/web/components/form/location/common/mapChoose.js +2 -0
- package/dist/web/components/form/location/common/mapView.js +2 -0
- package/dist/web/components/form/location/components/LocationH5/location.h5.js +3 -1
- package/dist/web/components/form/location/components/LocationH5/location.module.css +3 -0
- package/dist/web/components/form/select/allTimePicker/calendar.css +114 -0
- package/dist/web/components/form/select/allTimePicker/index.css +136 -0
- package/dist/web/components/form/select/h5.js +4 -0
- package/dist/web/components/form/select/index.js +2 -8
- package/dist/web/components/form/switch/index.js +3 -2
- package/dist/web/components/form/switch/switch.module.css +7 -0
- package/dist/web/components/form/uploader/uploader.h5.d.ts +1 -0
- package/dist/web/components/form/uploader/uploader.h5.js +14 -10
- package/dist/web/components/form/uploader/uploader.pc.js +1 -1
- package/dist/web/components/form/uploaderFile/uploadFile.h5.js +14 -12
- package/dist/web/components/form/uploaderFile/uploadFile.pc.js +8 -8
- package/dist/web/components/form/userOrgSelect/comTool.d.ts +7 -0
- package/dist/web/components/form/userOrgSelect/comTool.js +89 -0
- package/dist/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.h5.d.ts +20 -0
- package/dist/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.h5.js +259 -0
- package/dist/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.pc.d.ts +4 -0
- package/dist/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.pc.js +153 -0
- package/dist/web/components/form/userOrgSelect/departTreeSelect/index.d.ts +2 -0
- package/dist/web/components/form/userOrgSelect/departTreeSelect/index.js +17 -0
- package/dist/web/components/form/userOrgSelect/index.d.ts +2 -0
- package/dist/web/components/form/userOrgSelect/index.js +17 -0
- package/dist/web/components/form/userOrgSelect/userOrgSelect.css +805 -0
- package/dist/web/components/form/userOrgSelect/userOrgSelect.less +643 -0
- package/dist/web/components/form/userOrgSelect/userTreeSelect.h5.d.ts +24 -0
- package/dist/web/components/form/userOrgSelect/userTreeSelect.h5.js +276 -0
- package/dist/web/components/form/userOrgSelect/userTreeSelect.pc.d.ts +9 -0
- package/dist/web/components/form/userOrgSelect/userTreeSelect.pc.js +229 -0
- package/dist/web/components/form/userOrgSelect/utils.d.ts +35 -0
- package/dist/web/components/form/userOrgSelect/utils.js +72 -0
- package/dist/web/components/formdetail/index.css +115 -0
- package/dist/web/components/formdetail/index.d.ts +28 -0
- package/dist/web/components/formdetail/index.js +170 -0
- package/dist/web/components/index.d.ts +3 -0
- package/dist/web/components/index.js +3 -0
- package/dist/web/components/listView/index.css +35 -5
- package/dist/web/components/listView/index.js +92 -68
- package/dist/web/components/listView/interface.d.ts +5 -0
- package/dist/web/components/lottery/index.js +2 -1
- package/dist/web/components/lottery/lotteryUtil.js +1 -0
- package/dist/web/components/navigationBar/index.css +21 -29
- package/dist/web/components/richText/index.css +1 -0
- package/dist/web/components/swiper/index.js +5 -1
- package/dist/web/components/wedaVideo/index.js +1 -0
- package/dist/web/utils/getUserService.d.ts +17 -0
- package/dist/web/utils/getUserService.js +148 -0
- package/dist/web/utils/platform.js +2 -0
- package/dist/web/weda-ui.css +9 -0
- package/package.json +27 -13
- package/dist/asset-manifest.json +0 -17
- package/dist/index.html +0 -88
- package/dist/static/js/bundle.js +0 -963
- package/dist/static/js/bundle.js.map +0 -1
- package/dist/static/js/main.chunk.js +0 -8841
- package/dist/static/js/main.chunk.js.map +0 -1
- package/dist/static/js/vendors~main.chunk.js +0 -247885
- package/dist/static/js/vendors~main.chunk.js.map +0 -1
- package/dist/static/media/ef6fa527e24e354765d806b826b41391.fa67580a.svg +0 -627
- package/dist/web/components/auth/index.d.ts +0 -10
- package/dist/web/components/auth/index.js +0 -37
- package/dist/web/utils/events.d.ts +0 -1
- package/dist/web/utils/events.js +0 -2
package/dist/static/js/bundle.js
DELETED
|
@@ -1,963 +0,0 @@
|
|
|
1
|
-
/******/ (function(modules) { // webpackBootstrap
|
|
2
|
-
/******/ // install a JSONP callback for chunk loading
|
|
3
|
-
/******/ function webpackJsonpCallback(data) {
|
|
4
|
-
/******/ var chunkIds = data[0];
|
|
5
|
-
/******/ var moreModules = data[1];
|
|
6
|
-
/******/ var executeModules = data[2];
|
|
7
|
-
/******/
|
|
8
|
-
/******/ // add "moreModules" to the modules object,
|
|
9
|
-
/******/ // then flag all "chunkIds" as loaded and fire callback
|
|
10
|
-
/******/ var moduleId, chunkId, i = 0, resolves = [];
|
|
11
|
-
/******/ for(;i < chunkIds.length; i++) {
|
|
12
|
-
/******/ chunkId = chunkIds[i];
|
|
13
|
-
/******/ if(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && installedChunks[chunkId]) {
|
|
14
|
-
/******/ resolves.push(installedChunks[chunkId][0]);
|
|
15
|
-
/******/ }
|
|
16
|
-
/******/ installedChunks[chunkId] = 0;
|
|
17
|
-
/******/ }
|
|
18
|
-
/******/ for(moduleId in moreModules) {
|
|
19
|
-
/******/ if(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
|
|
20
|
-
/******/ modules[moduleId] = moreModules[moduleId];
|
|
21
|
-
/******/ }
|
|
22
|
-
/******/ }
|
|
23
|
-
/******/ if(parentJsonpFunction) parentJsonpFunction(data);
|
|
24
|
-
/******/
|
|
25
|
-
/******/ while(resolves.length) {
|
|
26
|
-
/******/ resolves.shift()();
|
|
27
|
-
/******/ }
|
|
28
|
-
/******/
|
|
29
|
-
/******/ // add entry modules from loaded chunk to deferred list
|
|
30
|
-
/******/ deferredModules.push.apply(deferredModules, executeModules || []);
|
|
31
|
-
/******/
|
|
32
|
-
/******/ // run deferred modules when all chunks ready
|
|
33
|
-
/******/ return checkDeferredModules();
|
|
34
|
-
/******/ };
|
|
35
|
-
/******/ function checkDeferredModules() {
|
|
36
|
-
/******/ var result;
|
|
37
|
-
/******/ for(var i = 0; i < deferredModules.length; i++) {
|
|
38
|
-
/******/ var deferredModule = deferredModules[i];
|
|
39
|
-
/******/ var fulfilled = true;
|
|
40
|
-
/******/ for(var j = 1; j < deferredModule.length; j++) {
|
|
41
|
-
/******/ var depId = deferredModule[j];
|
|
42
|
-
/******/ if(installedChunks[depId] !== 0) fulfilled = false;
|
|
43
|
-
/******/ }
|
|
44
|
-
/******/ if(fulfilled) {
|
|
45
|
-
/******/ deferredModules.splice(i--, 1);
|
|
46
|
-
/******/ result = __webpack_require__(__webpack_require__.s = deferredModule[0]);
|
|
47
|
-
/******/ }
|
|
48
|
-
/******/ }
|
|
49
|
-
/******/
|
|
50
|
-
/******/ return result;
|
|
51
|
-
/******/ }
|
|
52
|
-
/******/ function hotDisposeChunk(chunkId) {
|
|
53
|
-
/******/ delete installedChunks[chunkId];
|
|
54
|
-
/******/ }
|
|
55
|
-
/******/ var parentHotUpdateCallback = this["webpackHotUpdate"];
|
|
56
|
-
/******/ this["webpackHotUpdate"] = // eslint-disable-next-line no-unused-vars
|
|
57
|
-
/******/ function webpackHotUpdateCallback(chunkId, moreModules) {
|
|
58
|
-
/******/ hotAddUpdateChunk(chunkId, moreModules);
|
|
59
|
-
/******/ if (parentHotUpdateCallback) parentHotUpdateCallback(chunkId, moreModules);
|
|
60
|
-
/******/ } ;
|
|
61
|
-
/******/
|
|
62
|
-
/******/ // eslint-disable-next-line no-unused-vars
|
|
63
|
-
/******/ function hotDownloadUpdateChunk(chunkId) {
|
|
64
|
-
/******/ var script = document.createElement("script");
|
|
65
|
-
/******/ script.charset = "utf-8";
|
|
66
|
-
/******/ script.src = __webpack_require__.p + "" + chunkId + "." + hotCurrentHash + ".hot-update.js";
|
|
67
|
-
/******/ if (null) script.crossOrigin = null;
|
|
68
|
-
/******/ document.head.appendChild(script);
|
|
69
|
-
/******/ }
|
|
70
|
-
/******/
|
|
71
|
-
/******/ // eslint-disable-next-line no-unused-vars
|
|
72
|
-
/******/ function hotDownloadManifest(requestTimeout) {
|
|
73
|
-
/******/ requestTimeout = requestTimeout || 10000;
|
|
74
|
-
/******/ return new Promise(function(resolve, reject) {
|
|
75
|
-
/******/ if (typeof XMLHttpRequest === "undefined") {
|
|
76
|
-
/******/ return reject(new Error("No browser support"));
|
|
77
|
-
/******/ }
|
|
78
|
-
/******/ try {
|
|
79
|
-
/******/ var request = new XMLHttpRequest();
|
|
80
|
-
/******/ var requestPath = __webpack_require__.p + "" + hotCurrentHash + ".hot-update.json";
|
|
81
|
-
/******/ request.open("GET", requestPath, true);
|
|
82
|
-
/******/ request.timeout = requestTimeout;
|
|
83
|
-
/******/ request.send(null);
|
|
84
|
-
/******/ } catch (err) {
|
|
85
|
-
/******/ return reject(err);
|
|
86
|
-
/******/ }
|
|
87
|
-
/******/ request.onreadystatechange = function() {
|
|
88
|
-
/******/ if (request.readyState !== 4) return;
|
|
89
|
-
/******/ if (request.status === 0) {
|
|
90
|
-
/******/ // timeout
|
|
91
|
-
/******/ reject(
|
|
92
|
-
/******/ new Error("Manifest request to " + requestPath + " timed out.")
|
|
93
|
-
/******/ );
|
|
94
|
-
/******/ } else if (request.status === 404) {
|
|
95
|
-
/******/ // no update available
|
|
96
|
-
/******/ resolve();
|
|
97
|
-
/******/ } else if (request.status !== 200 && request.status !== 304) {
|
|
98
|
-
/******/ // other failure
|
|
99
|
-
/******/ reject(new Error("Manifest request to " + requestPath + " failed."));
|
|
100
|
-
/******/ } else {
|
|
101
|
-
/******/ // success
|
|
102
|
-
/******/ try {
|
|
103
|
-
/******/ var update = JSON.parse(request.responseText);
|
|
104
|
-
/******/ } catch (e) {
|
|
105
|
-
/******/ reject(e);
|
|
106
|
-
/******/ return;
|
|
107
|
-
/******/ }
|
|
108
|
-
/******/ resolve(update);
|
|
109
|
-
/******/ }
|
|
110
|
-
/******/ };
|
|
111
|
-
/******/ });
|
|
112
|
-
/******/ }
|
|
113
|
-
/******/
|
|
114
|
-
/******/ var hotApplyOnUpdate = true;
|
|
115
|
-
/******/ // eslint-disable-next-line no-unused-vars
|
|
116
|
-
/******/ var hotCurrentHash = "cba9e9a38ae75c5d0c36";
|
|
117
|
-
/******/ var hotRequestTimeout = 10000;
|
|
118
|
-
/******/ var hotCurrentModuleData = {};
|
|
119
|
-
/******/ var hotCurrentChildModule;
|
|
120
|
-
/******/ // eslint-disable-next-line no-unused-vars
|
|
121
|
-
/******/ var hotCurrentParents = [];
|
|
122
|
-
/******/ // eslint-disable-next-line no-unused-vars
|
|
123
|
-
/******/ var hotCurrentParentsTemp = [];
|
|
124
|
-
/******/
|
|
125
|
-
/******/ // eslint-disable-next-line no-unused-vars
|
|
126
|
-
/******/ function hotCreateRequire(moduleId) {
|
|
127
|
-
/******/ var me = installedModules[moduleId];
|
|
128
|
-
/******/ if (!me) return __webpack_require__;
|
|
129
|
-
/******/ var fn = function(request) {
|
|
130
|
-
/******/ if (me.hot.active) {
|
|
131
|
-
/******/ if (installedModules[request]) {
|
|
132
|
-
/******/ if (installedModules[request].parents.indexOf(moduleId) === -1) {
|
|
133
|
-
/******/ installedModules[request].parents.push(moduleId);
|
|
134
|
-
/******/ }
|
|
135
|
-
/******/ } else {
|
|
136
|
-
/******/ hotCurrentParents = [moduleId];
|
|
137
|
-
/******/ hotCurrentChildModule = request;
|
|
138
|
-
/******/ }
|
|
139
|
-
/******/ if (me.children.indexOf(request) === -1) {
|
|
140
|
-
/******/ me.children.push(request);
|
|
141
|
-
/******/ }
|
|
142
|
-
/******/ } else {
|
|
143
|
-
/******/ console.warn(
|
|
144
|
-
/******/ "[HMR] unexpected require(" +
|
|
145
|
-
/******/ request +
|
|
146
|
-
/******/ ") from disposed module " +
|
|
147
|
-
/******/ moduleId
|
|
148
|
-
/******/ );
|
|
149
|
-
/******/ hotCurrentParents = [];
|
|
150
|
-
/******/ }
|
|
151
|
-
/******/ return __webpack_require__(request);
|
|
152
|
-
/******/ };
|
|
153
|
-
/******/ var ObjectFactory = function ObjectFactory(name) {
|
|
154
|
-
/******/ return {
|
|
155
|
-
/******/ configurable: true,
|
|
156
|
-
/******/ enumerable: true,
|
|
157
|
-
/******/ get: function() {
|
|
158
|
-
/******/ return __webpack_require__[name];
|
|
159
|
-
/******/ },
|
|
160
|
-
/******/ set: function(value) {
|
|
161
|
-
/******/ __webpack_require__[name] = value;
|
|
162
|
-
/******/ }
|
|
163
|
-
/******/ };
|
|
164
|
-
/******/ };
|
|
165
|
-
/******/ for (var name in __webpack_require__) {
|
|
166
|
-
/******/ if (
|
|
167
|
-
/******/ Object.prototype.hasOwnProperty.call(__webpack_require__, name) &&
|
|
168
|
-
/******/ name !== "e" &&
|
|
169
|
-
/******/ name !== "t"
|
|
170
|
-
/******/ ) {
|
|
171
|
-
/******/ Object.defineProperty(fn, name, ObjectFactory(name));
|
|
172
|
-
/******/ }
|
|
173
|
-
/******/ }
|
|
174
|
-
/******/ fn.e = function(chunkId) {
|
|
175
|
-
/******/ if (hotStatus === "ready") hotSetStatus("prepare");
|
|
176
|
-
/******/ hotChunksLoading++;
|
|
177
|
-
/******/ return __webpack_require__.e(chunkId).then(finishChunkLoading, function(err) {
|
|
178
|
-
/******/ finishChunkLoading();
|
|
179
|
-
/******/ throw err;
|
|
180
|
-
/******/ });
|
|
181
|
-
/******/
|
|
182
|
-
/******/ function finishChunkLoading() {
|
|
183
|
-
/******/ hotChunksLoading--;
|
|
184
|
-
/******/ if (hotStatus === "prepare") {
|
|
185
|
-
/******/ if (!hotWaitingFilesMap[chunkId]) {
|
|
186
|
-
/******/ hotEnsureUpdateChunk(chunkId);
|
|
187
|
-
/******/ }
|
|
188
|
-
/******/ if (hotChunksLoading === 0 && hotWaitingFiles === 0) {
|
|
189
|
-
/******/ hotUpdateDownloaded();
|
|
190
|
-
/******/ }
|
|
191
|
-
/******/ }
|
|
192
|
-
/******/ }
|
|
193
|
-
/******/ };
|
|
194
|
-
/******/ fn.t = function(value, mode) {
|
|
195
|
-
/******/ if (mode & 1) value = fn(value);
|
|
196
|
-
/******/ return __webpack_require__.t(value, mode & ~1);
|
|
197
|
-
/******/ };
|
|
198
|
-
/******/ return fn;
|
|
199
|
-
/******/ }
|
|
200
|
-
/******/
|
|
201
|
-
/******/ // eslint-disable-next-line no-unused-vars
|
|
202
|
-
/******/ function hotCreateModule(moduleId) {
|
|
203
|
-
/******/ var hot = {
|
|
204
|
-
/******/ // private stuff
|
|
205
|
-
/******/ _acceptedDependencies: {},
|
|
206
|
-
/******/ _declinedDependencies: {},
|
|
207
|
-
/******/ _selfAccepted: false,
|
|
208
|
-
/******/ _selfDeclined: false,
|
|
209
|
-
/******/ _selfInvalidated: false,
|
|
210
|
-
/******/ _disposeHandlers: [],
|
|
211
|
-
/******/ _main: hotCurrentChildModule !== moduleId,
|
|
212
|
-
/******/
|
|
213
|
-
/******/ // Module API
|
|
214
|
-
/******/ active: true,
|
|
215
|
-
/******/ accept: function(dep, callback) {
|
|
216
|
-
/******/ if (dep === undefined) hot._selfAccepted = true;
|
|
217
|
-
/******/ else if (typeof dep === "function") hot._selfAccepted = dep;
|
|
218
|
-
/******/ else if (typeof dep === "object")
|
|
219
|
-
/******/ for (var i = 0; i < dep.length; i++)
|
|
220
|
-
/******/ hot._acceptedDependencies[dep[i]] = callback || function() {};
|
|
221
|
-
/******/ else hot._acceptedDependencies[dep] = callback || function() {};
|
|
222
|
-
/******/ },
|
|
223
|
-
/******/ decline: function(dep) {
|
|
224
|
-
/******/ if (dep === undefined) hot._selfDeclined = true;
|
|
225
|
-
/******/ else if (typeof dep === "object")
|
|
226
|
-
/******/ for (var i = 0; i < dep.length; i++)
|
|
227
|
-
/******/ hot._declinedDependencies[dep[i]] = true;
|
|
228
|
-
/******/ else hot._declinedDependencies[dep] = true;
|
|
229
|
-
/******/ },
|
|
230
|
-
/******/ dispose: function(callback) {
|
|
231
|
-
/******/ hot._disposeHandlers.push(callback);
|
|
232
|
-
/******/ },
|
|
233
|
-
/******/ addDisposeHandler: function(callback) {
|
|
234
|
-
/******/ hot._disposeHandlers.push(callback);
|
|
235
|
-
/******/ },
|
|
236
|
-
/******/ removeDisposeHandler: function(callback) {
|
|
237
|
-
/******/ var idx = hot._disposeHandlers.indexOf(callback);
|
|
238
|
-
/******/ if (idx >= 0) hot._disposeHandlers.splice(idx, 1);
|
|
239
|
-
/******/ },
|
|
240
|
-
/******/ invalidate: function() {
|
|
241
|
-
/******/ this._selfInvalidated = true;
|
|
242
|
-
/******/ switch (hotStatus) {
|
|
243
|
-
/******/ case "idle":
|
|
244
|
-
/******/ hotUpdate = {};
|
|
245
|
-
/******/ hotUpdate[moduleId] = modules[moduleId];
|
|
246
|
-
/******/ hotSetStatus("ready");
|
|
247
|
-
/******/ break;
|
|
248
|
-
/******/ case "ready":
|
|
249
|
-
/******/ hotApplyInvalidatedModule(moduleId);
|
|
250
|
-
/******/ break;
|
|
251
|
-
/******/ case "prepare":
|
|
252
|
-
/******/ case "check":
|
|
253
|
-
/******/ case "dispose":
|
|
254
|
-
/******/ case "apply":
|
|
255
|
-
/******/ (hotQueuedInvalidatedModules =
|
|
256
|
-
/******/ hotQueuedInvalidatedModules || []).push(moduleId);
|
|
257
|
-
/******/ break;
|
|
258
|
-
/******/ default:
|
|
259
|
-
/******/ // ignore requests in error states
|
|
260
|
-
/******/ break;
|
|
261
|
-
/******/ }
|
|
262
|
-
/******/ },
|
|
263
|
-
/******/
|
|
264
|
-
/******/ // Management API
|
|
265
|
-
/******/ check: hotCheck,
|
|
266
|
-
/******/ apply: hotApply,
|
|
267
|
-
/******/ status: function(l) {
|
|
268
|
-
/******/ if (!l) return hotStatus;
|
|
269
|
-
/******/ hotStatusHandlers.push(l);
|
|
270
|
-
/******/ },
|
|
271
|
-
/******/ addStatusHandler: function(l) {
|
|
272
|
-
/******/ hotStatusHandlers.push(l);
|
|
273
|
-
/******/ },
|
|
274
|
-
/******/ removeStatusHandler: function(l) {
|
|
275
|
-
/******/ var idx = hotStatusHandlers.indexOf(l);
|
|
276
|
-
/******/ if (idx >= 0) hotStatusHandlers.splice(idx, 1);
|
|
277
|
-
/******/ },
|
|
278
|
-
/******/
|
|
279
|
-
/******/ //inherit from previous dispose call
|
|
280
|
-
/******/ data: hotCurrentModuleData[moduleId]
|
|
281
|
-
/******/ };
|
|
282
|
-
/******/ hotCurrentChildModule = undefined;
|
|
283
|
-
/******/ return hot;
|
|
284
|
-
/******/ }
|
|
285
|
-
/******/
|
|
286
|
-
/******/ var hotStatusHandlers = [];
|
|
287
|
-
/******/ var hotStatus = "idle";
|
|
288
|
-
/******/
|
|
289
|
-
/******/ function hotSetStatus(newStatus) {
|
|
290
|
-
/******/ hotStatus = newStatus;
|
|
291
|
-
/******/ for (var i = 0; i < hotStatusHandlers.length; i++)
|
|
292
|
-
/******/ hotStatusHandlers[i].call(null, newStatus);
|
|
293
|
-
/******/ }
|
|
294
|
-
/******/
|
|
295
|
-
/******/ // while downloading
|
|
296
|
-
/******/ var hotWaitingFiles = 0;
|
|
297
|
-
/******/ var hotChunksLoading = 0;
|
|
298
|
-
/******/ var hotWaitingFilesMap = {};
|
|
299
|
-
/******/ var hotRequestedFilesMap = {};
|
|
300
|
-
/******/ var hotAvailableFilesMap = {};
|
|
301
|
-
/******/ var hotDeferred;
|
|
302
|
-
/******/
|
|
303
|
-
/******/ // The update info
|
|
304
|
-
/******/ var hotUpdate, hotUpdateNewHash, hotQueuedInvalidatedModules;
|
|
305
|
-
/******/
|
|
306
|
-
/******/ function toModuleId(id) {
|
|
307
|
-
/******/ var isNumber = +id + "" === id;
|
|
308
|
-
/******/ return isNumber ? +id : id;
|
|
309
|
-
/******/ }
|
|
310
|
-
/******/
|
|
311
|
-
/******/ function hotCheck(apply) {
|
|
312
|
-
/******/ if (hotStatus !== "idle") {
|
|
313
|
-
/******/ throw new Error("check() is only allowed in idle status");
|
|
314
|
-
/******/ }
|
|
315
|
-
/******/ hotApplyOnUpdate = apply;
|
|
316
|
-
/******/ hotSetStatus("check");
|
|
317
|
-
/******/ return hotDownloadManifest(hotRequestTimeout).then(function(update) {
|
|
318
|
-
/******/ if (!update) {
|
|
319
|
-
/******/ hotSetStatus(hotApplyInvalidatedModules() ? "ready" : "idle");
|
|
320
|
-
/******/ return null;
|
|
321
|
-
/******/ }
|
|
322
|
-
/******/ hotRequestedFilesMap = {};
|
|
323
|
-
/******/ hotWaitingFilesMap = {};
|
|
324
|
-
/******/ hotAvailableFilesMap = update.c;
|
|
325
|
-
/******/ hotUpdateNewHash = update.h;
|
|
326
|
-
/******/
|
|
327
|
-
/******/ hotSetStatus("prepare");
|
|
328
|
-
/******/ var promise = new Promise(function(resolve, reject) {
|
|
329
|
-
/******/ hotDeferred = {
|
|
330
|
-
/******/ resolve: resolve,
|
|
331
|
-
/******/ reject: reject
|
|
332
|
-
/******/ };
|
|
333
|
-
/******/ });
|
|
334
|
-
/******/ hotUpdate = {};
|
|
335
|
-
/******/ for(var chunkId in installedChunks)
|
|
336
|
-
/******/ // eslint-disable-next-line no-lone-blocks
|
|
337
|
-
/******/ {
|
|
338
|
-
/******/ hotEnsureUpdateChunk(chunkId);
|
|
339
|
-
/******/ }
|
|
340
|
-
/******/ if (
|
|
341
|
-
/******/ hotStatus === "prepare" &&
|
|
342
|
-
/******/ hotChunksLoading === 0 &&
|
|
343
|
-
/******/ hotWaitingFiles === 0
|
|
344
|
-
/******/ ) {
|
|
345
|
-
/******/ hotUpdateDownloaded();
|
|
346
|
-
/******/ }
|
|
347
|
-
/******/ return promise;
|
|
348
|
-
/******/ });
|
|
349
|
-
/******/ }
|
|
350
|
-
/******/
|
|
351
|
-
/******/ // eslint-disable-next-line no-unused-vars
|
|
352
|
-
/******/ function hotAddUpdateChunk(chunkId, moreModules) {
|
|
353
|
-
/******/ if (!hotAvailableFilesMap[chunkId] || !hotRequestedFilesMap[chunkId])
|
|
354
|
-
/******/ return;
|
|
355
|
-
/******/ hotRequestedFilesMap[chunkId] = false;
|
|
356
|
-
/******/ for (var moduleId in moreModules) {
|
|
357
|
-
/******/ if (Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
|
|
358
|
-
/******/ hotUpdate[moduleId] = moreModules[moduleId];
|
|
359
|
-
/******/ }
|
|
360
|
-
/******/ }
|
|
361
|
-
/******/ if (--hotWaitingFiles === 0 && hotChunksLoading === 0) {
|
|
362
|
-
/******/ hotUpdateDownloaded();
|
|
363
|
-
/******/ }
|
|
364
|
-
/******/ }
|
|
365
|
-
/******/
|
|
366
|
-
/******/ function hotEnsureUpdateChunk(chunkId) {
|
|
367
|
-
/******/ if (!hotAvailableFilesMap[chunkId]) {
|
|
368
|
-
/******/ hotWaitingFilesMap[chunkId] = true;
|
|
369
|
-
/******/ } else {
|
|
370
|
-
/******/ hotRequestedFilesMap[chunkId] = true;
|
|
371
|
-
/******/ hotWaitingFiles++;
|
|
372
|
-
/******/ hotDownloadUpdateChunk(chunkId);
|
|
373
|
-
/******/ }
|
|
374
|
-
/******/ }
|
|
375
|
-
/******/
|
|
376
|
-
/******/ function hotUpdateDownloaded() {
|
|
377
|
-
/******/ hotSetStatus("ready");
|
|
378
|
-
/******/ var deferred = hotDeferred;
|
|
379
|
-
/******/ hotDeferred = null;
|
|
380
|
-
/******/ if (!deferred) return;
|
|
381
|
-
/******/ if (hotApplyOnUpdate) {
|
|
382
|
-
/******/ // Wrap deferred object in Promise to mark it as a well-handled Promise to
|
|
383
|
-
/******/ // avoid triggering uncaught exception warning in Chrome.
|
|
384
|
-
/******/ // See https://bugs.chromium.org/p/chromium/issues/detail?id=465666
|
|
385
|
-
/******/ Promise.resolve()
|
|
386
|
-
/******/ .then(function() {
|
|
387
|
-
/******/ return hotApply(hotApplyOnUpdate);
|
|
388
|
-
/******/ })
|
|
389
|
-
/******/ .then(
|
|
390
|
-
/******/ function(result) {
|
|
391
|
-
/******/ deferred.resolve(result);
|
|
392
|
-
/******/ },
|
|
393
|
-
/******/ function(err) {
|
|
394
|
-
/******/ deferred.reject(err);
|
|
395
|
-
/******/ }
|
|
396
|
-
/******/ );
|
|
397
|
-
/******/ } else {
|
|
398
|
-
/******/ var outdatedModules = [];
|
|
399
|
-
/******/ for (var id in hotUpdate) {
|
|
400
|
-
/******/ if (Object.prototype.hasOwnProperty.call(hotUpdate, id)) {
|
|
401
|
-
/******/ outdatedModules.push(toModuleId(id));
|
|
402
|
-
/******/ }
|
|
403
|
-
/******/ }
|
|
404
|
-
/******/ deferred.resolve(outdatedModules);
|
|
405
|
-
/******/ }
|
|
406
|
-
/******/ }
|
|
407
|
-
/******/
|
|
408
|
-
/******/ function hotApply(options) {
|
|
409
|
-
/******/ if (hotStatus !== "ready")
|
|
410
|
-
/******/ throw new Error("apply() is only allowed in ready status");
|
|
411
|
-
/******/ options = options || {};
|
|
412
|
-
/******/ return hotApplyInternal(options);
|
|
413
|
-
/******/ }
|
|
414
|
-
/******/
|
|
415
|
-
/******/ function hotApplyInternal(options) {
|
|
416
|
-
/******/ hotApplyInvalidatedModules();
|
|
417
|
-
/******/
|
|
418
|
-
/******/ var cb;
|
|
419
|
-
/******/ var i;
|
|
420
|
-
/******/ var j;
|
|
421
|
-
/******/ var module;
|
|
422
|
-
/******/ var moduleId;
|
|
423
|
-
/******/
|
|
424
|
-
/******/ function getAffectedStuff(updateModuleId) {
|
|
425
|
-
/******/ var outdatedModules = [updateModuleId];
|
|
426
|
-
/******/ var outdatedDependencies = {};
|
|
427
|
-
/******/
|
|
428
|
-
/******/ var queue = outdatedModules.map(function(id) {
|
|
429
|
-
/******/ return {
|
|
430
|
-
/******/ chain: [id],
|
|
431
|
-
/******/ id: id
|
|
432
|
-
/******/ };
|
|
433
|
-
/******/ });
|
|
434
|
-
/******/ while (queue.length > 0) {
|
|
435
|
-
/******/ var queueItem = queue.pop();
|
|
436
|
-
/******/ var moduleId = queueItem.id;
|
|
437
|
-
/******/ var chain = queueItem.chain;
|
|
438
|
-
/******/ module = installedModules[moduleId];
|
|
439
|
-
/******/ if (
|
|
440
|
-
/******/ !module ||
|
|
441
|
-
/******/ (module.hot._selfAccepted && !module.hot._selfInvalidated)
|
|
442
|
-
/******/ )
|
|
443
|
-
/******/ continue;
|
|
444
|
-
/******/ if (module.hot._selfDeclined) {
|
|
445
|
-
/******/ return {
|
|
446
|
-
/******/ type: "self-declined",
|
|
447
|
-
/******/ chain: chain,
|
|
448
|
-
/******/ moduleId: moduleId
|
|
449
|
-
/******/ };
|
|
450
|
-
/******/ }
|
|
451
|
-
/******/ if (module.hot._main) {
|
|
452
|
-
/******/ return {
|
|
453
|
-
/******/ type: "unaccepted",
|
|
454
|
-
/******/ chain: chain,
|
|
455
|
-
/******/ moduleId: moduleId
|
|
456
|
-
/******/ };
|
|
457
|
-
/******/ }
|
|
458
|
-
/******/ for (var i = 0; i < module.parents.length; i++) {
|
|
459
|
-
/******/ var parentId = module.parents[i];
|
|
460
|
-
/******/ var parent = installedModules[parentId];
|
|
461
|
-
/******/ if (!parent) continue;
|
|
462
|
-
/******/ if (parent.hot._declinedDependencies[moduleId]) {
|
|
463
|
-
/******/ return {
|
|
464
|
-
/******/ type: "declined",
|
|
465
|
-
/******/ chain: chain.concat([parentId]),
|
|
466
|
-
/******/ moduleId: moduleId,
|
|
467
|
-
/******/ parentId: parentId
|
|
468
|
-
/******/ };
|
|
469
|
-
/******/ }
|
|
470
|
-
/******/ if (outdatedModules.indexOf(parentId) !== -1) continue;
|
|
471
|
-
/******/ if (parent.hot._acceptedDependencies[moduleId]) {
|
|
472
|
-
/******/ if (!outdatedDependencies[parentId])
|
|
473
|
-
/******/ outdatedDependencies[parentId] = [];
|
|
474
|
-
/******/ addAllToSet(outdatedDependencies[parentId], [moduleId]);
|
|
475
|
-
/******/ continue;
|
|
476
|
-
/******/ }
|
|
477
|
-
/******/ delete outdatedDependencies[parentId];
|
|
478
|
-
/******/ outdatedModules.push(parentId);
|
|
479
|
-
/******/ queue.push({
|
|
480
|
-
/******/ chain: chain.concat([parentId]),
|
|
481
|
-
/******/ id: parentId
|
|
482
|
-
/******/ });
|
|
483
|
-
/******/ }
|
|
484
|
-
/******/ }
|
|
485
|
-
/******/
|
|
486
|
-
/******/ return {
|
|
487
|
-
/******/ type: "accepted",
|
|
488
|
-
/******/ moduleId: updateModuleId,
|
|
489
|
-
/******/ outdatedModules: outdatedModules,
|
|
490
|
-
/******/ outdatedDependencies: outdatedDependencies
|
|
491
|
-
/******/ };
|
|
492
|
-
/******/ }
|
|
493
|
-
/******/
|
|
494
|
-
/******/ function addAllToSet(a, b) {
|
|
495
|
-
/******/ for (var i = 0; i < b.length; i++) {
|
|
496
|
-
/******/ var item = b[i];
|
|
497
|
-
/******/ if (a.indexOf(item) === -1) a.push(item);
|
|
498
|
-
/******/ }
|
|
499
|
-
/******/ }
|
|
500
|
-
/******/
|
|
501
|
-
/******/ // at begin all updates modules are outdated
|
|
502
|
-
/******/ // the "outdated" status can propagate to parents if they don't accept the children
|
|
503
|
-
/******/ var outdatedDependencies = {};
|
|
504
|
-
/******/ var outdatedModules = [];
|
|
505
|
-
/******/ var appliedUpdate = {};
|
|
506
|
-
/******/
|
|
507
|
-
/******/ var warnUnexpectedRequire = function warnUnexpectedRequire() {
|
|
508
|
-
/******/ console.warn(
|
|
509
|
-
/******/ "[HMR] unexpected require(" + result.moduleId + ") to disposed module"
|
|
510
|
-
/******/ );
|
|
511
|
-
/******/ };
|
|
512
|
-
/******/
|
|
513
|
-
/******/ for (var id in hotUpdate) {
|
|
514
|
-
/******/ if (Object.prototype.hasOwnProperty.call(hotUpdate, id)) {
|
|
515
|
-
/******/ moduleId = toModuleId(id);
|
|
516
|
-
/******/ /** @type {TODO} */
|
|
517
|
-
/******/ var result;
|
|
518
|
-
/******/ if (hotUpdate[id]) {
|
|
519
|
-
/******/ result = getAffectedStuff(moduleId);
|
|
520
|
-
/******/ } else {
|
|
521
|
-
/******/ result = {
|
|
522
|
-
/******/ type: "disposed",
|
|
523
|
-
/******/ moduleId: id
|
|
524
|
-
/******/ };
|
|
525
|
-
/******/ }
|
|
526
|
-
/******/ /** @type {Error|false} */
|
|
527
|
-
/******/ var abortError = false;
|
|
528
|
-
/******/ var doApply = false;
|
|
529
|
-
/******/ var doDispose = false;
|
|
530
|
-
/******/ var chainInfo = "";
|
|
531
|
-
/******/ if (result.chain) {
|
|
532
|
-
/******/ chainInfo = "\nUpdate propagation: " + result.chain.join(" -> ");
|
|
533
|
-
/******/ }
|
|
534
|
-
/******/ switch (result.type) {
|
|
535
|
-
/******/ case "self-declined":
|
|
536
|
-
/******/ if (options.onDeclined) options.onDeclined(result);
|
|
537
|
-
/******/ if (!options.ignoreDeclined)
|
|
538
|
-
/******/ abortError = new Error(
|
|
539
|
-
/******/ "Aborted because of self decline: " +
|
|
540
|
-
/******/ result.moduleId +
|
|
541
|
-
/******/ chainInfo
|
|
542
|
-
/******/ );
|
|
543
|
-
/******/ break;
|
|
544
|
-
/******/ case "declined":
|
|
545
|
-
/******/ if (options.onDeclined) options.onDeclined(result);
|
|
546
|
-
/******/ if (!options.ignoreDeclined)
|
|
547
|
-
/******/ abortError = new Error(
|
|
548
|
-
/******/ "Aborted because of declined dependency: " +
|
|
549
|
-
/******/ result.moduleId +
|
|
550
|
-
/******/ " in " +
|
|
551
|
-
/******/ result.parentId +
|
|
552
|
-
/******/ chainInfo
|
|
553
|
-
/******/ );
|
|
554
|
-
/******/ break;
|
|
555
|
-
/******/ case "unaccepted":
|
|
556
|
-
/******/ if (options.onUnaccepted) options.onUnaccepted(result);
|
|
557
|
-
/******/ if (!options.ignoreUnaccepted)
|
|
558
|
-
/******/ abortError = new Error(
|
|
559
|
-
/******/ "Aborted because " + moduleId + " is not accepted" + chainInfo
|
|
560
|
-
/******/ );
|
|
561
|
-
/******/ break;
|
|
562
|
-
/******/ case "accepted":
|
|
563
|
-
/******/ if (options.onAccepted) options.onAccepted(result);
|
|
564
|
-
/******/ doApply = true;
|
|
565
|
-
/******/ break;
|
|
566
|
-
/******/ case "disposed":
|
|
567
|
-
/******/ if (options.onDisposed) options.onDisposed(result);
|
|
568
|
-
/******/ doDispose = true;
|
|
569
|
-
/******/ break;
|
|
570
|
-
/******/ default:
|
|
571
|
-
/******/ throw new Error("Unexception type " + result.type);
|
|
572
|
-
/******/ }
|
|
573
|
-
/******/ if (abortError) {
|
|
574
|
-
/******/ hotSetStatus("abort");
|
|
575
|
-
/******/ return Promise.reject(abortError);
|
|
576
|
-
/******/ }
|
|
577
|
-
/******/ if (doApply) {
|
|
578
|
-
/******/ appliedUpdate[moduleId] = hotUpdate[moduleId];
|
|
579
|
-
/******/ addAllToSet(outdatedModules, result.outdatedModules);
|
|
580
|
-
/******/ for (moduleId in result.outdatedDependencies) {
|
|
581
|
-
/******/ if (
|
|
582
|
-
/******/ Object.prototype.hasOwnProperty.call(
|
|
583
|
-
/******/ result.outdatedDependencies,
|
|
584
|
-
/******/ moduleId
|
|
585
|
-
/******/ )
|
|
586
|
-
/******/ ) {
|
|
587
|
-
/******/ if (!outdatedDependencies[moduleId])
|
|
588
|
-
/******/ outdatedDependencies[moduleId] = [];
|
|
589
|
-
/******/ addAllToSet(
|
|
590
|
-
/******/ outdatedDependencies[moduleId],
|
|
591
|
-
/******/ result.outdatedDependencies[moduleId]
|
|
592
|
-
/******/ );
|
|
593
|
-
/******/ }
|
|
594
|
-
/******/ }
|
|
595
|
-
/******/ }
|
|
596
|
-
/******/ if (doDispose) {
|
|
597
|
-
/******/ addAllToSet(outdatedModules, [result.moduleId]);
|
|
598
|
-
/******/ appliedUpdate[moduleId] = warnUnexpectedRequire;
|
|
599
|
-
/******/ }
|
|
600
|
-
/******/ }
|
|
601
|
-
/******/ }
|
|
602
|
-
/******/
|
|
603
|
-
/******/ // Store self accepted outdated modules to require them later by the module system
|
|
604
|
-
/******/ var outdatedSelfAcceptedModules = [];
|
|
605
|
-
/******/ for (i = 0; i < outdatedModules.length; i++) {
|
|
606
|
-
/******/ moduleId = outdatedModules[i];
|
|
607
|
-
/******/ if (
|
|
608
|
-
/******/ installedModules[moduleId] &&
|
|
609
|
-
/******/ installedModules[moduleId].hot._selfAccepted &&
|
|
610
|
-
/******/ // removed self-accepted modules should not be required
|
|
611
|
-
/******/ appliedUpdate[moduleId] !== warnUnexpectedRequire &&
|
|
612
|
-
/******/ // when called invalidate self-accepting is not possible
|
|
613
|
-
/******/ !installedModules[moduleId].hot._selfInvalidated
|
|
614
|
-
/******/ ) {
|
|
615
|
-
/******/ outdatedSelfAcceptedModules.push({
|
|
616
|
-
/******/ module: moduleId,
|
|
617
|
-
/******/ parents: installedModules[moduleId].parents.slice(),
|
|
618
|
-
/******/ errorHandler: installedModules[moduleId].hot._selfAccepted
|
|
619
|
-
/******/ });
|
|
620
|
-
/******/ }
|
|
621
|
-
/******/ }
|
|
622
|
-
/******/
|
|
623
|
-
/******/ // Now in "dispose" phase
|
|
624
|
-
/******/ hotSetStatus("dispose");
|
|
625
|
-
/******/ Object.keys(hotAvailableFilesMap).forEach(function(chunkId) {
|
|
626
|
-
/******/ if (hotAvailableFilesMap[chunkId] === false) {
|
|
627
|
-
/******/ hotDisposeChunk(chunkId);
|
|
628
|
-
/******/ }
|
|
629
|
-
/******/ });
|
|
630
|
-
/******/
|
|
631
|
-
/******/ var idx;
|
|
632
|
-
/******/ var queue = outdatedModules.slice();
|
|
633
|
-
/******/ while (queue.length > 0) {
|
|
634
|
-
/******/ moduleId = queue.pop();
|
|
635
|
-
/******/ module = installedModules[moduleId];
|
|
636
|
-
/******/ if (!module) continue;
|
|
637
|
-
/******/
|
|
638
|
-
/******/ var data = {};
|
|
639
|
-
/******/
|
|
640
|
-
/******/ // Call dispose handlers
|
|
641
|
-
/******/ var disposeHandlers = module.hot._disposeHandlers;
|
|
642
|
-
/******/ for (j = 0; j < disposeHandlers.length; j++) {
|
|
643
|
-
/******/ cb = disposeHandlers[j];
|
|
644
|
-
/******/ cb(data);
|
|
645
|
-
/******/ }
|
|
646
|
-
/******/ hotCurrentModuleData[moduleId] = data;
|
|
647
|
-
/******/
|
|
648
|
-
/******/ // disable module (this disables requires from this module)
|
|
649
|
-
/******/ module.hot.active = false;
|
|
650
|
-
/******/
|
|
651
|
-
/******/ // remove module from cache
|
|
652
|
-
/******/ delete installedModules[moduleId];
|
|
653
|
-
/******/
|
|
654
|
-
/******/ // when disposing there is no need to call dispose handler
|
|
655
|
-
/******/ delete outdatedDependencies[moduleId];
|
|
656
|
-
/******/
|
|
657
|
-
/******/ // remove "parents" references from all children
|
|
658
|
-
/******/ for (j = 0; j < module.children.length; j++) {
|
|
659
|
-
/******/ var child = installedModules[module.children[j]];
|
|
660
|
-
/******/ if (!child) continue;
|
|
661
|
-
/******/ idx = child.parents.indexOf(moduleId);
|
|
662
|
-
/******/ if (idx >= 0) {
|
|
663
|
-
/******/ child.parents.splice(idx, 1);
|
|
664
|
-
/******/ }
|
|
665
|
-
/******/ }
|
|
666
|
-
/******/ }
|
|
667
|
-
/******/
|
|
668
|
-
/******/ // remove outdated dependency from module children
|
|
669
|
-
/******/ var dependency;
|
|
670
|
-
/******/ var moduleOutdatedDependencies;
|
|
671
|
-
/******/ for (moduleId in outdatedDependencies) {
|
|
672
|
-
/******/ if (
|
|
673
|
-
/******/ Object.prototype.hasOwnProperty.call(outdatedDependencies, moduleId)
|
|
674
|
-
/******/ ) {
|
|
675
|
-
/******/ module = installedModules[moduleId];
|
|
676
|
-
/******/ if (module) {
|
|
677
|
-
/******/ moduleOutdatedDependencies = outdatedDependencies[moduleId];
|
|
678
|
-
/******/ for (j = 0; j < moduleOutdatedDependencies.length; j++) {
|
|
679
|
-
/******/ dependency = moduleOutdatedDependencies[j];
|
|
680
|
-
/******/ idx = module.children.indexOf(dependency);
|
|
681
|
-
/******/ if (idx >= 0) module.children.splice(idx, 1);
|
|
682
|
-
/******/ }
|
|
683
|
-
/******/ }
|
|
684
|
-
/******/ }
|
|
685
|
-
/******/ }
|
|
686
|
-
/******/
|
|
687
|
-
/******/ // Now in "apply" phase
|
|
688
|
-
/******/ hotSetStatus("apply");
|
|
689
|
-
/******/
|
|
690
|
-
/******/ if (hotUpdateNewHash !== undefined) {
|
|
691
|
-
/******/ hotCurrentHash = hotUpdateNewHash;
|
|
692
|
-
/******/ hotUpdateNewHash = undefined;
|
|
693
|
-
/******/ }
|
|
694
|
-
/******/ hotUpdate = undefined;
|
|
695
|
-
/******/
|
|
696
|
-
/******/ // insert new code
|
|
697
|
-
/******/ for (moduleId in appliedUpdate) {
|
|
698
|
-
/******/ if (Object.prototype.hasOwnProperty.call(appliedUpdate, moduleId)) {
|
|
699
|
-
/******/ modules[moduleId] = appliedUpdate[moduleId];
|
|
700
|
-
/******/ }
|
|
701
|
-
/******/ }
|
|
702
|
-
/******/
|
|
703
|
-
/******/ // call accept handlers
|
|
704
|
-
/******/ var error = null;
|
|
705
|
-
/******/ for (moduleId in outdatedDependencies) {
|
|
706
|
-
/******/ if (
|
|
707
|
-
/******/ Object.prototype.hasOwnProperty.call(outdatedDependencies, moduleId)
|
|
708
|
-
/******/ ) {
|
|
709
|
-
/******/ module = installedModules[moduleId];
|
|
710
|
-
/******/ if (module) {
|
|
711
|
-
/******/ moduleOutdatedDependencies = outdatedDependencies[moduleId];
|
|
712
|
-
/******/ var callbacks = [];
|
|
713
|
-
/******/ for (i = 0; i < moduleOutdatedDependencies.length; i++) {
|
|
714
|
-
/******/ dependency = moduleOutdatedDependencies[i];
|
|
715
|
-
/******/ cb = module.hot._acceptedDependencies[dependency];
|
|
716
|
-
/******/ if (cb) {
|
|
717
|
-
/******/ if (callbacks.indexOf(cb) !== -1) continue;
|
|
718
|
-
/******/ callbacks.push(cb);
|
|
719
|
-
/******/ }
|
|
720
|
-
/******/ }
|
|
721
|
-
/******/ for (i = 0; i < callbacks.length; i++) {
|
|
722
|
-
/******/ cb = callbacks[i];
|
|
723
|
-
/******/ try {
|
|
724
|
-
/******/ cb(moduleOutdatedDependencies);
|
|
725
|
-
/******/ } catch (err) {
|
|
726
|
-
/******/ if (options.onErrored) {
|
|
727
|
-
/******/ options.onErrored({
|
|
728
|
-
/******/ type: "accept-errored",
|
|
729
|
-
/******/ moduleId: moduleId,
|
|
730
|
-
/******/ dependencyId: moduleOutdatedDependencies[i],
|
|
731
|
-
/******/ error: err
|
|
732
|
-
/******/ });
|
|
733
|
-
/******/ }
|
|
734
|
-
/******/ if (!options.ignoreErrored) {
|
|
735
|
-
/******/ if (!error) error = err;
|
|
736
|
-
/******/ }
|
|
737
|
-
/******/ }
|
|
738
|
-
/******/ }
|
|
739
|
-
/******/ }
|
|
740
|
-
/******/ }
|
|
741
|
-
/******/ }
|
|
742
|
-
/******/
|
|
743
|
-
/******/ // Load self accepted modules
|
|
744
|
-
/******/ for (i = 0; i < outdatedSelfAcceptedModules.length; i++) {
|
|
745
|
-
/******/ var item = outdatedSelfAcceptedModules[i];
|
|
746
|
-
/******/ moduleId = item.module;
|
|
747
|
-
/******/ hotCurrentParents = item.parents;
|
|
748
|
-
/******/ hotCurrentChildModule = moduleId;
|
|
749
|
-
/******/ try {
|
|
750
|
-
/******/ __webpack_require__(moduleId);
|
|
751
|
-
/******/ } catch (err) {
|
|
752
|
-
/******/ if (typeof item.errorHandler === "function") {
|
|
753
|
-
/******/ try {
|
|
754
|
-
/******/ item.errorHandler(err);
|
|
755
|
-
/******/ } catch (err2) {
|
|
756
|
-
/******/ if (options.onErrored) {
|
|
757
|
-
/******/ options.onErrored({
|
|
758
|
-
/******/ type: "self-accept-error-handler-errored",
|
|
759
|
-
/******/ moduleId: moduleId,
|
|
760
|
-
/******/ error: err2,
|
|
761
|
-
/******/ originalError: err
|
|
762
|
-
/******/ });
|
|
763
|
-
/******/ }
|
|
764
|
-
/******/ if (!options.ignoreErrored) {
|
|
765
|
-
/******/ if (!error) error = err2;
|
|
766
|
-
/******/ }
|
|
767
|
-
/******/ if (!error) error = err;
|
|
768
|
-
/******/ }
|
|
769
|
-
/******/ } else {
|
|
770
|
-
/******/ if (options.onErrored) {
|
|
771
|
-
/******/ options.onErrored({
|
|
772
|
-
/******/ type: "self-accept-errored",
|
|
773
|
-
/******/ moduleId: moduleId,
|
|
774
|
-
/******/ error: err
|
|
775
|
-
/******/ });
|
|
776
|
-
/******/ }
|
|
777
|
-
/******/ if (!options.ignoreErrored) {
|
|
778
|
-
/******/ if (!error) error = err;
|
|
779
|
-
/******/ }
|
|
780
|
-
/******/ }
|
|
781
|
-
/******/ }
|
|
782
|
-
/******/ }
|
|
783
|
-
/******/
|
|
784
|
-
/******/ // handle errors in accept handlers and self accepted module load
|
|
785
|
-
/******/ if (error) {
|
|
786
|
-
/******/ hotSetStatus("fail");
|
|
787
|
-
/******/ return Promise.reject(error);
|
|
788
|
-
/******/ }
|
|
789
|
-
/******/
|
|
790
|
-
/******/ if (hotQueuedInvalidatedModules) {
|
|
791
|
-
/******/ return hotApplyInternal(options).then(function(list) {
|
|
792
|
-
/******/ outdatedModules.forEach(function(moduleId) {
|
|
793
|
-
/******/ if (list.indexOf(moduleId) < 0) list.push(moduleId);
|
|
794
|
-
/******/ });
|
|
795
|
-
/******/ return list;
|
|
796
|
-
/******/ });
|
|
797
|
-
/******/ }
|
|
798
|
-
/******/
|
|
799
|
-
/******/ hotSetStatus("idle");
|
|
800
|
-
/******/ return new Promise(function(resolve) {
|
|
801
|
-
/******/ resolve(outdatedModules);
|
|
802
|
-
/******/ });
|
|
803
|
-
/******/ }
|
|
804
|
-
/******/
|
|
805
|
-
/******/ function hotApplyInvalidatedModules() {
|
|
806
|
-
/******/ if (hotQueuedInvalidatedModules) {
|
|
807
|
-
/******/ if (!hotUpdate) hotUpdate = {};
|
|
808
|
-
/******/ hotQueuedInvalidatedModules.forEach(hotApplyInvalidatedModule);
|
|
809
|
-
/******/ hotQueuedInvalidatedModules = undefined;
|
|
810
|
-
/******/ return true;
|
|
811
|
-
/******/ }
|
|
812
|
-
/******/ }
|
|
813
|
-
/******/
|
|
814
|
-
/******/ function hotApplyInvalidatedModule(moduleId) {
|
|
815
|
-
/******/ if (!Object.prototype.hasOwnProperty.call(hotUpdate, moduleId))
|
|
816
|
-
/******/ hotUpdate[moduleId] = modules[moduleId];
|
|
817
|
-
/******/ }
|
|
818
|
-
/******/
|
|
819
|
-
/******/ // The module cache
|
|
820
|
-
/******/ var installedModules = {};
|
|
821
|
-
/******/
|
|
822
|
-
/******/ // object to store loaded and loading chunks
|
|
823
|
-
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
|
|
824
|
-
/******/ // Promise = chunk loading, 0 = chunk loaded
|
|
825
|
-
/******/ var installedChunks = {
|
|
826
|
-
/******/ "runtime-main": 0
|
|
827
|
-
/******/ };
|
|
828
|
-
/******/
|
|
829
|
-
/******/ var deferredModules = [];
|
|
830
|
-
/******/
|
|
831
|
-
/******/ // The require function
|
|
832
|
-
/******/ function __webpack_require__(moduleId) {
|
|
833
|
-
/******/
|
|
834
|
-
/******/ // Check if module is in cache
|
|
835
|
-
/******/ if(installedModules[moduleId]) {
|
|
836
|
-
/******/ return installedModules[moduleId].exports;
|
|
837
|
-
/******/ }
|
|
838
|
-
/******/ // Create a new module (and put it into the cache)
|
|
839
|
-
/******/ var module = installedModules[moduleId] = {
|
|
840
|
-
/******/ i: moduleId,
|
|
841
|
-
/******/ l: false,
|
|
842
|
-
/******/ exports: {},
|
|
843
|
-
/******/ hot: hotCreateModule(moduleId),
|
|
844
|
-
/******/ parents: (hotCurrentParentsTemp = hotCurrentParents, hotCurrentParents = [], hotCurrentParentsTemp),
|
|
845
|
-
/******/ children: []
|
|
846
|
-
/******/ };
|
|
847
|
-
/******/
|
|
848
|
-
/******/ // Execute the module function
|
|
849
|
-
/******/
|
|
850
|
-
/******/ __webpack_require__.$Refresh$.init();
|
|
851
|
-
/******/ try {
|
|
852
|
-
/******/ modules[moduleId].call(module.exports, module, module.exports, hotCreateRequire(moduleId));
|
|
853
|
-
/******/ } finally {
|
|
854
|
-
/******/ __webpack_require__.$Refresh$.cleanup(moduleId);
|
|
855
|
-
/******/ }
|
|
856
|
-
/******/
|
|
857
|
-
/******/
|
|
858
|
-
/******/ // Flag the module as loaded
|
|
859
|
-
/******/ module.l = true;
|
|
860
|
-
/******/
|
|
861
|
-
/******/ // Return the exports of the module
|
|
862
|
-
/******/ return module.exports;
|
|
863
|
-
/******/ }
|
|
864
|
-
/******/
|
|
865
|
-
/******/
|
|
866
|
-
/******/ // expose the modules object (__webpack_modules__)
|
|
867
|
-
/******/ __webpack_require__.m = modules;
|
|
868
|
-
/******/
|
|
869
|
-
/******/ // expose the module cache
|
|
870
|
-
/******/ __webpack_require__.c = installedModules;
|
|
871
|
-
/******/
|
|
872
|
-
/******/ // define getter function for harmony exports
|
|
873
|
-
/******/ __webpack_require__.d = function(exports, name, getter) {
|
|
874
|
-
/******/ if(!__webpack_require__.o(exports, name)) {
|
|
875
|
-
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
|
876
|
-
/******/ }
|
|
877
|
-
/******/ };
|
|
878
|
-
/******/
|
|
879
|
-
/******/ // define __esModule on exports
|
|
880
|
-
/******/ __webpack_require__.r = function(exports) {
|
|
881
|
-
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
882
|
-
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
883
|
-
/******/ }
|
|
884
|
-
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
885
|
-
/******/ };
|
|
886
|
-
/******/
|
|
887
|
-
/******/ // create a fake namespace object
|
|
888
|
-
/******/ // mode & 1: value is a module id, require it
|
|
889
|
-
/******/ // mode & 2: merge all properties of value into the ns
|
|
890
|
-
/******/ // mode & 4: return value when already ns object
|
|
891
|
-
/******/ // mode & 8|1: behave like require
|
|
892
|
-
/******/ __webpack_require__.t = function(value, mode) {
|
|
893
|
-
/******/ if(mode & 1) value = __webpack_require__(value);
|
|
894
|
-
/******/ if(mode & 8) return value;
|
|
895
|
-
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
|
896
|
-
/******/ var ns = Object.create(null);
|
|
897
|
-
/******/ __webpack_require__.r(ns);
|
|
898
|
-
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
|
899
|
-
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
|
900
|
-
/******/ return ns;
|
|
901
|
-
/******/ };
|
|
902
|
-
/******/
|
|
903
|
-
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
904
|
-
/******/ __webpack_require__.n = function(module) {
|
|
905
|
-
/******/ var getter = module && module.__esModule ?
|
|
906
|
-
/******/ function getDefault() { return module['default']; } :
|
|
907
|
-
/******/ function getModuleExports() { return module; };
|
|
908
|
-
/******/ __webpack_require__.d(getter, 'a', getter);
|
|
909
|
-
/******/ return getter;
|
|
910
|
-
/******/ };
|
|
911
|
-
/******/
|
|
912
|
-
/******/ // Object.prototype.hasOwnProperty.call
|
|
913
|
-
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
|
914
|
-
/******/
|
|
915
|
-
/******/ // __webpack_public_path__
|
|
916
|
-
/******/ __webpack_require__.p = "/";
|
|
917
|
-
/******/
|
|
918
|
-
/******/ // __webpack_hash__
|
|
919
|
-
/******/ __webpack_require__.h = function() { return hotCurrentHash; };
|
|
920
|
-
/******/
|
|
921
|
-
/******/ __webpack_require__.$Refresh$ = {
|
|
922
|
-
/******/ init: function() {
|
|
923
|
-
/******/ __webpack_require__.$Refresh$.cleanup = function() { return undefined; };
|
|
924
|
-
/******/ __webpack_require__.$Refresh$.register = function() { return undefined; };
|
|
925
|
-
/******/ __webpack_require__.$Refresh$.runtime = {};
|
|
926
|
-
/******/ __webpack_require__.$Refresh$.signature = function() { return function(type) { return type; }; };
|
|
927
|
-
/******/ },
|
|
928
|
-
/******/ setup: function(currentModuleId) {
|
|
929
|
-
/******/ var prevCleanup = __webpack_require__.$Refresh$.cleanup;
|
|
930
|
-
/******/ var prevReg = __webpack_require__.$Refresh$.register;
|
|
931
|
-
/******/ var prevSig = __webpack_require__.$Refresh$.signature;
|
|
932
|
-
/******/
|
|
933
|
-
/******/ __webpack_require__.$Refresh$.register = function(type, id) {
|
|
934
|
-
/******/ var typeId = currentModuleId + " " + id;
|
|
935
|
-
/******/ __webpack_require__.$Refresh$.runtime.register(type, typeId);
|
|
936
|
-
/******/ }
|
|
937
|
-
/******/
|
|
938
|
-
/******/ __webpack_require__.$Refresh$.signature = __webpack_require__.$Refresh$.runtime.createSignatureFunctionForTransform;
|
|
939
|
-
/******/
|
|
940
|
-
/******/ __webpack_require__.$Refresh$.cleanup = function(cleanupModuleId) {
|
|
941
|
-
/******/ if (currentModuleId === cleanupModuleId) {
|
|
942
|
-
/******/ __webpack_require__.$Refresh$.register = prevReg;
|
|
943
|
-
/******/ __webpack_require__.$Refresh$.signature = prevSig;
|
|
944
|
-
/******/ __webpack_require__.$Refresh$.cleanup = prevCleanup;
|
|
945
|
-
/******/ }
|
|
946
|
-
/******/ }
|
|
947
|
-
/******/ },
|
|
948
|
-
/******/ };
|
|
949
|
-
/******/
|
|
950
|
-
/******/ var jsonpArray = this["webpackJsonp@cloudbase/weda-ui"] = this["webpackJsonp@cloudbase/weda-ui"] || [];
|
|
951
|
-
/******/ var oldJsonpFunction = jsonpArray.push.bind(jsonpArray);
|
|
952
|
-
/******/ jsonpArray.push = webpackJsonpCallback;
|
|
953
|
-
/******/ jsonpArray = jsonpArray.slice();
|
|
954
|
-
/******/ for(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);
|
|
955
|
-
/******/ var parentJsonpFunction = oldJsonpFunction;
|
|
956
|
-
/******/
|
|
957
|
-
/******/
|
|
958
|
-
/******/ // run deferred modules from other chunks
|
|
959
|
-
/******/ checkDeferredModules();
|
|
960
|
-
/******/ })
|
|
961
|
-
/************************************************************************/
|
|
962
|
-
/******/ ([]);
|
|
963
|
-
//# sourceMappingURL=bundle.js.map
|