one-design-next 0.0.4-alpha.100
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/LICENSE +21 -0
- package/README.md +134 -0
- package/dist/_util/canUseDom.d.ts +1 -0
- package/dist/_util/canUseDom.js +3 -0
- package/dist/_util/color.d.ts +103 -0
- package/dist/_util/color.js +250 -0
- package/dist/_util/date.d.ts +53 -0
- package/dist/_util/date.js +657 -0
- package/dist/_util/focusManager.d.ts +12 -0
- package/dist/_util/focusManager.js +56 -0
- package/dist/_util/queueMtPolyfill.d.ts +5 -0
- package/dist/_util/queueMtPolyfill.js +19 -0
- package/dist/_util/time.d.ts +44 -0
- package/dist/_util/time.js +150 -0
- package/dist/_util/useActive.d.ts +6 -0
- package/dist/_util/useActive.js +25 -0
- package/dist/_util/useControlledState.d.ts +8 -0
- package/dist/_util/useControlledState.js +30 -0
- package/dist/_util/useLayoutEffect.d.ts +4 -0
- package/dist/_util/useLayoutEffect.js +30 -0
- package/dist/alert/index.d.ts +63 -0
- package/dist/alert/index.js +137 -0
- package/dist/alert/style/index.css +184 -0
- package/dist/alert/style/index.d.ts +2 -0
- package/dist/alert/style/index.js +2 -0
- package/dist/auto-complete/index.d.ts +64 -0
- package/dist/auto-complete/index.js +149 -0
- package/dist/avatar/index.d.ts +68 -0
- package/dist/avatar/index.js +177 -0
- package/dist/avatar/primitive.d.ts +6 -0
- package/dist/avatar/primitive.js +23 -0
- package/dist/avatar/style/index.css +74 -0
- package/dist/avatar/style/index.d.ts +2 -0
- package/dist/avatar/style/index.js +2 -0
- package/dist/button/index.d.ts +15 -0
- package/dist/button/index.js +64 -0
- package/dist/button/style/index.css +338 -0
- package/dist/button/style/index.d.ts +2 -0
- package/dist/button/style/index.js +2 -0
- package/dist/calendar/index.d.ts +25 -0
- package/dist/calendar/index.js +379 -0
- package/dist/calendar/style/index.css +5 -0
- package/dist/calendar/style/index.d.ts +2 -0
- package/dist/calendar/style/index.js +2 -0
- package/dist/card/header.d.ts +26 -0
- package/dist/card/header.js +37 -0
- package/dist/card/index.d.ts +24 -0
- package/dist/card/index.js +31 -0
- package/dist/card/style/index.css +141 -0
- package/dist/card/style/index.d.ts +1 -0
- package/dist/card/style/index.js +1 -0
- package/dist/cascader/CascaderOptionContent.d.ts +20 -0
- package/dist/cascader/CascaderOptionContent.js +85 -0
- package/dist/cascader/Panel.d.ts +53 -0
- package/dist/cascader/Panel.js +131 -0
- package/dist/cascader/index.d.ts +59 -0
- package/dist/cascader/index.js +436 -0
- package/dist/cascader/style/index.css +414 -0
- package/dist/cascader/style/index.d.ts +2 -0
- package/dist/cascader/style/index.js +2 -0
- package/dist/cascader/utils.d.ts +14 -0
- package/dist/cascader/utils.js +109 -0
- package/dist/chart/index.d.ts +14 -0
- package/dist/chart/index.js +11 -0
- package/dist/chart/style/index.css +1 -0
- package/dist/chart/style/index.d.ts +2 -0
- package/dist/chart/style/index.js +2 -0
- package/dist/checkbox/Checkbox.d.ts +77 -0
- package/dist/checkbox/Checkbox.js +178 -0
- package/dist/checkbox/Context.d.ts +35 -0
- package/dist/checkbox/Context.js +2 -0
- package/dist/checkbox/Group.d.ts +68 -0
- package/dist/checkbox/Group.js +151 -0
- package/dist/checkbox/index.d.ts +5 -0
- package/dist/checkbox/index.js +3 -0
- package/dist/checkbox/style/index.css +330 -0
- package/dist/checkbox/style/index.d.ts +2 -0
- package/dist/checkbox/style/index.js +2 -0
- package/dist/collapse/index.d.ts +43 -0
- package/dist/collapse/index.js +111 -0
- package/dist/collapse/primitive.d.ts +21 -0
- package/dist/collapse/primitive.js +103 -0
- package/dist/collapse/style/index.css +59 -0
- package/dist/collapse/style/index.d.ts +2 -0
- package/dist/collapse/style/index.js +2 -0
- package/dist/color-picker/index.d.ts +55 -0
- package/dist/color-picker/index.js +588 -0
- package/dist/color-picker/style/index.css +135 -0
- package/dist/color-picker/style/index.d.ts +2 -0
- package/dist/color-picker/style/index.js +2 -0
- package/dist/config-provider/index.d.ts +46 -0
- package/dist/config-provider/index.js +37 -0
- package/dist/date-picker/MonthPicker.d.ts +31 -0
- package/dist/date-picker/MonthPicker.js +161 -0
- package/dist/date-picker/QuarterPicker.d.ts +36 -0
- package/dist/date-picker/QuarterPicker.js +168 -0
- package/dist/date-picker/YearPicker.d.ts +13 -0
- package/dist/date-picker/YearPicker.js +84 -0
- package/dist/date-picker/index.d.ts +240 -0
- package/dist/date-picker/index.js +1249 -0
- package/dist/date-picker/style/index.css +511 -0
- package/dist/date-picker/style/index.d.ts +2 -0
- package/dist/date-picker/style/index.js +2 -0
- package/dist/date-range-picker/index.d.ts +58 -0
- package/dist/date-range-picker/index.js +1043 -0
- package/dist/dialog/index.d.ts +139 -0
- package/dist/dialog/index.js +300 -0
- package/dist/dialog/style/index.css +228 -0
- package/dist/dialog/style/index.d.ts +2 -0
- package/dist/dialog/style/index.js +2 -0
- package/dist/dialog/useModalPosition.d.ts +6 -0
- package/dist/dialog/useModalPosition.js +34 -0
- package/dist/drawer/index.d.ts +92 -0
- package/dist/drawer/index.js +214 -0
- package/dist/drawer/style/index.css +244 -0
- package/dist/drawer/style/index.d.ts +2 -0
- package/dist/drawer/style/index.js +2 -0
- package/dist/dropdown/index.d.ts +91 -0
- package/dist/dropdown/index.js +846 -0
- package/dist/dropdown/style/index.css +206 -0
- package/dist/dropdown/style/index.d.ts +2 -0
- package/dist/dropdown/style/index.js +2 -0
- package/dist/ellipsis-text/index.d.ts +19 -0
- package/dist/ellipsis-text/index.js +97 -0
- package/dist/ellipsis-text/style/index.css +1 -0
- package/dist/ellipsis-text/style/index.d.ts +2 -0
- package/dist/ellipsis-text/style/index.js +2 -0
- package/dist/empty/index.d.ts +20 -0
- package/dist/empty/index.js +2398 -0
- package/dist/empty/style/index.css +80 -0
- package/dist/empty/style/index.d.ts +2 -0
- package/dist/empty/style/index.js +2 -0
- package/dist/form/index.d.ts +106 -0
- package/dist/form/index.js +272 -0
- package/dist/form/style/index.css +84 -0
- package/dist/form/style/index.d.ts +2 -0
- package/dist/form/style/index.js +2 -0
- package/dist/hover-fill/index.d.ts +50 -0
- package/dist/hover-fill/index.js +258 -0
- package/dist/hover-fill/style/index.css +35 -0
- package/dist/hover-fill/style/index.d.ts +2 -0
- package/dist/hover-fill/style/index.js +2 -0
- package/dist/icon/index.d.ts +11 -0
- package/dist/icon/index.js +102 -0
- package/dist/icon/style/index.css +15 -0
- package/dist/icon/style/index.d.ts +2 -0
- package/dist/icon/style/index.js +2 -0
- package/dist/icon/svg/alert/alert-circle-filled.svg +1 -0
- package/dist/icon/svg/alert/alert-circle.svg +1 -0
- package/dist/icon/svg/alert/help-circle-filled.svg +1 -0
- package/dist/icon/svg/alert/help-circle.svg +1 -0
- package/dist/icon/svg/alert/info-circle-filled.svg +1 -0
- package/dist/icon/svg/alert/info-circle.svg +1 -0
- package/dist/icon/svg/alert/stop.svg +1 -0
- package/dist/icon/svg/alert/warning-filled.svg +1 -0
- package/dist/icon/svg/alert/warning.svg +1 -0
- package/dist/icon/svg/content/QRcode.svg +1 -0
- package/dist/icon/svg/content/bell-filled.svg +1 -0
- package/dist/icon/svg/content/bell.svg +1 -0
- package/dist/icon/svg/content/bidding.svg +1 -0
- package/dist/icon/svg/content/calendar.svg +1 -0
- package/dist/icon/svg/content/code.svg +1 -0
- package/dist/icon/svg/content/customColumn.svg +1 -0
- package/dist/icon/svg/content/data.svg +1 -0
- package/dist/icon/svg/content/dataReport-filled.svg +1 -0
- package/dist/icon/svg/content/dataReport.svg +1 -0
- package/dist/icon/svg/content/download-1.svg +1 -0
- package/dist/icon/svg/content/download-filled.svg +1 -0
- package/dist/icon/svg/content/download.svg +1 -0
- package/dist/icon/svg/content/exchange.svg +1 -0
- package/dist/icon/svg/content/filter-filled.svg +1 -0
- package/dist/icon/svg/content/filter.svg +1 -0
- package/dist/icon/svg/content/hot-filled.svg +1 -0
- package/dist/icon/svg/content/hot.svg +1 -0
- package/dist/icon/svg/content/link.svg +1 -0
- package/dist/icon/svg/content/location.svg +1 -0
- package/dist/icon/svg/content/maxSize.svg +1 -0
- package/dist/icon/svg/content/mobile-filled.svg +1 -0
- package/dist/icon/svg/content/mobile.svg +1 -0
- package/dist/icon/svg/content/mute.svg +1 -0
- package/dist/icon/svg/content/mutiImage-filled.svg +1 -0
- package/dist/icon/svg/content/mutiImage.svg +1 -0
- package/dist/icon/svg/content/refresh.svg +1 -0
- package/dist/icon/svg/content/report.svg +1 -0
- package/dist/icon/svg/content/save.svg +1 -0
- package/dist/icon/svg/content/search-bold.svg +1 -0
- package/dist/icon/svg/content/search-filled.svg +1 -0
- package/dist/icon/svg/content/search.svg +1 -0
- package/dist/icon/svg/content/setting.svg +1 -0
- package/dist/icon/svg/content/share.svg +1 -0
- package/dist/icon/svg/content/sort.svg +1 -0
- package/dist/icon/svg/content/sound.svg +1 -0
- package/dist/icon/svg/content/sticker-filled.svg +1 -0
- package/dist/icon/svg/content/sticker.svg +1 -0
- package/dist/icon/svg/content/tag-filled.svg +1 -0
- package/dist/icon/svg/content/tag.svg +1 -0
- package/dist/icon/svg/content/thumbDown-filled.svg +1 -0
- package/dist/icon/svg/content/thumbDown.svg +1 -0
- package/dist/icon/svg/content/thumbUp-filled.svg +1 -0
- package/dist/icon/svg/content/thumbUp.svg +1 -0
- package/dist/icon/svg/content/time-bold.svg +1 -0
- package/dist/icon/svg/content/time.svg +1 -0
- package/dist/icon/svg/content/verify.svg +1 -0
- package/dist/icon/svg/content/video.svg +1 -0
- package/dist/icon/svg/content/videoScreenshot.svg +1 -0
- package/dist/icon/svg/content/zoomIn.svg +1 -0
- package/dist/icon/svg/content/zoomOut.svg +1 -0
- package/dist/icon/svg/data/compare.svg +1 -0
- package/dist/icon/svg/data/histogram.svg +1 -0
- package/dist/icon/svg/editor/cancel-circle-filled.svg +1 -0
- package/dist/icon/svg/editor/cancel-circle.svg +1 -0
- package/dist/icon/svg/editor/cancel.svg +1 -0
- package/dist/icon/svg/editor/check-circle-filled.svg +1 -0
- package/dist/icon/svg/editor/check-circle.svg +1 -0
- package/dist/icon/svg/editor/check.svg +1 -0
- package/dist/icon/svg/editor/copy.svg +1 -0
- package/dist/icon/svg/editor/custom-filled.svg +1 -0
- package/dist/icon/svg/editor/custom.svg +1 -0
- package/dist/icon/svg/editor/delete.svg +1 -0
- package/dist/icon/svg/editor/deleteAD-filled.svg +1 -0
- package/dist/icon/svg/editor/draggable.svg +1 -0
- package/dist/icon/svg/editor/edit.svg +1 -0
- package/dist/icon/svg/editor/import.svg +1 -0
- package/dist/icon/svg/editor/minus-circle-filled.svg +1 -0
- package/dist/icon/svg/editor/minus-circle.svg +1 -0
- package/dist/icon/svg/editor/minus.svg +1 -0
- package/dist/icon/svg/editor/modify-bold.svg +1 -0
- package/dist/icon/svg/editor/modify.svg +1 -0
- package/dist/icon/svg/editor/multiCreate.svg +1 -0
- package/dist/icon/svg/editor/mutiSelect-filled.svg +1 -0
- package/dist/icon/svg/editor/mutiSelect.svg +1 -0
- package/dist/icon/svg/editor/pause-filled.svg +1 -0
- package/dist/icon/svg/editor/play-filled.svg +1 -0
- package/dist/icon/svg/editor/plus-circle-filled.svg +1 -0
- package/dist/icon/svg/editor/plus-circle.svg +1 -0
- package/dist/icon/svg/editor/plus.svg +1 -0
- package/dist/icon/svg/editor/send.svg +1 -0
- package/dist/icon/svg/editor/subdivide.svg +1 -0
- package/dist/icon/svg/navigation/arrowDown-filled.svg +1 -0
- package/dist/icon/svg/navigation/arrowDown.svg +1 -0
- package/dist/icon/svg/navigation/arrowLeft-filled.svg +1 -0
- package/dist/icon/svg/navigation/arrowLeft.svg +1 -0
- package/dist/icon/svg/navigation/arrowRight-filled.svg +1 -0
- package/dist/icon/svg/navigation/arrowRight.svg +1 -0
- package/dist/icon/svg/navigation/arrowUp-filled.svg +1 -0
- package/dist/icon/svg/navigation/arrowUp.svg +1 -0
- package/dist/icon/svg/navigation/bottom-filled.svg +1 -0
- package/dist/icon/svg/navigation/bottom.svg +1 -0
- package/dist/icon/svg/navigation/doubleLeft-filled.svg +1 -0
- package/dist/icon/svg/navigation/doubleLeft.svg +1 -0
- package/dist/icon/svg/navigation/doubleRight-filled.svg +1 -0
- package/dist/icon/svg/navigation/doubleRight.svg +1 -0
- package/dist/icon/svg/navigation/down-bold.svg +1 -0
- package/dist/icon/svg/navigation/down-filled.svg +1 -0
- package/dist/icon/svg/navigation/down.svg +1 -0
- package/dist/icon/svg/navigation/fall-filled.svg +1 -0
- package/dist/icon/svg/navigation/fold.svg +1 -0
- package/dist/icon/svg/navigation/fullScreen.svg +1 -0
- package/dist/icon/svg/navigation/left-bold.svg +1 -0
- package/dist/icon/svg/navigation/left-filled.svg +1 -0
- package/dist/icon/svg/navigation/left.svg +1 -0
- package/dist/icon/svg/navigation/leftFirst-filled.svg +1 -0
- package/dist/icon/svg/navigation/leftFirst.svg +1 -0
- package/dist/icon/svg/navigation/logout.svg +1 -0
- package/dist/icon/svg/navigation/menu.svg +1 -0
- package/dist/icon/svg/navigation/menuLeft-bold.svg +1 -0
- package/dist/icon/svg/navigation/menuLeft.svg +1 -0
- package/dist/icon/svg/navigation/menuRight-bold.svg +1 -0
- package/dist/icon/svg/navigation/menuRight.svg +1 -0
- package/dist/icon/svg/navigation/more-vertical.svg +1 -0
- package/dist/icon/svg/navigation/more.svg +1 -0
- package/dist/icon/svg/navigation/pointerLeft-filled.svg +1 -0
- package/dist/icon/svg/navigation/pointerRight-filled.svg +1 -0
- package/dist/icon/svg/navigation/right-bold.svg +1 -0
- package/dist/icon/svg/navigation/right-filled.svg +1 -0
- package/dist/icon/svg/navigation/right.svg +1 -0
- package/dist/icon/svg/navigation/rightLast-filled.svg +1 -0
- package/dist/icon/svg/navigation/rightLast.svg +1 -0
- package/dist/icon/svg/navigation/rise-filled.svg +1 -0
- package/dist/icon/svg/navigation/top-filled.svg +1 -0
- package/dist/icon/svg/navigation/top.svg +1 -0
- package/dist/icon/svg/navigation/unfold-filled.svg +1 -0
- package/dist/icon/svg/navigation/unfold.svg +1 -0
- package/dist/icon/svg/navigation/up-bold.svg +1 -0
- package/dist/icon/svg/navigation/up-filled.svg +1 -0
- package/dist/icon/svg/navigation/up.svg +1 -0
- package/dist/icon/svg/product/AIFile.svg +1 -0
- package/dist/icon/svg/product/LandingPage.svg +1 -0
- package/dist/icon/svg/product/addressBook.svg +1 -0
- package/dist/icon/svg/product/alarmClock.svg +1 -0
- package/dist/icon/svg/product/asset-square.svg +1 -0
- package/dist/icon/svg/product/assetProtecting.svg +1 -0
- package/dist/icon/svg/product/autoAD-square-filled.svg +1 -0
- package/dist/icon/svg/product/card-distribute.svg +1 -0
- package/dist/icon/svg/product/channels-square-filled.svg +1 -0
- package/dist/icon/svg/product/channels.svg +1 -0
- package/dist/icon/svg/product/chart.svg +3 -0
- package/dist/icon/svg/product/chatBubble-filled.svg +1 -0
- package/dist/icon/svg/product/checkBadge.svg +1 -0
- package/dist/icon/svg/product/comments.svg +1 -0
- package/dist/icon/svg/product/container.svg +1 -0
- package/dist/icon/svg/product/dataAuth.svg +1 -0
- package/dist/icon/svg/product/dataBoard.svg +1 -0
- package/dist/icon/svg/product/dataBox.svg +1 -0
- package/dist/icon/svg/product/dataFolder.svg +1 -0
- package/dist/icon/svg/product/dataRising.svg +1 -0
- package/dist/icon/svg/product/detect.svg +1 -0
- package/dist/icon/svg/product/exposure-filled.svg +1 -0
- package/dist/icon/svg/product/extendedConfig.svg +1 -0
- package/dist/icon/svg/product/file-filled.svg +1 -0
- package/dist/icon/svg/product/flag.svg +1 -0
- package/dist/icon/svg/product/flame.svg +1 -0
- package/dist/icon/svg/product/folderZip.svg +1 -0
- package/dist/icon/svg/product/folderzip-bold.svg +1 -0
- package/dist/icon/svg/product/guideBook.svg +1 -0
- package/dist/icon/svg/product/hosting.svg +1 -0
- package/dist/icon/svg/product/icon-outlined.svg +1 -0
- package/dist/icon/svg/product/idea-bold.svg +1 -0
- package/dist/icon/svg/product/idea.svg +1 -0
- package/dist/icon/svg/product/image-bold.svg +1 -0
- package/dist/icon/svg/product/image-filled.svg +1 -0
- package/dist/icon/svg/product/image.svg +1 -0
- package/dist/icon/svg/product/images.svg +1 -0
- package/dist/icon/svg/product/keyword.svg +1 -0
- package/dist/icon/svg/product/linkSquare.svg +1 -0
- package/dist/icon/svg/product/lock.svg +1 -0
- package/dist/icon/svg/product/magic-filled.svg +1 -0
- package/dist/icon/svg/product/magic.svg +1 -0
- package/dist/icon/svg/product/miniProgram.svg +1 -0
- package/dist/icon/svg/product/minigame-filled.svg +1 -0
- package/dist/icon/svg/product/mobilePage.svg +1 -0
- package/dist/icon/svg/product/moments-filled.svg +1 -0
- package/dist/icon/svg/product/notepad-bold.svg +1 -0
- package/dist/icon/svg/product/notepad.svg +1 -0
- package/dist/icon/svg/product/offiaccount-filled.svg +1 -0
- package/dist/icon/svg/product/playing.svg +1 -0
- package/dist/icon/svg/product/qualification.svg +1 -0
- package/dist/icon/svg/product/quickFile.svg +1 -0
- package/dist/icon/svg/product/ringStruckture.svg +1 -0
- package/dist/icon/svg/product/searchAD-filled.svg +1 -0
- package/dist/icon/svg/product/searchAD.svg +1 -0
- package/dist/icon/svg/product/shield-filled.svg +1 -0
- package/dist/icon/svg/product/shield.svg +1 -0
- package/dist/icon/svg/product/shop.svg +1 -0
- package/dist/icon/svg/product/shopping.svg +1 -0
- package/dist/icon/svg/product/star-filled.svg +1 -0
- package/dist/icon/svg/product/star.svg +1 -0
- package/dist/icon/svg/product/support-bold.svg +1 -0
- package/dist/icon/svg/product/target.svg +1 -0
- package/dist/icon/svg/product/targeting.svg +1 -0
- package/dist/icon/svg/product/task-filled.svg +1 -0
- package/dist/icon/svg/product/task.svg +1 -0
- package/dist/icon/svg/product/template.svg +1 -0
- package/dist/icon/svg/product/templateBag.svg +1 -0
- package/dist/icon/svg/product/text.svg +1 -0
- package/dist/icon/svg/product/treeStructure.svg +1 -0
- package/dist/icon/svg/product/user-add.svg +3 -0
- package/dist/icon/svg/product/user-circle.svg +1 -0
- package/dist/icon/svg/product/user-edit.svg +1 -0
- package/dist/icon/svg/product/user-pack.svg +1 -0
- package/dist/icon/svg/product/userList.svg +1 -0
- package/dist/icon/svg/product/userPack.svg +1 -0
- package/dist/icon/svg/product/users-bold.svg +1 -0
- package/dist/icon/svg/product/users.svg +1 -0
- package/dist/icon/svg/product/videoBag-filled.svg +1 -0
- package/dist/icon/svg/product/viewMask.svg +1 -0
- package/dist/icon/svg/product/wallet.svg +1 -0
- package/dist/icon/svg/product/wechatBubble-filled.svg +1 -0
- package/dist/icon/svg/product/wechatBubble.svg +1 -0
- package/dist/icon/svg/product/wechatSearch.svg +1 -0
- package/dist/icon/svg/product/writing.svg +1 -0
- package/dist/icon/svg-data.d.ts +479 -0
- package/dist/icon/svg-data.js +481 -0
- package/dist/icon/test-icons.html +122 -0
- package/dist/icon/types.d.ts +3 -0
- package/dist/icon/types.js +5 -0
- package/dist/index.d.ts +52 -0
- package/dist/index.js +57 -0
- package/dist/input/index.d.ts +82 -0
- package/dist/input/index.js +451 -0
- package/dist/input/style/index.css +244 -0
- package/dist/input/style/index.d.ts +2 -0
- package/dist/input/style/index.js +2 -0
- package/dist/input-number/index.d.ts +41 -0
- package/dist/input-number/index.js +431 -0
- package/dist/input-number/style/index.css +65 -0
- package/dist/input-number/style/index.d.ts +2 -0
- package/dist/input-number/style/index.js +2 -0
- package/dist/input-otp/index.d.ts +71 -0
- package/dist/input-otp/index.js +87 -0
- package/dist/input-otp/style/index.css +110 -0
- package/dist/input-otp/style/index.d.ts +2 -0
- package/dist/input-otp/style/index.js +2 -0
- package/dist/layout/index.d.ts +3 -0
- package/dist/layout/index.js +3 -0
- package/dist/layout/layout.d.ts +32 -0
- package/dist/layout/layout.js +203 -0
- package/dist/layout/mp-layout.d.ts +68 -0
- package/dist/layout/mp-layout.js +204 -0
- package/dist/layout/style/index.css +464 -0
- package/dist/layout/style/index.d.ts +2 -0
- package/dist/layout/style/index.js +2 -0
- package/dist/link/index.d.ts +37 -0
- package/dist/link/index.js +46 -0
- package/dist/link/style/index.css +39 -0
- package/dist/link/style/index.d.ts +2 -0
- package/dist/link/style/index.js +2 -0
- package/dist/loading/index.d.ts +11 -0
- package/dist/loading/index.js +46 -0
- package/dist/loading/style/index.css +84 -0
- package/dist/loading/style/index.d.ts +2 -0
- package/dist/loading/style/index.js +2 -0
- package/dist/message/MessageBase.d.ts +86 -0
- package/dist/message/MessageBase.js +395 -0
- package/dist/message/MessageReact16.d.ts +2 -0
- package/dist/message/MessageReact16.js +86 -0
- package/dist/message/MessageReact18.d.ts +2 -0
- package/dist/message/MessageReact18.js +98 -0
- package/dist/message/index.d.ts +3 -0
- package/dist/message/index.js +7 -0
- package/dist/message/style/index.css +121 -0
- package/dist/message/style/index.d.ts +2 -0
- package/dist/message/style/index.js +2 -0
- package/dist/modal-base/gap.d.ts +14 -0
- package/dist/modal-base/gap.js +31 -0
- package/dist/modal-base/index.d.ts +26 -0
- package/dist/modal-base/index.js +114 -0
- package/dist/number-flow/index.d.ts +13 -0
- package/dist/number-flow/index.js +25 -0
- package/dist/number-flow/style/index.css +1 -0
- package/dist/number-flow/style/index.d.ts +2 -0
- package/dist/number-flow/style/index.js +2 -0
- package/dist/pagination/index.d.ts +63 -0
- package/dist/pagination/index.js +424 -0
- package/dist/pagination/style/index.css +135 -0
- package/dist/pagination/style/index.d.ts +2 -0
- package/dist/pagination/style/index.js +2 -0
- package/dist/pop-base/index.d.ts +143 -0
- package/dist/pop-base/index.js +381 -0
- package/dist/pop-base/mergeProps.d.ts +37 -0
- package/dist/pop-base/mergeProps.js +144 -0
- package/dist/pop-base/style/index.css +123 -0
- package/dist/pop-base/style/index.d.ts +2 -0
- package/dist/pop-base/style/index.js +2 -0
- package/dist/pop-base/useForkRef.d.ts +5 -0
- package/dist/pop-base/useForkRef.js +52 -0
- package/dist/popover/index.d.ts +4 -0
- package/dist/popover/index.js +9 -0
- package/dist/radio/index.d.ts +35 -0
- package/dist/radio/index.js +77 -0
- package/dist/radio/primitive.d.ts +5 -0
- package/dist/radio/primitive.js +28 -0
- package/dist/radio/style/index.css +224 -0
- package/dist/radio/style/index.d.ts +2 -0
- package/dist/radio/style/index.js +2 -0
- package/dist/scroll-area/index.d.ts +29 -0
- package/dist/scroll-area/index.js +118 -0
- package/dist/scroll-area/style/index.css +107 -0
- package/dist/scroll-area/style/index.d.ts +2 -0
- package/dist/scroll-area/style/index.js +2 -0
- package/dist/select/index.d.ts +86 -0
- package/dist/select/index.js +275 -0
- package/dist/select/style/index.css +1473 -0
- package/dist/select/style/index.d.ts +2 -0
- package/dist/select/style/index.js +2 -0
- package/dist/select/useIcons.d.ts +25 -0
- package/dist/select/useIcons.js +80 -0
- package/dist/select/utils.d.ts +9 -0
- package/dist/select/utils.js +40 -0
- package/dist/slider/index.d.ts +69 -0
- package/dist/slider/index.js +264 -0
- package/dist/slider/style/index.css +210 -0
- package/dist/slider/style/index.d.ts +2 -0
- package/dist/slider/style/index.js +2 -0
- package/dist/style/base.css +296 -0
- package/dist/style/index.d.ts +7 -0
- package/dist/style/index.js +18 -0
- package/dist/style/theme-adui.css +352 -0
- package/dist/switch/index.d.ts +12 -0
- package/dist/switch/index.js +55 -0
- package/dist/switch/style/index.css +149 -0
- package/dist/switch/style/index.d.ts +2 -0
- package/dist/switch/style/index.js +2 -0
- package/dist/table/TableCellContent.d.ts +20 -0
- package/dist/table/TableCellContent.js +82 -0
- package/dist/table/index.d.ts +97 -0
- package/dist/table/index.js +796 -0
- package/dist/table/style/index.css +301 -0
- package/dist/table/style/index.d.ts +2 -0
- package/dist/table/style/index.js +2 -0
- package/dist/table/useSelection.d.ts +13 -0
- package/dist/table/useSelection.js +268 -0
- package/dist/tabs/index.d.ts +51 -0
- package/dist/tabs/index.js +697 -0
- package/dist/tabs/style/index.css +305 -0
- package/dist/tabs/style/index.d.ts +2 -0
- package/dist/tabs/style/index.js +2 -0
- package/dist/text-swap/index.d.ts +58 -0
- package/dist/text-swap/index.js +280 -0
- package/dist/text-swap/style/index.css +29 -0
- package/dist/text-swap/style/index.d.ts +2 -0
- package/dist/text-swap/style/index.js +2 -0
- package/dist/time-picker/index.d.ts +67 -0
- package/dist/time-picker/index.js +945 -0
- package/dist/time-picker/style/index.css +153 -0
- package/dist/time-picker/style/index.d.ts +2 -0
- package/dist/time-picker/style/index.js +2 -0
- package/dist/tooltip/index.d.ts +10 -0
- package/dist/tooltip/index.js +178 -0
- package/dist/tree-select/index.d.ts +25 -0
- package/dist/tree-select/index.js +140 -0
- package/dist/tree-select/style/index.css +180 -0
- package/dist/tree-select/style/index.d.ts +1 -0
- package/dist/tree-select/style/index.js +1 -0
- package/dist/virtual-list/index.d.ts +98 -0
- package/dist/virtual-list/index.js +56 -0
- package/dist/virtual-list/style/index.css +9 -0
- package/dist/virtual-list/style/index.d.ts +2 -0
- package/dist/virtual-list/style/index.js +2 -0
- package/package.json +132 -0
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
4
|
+
var _excluded = ["bgClassName", "bgStyle", "children", "onMouseEnter", "onMouseLeave", "onMouseDown", "hoverColor", "activeColor", "disabled", "hoverCursor"];
|
|
5
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
6
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
7
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
8
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
9
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
10
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
11
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13
|
+
import React, { forwardRef, useContext, useEffect, useRef } from 'react';
|
|
14
|
+
import { ConfigContext } from "../config-provider";
|
|
15
|
+
import "./style";
|
|
16
|
+
var DEFAULT_HOVER_COLOR = 'rgba(33, 34, 38, 0.05)';
|
|
17
|
+
var DEFAULT_ACTIVE_COLOR = 'rgba(33, 34, 38, 0.08)';
|
|
18
|
+
var HoverFill = /*#__PURE__*/forwardRef(function (_ref, outerRef) {
|
|
19
|
+
var _ref$bgClassName = _ref.bgClassName,
|
|
20
|
+
bgClassName = _ref$bgClassName === void 0 ? '' : _ref$bgClassName,
|
|
21
|
+
_ref$bgStyle = _ref.bgStyle,
|
|
22
|
+
bgStyle = _ref$bgStyle === void 0 ? {} : _ref$bgStyle,
|
|
23
|
+
children = _ref.children,
|
|
24
|
+
onMouseEnter = _ref.onMouseEnter,
|
|
25
|
+
onMouseLeave = _ref.onMouseLeave,
|
|
26
|
+
onMouseDown = _ref.onMouseDown,
|
|
27
|
+
_ref$hoverColor = _ref.hoverColor,
|
|
28
|
+
hoverColor = _ref$hoverColor === void 0 ? DEFAULT_HOVER_COLOR : _ref$hoverColor,
|
|
29
|
+
_ref$activeColor = _ref.activeColor,
|
|
30
|
+
activeColor = _ref$activeColor === void 0 ? DEFAULT_ACTIVE_COLOR : _ref$activeColor,
|
|
31
|
+
_ref$disabled = _ref.disabled,
|
|
32
|
+
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
33
|
+
_ref$hoverCursor = _ref.hoverCursor,
|
|
34
|
+
hoverCursor = _ref$hoverCursor === void 0 ? 'pointer' : _ref$hoverCursor,
|
|
35
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
36
|
+
var _useContext = useContext(ConfigContext),
|
|
37
|
+
_useContext$hoverFill = _useContext.hoverFill,
|
|
38
|
+
hoverFillConfig = _useContext$hoverFill === void 0 ? {} : _useContext$hoverFill;
|
|
39
|
+
var innerRef = useRef(null);
|
|
40
|
+
var ref = outerRef || innerRef;
|
|
41
|
+
var bgRef = useRef(null);
|
|
42
|
+
var handleMouseEnter = function handleMouseEnter(e) {
|
|
43
|
+
var _window$odnHoverFillS, _window$odnHoverFillS2;
|
|
44
|
+
e.persist();
|
|
45
|
+
if (disabled) {
|
|
46
|
+
return;
|
|
47
|
+
}
|
|
48
|
+
if ((_window$odnHoverFillS = window.odnHoverFillState) !== null && _window$odnHoverFillS !== void 0 && _window$odnHoverFillS.timer) {
|
|
49
|
+
clearTimeout(window.odnHoverFillState.timer);
|
|
50
|
+
}
|
|
51
|
+
var root = ref.current || e.currentTarget;
|
|
52
|
+
if (onMouseEnter) {
|
|
53
|
+
onMouseEnter(e);
|
|
54
|
+
}
|
|
55
|
+
if (!root) {
|
|
56
|
+
return;
|
|
57
|
+
}
|
|
58
|
+
var _root$getBoundingClie = root.getBoundingClientRect(),
|
|
59
|
+
x = _root$getBoundingClie.x,
|
|
60
|
+
y = _root$getBoundingClie.y;
|
|
61
|
+
if (window.odnHoverFillState && window.odnHoverFillState.bgVisible && window.odnHoverFillState.bgNode && window.odnHoverFillState.baseNode && window.odnHoverFillState.baseNode !== root && ((_window$odnHoverFillS2 = window.odnHoverFillState.baseNode) === null || _window$odnHoverFillS2 === void 0 ? void 0 : _window$odnHoverFillS2.parentNode) === root.parentNode && hoverFillConfig.sharable) {
|
|
62
|
+
var _window$odnHoverFillS3 = window.odnHoverFillState,
|
|
63
|
+
bgX = _window$odnHoverFillS3.bgX,
|
|
64
|
+
bgY = _window$odnHoverFillS3.bgY,
|
|
65
|
+
bgScale = _window$odnHoverFillS3.bgScale,
|
|
66
|
+
baseNode = _window$odnHoverFillS3.baseNode;
|
|
67
|
+
var _baseNode$getBounding = baseNode.getBoundingClientRect(),
|
|
68
|
+
originX = _baseNode$getBounding.x,
|
|
69
|
+
originY = _baseNode$getBounding.y;
|
|
70
|
+
window.odnHoverFillState.bgNode.style.transformOrigin = '0 0';
|
|
71
|
+
window.odnHoverFillState.bgNode.style.width = root.offsetWidth + 'px';
|
|
72
|
+
window.odnHoverFillState.bgNode.style.height = root.offsetHeight + 'px';
|
|
73
|
+
window.odnHoverFillState.bgNode.style.transform = "translate3d(".concat(x - originX, "px, ").concat(y - originY, "px, 0) scale(").concat(bgScale, ")");
|
|
74
|
+
window.odnHoverFillState.bgNode.style.background = hoverColor;
|
|
75
|
+
} else {
|
|
76
|
+
var _window$odnHoverFillS4, _window$odnHoverFillS5, _root$parentElement;
|
|
77
|
+
var isNested = ((_window$odnHoverFillS4 = window.odnHoverFillState) === null || _window$odnHoverFillS4 === void 0 ? void 0 : _window$odnHoverFillS4.bgVisible) && ((_window$odnHoverFillS5 = window.odnHoverFillState) === null || _window$odnHoverFillS5 === void 0 ? void 0 : _window$odnHoverFillS5.bgNode) && ((_root$parentElement = root.parentElement) === null || _root$parentElement === void 0 ? void 0 : _root$parentElement.closest('[data-odn-hover-fill]'));
|
|
78
|
+
if (window.odnHoverFillState && window.odnHoverFillState.bgVisible && window.odnHoverFillState.bgNode) {
|
|
79
|
+
if (isNested) {
|
|
80
|
+
if (!window.odnHoverFillStateStack) {
|
|
81
|
+
window.odnHoverFillStateStack = [];
|
|
82
|
+
}
|
|
83
|
+
window.odnHoverFillStateStack.push(_objectSpread({}, window.odnHoverFillState));
|
|
84
|
+
} else {
|
|
85
|
+
window.odnHoverFillState.bgNode.style.background = 'transparent';
|
|
86
|
+
// window.odnHoverFillState.bgNode.style.transform = 'scale(var(--odn-hoverfill-scale-start))';
|
|
87
|
+
window.odnHoverFillState.bgNode.style.transition = '';
|
|
88
|
+
if (window.odnHoverFillStateStack) {
|
|
89
|
+
while (window.odnHoverFillStateStack.length > 0) {
|
|
90
|
+
var parentState = window.odnHoverFillStateStack.pop();
|
|
91
|
+
if (parentState !== null && parentState !== void 0 && parentState.bgNode) {
|
|
92
|
+
parentState.bgNode.style.background = 'transparent';
|
|
93
|
+
parentState.bgNode.style.transition = '';
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
var clientX = e.clientX,
|
|
100
|
+
clientY = e.clientY;
|
|
101
|
+
if (bgRef.current) {
|
|
102
|
+
var diagonal = Math.sqrt(Math.pow(root.offsetWidth, 2) + Math.pow(root.offsetHeight, 2));
|
|
103
|
+
var k = 8;
|
|
104
|
+
var scaleStart = Math.min(Math.max(0.92, 1 - k / diagonal), 1);
|
|
105
|
+
bgRef.current.style.setProperty('--odn-hoverfill-scale-start', scaleStart.toString());
|
|
106
|
+
if (!bgRef.current) {
|
|
107
|
+
return;
|
|
108
|
+
}
|
|
109
|
+
bgRef.current.style.width = root.offsetWidth + 'px';
|
|
110
|
+
bgRef.current.style.height = root.offsetHeight + 'px';
|
|
111
|
+
bgRef.current.style.transformOrigin = "".concat(clientX - x, "px ").concat(clientY - y, "px");
|
|
112
|
+
bgRef.current.style.background = hoverColor;
|
|
113
|
+
bgRef.current.style.transform = 'scale(1)';
|
|
114
|
+
bgRef.current.style.transition = '';
|
|
115
|
+
}
|
|
116
|
+
window.odnHoverFillState = {
|
|
117
|
+
bgVisible: true,
|
|
118
|
+
bgX: clientX - x,
|
|
119
|
+
bgY: clientY - y,
|
|
120
|
+
bgScale: 1,
|
|
121
|
+
baseNode: root,
|
|
122
|
+
bgNode: bgRef.current,
|
|
123
|
+
timer: 0
|
|
124
|
+
};
|
|
125
|
+
}
|
|
126
|
+
};
|
|
127
|
+
var handleMouseLeave = function handleMouseLeave(e) {
|
|
128
|
+
var _window$odnHoverFillS6;
|
|
129
|
+
e.persist();
|
|
130
|
+
if (disabled) {
|
|
131
|
+
return;
|
|
132
|
+
}
|
|
133
|
+
var root = ref.current || e.currentTarget;
|
|
134
|
+
if (root && e.relatedTarget instanceof Node && root.contains(e.relatedTarget)) {
|
|
135
|
+
return;
|
|
136
|
+
}
|
|
137
|
+
if ((_window$odnHoverFillS6 = window.odnHoverFillState) !== null && _window$odnHoverFillS6 !== void 0 && _window$odnHoverFillS6.timer) {
|
|
138
|
+
clearTimeout(window.odnHoverFillState.timer);
|
|
139
|
+
}
|
|
140
|
+
if (onMouseLeave) {
|
|
141
|
+
onMouseLeave(e);
|
|
142
|
+
}
|
|
143
|
+
if (!root) {
|
|
144
|
+
return;
|
|
145
|
+
}
|
|
146
|
+
window.odnHoverFillState.timer = window.setTimeout(function () {
|
|
147
|
+
if (window.odnHoverFillState.bgNode) {
|
|
148
|
+
window.odnHoverFillState.bgNode.style.transformOrigin = '';
|
|
149
|
+
window.odnHoverFillState.bgNode.style.background = 'transparent';
|
|
150
|
+
window.odnHoverFillState.bgNode.style.width = '';
|
|
151
|
+
window.odnHoverFillState.bgNode.style.height = '';
|
|
152
|
+
window.odnHoverFillState.bgNode.style.transform = '';
|
|
153
|
+
window.odnHoverFillState.bgNode.style.transition = '0s';
|
|
154
|
+
}
|
|
155
|
+
if (bgRef.current) {
|
|
156
|
+
bgRef.current.style.background = hoverColor;
|
|
157
|
+
bgRef.current.style.transform = 'scale(1)';
|
|
158
|
+
bgRef.current.style.transition = '0s';
|
|
159
|
+
}
|
|
160
|
+
setTimeout(function () {
|
|
161
|
+
var _window$odnHoverFillS7;
|
|
162
|
+
var clientX = e.clientX,
|
|
163
|
+
clientY = e.clientY;
|
|
164
|
+
var _root$getBoundingClie2 = root.getBoundingClientRect(),
|
|
165
|
+
x = _root$getBoundingClie2.x,
|
|
166
|
+
y = _root$getBoundingClie2.y;
|
|
167
|
+
var originX = clientX - x;
|
|
168
|
+
var originY = clientY - y;
|
|
169
|
+
if (originX < 0) {
|
|
170
|
+
originX = 0;
|
|
171
|
+
} else if (originX > root.offsetWidth) {
|
|
172
|
+
originX = root.offsetWidth;
|
|
173
|
+
}
|
|
174
|
+
if (originY < 0) {
|
|
175
|
+
originY = 0;
|
|
176
|
+
} else if (originY > root.offsetHeight) {
|
|
177
|
+
originY = root.offsetHeight;
|
|
178
|
+
}
|
|
179
|
+
if (bgRef.current) {
|
|
180
|
+
bgRef.current.style.transformOrigin = "".concat(originX, "px ").concat(originY, "px");
|
|
181
|
+
bgRef.current.style.background = 'transparent';
|
|
182
|
+
bgRef.current.style.transform = 'scale(var(--odn-hoverfill-scale-start))';
|
|
183
|
+
bgRef.current.style.transition = '';
|
|
184
|
+
}
|
|
185
|
+
if (((_window$odnHoverFillS7 = window.odnHoverFillStateStack) === null || _window$odnHoverFillS7 === void 0 ? void 0 : _window$odnHoverFillS7.length) > 0) {
|
|
186
|
+
window.odnHoverFillState = window.odnHoverFillStateStack.pop();
|
|
187
|
+
window.odnHoverFillState.timer = 0;
|
|
188
|
+
} else {
|
|
189
|
+
window.odnHoverFillState = {
|
|
190
|
+
timer: 0,
|
|
191
|
+
bgVisible: false,
|
|
192
|
+
bgX: 0,
|
|
193
|
+
bgY: 0,
|
|
194
|
+
bgScale: 0,
|
|
195
|
+
baseNode: null,
|
|
196
|
+
bgNode: null
|
|
197
|
+
};
|
|
198
|
+
}
|
|
199
|
+
}, 0);
|
|
200
|
+
}, 100);
|
|
201
|
+
};
|
|
202
|
+
var handleMouseDown = function handleMouseDown(e) {
|
|
203
|
+
e.persist();
|
|
204
|
+
if (disabled) {
|
|
205
|
+
return;
|
|
206
|
+
}
|
|
207
|
+
if (window.odnHoverFillState.bgVisible && window.odnHoverFillState.bgNode) {
|
|
208
|
+
window.odnHoverFillState.bgNode.style.background = hoverColor === DEFAULT_HOVER_COLOR || activeColor !== DEFAULT_ACTIVE_COLOR ? activeColor : hoverColor;
|
|
209
|
+
}
|
|
210
|
+
if (onMouseDown) {
|
|
211
|
+
onMouseDown(e);
|
|
212
|
+
}
|
|
213
|
+
window.addEventListener('mouseup', handleMouseUp, false);
|
|
214
|
+
};
|
|
215
|
+
var handleMouseUp = function handleMouseUp() {
|
|
216
|
+
window.removeEventListener('mouseup', handleMouseUp, false);
|
|
217
|
+
if (window.odnHoverFillState.bgNode) {
|
|
218
|
+
window.odnHoverFillState.bgNode.style.background = window.odnHoverFillState.bgVisible ? hoverColor : 'transparent';
|
|
219
|
+
}
|
|
220
|
+
};
|
|
221
|
+
useEffect(function () {
|
|
222
|
+
if (!window.odnHoverFillState) {
|
|
223
|
+
window.odnHoverFillState = {
|
|
224
|
+
bgVisible: false,
|
|
225
|
+
bgX: 0,
|
|
226
|
+
bgY: 0,
|
|
227
|
+
bgScale: 0,
|
|
228
|
+
baseNode: null,
|
|
229
|
+
bgNode: null,
|
|
230
|
+
timer: 0
|
|
231
|
+
};
|
|
232
|
+
}
|
|
233
|
+
if (!window.odnHoverFillStateStack) {
|
|
234
|
+
window.odnHoverFillStateStack = [];
|
|
235
|
+
}
|
|
236
|
+
return function () {
|
|
237
|
+
window.removeEventListener('mouseup', handleMouseUp, false);
|
|
238
|
+
};
|
|
239
|
+
}, []);
|
|
240
|
+
return /*#__PURE__*/React.createElement("div", _extends({
|
|
241
|
+
ref: ref,
|
|
242
|
+
"data-odn-hover-fill": true,
|
|
243
|
+
"data-odn-hover-fill-disabled": disabled,
|
|
244
|
+
onMouseEnter: handleMouseEnter,
|
|
245
|
+
onMouseLeave: handleMouseLeave,
|
|
246
|
+
onMouseDown: handleMouseDown,
|
|
247
|
+
style: _objectSpread(_objectSpread({}, props.style), {}, _defineProperty({}, '--odn-hoverfill-cursor', hoverCursor))
|
|
248
|
+
}, props), /*#__PURE__*/React.createElement("div", {
|
|
249
|
+
"data-odn-hover-fill-content": true
|
|
250
|
+
}, children), /*#__PURE__*/React.createElement("i", {
|
|
251
|
+
ref: bgRef,
|
|
252
|
+
"data-odn-hover-fill-bg": true,
|
|
253
|
+
className: bgClassName,
|
|
254
|
+
style: _objectSpread({}, bgStyle || {})
|
|
255
|
+
}));
|
|
256
|
+
});
|
|
257
|
+
HoverFill.displayName = 'HoverFill';
|
|
258
|
+
export default HoverFill;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
html {
|
|
2
|
+
--odn-hoverfill-scale-start: 0.94;
|
|
3
|
+
--odn-hoverfill-duration: 0.25s;
|
|
4
|
+
--odn-hoverfill-cursor: pointer;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
@layer components {
|
|
8
|
+
[data-odn-hover-fill] {
|
|
9
|
+
position: relative;
|
|
10
|
+
background-color: transparent;
|
|
11
|
+
border: none;
|
|
12
|
+
outline: none;
|
|
13
|
+
user-select: none;
|
|
14
|
+
}
|
|
15
|
+
[data-odn-hover-fill-bg] {
|
|
16
|
+
position: absolute;
|
|
17
|
+
top: 0;
|
|
18
|
+
left: 0;
|
|
19
|
+
width: 100%;
|
|
20
|
+
height: 100%;
|
|
21
|
+
background-color: transparent;
|
|
22
|
+
pointer-events: none;
|
|
23
|
+
transform: scale(var(--odn-hoverfill-scale-start));
|
|
24
|
+
transition: width var(--odn-hoverfill-duration) cubic-bezier(0.32, 0.72, 0, 1), height var(--odn-hoverfill-duration) cubic-bezier(0.32, 0.72, 0, 1), transform var(--odn-hoverfill-duration) cubic-bezier(0.32, 0.72, 0, 1), background var(--odn-hoverfill-duration) cubic-bezier(0.32, 0.72, 0, 1);
|
|
25
|
+
}
|
|
26
|
+
[data-odn-hover-fill-content] {
|
|
27
|
+
position: relative;
|
|
28
|
+
z-index: 1;
|
|
29
|
+
height: 100%;
|
|
30
|
+
}
|
|
31
|
+
[data-odn-hover-fill-disabled=false] [data-odn-hover-fill-content] > * {
|
|
32
|
+
cursor: var(--odn-hoverfill-cursor);
|
|
33
|
+
min-width: 100%;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import './style';
|
|
3
|
+
import type { SvgIconName } from './types';
|
|
4
|
+
export declare const adqIconNames: ("copy" | "target" | "sort" | "filter" | "code" | "data" | "link" | "menu" | "search" | "template" | "time" | "video" | "image" | "stop" | "text" | "mobile" | "calendar" | "writing" | "wechatSearch" | "wechatBubble" | "wechatBubble-filled" | "wallet" | "viewMask" | "videoBag-filled" | "users" | "users-bold" | "userPack" | "userList" | "user-pack" | "user-edit" | "user-circle" | "user-add" | "treeStructure" | "templateBag" | "task" | "task-filled" | "targeting" | "support-bold" | "star" | "star-filled" | "shopping" | "shop" | "shield" | "shield-filled" | "searchAD" | "searchAD-filled" | "ringStruckture" | "quickFile" | "qualification" | "playing" | "offiaccount-filled" | "notepad" | "notepad-bold" | "moments-filled" | "mobilePage" | "minigame-filled" | "miniProgram" | "magic" | "magic-filled" | "lock" | "linkSquare" | "keyword" | "images" | "image-filled" | "image-bold" | "idea" | "idea-bold" | "icon-outlined" | "hosting" | "guideBook" | "folderzip-bold" | "folderZip" | "flame" | "flag" | "file-filled" | "extendedConfig" | "exposure-filled" | "detect" | "dataRising" | "dataFolder" | "dataBox" | "dataBoard" | "dataAuth" | "container" | "comments" | "checkBadge" | "chatBubble-filled" | "chart" | "channels" | "channels-square-filled" | "card-distribute" | "autoAD-square-filled" | "assetProtecting" | "asset-square" | "alarmClock" | "addressBook" | "LandingPage" | "AIFile" | "subdivide" | "send" | "plus" | "plus-circle" | "plus-circle-filled" | "play-filled" | "pause-filled" | "mutiSelect" | "mutiSelect-filled" | "multiCreate" | "modify" | "modify-bold" | "minus" | "minus-circle" | "minus-circle-filled" | "import" | "edit" | "draggable" | "deleteAD-filled" | "delete" | "custom" | "custom-filled" | "check" | "check-circle" | "check-circle-filled" | "cancel" | "cancel-circle" | "cancel-circle-filled" | "up" | "up-filled" | "up-bold" | "unfold" | "unfold-filled" | "top" | "top-filled" | "rise-filled" | "rightLast" | "rightLast-filled" | "right" | "right-filled" | "right-bold" | "pointerRight-filled" | "pointerLeft-filled" | "more" | "more-vertical" | "menuRight" | "menuRight-bold" | "menuLeft" | "menuLeft-bold" | "logout" | "leftFirst" | "leftFirst-filled" | "left" | "left-filled" | "left-bold" | "fullScreen" | "fold" | "fall-filled" | "down" | "down-filled" | "down-bold" | "doubleRight" | "doubleRight-filled" | "doubleLeft" | "doubleLeft-filled" | "bottom" | "bottom-filled" | "arrowUp" | "arrowUp-filled" | "arrowRight" | "arrowRight-filled" | "arrowLeft" | "arrowLeft-filled" | "arrowDown" | "arrowDown-filled" | "histogram" | "compare" | "warning" | "warning-filled" | "info-circle" | "info-circle-filled" | "help-circle" | "help-circle-filled" | "alert-circle" | "alert-circle-filled" | "zoomOut" | "zoomIn" | "videoScreenshot" | "verify" | "time-bold" | "thumbUp" | "thumbUp-filled" | "thumbDown" | "thumbDown-filled" | "tag" | "tag-filled" | "sticker" | "sticker-filled" | "sound" | "share" | "setting" | "search-filled" | "search-bold" | "save" | "report" | "refresh" | "mutiImage" | "mutiImage-filled" | "mute" | "mobile-filled" | "maxSize" | "location" | "hot" | "hot-filled" | "filter-filled" | "exchange" | "download" | "download-filled" | "download-1" | "dataReport" | "dataReport-filled" | "customColumn" | "bidding" | "bell" | "bell-filled" | "QRcode")[];
|
|
5
|
+
export interface IconProps extends Omit<React.SVGProps<SVGSVGElement>, 'name'> {
|
|
6
|
+
name: SvgIconName | (string & {});
|
|
7
|
+
size?: number;
|
|
8
|
+
spin?: boolean;
|
|
9
|
+
}
|
|
10
|
+
declare const Icon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default Icon;
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
var _excluded = ["name", "size", "style", "spin"];
|
|
3
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
6
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
7
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
8
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
9
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
10
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
11
|
+
import React, { useContext } from 'react';
|
|
12
|
+
import { ConfigContext } from "../config-provider";
|
|
13
|
+
import "./style";
|
|
14
|
+
import { svgData } from "./svg-data";
|
|
15
|
+
export var adqIconNames = Object.keys(svgData);
|
|
16
|
+
function getSvgEntry(entry) {
|
|
17
|
+
if (typeof entry === 'string') {
|
|
18
|
+
return {
|
|
19
|
+
viewBox: '0 0 16 16',
|
|
20
|
+
content: entry
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
return entry;
|
|
24
|
+
}
|
|
25
|
+
var Icon = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
26
|
+
var name = _ref.name,
|
|
27
|
+
_ref$size = _ref.size,
|
|
28
|
+
size = _ref$size === void 0 ? 16 : _ref$size,
|
|
29
|
+
style = _ref.style,
|
|
30
|
+
spin = _ref.spin,
|
|
31
|
+
otherProps = _objectWithoutProperties(_ref, _excluded);
|
|
32
|
+
var _useContext = useContext(ConfigContext),
|
|
33
|
+
icons = _useContext.icons;
|
|
34
|
+
if (!name) {
|
|
35
|
+
return null;
|
|
36
|
+
}
|
|
37
|
+
var props = _objectSpread({
|
|
38
|
+
width: size,
|
|
39
|
+
height: size,
|
|
40
|
+
style: style,
|
|
41
|
+
'data-odn-icon': true,
|
|
42
|
+
'data-odn-icon-name': name,
|
|
43
|
+
'data-odn-icon-spin': spin
|
|
44
|
+
}, otherProps);
|
|
45
|
+
if (name === 'loading') {
|
|
46
|
+
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
47
|
+
viewBox: "0 0 16 16",
|
|
48
|
+
fill: "none"
|
|
49
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
50
|
+
clipPath: "url(#paint0_angular_560_6490_clip_path)"
|
|
51
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
52
|
+
transform: "matrix(0.008 1.39876e-09 -1.39876e-09 0.008 8 8)"
|
|
53
|
+
}, /*#__PURE__*/React.createElement("foreignObject", {
|
|
54
|
+
x: "-1125",
|
|
55
|
+
y: "-1125",
|
|
56
|
+
width: "2250",
|
|
57
|
+
height: "2250"
|
|
58
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
59
|
+
"data-odn-icon-loading-background": true
|
|
60
|
+
})))), /*#__PURE__*/React.createElement("path", {
|
|
61
|
+
d: "M16 8C16 12.4183 12.4183 16 8 16C3.58172 16 -7.72509e-07 12.4183 0 8C7.72524e-07 3.58172 3.58172 -7.72516e-07 8 0C12.4183 7.72516e-07 16 3.58172 16 8ZM2.56 8C2.56 11.0044 4.99557 13.44 8 13.44C11.0044 13.44 13.44 11.0044 13.44 8C13.44 4.99557 11.0044 2.56 8 2.56C4.99557 2.56 2.56 4.99557 2.56 8Z"
|
|
62
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
63
|
+
id: "paint0_angular_560_6490_clip_path"
|
|
64
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
65
|
+
d: "M16 8C16 12.4183 12.4183 16 8 16C3.58172 16 -7.72509e-07 12.4183 0 8C7.72524e-07 3.58172 3.58172 -7.72516e-07 8 0C12.4183 7.72516e-07 16 3.58172 16 8ZM2.56 8C2.56 11.0044 4.99557 13.44 8 13.44C11.0044 13.44 13.44 11.0044 13.44 8C13.44 4.99557 11.0044 2.56 8 2.56C4.99557 2.56 2.56 4.99557 2.56 8Z"
|
|
66
|
+
}))));
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// 优先使用配置中的图标(外部传入,仍为 path d 数组格式)
|
|
70
|
+
if (icons !== null && icons !== void 0 && icons[name]) {
|
|
71
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
72
|
+
ref: ref
|
|
73
|
+
}, props, {
|
|
74
|
+
viewBox: "0 0 16 16",
|
|
75
|
+
fill: "currentColor"
|
|
76
|
+
}), icons[name].map(function (icon) {
|
|
77
|
+
return /*#__PURE__*/React.createElement("path", {
|
|
78
|
+
key: icon,
|
|
79
|
+
d: icon,
|
|
80
|
+
fillRule: "evenodd"
|
|
81
|
+
});
|
|
82
|
+
}));
|
|
83
|
+
}
|
|
84
|
+
var entry = svgData[name];
|
|
85
|
+
if (entry) {
|
|
86
|
+
var _getSvgEntry = getSvgEntry(entry),
|
|
87
|
+
viewBox = _getSvgEntry.viewBox,
|
|
88
|
+
content = _getSvgEntry.content;
|
|
89
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
90
|
+
ref: ref
|
|
91
|
+
}, props, {
|
|
92
|
+
viewBox: viewBox,
|
|
93
|
+
fill: "currentColor",
|
|
94
|
+
dangerouslySetInnerHTML: {
|
|
95
|
+
__html: content
|
|
96
|
+
}
|
|
97
|
+
}));
|
|
98
|
+
}
|
|
99
|
+
return null;
|
|
100
|
+
});
|
|
101
|
+
Icon.displayName = 'Icon';
|
|
102
|
+
export default Icon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
@layer components {
|
|
2
|
+
[data-odn-icon-loading-background] {
|
|
3
|
+
width: 100%;
|
|
4
|
+
height: 100%;
|
|
5
|
+
background: conic-gradient(from 90deg, color-mix(in srgb, currentcolor 5%, transparent) 0deg, currentcolor 360deg);
|
|
6
|
+
}
|
|
7
|
+
[data-odn-icon-spin] {
|
|
8
|
+
animation: odn-icon-spin 1s linear infinite;
|
|
9
|
+
}
|
|
10
|
+
@keyframes odn-icon-spin {
|
|
11
|
+
100% {
|
|
12
|
+
transform: rotate(360deg);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16ZM9 8.5C9 8.77614 8.77614 9 8.5 9H7.5C7.22386 9 7 8.77614 7 8.5V3.5C7 3.22386 7.22386 3 7.5 3H8.5C8.77614 3 9 3.22386 9 3.5V8.5ZM9 11.5C9 11.7761 8.77614 12 8.5 12H7.5C7.22386 12 7 11.7761 7 11.5V10.5C7 10.2239 7.22386 10 7.5 10H8.5C8.77614 10 9 10.2239 9 10.5V11.5Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M14 8C14 11.3137 11.3137 14 8 14C4.68629 14 2 11.3137 2 8C2 4.68629 4.68629 2 8 2C11.3137 2 14 4.68629 14 8ZM15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8ZM8.2894 4.25C8.56554 4.25 8.7894 4.47386 8.7894 4.75V8.48684C8.7894 8.76298 8.56554 8.98684 8.2894 8.98684H7.71045C7.43431 8.98684 7.21045 8.76298 7.21045 8.48684L7.21045 4.75C7.21045 4.47386 7.43431 4.25 7.71045 4.25H8.2894ZM8.2894 10.1711C8.56554 10.1711 8.7894 10.3949 8.7894 10.6711V11.25C8.7894 11.5261 8.56554 11.75 8.2894 11.75H7.71045C7.43431 11.75 7.21045 11.5261 7.21045 11.25V10.6711C7.21045 10.3949 7.43431 10.1711 7.71045 10.1711H8.2894Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15ZM8.49967 9.50023C8.49967 9.9107 8.16379 10.2443 7.75333 10.2443C7.33935 10.2443 6.99948 9.90873 6.99948 9.49476V9.00016C6.99948 8.58409 7.36754 8.31852 8.11523 7.77902C8.23381 7.69346 8.36195 7.601 8.49967 7.49997C9.16376 7.0129 9.4998 6.63786 9.4998 6.2498C9.4998 5.89476 9.4698 5.54571 8.99974 5.22067C8.76571 5.05965 8.38166 4.99564 8.00061 4.99964C7.60456 5.00364 7.2135 5.07965 6.99948 5.22067C6.55542 5.51271 6.49941 5.93876 6.49941 6.2208C6.49941 6.37491 6.37448 6.49984 6.22037 6.49984H5.20223C5.09011 6.49984 4.99891 6.40894 4.9975 6.29683C4.98989 5.69171 4.98176 5.04616 5.56329 4.43857C6.12636 3.84949 6.94047 3.49944 7.99961 3.49944C8.89672 3.49944 9.55281 3.76048 10.1209 4.22054C10.679 4.6716 11 5.36469 11 6.2498C11 7.32387 10.3783 7.81053 9.73263 8.31598C9.65502 8.37673 9.57707 8.43775 9.4998 8.5001L9.38381 8.59366C8.69065 9.1526 8.49967 9.3066 8.49967 9.50023ZM7.87478 12.5006C8.28905 12.5006 8.62488 12.1648 8.62488 11.7505C8.62488 11.3362 8.28905 11.0004 7.87478 11.0004H7.62475C7.21048 11.0004 6.87465 11.3362 6.87465 11.7505C6.87465 12.1648 7.21048 12.5006 7.62475 12.5006H7.87478Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M14 8C14 11.3137 11.3137 14 8 14C4.68629 14 2 11.3137 2 8C2 4.68629 4.68629 2 8 2C11.3137 2 14 4.68629 14 8ZM15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8ZM8.42512 9.16669C8.42512 9.4859 8.16391 9.74536 7.8447 9.74536C7.52276 9.74536 7.25845 9.48437 7.25845 9.16243V8.7778C7.25845 8.45422 7.54468 8.24769 8.12615 7.82814C8.21837 7.7616 8.31801 7.6897 8.42512 7.61112C8.94157 7.23235 9.2029 6.94068 9.2029 6.6389C9.2029 6.36279 9.17957 6.09134 8.81401 5.83856C8.63201 5.71334 8.33334 5.66356 8.03701 5.66667C7.72901 5.66978 7.42489 5.72889 7.25845 5.83856C6.91311 6.06567 6.86956 6.39701 6.86956 6.61634C6.86956 6.73619 6.7724 6.83334 6.65256 6.83334H5.86077C5.77357 6.83334 5.70265 6.76266 5.70156 6.67547C5.69563 6.20488 5.68932 5.70285 6.14156 5.23034C6.57945 4.77222 7.21256 4.5 8.03623 4.5C8.7339 4.5 9.24413 4.703 9.6859 5.06078C10.1199 5.41156 10.3696 5.95056 10.3696 6.6389C10.3696 7.47418 9.88611 7.85264 9.38396 8.24572C9.32361 8.29296 9.26299 8.34042 9.2029 8.38891L9.1127 8.46167C8.57364 8.89634 8.42512 9.0161 8.42512 9.16669ZM7.93917 11.5C8.26133 11.5 8.5225 11.2388 8.5225 10.9167C8.5225 10.5945 8.26133 10.3333 7.93917 10.3333H7.74472C7.42255 10.3333 7.16139 10.5945 7.16139 10.9167C7.16139 11.2388 7.42255 11.5 7.74472 11.5H7.93917Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16ZM9 4.5C9 4.77614 8.77614 5 8.5 5H7.5C7.22386 5 7 4.77614 7 4.5V3.5C7 3.22386 7.22386 3 7.5 3H8.5C8.77614 3 9 3.22386 9 3.5V4.5ZM9 12C9 12.2761 8.77614 12.5 8.5 12.5H7.5C7.22386 12.5 7 12.2761 7 12V7C7 6.72386 7.22386 6.5 7.5 6.5H8.5C8.77614 6.5 9 6.72386 9 7V12Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M14 8C14 11.3137 11.3137 14 8 14C4.68629 14 2 11.3137 2 8C2 4.68629 4.68629 2 8 2C11.3137 2 14 4.68629 14 8ZM15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8ZM7.7106 5.82895C7.43446 5.82895 7.2106 5.60509 7.2106 5.32895V4.75C7.2106 4.47386 7.43446 4.25 7.7106 4.25H8.28955C8.56569 4.25 8.78955 4.47386 8.78955 4.75V5.32895C8.78955 5.60509 8.56569 5.82895 8.28955 5.82895H7.7106ZM7.7106 11.75C7.43446 11.75 7.2106 11.5261 7.2106 11.25L7.2106 7.51316C7.2106 7.23702 7.43446 7.01316 7.7106 7.01316H8.28955C8.56569 7.01316 8.78955 7.23702 8.78955 7.51316L8.78955 11.25C8.78955 11.5261 8.56569 11.75 8.28955 11.75H7.7106Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.8739 12.5819C10.8287 13.4666 9.47662 14 8 14C4.68629 14 2 11.3137 2 8C2 6.52338 2.53341 5.17134 3.41806 4.12607L11.8739 12.5819ZM12.5811 11.8749L4.12509 3.41889C5.1705 2.53374 6.52292 2 8 2C11.3137 2 14 4.68629 14 8C14 9.47708 13.4663 10.8295 12.5811 11.8749ZM15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.43852 1.25C8.24607 0.916667 7.76495 0.916666 7.5725 1.25L0.932968 12.75C0.740518 13.0833 0.98108 13.5 1.36598 13.5H14.645C15.0299 13.5 15.2705 13.0833 15.078 12.75L8.43852 1.25ZM8.23794 5.55C8.4653 5.55 8.64961 5.73431 8.64961 5.96167V9.03833C8.64961 9.26569 8.4653 9.45 8.23794 9.45H7.76128C7.53392 9.45 7.34961 9.26569 7.34961 9.03833L7.34961 5.96167C7.34961 5.73431 7.53392 5.55 7.76128 5.55H8.23794ZM8.23794 10.425C8.4653 10.425 8.64961 10.6093 8.64961 10.8367V11.3133C8.64961 11.5407 8.4653 11.725 8.23794 11.725H7.76128C7.53392 11.725 7.34961 11.5407 7.34961 11.3133V10.8367C7.34961 10.6093 7.53392 10.425 7.76128 10.425H8.23794Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.00551 2.5L2.23201 12.5H13.779L8.00551 2.5ZM8.43852 1.25C8.24607 0.916667 7.76495 0.916667 7.5725 1.25L0.932968 12.75C0.740518 13.0833 0.98108 13.5 1.36598 13.5H14.645C15.0299 13.5 15.2705 13.0833 15.078 12.75L8.43852 1.25Z" fill="currentColor"/><path d="M8.60035 6.08001C8.60035 5.87014 8.43021 5.70001 8.22035 5.70001H7.78034C7.57048 5.70001 7.40035 5.87014 7.40035 6.08001V8.92001C7.40035 9.12988 7.57048 9.30001 7.78035 9.30001H8.22035C8.43021 9.30001 8.60035 9.12988 8.60035 8.92001V6.08001Z" fill="currentColor"/><path d="M8.60035 10.58C8.60035 10.3701 8.43021 10.2 8.22035 10.2H7.78034C7.57048 10.2 7.40035 10.3701 7.40035 10.58V11.02C7.40035 11.2299 7.57048 11.4 7.78035 11.4H8.22035C8.43021 11.4 8.60035 11.2299 8.60035 11.02V10.58Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.25 1.5C1.83579 1.5 1.5 1.83579 1.5 2.25V6.75C1.5 7.16421 1.83579 7.5 2.25 7.5H6.75C7.16421 7.5 7.5 7.16421 7.5 6.75V2.25C7.5 1.83579 7.16421 1.5 6.75 1.5H2.25ZM2.5 6.5V2.5H6.5V6.5H2.5ZM2.25 8.5C1.83579 8.5 1.5 8.83579 1.5 9.25V13.75C1.5 14.1642 1.83579 14.5 2.25 14.5H6.75C7.16421 14.5 7.5 14.1642 7.5 13.75V9.25C7.5 8.83579 7.16421 8.5 6.75 8.5H2.25ZM2.5 13.5V9.5H6.5V13.5H2.5ZM8.5 2.25C8.5 1.83579 8.83579 1.5 9.25 1.5H13.75C14.1642 1.5 14.5 1.83579 14.5 2.25V6.75C14.5 7.16421 14.1642 7.5 13.75 7.5H9.25C8.83579 7.5 8.5 7.16421 8.5 6.75V2.25ZM9.5 2.5V6.5H13.5V2.5H9.5ZM5.25 3.75H3.75V5.25H5.25V3.75ZM3.75 10.75H5.25V12.25H3.75V10.75ZM9.5 8.5H8.5V9.5H9.5V10.5V12.5H10.5V10.5H12.5V9.5H9.5V8.5ZM8.5 13.5H9.5V14.5H8.5V13.5ZM13.5 11.5H14.5V14.5H13.5H10.5V13.5H13.5V11.5ZM14.5 8.5H13.5V9.5H14.5V8.5ZM11.5 11.5H12.5V12.5H11.5V11.5ZM12.25 3.75H10.75V5.25H12.25V3.75Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 14.5C6 14.2239 6.22386 14 6.5 14H9.5C9.77614 14 10 14.2239 10 14.5C10 14.7761 9.77614 15 9.5 15H6.5C6.22386 15 6 14.7761 6 14.5Z" fill="currentColor"/><path d="M7.27642 1.55198C7.36328 1.23385 7.65433 1 8 1C8.34567 1 8.63672 1.23385 8.72358 1.55197C11.1421 1.90254 13 3.9843 13 6.5V10L13.7807 12.3419C13.8886 12.6657 13.6476 13 13.3063 13H2.69374C2.35246 13 2.11148 12.6657 2.2194 12.3419L3.00003 10V6.5C3.00003 3.98432 4.8579 1.90258 7.27642 1.55198Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 14.5C6 14.2239 6.22386 14 6.5 14H9.5C9.77614 14 10 14.2239 10 14.5C10 14.7761 9.77614 15 9.5 15H6.5C6.22386 15 6 14.7761 6 14.5Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M7.27642 1.55198C7.36328 1.23385 7.65433 1 8 1C8.34567 1 8.63672 1.23385 8.72358 1.55197C11.1421 1.90254 13 3.9843 13 6.5V10L13.7807 12.3419C13.8886 12.6657 13.6476 13 13.3063 13H2.69374C2.35246 13 2.11148 12.6657 2.2194 12.3419L3.00003 10V6.5C3.00003 3.98432 4.8579 1.90258 7.27642 1.55198ZM12 6.5V10.1623L12.6126 12H3.38746L4.00003 10.1623V6.5C4.00003 4.29086 5.79089 2.5 8.00003 2.5C10.2092 2.5 12 4.29086 12 6.5Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.89927 7.07084L14.7277 11.8993C15.5087 12.6803 15.5087 13.9466 14.7277 14.7277C13.9466 15.5087 12.6803 15.5087 11.8993 14.7277L7.07084 9.89927L6.30338 10.6667C6.56973 11.2243 6.472 11.9123 6.01018 12.3741C5.4244 12.9599 4.47465 12.9599 3.88886 12.3741L1.06043 9.54572C0.474647 8.95993 0.474647 8.01018 1.06043 7.4244C1.52225 6.96258 2.21028 6.86484 2.76785 7.1312L7.1312 2.76785C6.86484 2.21028 6.96258 1.52225 7.4244 1.06043C8.01018 0.474647 8.95993 0.474647 9.54572 1.06043L12.3741 3.88886C12.9599 4.47465 12.9599 5.4244 12.3741 6.01018C11.9123 6.472 11.2243 6.56973 10.6667 6.30338L9.89927 7.07084ZM10.4597 5.09622L11.0978 5.40105C11.2872 5.49152 11.5159 5.45419 11.667 5.30307C11.8623 5.10781 11.8623 4.79123 11.667 4.59597L8.83861 1.76754C8.64334 1.57228 8.32676 1.57228 8.1315 1.76754C7.98038 1.91866 7.94305 2.14741 8.03352 2.3368L8.33835 2.9749L2.9749 8.33835L2.3368 8.03352C2.14741 7.94305 1.91866 7.98038 1.76754 8.1315C1.57228 8.32676 1.57228 8.64334 1.76754 8.83861L4.59597 11.667C4.79123 11.8623 5.10781 11.8623 5.30307 11.667C5.45419 11.5159 5.49152 11.2872 5.40105 11.0978L5.09622 10.4597L7.07084 8.48505L12.6064 14.0206C12.9969 14.4111 13.6301 14.4111 14.0206 14.0206C14.4111 13.6301 14.4111 12.9969 14.0206 12.6064L8.48505 7.07084L10.4597 5.09622ZM1.57084 14.485H8.50032C8.77646 14.485 9.00032 14.7089 9.00032 14.985C9.00032 15.2612 8.77646 15.485 8.50032 15.485H1.57084C1.2947 15.485 1.07084 15.2612 1.07084 14.985C1.07084 14.7089 1.2947 14.485 1.57084 14.485Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_5938_124318)"><path fill-rule="evenodd" clip-rule="evenodd" d="M2 1C1.44772 1 1 1.44772 1 2V14C1 14.5523 1.44772 15 2 15H14C14.5523 15 15 14.5523 15 14V2C15 1.44772 14.5523 1 14 1H2ZM14 2.07692H2V13.9231H14V2.07692Z" fill="currentColor"/><path d="M2 5H14V6H2V5Z" fill="currentColor"/><path d="M4.5 0C4.77614 1.20706e-08 5 0.223858 5 0.5L5 3.5C5 3.77614 4.77614 4 4.5 4C4.22386 4 4 3.77614 4 3.5V0.5C4 0.223858 4.22386 -1.20706e-08 4.5 0Z" fill="currentColor"/><path d="M11.5 0C11.7761 1.20706e-08 12 0.223858 12 0.5V3.5C12 3.77614 11.7761 4 11.5 4C11.2239 4 11 3.77614 11 3.5V0.5C11 0.223858 11.2239 -1.20706e-08 11.5 0Z" fill="currentColor"/><path d="M4 11.5C4 11.2239 4.22386 11 4.5 11H11.5C11.7761 11 12 11.2239 12 11.5C12 11.7761 11.7761 12 11.5 12H4.5C4.22386 12 4 11.7761 4 11.5Z" fill="currentColor"/><path d="M4 8.5C4 8.22386 4.22386 8 4.5 8H11.5C11.7761 8 12 8.22386 12 8.5C12 8.77614 11.7761 9 11.5 9H4.5C4.22386 9 4 8.77614 4 8.5Z" fill="currentColor"/></g><defs><clipPath id="clip0_5938_124318"><rect width="16" height="16" fill="white"/></clipPath></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.5 1.5C1.94771 1.5 1.5 1.94772 1.5 2.5V13.5C1.5 14.0523 1.94772 14.5 2.5 14.5H13.5C14.0523 14.5 14.5 14.0523 14.5 13.5V2.5C14.5 1.94771 14.0523 1.5 13.5 1.5H2.5ZM2.5 2.5L13.5 2.5V13.5H2.5V2.5ZM5.05268 5C5.01925 5 4.98802 5.01671 4.96948 5.04453L3.18407 7.72264C3.12809 7.80661 3.1001 7.9033 3.1001 7.99999C3.1001 8.09667 3.12809 8.19336 3.18407 8.27734L4.96949 10.9555C4.98804 10.9833 5.01926 11 5.0527 11H6.01418C6.09405 11 6.14169 10.911 6.09739 10.8445L4.238 8.05546C4.21561 8.02187 4.21561 7.97811 4.238 7.94452L6.09737 5.15547C6.14167 5.08901 6.09403 5 6.01416 5H5.05268ZM8.45038 5.06838C8.46399 5.02754 8.50221 5 8.54525 5H9.38853C9.45678 5 9.50498 5.06687 9.48339 5.13162L7.55006 10.9316C7.53645 10.9725 7.49824 11 7.45519 11H6.61192C6.54366 11 6.49547 10.9331 6.51705 10.8684L8.45038 5.06838ZM12.9001 8.00065C12.9 8.0971 12.872 8.19353 12.8161 8.2773L11.0307 10.9555C11.0121 10.9833 10.9809 11 10.9475 11H9.98599C9.90612 11 9.85849 10.911 9.90279 10.8445L11.7622 8.05542C11.7846 8.02183 11.7846 7.97807 11.7622 7.94448L9.90285 5.15547C9.85855 5.08901 9.90619 5 9.98606 5H10.9475C10.981 5 11.0122 5.01671 11.0307 5.04453L12.8161 7.7226C12.872 7.80638 12.9 7.90281 12.9001 7.99926V8.00065Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2 1C1.44772 1 1 1.44772 1 2V14C1 14.5523 1.44772 15 2 15H4C4.55228 15 5 14.5523 5 14V2C5 1.44772 4.55228 1 4 1H2ZM4 2H2V14H4V2Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M7 1C6.44772 1 6 1.44772 6 2V14C6 14.5523 6.44772 15 7 15H9C9.55228 15 10 14.5523 10 14V2C10 1.44772 9.55228 1 9 1H7ZM9 2H7V14H9V2Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11 2C11 1.44772 11.4477 1 12 1H14C14.5523 1 15 1.44772 15 2V14C15 14.5523 14.5523 15 14 15H12C11.4477 15 11 14.5523 11 14V2ZM12 2H14V14H12V2Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M13.793 1.47741C14.9793 0.987897 16.7427 0.957733 18.0001 1.3856L18.2445 1.47729L29.8456 6.26378C31.6364 7.00264 31.6878 8.7628 30.0083 9.56255L29.8457 9.63465L18.2446 14.4225C17.0583 14.9121 15.2948 14.9423 14.0374 14.5143L13.793 14.4226L2.19185 9.63546C0.401111 8.89652 0.349749 7.13636 2.02932 6.33669L2.19185 6.26459L13.793 1.47741ZM30.4781 16.8729C30.9154 16.6291 31.1102 16.0908 30.9138 15.6171C30.7023 15.1069 30.1172 14.8647 29.6071 15.0762L17.4112 20.1319L17.2217 20.2005C16.4251 20.4519 15.1952 20.4267 14.4772 20.1269L2.38536 15.0772L2.27516 15.0385C1.79397 14.9002 1.27487 15.1414 1.07724 15.6146C0.864416 16.1243 1.10502 16.7099 1.61465 16.9228L13.7064 21.9724L13.9518 22.0656C15.2143 22.5007 16.9866 22.4729 18.1771 21.9794L30.3729 16.9238L30.4781 16.8729ZM30.4781 24.8729C30.9154 24.6291 31.1102 24.0908 30.9138 23.6171C30.7023 23.1069 30.1172 22.8647 29.6071 23.0762L17.4112 28.1319L17.2217 28.2005C16.4251 28.4519 15.1952 28.4267 14.4772 28.1269L2.38536 23.0772L2.27516 23.0385C1.79397 22.9002 1.27487 23.1414 1.07724 23.6146C0.864416 24.1243 1.10502 24.7099 1.61465 24.9228L13.7064 29.9724L13.9518 30.0656C15.2143 30.5007 16.9866 30.4729 18.1771 29.9794L30.3729 24.9238L30.4781 24.8729ZM14.7452 3.25794C15.5403 3.00768 16.7657 3.0307 17.4817 3.32611L28.686 7.949L17.4816 12.5738L17.2923 12.642L17.0851 12.6989C16.2965 12.8866 15.2122 12.8447 14.5559 12.5739L3.35001 7.95L14.5559 3.3262L14.7452 3.25794Z" fill="#313233"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.5 1H13.5C13.7761 1 14 1.22386 14 1.5V14.5C14 14.7761 13.7761 15 13.5 15H2.5C2.22386 15 2 14.7761 2 14.5V1.5C2 1.22386 2.22386 1 2.5 1ZM4.5 10.9999H11.5C11.7761 10.9999 12 11.2237 12 11.4999C12 11.776 11.7761 11.9999 11.5 11.9999H4.5C4.22386 11.9999 4 11.776 4 11.4999C4 11.2237 4.22386 10.9999 4.5 10.9999ZM8.5 8.99994H4.5C4.22386 8.99994 4 9.2238 4 9.49994C4 9.77608 4.22386 9.99994 4.5 9.99994H8.5C8.77614 9.99994 9 9.77608 9 9.49994C9 9.2238 8.77614 8.99994 8.5 8.99994ZM11.7977 4.82054C11.9748 4.65612 11.985 4.3793 11.8206 4.20224C11.6562 4.02518 11.3794 4.01493 11.2023 4.17934L8.80769 6.40291L6.95155 4.67934C6.78369 4.52347 6.52402 4.52347 6.35616 4.67934L4.2023 6.67934C4.02524 6.84376 4.01499 7.12058 4.1794 7.29764C4.34382 7.4747 4.62064 7.48495 4.7977 7.32054L6.65385 5.59697L8.50999 7.32054C8.67785 7.47641 8.93753 7.47641 9.10539 7.32054L11.7977 4.82054Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M3 14V2H13V14H3ZM13.5 1H2.5C2.22386 1 2 1.22386 2 1.5V14.5C2 14.7761 2.22386 15 2.5 15H13.5C13.7761 15 14 14.7761 14 14.5V1.5C14 1.22386 13.7761 1 13.5 1ZM4.5 11H11.5C11.7761 11 12 11.2239 12 11.5C12 11.7761 11.7761 12 11.5 12H4.5C4.22386 12 4 11.7761 4 11.5C4 11.2239 4.22386 11 4.5 11ZM8.5 9H4.5C4.22386 9 4 9.22386 4 9.5C4 9.77614 4.22386 10 4.5 10H8.5C8.77614 10 9 9.77614 9 9.5C9 9.22386 8.77614 9 8.5 9ZM11.8402 4.8664C12.0426 4.6785 12.0543 4.36213 11.8664 4.15978C11.6785 3.95742 11.3621 3.9457 11.1598 4.13361L8.80769 6.31768L6.99408 4.63361C6.80224 4.45547 6.50547 4.45547 6.31363 4.63361L4.15978 6.63361C3.95742 6.82151 3.9457 7.13787 4.13361 7.34023C4.32151 7.54258 4.63787 7.5543 4.84023 7.3664L6.65385 5.68232L8.46747 7.3664C8.65931 7.54454 8.95608 7.54454 9.14792 7.3664L11.8402 4.8664Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.2505 1.5249C8.38857 1.5249 8.5005 1.63683 8.5005 1.7749L8.5005 10.2587L12.114 6.64526C12.2116 6.54763 12.3699 6.54763 12.4675 6.64526L12.7739 6.95167C12.8716 7.0493 12.8716 7.20759 12.7739 7.30522L8.17776 11.9014C8.08012 11.999 7.92183 11.999 7.8242 11.9014L3.22801 7.30522C3.13038 7.20759 3.13038 7.0493 3.22801 6.95167L3.53442 6.64526C3.63205 6.54763 3.79034 6.54763 3.88797 6.64526L7.5005 10.2578L7.5005 1.7749C7.5005 1.63683 7.61243 1.5249 7.7505 1.5249H8.2505ZM1.5 14.2246C1.5 14.3627 1.61193 14.4746 1.75 14.4746L14.25 14.4746C14.3881 14.4746 14.5 14.3627 14.5 14.2246V10.7246C14.5 10.5865 14.3881 10.4746 14.25 10.4746H12.5C12.3619 10.4746 12.25 10.5865 12.25 10.7246V11.2246C12.25 11.3627 12.3619 11.4746 12.5 11.4746H13.5V13.4746L2.5 13.4746L2.5 11.4746H3.5C3.63807 11.4746 3.75 11.3627 3.75 11.2246V10.7246C3.75 10.5865 3.63807 10.4746 3.5 10.4746H1.75C1.61193 10.4746 1.5 10.5865 1.5 10.7246V14.2246Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M3 1.5C1.89543 1.5 1 2.39543 1 3.5V12.5C1 13.6046 1.89543 14.5 3 14.5H13C14.1046 14.5 15 13.6046 15 12.5V5C15 3.89543 14.1046 3 13 3H9.09248C9.0328 3 8.97509 2.97865 8.92978 2.93981L7.6713 1.86112C7.39944 1.62809 7.05318 1.5 6.69511 1.5H3ZM7.24996 5.25V9.90163L5.2374 7.88907C5.13977 7.79143 4.98148 7.79143 4.88385 7.88907L4.17674 8.59617C4.07911 8.6938 4.07911 8.85209 4.17674 8.94973L7.7677 12.5407C7.86533 12.6383 8.02362 12.6383 8.12125 12.5407L11.7122 8.94973C11.8098 8.85209 11.8098 8.6938 11.7122 8.59617L11.0051 7.88907C10.9075 7.79143 10.7492 7.79143 10.6516 7.88907L8.74996 9.79066V5.25C8.74996 5.11193 8.63803 5 8.49996 5H7.49996C7.36189 5 7.24996 5.11193 7.24996 5.25Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M14 12.5V5C14 4.44772 13.5523 4 13 4H9.09248C8.79409 4 8.50555 3.89326 8.27899 3.69907L7.02051 2.62037C6.92989 2.5427 6.81447 2.5 6.69511 2.5H3C2.44772 2.5 2 2.94772 2 3.5V12.5C2 13.0523 2.44772 13.5 3 13.5H13C13.5523 13.5 14 13.0523 14 12.5ZM3 1.5C1.89543 1.5 1 2.39543 1 3.5V12.5C1 13.6046 1.89543 14.5 3 14.5H13C14.1046 14.5 15 13.6046 15 12.5V5C15 3.89543 14.1046 3 13 3H9.09248C9.0328 3 8.97509 2.97865 8.92978 2.93981L7.6713 1.86112C7.39944 1.62809 7.05318 1.5 6.69511 1.5H3ZM8.58504 10.4141V5.25C8.58504 5.11193 8.47311 5 8.33504 5H7.66504C7.52697 5 7.41504 5.11193 7.41504 5.25V10.4186L5.17401 8.17759C5.07638 8.07996 4.91809 8.07996 4.82046 8.17759L4.3467 8.65135C4.24907 8.74898 4.24907 8.90727 4.3467 9.0049L7.82099 12.4792C7.91862 12.5768 8.07691 12.5768 8.17454 12.4792L11.6488 9.0049C11.7465 8.90727 11.7465 8.74898 11.6488 8.65135L11.1751 8.17759C11.0774 8.07996 10.9191 8.07996 10.8215 8.17759L8.58504 10.4141Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.1465 3.14645C10.3417 2.95118 10.6583 2.95118 10.8536 3.14645L13.8536 6.14645C13.9966 6.28945 14.0393 6.5045 13.962 6.69134C13.8846 6.87818 13.7022 7 13.5 7H2.50001C2.22387 7 2.00001 6.77614 2.00001 6.5C2.00001 6.22386 2.22387 6 2.50001 6H12.2929L10.1465 3.85355C9.9512 3.65829 9.9512 3.34171 10.1465 3.14645Z" fill="#464749"/><path fill-rule="evenodd" clip-rule="evenodd" d="M5.85357 12.8536C5.65831 13.0488 5.34172 13.0488 5.14646 12.8536L2.14646 9.85355C2.00346 9.71055 1.96068 9.49549 2.03807 9.30866C2.11547 9.12182 2.29778 9 2.50001 9L13.5 9C13.7762 9 14 9.22386 14 9.5C14 9.77614 13.7762 10 13.5 10L3.70712 10L5.85357 12.1464C6.04883 12.3417 6.04883 12.6583 5.85357 12.8536Z" fill="#464749"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14 1.25H2C1.72386 1.25 1.5 1.47386 1.5 1.75V3.02547C1.5 3.16829 1.56107 3.30429 1.66782 3.39917L5.83218 7.10083C5.93893 7.19571 6 7.33171 6 7.47453V12C6 12.1574 6.0741 12.3056 6.2 12.4L9.2 14.65C9.52962 14.8972 10 14.662 10 14.25V7.47453C10 7.33171 10.0611 7.19571 10.1678 7.10083L14.3322 3.39917C14.4389 3.30429 14.5 3.16829 14.5 3.02547V1.75C14.5 1.47386 14.2761 1.25 14 1.25Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M1 2C1 1.44772 1.44772 1 2 1H14C14.5523 1 15 1.44771 15 2V2.77547C15 3.0611 14.8779 3.33311 14.6644 3.52288L10.5 7.22453V14.5C10.5 14.7761 10.2761 15 10 15C9.72386 15 9.5 14.7761 9.5 14.5V7.22453C9.5 6.9389 9.62215 6.66689 9.83564 6.47712L14 2.77547V2H2V2.77547L6.16436 6.47712C6.37785 6.66689 6.5 6.9389 6.5 7.22453V11.25L8.3 12.6C8.52091 12.7657 8.56569 13.0791 8.4 13.3C8.23431 13.5209 7.92091 13.5657 7.7 13.4L5.9 12.05C5.64819 11.8611 5.5 11.5648 5.5 11.25V7.22453L1.33564 3.52288C1.12215 3.33311 1 3.0611 1 2.77547V2Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.23103 14.4506C6.38775 14.6326 6.24893 14.9092 6.01593 14.8511C4.5734 14.4914 1.5 13.3669 1.5 10.3154C1.5 6.45109 7.93992 5.97423 6.95241 1.44248C6.91032 1.24934 7.08195 1.07711 7.26641 1.14818C8.47397 1.61338 11.7398 3.23596 10.7123 6.8944C10.7123 6.8944 11.2692 6.58106 11.7576 5.95394C11.843 5.84427 11.9971 5.8144 12.1057 5.90112C12.7137 6.38636 14.5 8.00527 14.5 10.2762C14.5 12.7597 11.5386 14.6363 9.71253 14.9431C9.50556 14.9779 9.38099 14.7388 9.49106 14.5601C9.93185 13.8445 10.5824 12.3794 9.35614 11.3419C7.90129 10.092 7.73096 9.11237 7.81397 8.5452C7.83646 8.39154 7.63005 8.19315 7.49576 8.27114C6.24802 8.99582 3.38693 11.1491 6.23103 14.4506Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.60342 2.42943C7.70642 3.37913 7.47918 4.16773 7.05492 4.84524C6.57472 5.61206 5.85265 6.21749 5.16736 6.75627C5.0538 6.84554 4.94143 6.9329 4.83069 7.01899C4.24874 7.47138 3.71202 7.88862 3.28757 8.36403C2.79888 8.91138 2.5 9.49421 2.5 10.2274C2.5 11.4379 3.09874 12.2662 3.88386 12.8517C4.68283 13.4476 5.65152 13.7699 6.28954 13.929C6.55747 13.9959 6.72051 14.2672 6.6537 14.5352C6.58688 14.8031 6.31551 14.9661 6.04757 14.8993C5.35402 14.7264 4.23843 14.3637 3.28602 13.6534C2.31975 12.9327 1.5 11.8337 1.5 10.2274C1.5 9.17703 1.94419 8.36718 2.54162 7.69803C3.03238 7.14835 3.65447 6.66559 4.23484 6.21521C4.34143 6.1325 4.4466 6.05088 4.5493 5.97014C5.2362 5.43009 5.82935 4.91819 6.20738 4.3145C6.56917 3.73675 6.74373 3.05791 6.54446 2.14343C6.48729 1.88109 6.57427 1.62091 6.75311 1.4491C6.93791 1.27156 7.22234 1.19076 7.50259 1.29873C8.08808 1.52428 9.20514 2.04058 10.0566 2.97536C10.6935 3.6747 11.1742 4.60305 11.1855 5.77975C11.4274 5.57979 11.8022 5.52273 12.1018 5.76184C12.4043 6.00326 12.9961 6.523 13.5155 7.26775C14.035 8.01263 14.5 9.00887 14.5 10.1912C14.5 11.5438 13.6969 12.6768 12.7451 13.4806C11.791 14.2863 10.6053 14.8339 9.66365 14.9922C9.33481 15.0474 9.06202 14.8732 8.93188 14.6392C8.8079 14.4163 8.80089 14.1264 8.95064 13.8833C9.1382 13.5788 9.34648 13.15 9.39416 12.7169C9.43872 12.3122 9.34661 11.91 8.92888 11.5566L8.92599 11.5542C7.81582 10.6004 7.40455 9.74718 7.32649 9.06655C6.95616 9.32693 6.54781 9.67573 6.2379 10.1029C5.80388 10.7012 5.57199 11.4334 5.89188 12.3326C5.98444 12.5928 5.84856 12.8787 5.58839 12.9713C5.32823 13.0639 5.04228 12.928 4.94973 12.6678C4.49496 11.3895 4.84795 10.3159 5.42846 9.51572C5.99538 8.73425 6.7866 8.19654 7.28343 7.90798C7.63176 7.70568 7.95343 7.90987 8.07029 8.01511C8.19876 8.13081 8.36683 8.36631 8.32301 8.66573C8.27823 8.97169 8.32308 9.71733 9.57632 10.7945C10.2893 11.3986 10.4625 12.1508 10.3882 12.8264C10.3468 13.2017 10.2302 13.5535 10.0968 13.8522C10.7387 13.6374 11.4729 13.246 12.0999 12.7166C12.9363 12.0103 13.5 11.131 13.5 10.1912C13.5 9.27726 13.1405 8.47818 12.6953 7.83981C12.3501 7.34486 11.9641 6.96233 11.6874 6.71916C11.4865 6.94458 11.2866 7.11998 11.1252 7.24629C11.0204 7.32829 10.9304 7.39067 10.8649 7.4336C10.832 7.45509 10.8052 7.47179 10.7855 7.48372L10.7614 7.49804L10.7536 7.50254L10.7508 7.50413L10.7497 7.50475C10.7496 7.50481 10.7488 7.50527 10.5036 7.06951L10.7488 7.50527C10.5725 7.60448 10.3538 7.58765 10.1947 7.46265C10.0356 7.33764 9.96756 7.12909 10.0223 6.93431C10.444 5.43277 9.99099 4.38843 9.31726 3.64874C8.79267 3.07278 8.12655 2.67698 7.60342 2.42943Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.39629 3.06724C10.3733 2.09823 11.9526 2.10259 12.9264 3.07647C13.9048 4.05478 13.904 5.64276 12.9243 6.61799L10.8236 8.70914C9.84664 9.68164 8.26685 9.67983 7.29212 8.7051L7.09599 8.50898C6.99836 8.41134 6.84007 8.41134 6.74244 8.50898L6.38888 8.86253C6.29125 8.96016 6.29125 9.11845 6.38888 9.21608L6.58501 9.41221C7.94963 10.7768 10.1613 10.7794 11.5291 9.41786L13.6298 7.32671C15.0024 5.96038 15.0022 3.73799 13.6335 2.36936C12.2711 1.00694 10.061 0.9996 8.69211 2.35722L7.46624 3.573C7.3682 3.67023 7.36755 3.82852 7.46478 3.92655L7.81687 4.28156C7.91409 4.3796 8.07238 4.38025 8.17042 4.28303L9.39629 3.06724ZM6.60782 12.9339C5.6313 13.9024 4.04965 13.8966 3.07525 12.9222C2.09799 11.945 2.0955 10.3577 3.07087 9.38233L5.16681 7.28638C6.14312 6.31007 7.72603 6.31007 8.70234 7.28638L8.89362 7.47766C8.99125 7.57529 9.14954 7.57529 9.24717 7.47766L9.60073 7.12411C9.69836 7.02647 9.69836 6.86818 9.60073 6.77055L9.40945 6.57928C8.04261 5.21244 5.82654 5.21244 4.4597 6.57928L2.36376 8.67522C0.995975 10.043 1.00226 12.2635 2.36814 13.6293C3.73004 14.9912 5.94259 15.0021 7.312 13.6439L8.53787 12.4281C8.63591 12.3309 8.63656 12.1726 8.53934 12.0746L8.18725 11.7196C8.09002 11.6215 7.93173 11.6209 7.8337 11.7181L6.60782 12.9339Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="#000" fill-rule="evenodd" d="M10.265 12.197C11.714 10.627 13 8.615 13 6.5a5 5 0 0 0-10 0c0 2.115 1.286 4.127 2.735 5.697.708.767 1.42 1.39 1.955 1.821.181.146.439.146.62 0a18.438 18.438 0 0 0 1.955-1.821ZM11 6.5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm3 0c0 4.076-3.988 7.488-5.461 8.61a.883.883 0 0 1-1.078 0C5.988 13.987 2 10.575 2 6.5a6 6 0 1 1 12 0Zm-4 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z" clip-rule="evenodd" opacity=".88"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.00937 2.40156C2.00937 2.3875 2.01875 2.37344 2.02188 2.35938C2.025 2.34531 2.03125 2.325 2.0375 2.30938C2.04542 2.29273 2.05429 2.27656 2.06406 2.26094C2.06989 2.24795 2.07668 2.23541 2.08438 2.22344C2.12037 2.16777 2.16777 2.12037 2.22344 2.08437C2.23438 2.07656 2.24844 2.07031 2.25937 2.06406L2.30937 2.03125C2.32603 2.03036 2.34272 2.03036 2.35938 2.03125L2.40625 2.00938C2.43869 2.00316 2.47165 2.00002 2.50469 2H5.5C5.63261 2 5.75979 2.05268 5.85355 2.14645C5.94732 2.24021 6 2.36739 6 2.5C6 2.63261 5.94732 2.75979 5.85355 2.85355C5.75979 2.94732 5.63261 3 5.5 3H3.70781L7.35312 6.64687C7.39961 6.69318 7.4365 6.74822 7.46167 6.80881C7.48684 6.86941 7.49979 6.93438 7.49979 7C7.49979 7.06562 7.48684 7.13059 7.46167 7.19119C7.4365 7.25178 7.39961 7.30682 7.35312 7.35313C7.30682 7.39961 7.25178 7.4365 7.19119 7.46167C7.13059 7.48684 7.06562 7.49979 7 7.49979C6.93438 7.49979 6.86941 7.48684 6.80881 7.46167C6.74822 7.4365 6.69318 7.39961 6.64688 7.35313L3 3.70781V5.5C3 5.63261 2.94732 5.75979 2.85355 5.85355C2.75979 5.94732 2.63261 6 2.5 6C2.36739 6 2.24021 5.94732 2.14645 5.85355C2.05268 5.75979 2 5.63261 2 5.5V2.5C2.00002 2.46697 2.00316 2.43401 2.00937 2.40156ZM9.35313 8.64688L13 12.2922V10.5C13 10.3674 13.0527 10.2402 13.1464 10.1464C13.2402 10.0527 13.3674 10 13.5 10C13.6326 10 13.7598 10.0527 13.8536 10.1464C13.9473 10.2402 14 10.3674 14 10.5V13.5C14 13.533 13.9968 13.566 13.9906 13.5984C13.9906 13.6125 13.9813 13.6266 13.9781 13.6406C13.975 13.6547 13.9688 13.675 13.9625 13.6906C13.9546 13.7073 13.9457 13.7234 13.9359 13.7391C13.9301 13.7521 13.9233 13.7646 13.9156 13.7766C13.88 13.8325 13.8325 13.88 13.7766 13.9156C13.7646 13.9233 13.7521 13.9301 13.7391 13.9359C13.7234 13.9457 13.7073 13.9546 13.6906 13.9625L13.6406 13.9781L13.5984 13.9906C13.566 13.9968 13.533 14 13.5 14H10.5C10.3674 14 10.2402 13.9473 10.1464 13.8536C10.0527 13.7598 10 13.6326 10 13.5C10 13.3674 10.0527 13.2402 10.1464 13.1464C10.2402 13.0527 10.3674 13 10.5 13H12.2922L8.64687 9.35312C8.5607 9.25801 8.51439 9.1334 8.51755 9.00509C8.52071 8.87678 8.57309 8.7546 8.66385 8.66385C8.7546 8.57309 8.87678 8.52071 9.00509 8.51755C9.1334 8.51439 9.25801 8.5607 9.35313 8.64688Z" fill="currentColor"/></svg>
|