@mw-kit/mw-ui 0.3.4 → 1.0.3
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/.eslintignore +28 -0
- package/.eslintrc.js +35 -0
- package/.prettierignore +27 -0
- package/.prettierrc.json +10 -0
- package/.storybook/main.js +13 -0
- package/.storybook/preview.js +21 -0
- package/.travis.yml +4 -0
- package/.vscode/settings.json +3 -0
- package/README.md +46 -40
- package/bitbucket-pipelines.yml +69 -0
- package/docker-compose.yml +14 -0
- package/example/README.md +5 -0
- package/example/favicon.ico +0 -0
- package/example/index.html +46 -0
- package/example/manifest.json +15 -0
- package/example/package.json +43 -0
- package/example/public/favicon.ico +0 -0
- package/example/public/index.html +46 -0
- package/example/public/manifest.json +15 -0
- package/example/src/App.tsx +47 -0
- package/example/src/index.tsx +11 -0
- package/example/src/react-app-env.d.ts +1 -0
- package/example/src/setupTests.ts +5 -0
- package/example/tsconfig.json +30 -0
- package/example/yarn.lock +694 -0
- package/exec.sh +11 -0
- package/hooks/pre-push +3 -0
- package/package.json +102 -69
- package/public/favicon.ico +0 -0
- package/public/index.html +43 -0
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +25 -0
- package/public/robots.txt +3 -0
- package/shell/autotag.sh +169 -0
- package/shell/bash.sh +3 -0
- package/shell/install.sh +9 -0
- package/shell/logs.sh +3 -0
- package/shell/npx.sh +3 -0
- package/shell/restart.sh +5 -0
- package/shell/start.sh +7 -0
- package/shell/stop.sh +3 -0
- package/shell/tags.sh +24 -0
- package/shell/yarn.sh +7 -0
- package/src/addons/Portal/index.ts +26 -0
- package/src/addons/Portal/interfaces.ts +5 -0
- package/src/assets/icons/close.svg +1 -0
- package/src/assets/icons/feather/activity.svg +1 -0
- package/src/assets/icons/feather/airplay.svg +1 -0
- package/src/assets/icons/feather/alert-circle.svg +1 -0
- package/src/assets/icons/feather/alert-octagon.svg +1 -0
- package/src/assets/icons/feather/alert-triangle.svg +1 -0
- package/src/assets/icons/feather/align-center.svg +1 -0
- package/src/assets/icons/feather/align-justify.svg +1 -0
- package/src/assets/icons/feather/align-left.svg +1 -0
- package/src/assets/icons/feather/align-right.svg +1 -0
- package/src/assets/icons/feather/anchor.svg +1 -0
- package/src/assets/icons/feather/aperture.svg +1 -0
- package/src/assets/icons/feather/archive.svg +1 -0
- package/src/assets/icons/feather/arrow-down-circle.svg +1 -0
- package/src/assets/icons/feather/arrow-down-left.svg +1 -0
- package/src/assets/icons/feather/arrow-down-right.svg +1 -0
- package/src/assets/icons/feather/arrow-down.svg +1 -0
- package/src/assets/icons/feather/arrow-left-circle.svg +1 -0
- package/src/assets/icons/feather/arrow-left.svg +1 -0
- package/src/assets/icons/feather/arrow-right-circle.svg +1 -0
- package/src/assets/icons/feather/arrow-right.svg +1 -0
- package/src/assets/icons/feather/arrow-up-circle.svg +1 -0
- package/src/assets/icons/feather/arrow-up-left.svg +1 -0
- package/src/assets/icons/feather/arrow-up-right.svg +1 -0
- package/src/assets/icons/feather/arrow-up.svg +1 -0
- package/src/assets/icons/feather/at-sign.svg +1 -0
- package/src/assets/icons/feather/award.svg +1 -0
- package/src/assets/icons/feather/bar-chart-2.svg +1 -0
- package/src/assets/icons/feather/bar-chart.svg +1 -0
- package/src/assets/icons/feather/battery-charging.svg +1 -0
- package/src/assets/icons/feather/battery.svg +1 -0
- package/src/assets/icons/feather/bell-off.svg +1 -0
- package/src/assets/icons/feather/bell.svg +1 -0
- package/src/assets/icons/feather/bluetooth.svg +1 -0
- package/src/assets/icons/feather/bold.svg +1 -0
- package/src/assets/icons/feather/book-open.svg +1 -0
- package/src/assets/icons/feather/book.svg +1 -0
- package/src/assets/icons/feather/bookmark.svg +1 -0
- package/src/assets/icons/feather/box.svg +1 -0
- package/src/assets/icons/feather/briefcase.svg +1 -0
- package/src/assets/icons/feather/calendar.svg +1 -0
- package/src/assets/icons/feather/camera-off.svg +1 -0
- package/src/assets/icons/feather/camera.svg +1 -0
- package/src/assets/icons/feather/cast.svg +1 -0
- package/src/assets/icons/feather/check-circle.svg +1 -0
- package/src/assets/icons/feather/check-square.svg +1 -0
- package/src/assets/icons/feather/check.svg +1 -0
- package/src/assets/icons/feather/chevron-down.svg +1 -0
- package/src/assets/icons/feather/chevron-left.svg +1 -0
- package/src/assets/icons/feather/chevron-right.svg +1 -0
- package/src/assets/icons/feather/chevron-up.svg +1 -0
- package/src/assets/icons/feather/chevrons-down.svg +1 -0
- package/src/assets/icons/feather/chevrons-left.svg +1 -0
- package/src/assets/icons/feather/chevrons-right.svg +1 -0
- package/src/assets/icons/feather/chevrons-up.svg +1 -0
- package/src/assets/icons/feather/chrome.svg +1 -0
- package/src/assets/icons/feather/circle.svg +1 -0
- package/src/assets/icons/feather/clipboard.svg +1 -0
- package/src/assets/icons/feather/clock.svg +1 -0
- package/src/assets/icons/feather/cloud-drizzle.svg +1 -0
- package/src/assets/icons/feather/cloud-lightning.svg +1 -0
- package/src/assets/icons/feather/cloud-off.svg +1 -0
- package/src/assets/icons/feather/cloud-rain.svg +1 -0
- package/src/assets/icons/feather/cloud-snow.svg +1 -0
- package/src/assets/icons/feather/cloud.svg +1 -0
- package/src/assets/icons/feather/code.svg +1 -0
- package/src/assets/icons/feather/codepen.svg +1 -0
- package/src/assets/icons/feather/codesandbox.svg +1 -0
- package/src/assets/icons/feather/coffee.svg +1 -0
- package/src/assets/icons/feather/columns.svg +1 -0
- package/src/assets/icons/feather/command.svg +1 -0
- package/src/assets/icons/feather/compass.svg +1 -0
- package/src/assets/icons/feather/copy.svg +1 -0
- package/src/assets/icons/feather/corner-down-left.svg +1 -0
- package/src/assets/icons/feather/corner-down-right.svg +1 -0
- package/src/assets/icons/feather/corner-left-down.svg +1 -0
- package/src/assets/icons/feather/corner-left-up.svg +1 -0
- package/src/assets/icons/feather/corner-right-down.svg +1 -0
- package/src/assets/icons/feather/corner-right-up.svg +1 -0
- package/src/assets/icons/feather/corner-up-left.svg +1 -0
- package/src/assets/icons/feather/corner-up-right.svg +1 -0
- package/src/assets/icons/feather/cpu.svg +1 -0
- package/src/assets/icons/feather/credit-card.svg +1 -0
- package/src/assets/icons/feather/crop.svg +1 -0
- package/src/assets/icons/feather/crosshair.svg +1 -0
- package/src/assets/icons/feather/database.svg +1 -0
- package/src/assets/icons/feather/delete.svg +1 -0
- package/src/assets/icons/feather/disc.svg +1 -0
- package/src/assets/icons/feather/divide-circle.svg +1 -0
- package/src/assets/icons/feather/divide-square.svg +1 -0
- package/src/assets/icons/feather/divide.svg +1 -0
- package/src/assets/icons/feather/dollar-sign.svg +1 -0
- package/src/assets/icons/feather/download-cloud.svg +1 -0
- package/src/assets/icons/feather/download.svg +1 -0
- package/src/assets/icons/feather/dribbble.svg +1 -0
- package/src/assets/icons/feather/droplet.svg +1 -0
- package/src/assets/icons/feather/edit-2.svg +1 -0
- package/src/assets/icons/feather/edit-3.svg +1 -0
- package/src/assets/icons/feather/edit.svg +1 -0
- package/src/assets/icons/feather/external-link.svg +1 -0
- package/src/assets/icons/feather/eye-off.svg +1 -0
- package/src/assets/icons/feather/eye.svg +1 -0
- package/src/assets/icons/feather/facebook.svg +1 -0
- package/src/assets/icons/feather/fast-forward.svg +1 -0
- package/src/assets/icons/feather/feather.svg +1 -0
- package/src/assets/icons/feather/figma.svg +1 -0
- package/src/assets/icons/feather/file-minus.svg +1 -0
- package/src/assets/icons/feather/file-plus.svg +1 -0
- package/src/assets/icons/feather/file-text.svg +1 -0
- package/src/assets/icons/feather/file.svg +1 -0
- package/src/assets/icons/feather/film.svg +1 -0
- package/src/assets/icons/feather/filter.svg +1 -0
- package/src/assets/icons/feather/flag.svg +1 -0
- package/src/assets/icons/feather/folder-minus.svg +1 -0
- package/src/assets/icons/feather/folder-plus.svg +1 -0
- package/src/assets/icons/feather/folder.svg +1 -0
- package/src/assets/icons/feather/framer.svg +1 -0
- package/src/assets/icons/feather/frown.svg +1 -0
- package/src/assets/icons/feather/gift.svg +1 -0
- package/src/assets/icons/feather/git-branch.svg +1 -0
- package/src/assets/icons/feather/git-commit.svg +1 -0
- package/src/assets/icons/feather/git-merge.svg +1 -0
- package/src/assets/icons/feather/git-pull-request.svg +1 -0
- package/src/assets/icons/feather/github.svg +1 -0
- package/src/assets/icons/feather/gitlab.svg +1 -0
- package/src/assets/icons/feather/globe.svg +1 -0
- package/src/assets/icons/feather/grid.svg +1 -0
- package/src/assets/icons/feather/hard-drive.svg +1 -0
- package/src/assets/icons/feather/hash.svg +1 -0
- package/src/assets/icons/feather/headphones.svg +1 -0
- package/src/assets/icons/feather/heart.svg +1 -0
- package/src/assets/icons/feather/help-circle.svg +1 -0
- package/src/assets/icons/feather/hexagon.svg +1 -0
- package/src/assets/icons/feather/home.svg +1 -0
- package/src/assets/icons/feather/image.svg +1 -0
- package/src/assets/icons/feather/inbox.svg +1 -0
- package/src/assets/icons/feather/index.ts +581 -0
- package/src/assets/icons/feather/info.svg +1 -0
- package/src/assets/icons/feather/instagram.svg +1 -0
- package/src/assets/icons/feather/italic.svg +1 -0
- package/src/assets/icons/feather/key.svg +1 -0
- package/src/assets/icons/feather/layers.svg +1 -0
- package/src/assets/icons/feather/layout.svg +1 -0
- package/src/assets/icons/feather/life-buoy.svg +1 -0
- package/src/assets/icons/feather/link-2.svg +1 -0
- package/src/assets/icons/feather/link.svg +1 -0
- package/src/assets/icons/feather/linkedin.svg +1 -0
- package/src/assets/icons/feather/list.svg +1 -0
- package/src/assets/icons/feather/loader.svg +1 -0
- package/src/assets/icons/feather/lock.svg +1 -0
- package/src/assets/icons/feather/log-in.svg +1 -0
- package/src/assets/icons/feather/log-out.svg +1 -0
- package/src/assets/icons/feather/mail.svg +1 -0
- package/src/assets/icons/feather/map-pin.svg +1 -0
- package/src/assets/icons/feather/map.svg +1 -0
- package/src/assets/icons/feather/maximize-2.svg +1 -0
- package/src/assets/icons/feather/maximize.svg +1 -0
- package/src/assets/icons/feather/meh.svg +1 -0
- package/src/assets/icons/feather/menu.svg +1 -0
- package/src/assets/icons/feather/message-circle.svg +1 -0
- package/src/assets/icons/feather/message-square.svg +1 -0
- package/src/assets/icons/feather/mic-off.svg +1 -0
- package/src/assets/icons/feather/mic.svg +1 -0
- package/src/assets/icons/feather/minimize-2.svg +1 -0
- package/src/assets/icons/feather/minimize.svg +1 -0
- package/src/assets/icons/feather/minus-circle.svg +1 -0
- package/src/assets/icons/feather/minus-square.svg +1 -0
- package/src/assets/icons/feather/minus.svg +1 -0
- package/src/assets/icons/feather/monitor.svg +1 -0
- package/src/assets/icons/feather/moon.svg +1 -0
- package/src/assets/icons/feather/more-horizontal.svg +1 -0
- package/src/assets/icons/feather/more-vertical.svg +1 -0
- package/src/assets/icons/feather/mouse-pointer.svg +1 -0
- package/src/assets/icons/feather/move.svg +1 -0
- package/src/assets/icons/feather/music.svg +1 -0
- package/src/assets/icons/feather/navigation-2.svg +1 -0
- package/src/assets/icons/feather/navigation.svg +1 -0
- package/src/assets/icons/feather/octagon.svg +1 -0
- package/src/assets/icons/feather/package.svg +1 -0
- package/src/assets/icons/feather/paperclip.svg +1 -0
- package/src/assets/icons/feather/pause-circle.svg +1 -0
- package/src/assets/icons/feather/pause.svg +1 -0
- package/src/assets/icons/feather/pen-tool.svg +1 -0
- package/src/assets/icons/feather/percent.svg +1 -0
- package/src/assets/icons/feather/phone-call.svg +1 -0
- package/src/assets/icons/feather/phone-forwarded.svg +1 -0
- package/src/assets/icons/feather/phone-incoming.svg +1 -0
- package/src/assets/icons/feather/phone-missed.svg +1 -0
- package/src/assets/icons/feather/phone-off.svg +1 -0
- package/src/assets/icons/feather/phone-outgoing.svg +1 -0
- package/src/assets/icons/feather/phone.svg +1 -0
- package/src/assets/icons/feather/pie-chart.svg +1 -0
- package/src/assets/icons/feather/play-circle.svg +1 -0
- package/src/assets/icons/feather/play.svg +1 -0
- package/src/assets/icons/feather/plus-circle.svg +1 -0
- package/src/assets/icons/feather/plus-square.svg +1 -0
- package/src/assets/icons/feather/plus.svg +1 -0
- package/src/assets/icons/feather/pocket.svg +1 -0
- package/src/assets/icons/feather/power.svg +1 -0
- package/src/assets/icons/feather/printer.svg +1 -0
- package/src/assets/icons/feather/radio.svg +1 -0
- package/src/assets/icons/feather/refresh-ccw.svg +1 -0
- package/src/assets/icons/feather/refresh-cw.svg +1 -0
- package/src/assets/icons/feather/repeat.svg +1 -0
- package/src/assets/icons/feather/rewind.svg +1 -0
- package/src/assets/icons/feather/rotate-ccw.svg +1 -0
- package/src/assets/icons/feather/rotate-cw.svg +1 -0
- package/src/assets/icons/feather/rss.svg +1 -0
- package/src/assets/icons/feather/save.svg +1 -0
- package/src/assets/icons/feather/scissors.svg +1 -0
- package/src/assets/icons/feather/search.svg +1 -0
- package/src/assets/icons/feather/send.svg +1 -0
- package/src/assets/icons/feather/server.svg +1 -0
- package/src/assets/icons/feather/settings.svg +1 -0
- package/src/assets/icons/feather/share-2.svg +1 -0
- package/src/assets/icons/feather/share.svg +1 -0
- package/src/assets/icons/feather/shield-off.svg +1 -0
- package/src/assets/icons/feather/shield.svg +1 -0
- package/src/assets/icons/feather/shopping-bag.svg +1 -0
- package/src/assets/icons/feather/shopping-cart.svg +1 -0
- package/src/assets/icons/feather/shuffle.svg +1 -0
- package/src/assets/icons/feather/sidebar.svg +1 -0
- package/src/assets/icons/feather/skip-back.svg +1 -0
- package/src/assets/icons/feather/skip-forward.svg +1 -0
- package/src/assets/icons/feather/slack.svg +1 -0
- package/src/assets/icons/feather/slash.svg +1 -0
- package/src/assets/icons/feather/sliders.svg +1 -0
- package/src/assets/icons/feather/smartphone.svg +1 -0
- package/src/assets/icons/feather/smile.svg +1 -0
- package/src/assets/icons/feather/speaker.svg +1 -0
- package/src/assets/icons/feather/square.svg +1 -0
- package/src/assets/icons/feather/star.svg +1 -0
- package/src/assets/icons/feather/stop-circle.svg +1 -0
- package/src/assets/icons/feather/sun.svg +1 -0
- package/src/assets/icons/feather/sunrise.svg +1 -0
- package/src/assets/icons/feather/sunset.svg +1 -0
- package/src/assets/icons/feather/table.svg +1 -0
- package/src/assets/icons/feather/tablet.svg +1 -0
- package/src/assets/icons/feather/tag.svg +1 -0
- package/src/assets/icons/feather/target.svg +1 -0
- package/src/assets/icons/feather/terminal.svg +1 -0
- package/src/assets/icons/feather/thermometer.svg +1 -0
- package/src/assets/icons/feather/thumbs-down.svg +1 -0
- package/src/assets/icons/feather/thumbs-up.svg +1 -0
- package/src/assets/icons/feather/toggle-left.svg +1 -0
- package/src/assets/icons/feather/toggle-right.svg +1 -0
- package/src/assets/icons/feather/tool.svg +1 -0
- package/src/assets/icons/feather/trash-2.svg +1 -0
- package/src/assets/icons/feather/trash.svg +1 -0
- package/src/assets/icons/feather/trello.svg +1 -0
- package/src/assets/icons/feather/trending-down.svg +1 -0
- package/src/assets/icons/feather/trending-up.svg +1 -0
- package/src/assets/icons/feather/triangle.svg +1 -0
- package/src/assets/icons/feather/truck.svg +1 -0
- package/src/assets/icons/feather/tv.svg +1 -0
- package/src/assets/icons/feather/twitch.svg +1 -0
- package/src/assets/icons/feather/twitter.svg +1 -0
- package/src/assets/icons/feather/type.svg +1 -0
- package/src/assets/icons/feather/umbrella.svg +1 -0
- package/src/assets/icons/feather/underline.svg +1 -0
- package/src/assets/icons/feather/unlock.svg +1 -0
- package/src/assets/icons/feather/upload-cloud.svg +1 -0
- package/src/assets/icons/feather/upload.svg +1 -0
- package/src/assets/icons/feather/user-check.svg +1 -0
- package/src/assets/icons/feather/user-minus.svg +1 -0
- package/src/assets/icons/feather/user-plus.svg +1 -0
- package/src/assets/icons/feather/user-x.svg +1 -0
- package/src/assets/icons/feather/user.svg +1 -0
- package/src/assets/icons/feather/users.svg +1 -0
- package/src/assets/icons/feather/video-off.svg +1 -0
- package/src/assets/icons/feather/video.svg +1 -0
- package/src/assets/icons/feather/voicemail.svg +1 -0
- package/src/assets/icons/feather/volume-1.svg +1 -0
- package/src/assets/icons/feather/volume-2.svg +1 -0
- package/src/assets/icons/feather/volume-x.svg +1 -0
- package/src/assets/icons/feather/volume.svg +1 -0
- package/src/assets/icons/feather/watch.svg +1 -0
- package/src/assets/icons/feather/wifi-off.svg +1 -0
- package/src/assets/icons/feather/wifi.svg +1 -0
- package/src/assets/icons/feather/wind.svg +1 -0
- package/src/assets/icons/feather/x-circle.svg +1 -0
- package/src/assets/icons/feather/x-octagon.svg +1 -0
- package/src/assets/icons/feather/x-square.svg +1 -0
- package/src/assets/icons/feather/x.svg +1 -0
- package/src/assets/icons/feather/youtube.svg +1 -0
- package/src/assets/icons/feather/zap-off.svg +1 -0
- package/src/assets/icons/feather/zap.svg +1 -0
- package/src/assets/icons/feather/zoom-in.svg +1 -0
- package/src/assets/icons/feather/zoom-out.svg +1 -0
- package/src/assets/icons/flags/flags.png +0 -0
- package/src/assets/icons/flags/index.ts +120 -0
- package/src/components/AbsoluteContainer/index.tsx +62 -0
- package/src/components/AbsoluteContainer/interfaces.ts +39 -0
- package/src/components/AbsoluteContainer/styles.ts +93 -0
- package/src/components/Button/constants.ts +17 -0
- package/src/components/Button/index.tsx +47 -0
- package/src/components/Button/interfaces.ts +33 -0
- package/src/components/Button/styles.ts +126 -0
- package/src/components/Button/theme.ts +8 -0
- package/src/components/Calendar/index.tsx +375 -0
- package/src/components/Calendar/interfaces.ts +21 -0
- package/src/components/Calendar/styles.ts +161 -0
- package/src/components/CalendarInterval/index.tsx +93 -0
- package/src/components/CalendarInterval/interfaces.ts +17 -0
- package/src/components/CalendarInterval/styles.ts +9 -0
- package/src/components/Card/index.tsx +9 -0
- package/src/components/Card/interfaces.ts +5 -0
- package/src/components/Card/styled.ts +60 -0
- package/src/components/Icon/index.tsx +66 -0
- package/src/components/Icon/interfaces.ts +42 -0
- package/src/components/Icon/styled.ts +64 -0
- package/src/components/Indicator/index.tsx +14 -0
- package/src/components/Indicator/interfaces.ts +6 -0
- package/src/components/Indicator/styles.ts +49 -0
- package/src/components/Input/components/Checkbox/index.tsx +35 -0
- package/src/components/Input/components/Checkbox/interfaces.ts +27 -0
- package/src/components/Input/components/Checkbox/styles.ts +168 -0
- package/src/components/Input/components/Date/functions.ts +1 -0
- package/src/components/Input/components/Date/index.tsx +188 -0
- package/src/components/Input/components/Date/interfaces.ts +10 -0
- package/src/components/Input/components/Date/styles.ts +5 -0
- package/src/components/Input/components/DatePicker/index.tsx +143 -0
- package/src/components/Input/components/DatePicker/interfaces.ts +21 -0
- package/src/components/Input/components/DatePicker/styles.ts +64 -0
- package/src/components/Input/components/Input/functions.ts +35 -0
- package/src/components/Input/components/Input/index.tsx +204 -0
- package/src/components/Input/components/Input/interfaces.ts +46 -0
- package/src/components/Input/components/Input/styles.ts +140 -0
- package/src/components/Input/components/Password/index.tsx +63 -0
- package/src/components/Input/components/Password/interfaces.ts +9 -0
- package/src/components/Input/components/Phone/countries.ts +107 -0
- package/src/components/Input/components/Phone/index.tsx +179 -0
- package/src/components/Input/components/Phone/interfaces.ts +47 -0
- package/src/components/Input/components/Phone/styles.ts +27 -0
- package/src/components/Input/components/RadioButton/index.tsx +28 -0
- package/src/components/Input/components/RadioButton/interfaces.ts +16 -0
- package/src/components/Input/components/RadioButton/styles.ts +96 -0
- package/src/components/Input/components/Range/index.tsx +186 -0
- package/src/components/Input/components/Range/interfaces.ts +37 -0
- package/src/components/Input/components/Range/styles.ts +218 -0
- package/src/components/Input/components/Select/context.ts +8 -0
- package/src/components/Input/components/Select/index.tsx +226 -0
- package/src/components/Input/components/Select/interfaces.ts +49 -0
- package/src/components/Input/components/Select/styles.ts +17 -0
- package/src/components/Input/components/Switch/index.tsx +28 -0
- package/src/components/Input/components/Switch/interfaces.ts +16 -0
- package/src/components/Input/components/Switch/styles.ts +100 -0
- package/src/components/Input/components/Time/index.tsx +152 -0
- package/src/components/Input/components/Time/interfaces.ts +6 -0
- package/src/components/Input/index.tsx +95 -0
- package/src/components/Loader/index.ts +55 -0
- package/src/components/Loader/interfaces.ts +8 -0
- package/src/components/Menu/index.tsx +139 -0
- package/src/components/Menu/interfaces.ts +63 -0
- package/src/components/Menu/styles.ts +79 -0
- package/src/components/Modal/component.tsx +114 -0
- package/src/components/Modal/contants.ts +15 -0
- package/src/components/Modal/index.ts +18 -0
- package/src/components/Modal/interfaces.ts +60 -0
- package/src/components/Modal/styles.ts +91 -0
- package/src/components/Modal/templates/Audit/index.tsx +45 -0
- package/src/components/Modal/templates/Audit/interfaces.ts +17 -0
- package/src/components/Modal/templates/Audit/styles.ts +5 -0
- package/src/components/Modal/templates/ConfirmDelete/index.tsx +47 -0
- package/src/components/Modal/templates/ConfirmDelete/interfaces.ts +16 -0
- package/src/components/Modal/templates/ConfirmDelete/styles.ts +5 -0
- package/src/components/Modal/templates/ConfirmEdit/index.tsx +51 -0
- package/src/components/Modal/templates/ConfirmEdit/interfaces.ts +18 -0
- package/src/components/Modal/templates/ConfirmEdit/styles.ts +5 -0
- package/src/components/Modal/templates/index.ts +3 -0
- package/src/components/Placeholder/components/Template1/index.tsx +27 -0
- package/src/components/Placeholder/components/Template1/styles.ts +68 -0
- package/src/components/Placeholder/components/Template10/index.tsx +29 -0
- package/src/components/Placeholder/components/Template10/styles.ts +79 -0
- package/src/components/Placeholder/components/Template2/index.tsx +25 -0
- package/src/components/Placeholder/components/Template2/styles.ts +43 -0
- package/src/components/Placeholder/components/Template3/index.tsx +18 -0
- package/src/components/Placeholder/components/Template3/styles.ts +15 -0
- package/src/components/Placeholder/components/Template4/index.tsx +20 -0
- package/src/components/Placeholder/components/Template4/styles.ts +50 -0
- package/src/components/Placeholder/components/Template5/index.tsx +40 -0
- package/src/components/Placeholder/components/Template5/styles.ts +64 -0
- package/src/components/Placeholder/components/Template6/index.tsx +33 -0
- package/src/components/Placeholder/components/Template6/styles.ts +63 -0
- package/src/components/Placeholder/components/Template7/index.tsx +23 -0
- package/src/components/Placeholder/components/Template7/styles.ts +73 -0
- package/src/components/Placeholder/components/Template8/index.tsx +30 -0
- package/src/components/Placeholder/components/Template8/styles.ts +66 -0
- package/src/components/Placeholder/components/Template9/index.tsx +20 -0
- package/src/components/Placeholder/components/Template9/styles.ts +74 -0
- package/src/components/Placeholder/index.tsx +56 -0
- package/src/components/Placeholder/interfaces.ts +21 -0
- package/src/components/Placeholder/styles.ts +35 -0
- package/src/components/ProgressBar/index.tsx +16 -0
- package/src/components/ProgressBar/interfaces.ts +4 -0
- package/src/components/ProgressBar/styles.ts +51 -0
- package/src/components/ScrollContainer/index.tsx +99 -0
- package/src/components/ScrollContainer/interfaces.ts +9 -0
- package/src/components/Tabs/index.tsx +55 -0
- package/src/components/Tabs/interfaces.ts +44 -0
- package/src/components/Tabs/styles.ts +65 -0
- package/src/components/TextArea/index.tsx +9 -0
- package/src/components/TextArea/interfaces.ts +10 -0
- package/src/components/TextArea/styles.ts +13 -0
- package/src/components/Toast/index.tsx +20 -0
- package/src/components/Toast/interfaces.ts +7 -0
- package/src/components/Toast/styles.ts +88 -0
- package/src/components/index.ts +17 -0
- package/src/components/theme.ts +7 -0
- package/src/functions/common.ts +3 -0
- package/src/functions/formatters.ts +170 -0
- package/src/functions/validators.ts +93 -0
- package/src/hooks/onClickOut.ts +28 -0
- package/src/index.ts +8 -0
- package/src/interfaces.ts +4 -0
- package/src/stories/components/Input/MwCheckbox/MwCheckBox.stories.tsx +20 -0
- package/src/stories/components/Input/MwCheckbox/argTypes.ts +82 -0
- package/src/stories/components/Input/MwDate/MwDate.stories.tsx +31 -0
- package/src/stories/components/Input/MwDate/argTypes.ts +74 -0
- package/src/stories/components/Input/MwDatePicker/MwDatePicker.stories.tsx +33 -0
- package/src/stories/components/Input/MwDatePicker/argTypes.ts +6 -0
- package/src/stories/components/Input/MwInput/MwInput.stories.tsx +21 -0
- package/src/stories/components/Input/MwInput/argTypes.ts +93 -0
- package/src/stories/components/Input/MwIntlTel/MwIntlTel.stories.tsx +31 -0
- package/src/stories/components/Input/MwIntlTel/argTypes.ts +67 -0
- package/src/stories/components/Input/MwPassword/MwPassword.stories.tsx +20 -0
- package/src/stories/components/Input/MwPassword/argTypes.ts +51 -0
- package/src/stories/components/Input/MwRadioButton/MwSwitch.stories.tsx +22 -0
- package/src/stories/components/Input/MwRadioButton/argtypes.ts +81 -0
- package/src/stories/components/Input/MwRange/MwRange.stories.tsx +33 -0
- package/src/stories/components/Input/MwRange/argTypes.ts +83 -0
- package/src/stories/components/Input/MwSelect/MwSelect.stories.tsx +20 -0
- package/src/stories/components/Input/MwSelect/argTypes.ts +133 -0
- package/src/stories/components/Input/MwSwitch/MwSwitch.stories.tsx +20 -0
- package/src/stories/components/Input/MwSwitch/argTypes.ts +73 -0
- package/src/stories/components/Input/MwTime/MwTime.stories.tsx +20 -0
- package/src/stories/components/Input/MwTime/argTypes.ts +88 -0
- package/src/stories/components/MwButton/MwButton.stories.tsx +19 -0
- package/src/stories/components/MwButton/argTypes.ts +81 -0
- package/src/stories/components/MwCalendar/MwCalendar.stories.tsx +39 -0
- package/src/stories/components/MwCalendar/argTypes.ts +15 -0
- package/src/stories/components/MwCalendarInterval/MwCalendarInterval.stories.tsx +39 -0
- package/src/stories/components/MwCalendarInterval/argTypes.ts +15 -0
- package/src/stories/components/MwCard/MwCard.stories.tsx +19 -0
- package/src/stories/components/MwCard/argTypes.ts +27 -0
- package/src/stories/components/MwIcon/MwIcon.stories.tsx +19 -0
- package/src/stories/components/MwIcon/argTypes.ts +48 -0
- package/src/stories/components/MwIndicator/MwIndicator.stories.tsx +19 -0
- package/src/stories/components/MwIndicator/argTypes.ts +38 -0
- package/src/stories/components/MwLoader/MwLoader.stories.tsx +19 -0
- package/src/stories/components/MwLoader/argTypes.ts +33 -0
- package/src/stories/components/MwModal/MwModal.stories.tsx +81 -0
- package/src/stories/components/MwModal/argTypes.ts +71 -0
- package/src/stories/components/MwPlaceholder/Template1/MwTemplate1.stories.tsx +23 -0
- package/src/stories/components/MwPlaceholder/Template1/argTypes.ts +22 -0
- package/src/stories/components/MwPlaceholder/Template10/MwTemplate1.stories.tsx +23 -0
- package/src/stories/components/MwPlaceholder/Template10/argTypes.ts +22 -0
- package/src/stories/components/MwPlaceholder/Template2/MwTemplate1.stories.tsx +23 -0
- package/src/stories/components/MwPlaceholder/Template2/argTypes.ts +22 -0
- package/src/stories/components/MwPlaceholder/Template3/MwTemplate1.stories.tsx +23 -0
- package/src/stories/components/MwPlaceholder/Template3/argTypes.ts +22 -0
- package/src/stories/components/MwPlaceholder/Template4/MwTemplate1.stories.tsx +23 -0
- package/src/stories/components/MwPlaceholder/Template4/argTypes.ts +22 -0
- package/src/stories/components/MwPlaceholder/Template5/MwTemplate1.stories.tsx +23 -0
- package/src/stories/components/MwPlaceholder/Template5/argTypes.ts +22 -0
- package/src/stories/components/MwPlaceholder/Template6/MwTemplate1.stories.tsx +23 -0
- package/src/stories/components/MwPlaceholder/Template6/argTypes.ts +22 -0
- package/src/stories/components/MwPlaceholder/Template7/MwTemplate1.stories.tsx +23 -0
- package/src/stories/components/MwPlaceholder/Template7/argTypes.ts +22 -0
- package/src/stories/components/MwPlaceholder/Template8/MwTemplate1.stories.tsx +23 -0
- package/src/stories/components/MwPlaceholder/Template8/argTypes.ts +22 -0
- package/src/stories/components/MwPlaceholder/Template9/MwTemplate1.stories.tsx +23 -0
- package/src/stories/components/MwPlaceholder/Template9/argTypes.ts +22 -0
- package/src/stories/components/MwProgressBar/MwIndicator.stories.tsx +19 -0
- package/src/stories/components/MwProgressBar/argTypes.ts +22 -0
- package/src/stories/components/MwTabs/MwTabs.stories.tsx +29 -0
- package/src/stories/components/MwTabs/argTypes.ts +78 -0
- package/src/stories/components/MwTextArea/MwTextArea.stories.tsx +19 -0
- package/src/stories/components/MwTextArea/argTypes.ts +29 -0
- package/src/stories/components/MwToast/MwIcon.stories.tsx +19 -0
- package/src/stories/components/MwToast/argTypes.ts +45 -0
- package/src/stories/examples/Introduction.stories.mdx +219 -0
- package/src/stories/examples/assets/code-brackets.svg +1 -0
- package/src/stories/examples/assets/colors.svg +1 -0
- package/src/stories/examples/assets/comments.svg +1 -0
- package/src/stories/examples/assets/direction.svg +1 -0
- package/src/stories/examples/assets/flow.svg +1 -0
- package/src/stories/examples/assets/plugin.svg +1 -0
- package/src/stories/examples/assets/repo.svg +1 -0
- package/src/stories/examples/assets/stackalt.svg +1 -0
- package/src/stories/interfaces.ts +17 -0
- package/src/styled.d.ts +9 -0
- package/src/theme/constants.ts +129 -0
- package/src/theme/globals.tsx +15 -0
- package/src/theme/index.tsx +68 -0
- package/src/theme/interfaces.ts +24 -0
- package/src/theme/useCssVars.ts +49 -0
- package/src/typings.d.ts +20 -0
- package/tsconfig.json +23 -0
- package/dist/index.d.ts +0 -6
- package/dist/index.js +0 -30
- package/dist/index.js.map +0 -1
- package/dist/index.modern.js +0 -11
- package/dist/index.modern.js.map +0 -1
|
@@ -0,0 +1,694 @@
|
|
|
1
|
+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
2
|
+
# yarn lockfile v1
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
"@babel/code-frame@^7.16.7":
|
|
6
|
+
version "7.16.7"
|
|
7
|
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789"
|
|
8
|
+
integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==
|
|
9
|
+
dependencies:
|
|
10
|
+
"@babel/highlight" "^7.16.7"
|
|
11
|
+
|
|
12
|
+
"@babel/generator@^7.18.2":
|
|
13
|
+
version "7.18.2"
|
|
14
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.2.tgz#33873d6f89b21efe2da63fe554460f3df1c5880d"
|
|
15
|
+
integrity sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==
|
|
16
|
+
dependencies:
|
|
17
|
+
"@babel/types" "^7.18.2"
|
|
18
|
+
"@jridgewell/gen-mapping" "^0.3.0"
|
|
19
|
+
jsesc "^2.5.1"
|
|
20
|
+
|
|
21
|
+
"@babel/helper-annotate-as-pure@^7.16.0":
|
|
22
|
+
version "7.16.7"
|
|
23
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz#bb2339a7534a9c128e3102024c60760a3a7f3862"
|
|
24
|
+
integrity sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==
|
|
25
|
+
dependencies:
|
|
26
|
+
"@babel/types" "^7.16.7"
|
|
27
|
+
|
|
28
|
+
"@babel/helper-environment-visitor@^7.18.2":
|
|
29
|
+
version "7.18.2"
|
|
30
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz#8a6d2dedb53f6bf248e31b4baf38739ee4a637bd"
|
|
31
|
+
integrity sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==
|
|
32
|
+
|
|
33
|
+
"@babel/helper-function-name@^7.17.9":
|
|
34
|
+
version "7.17.9"
|
|
35
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz#136fcd54bc1da82fcb47565cf16fd8e444b1ff12"
|
|
36
|
+
integrity sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==
|
|
37
|
+
dependencies:
|
|
38
|
+
"@babel/template" "^7.16.7"
|
|
39
|
+
"@babel/types" "^7.17.0"
|
|
40
|
+
|
|
41
|
+
"@babel/helper-hoist-variables@^7.16.7":
|
|
42
|
+
version "7.16.7"
|
|
43
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246"
|
|
44
|
+
integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==
|
|
45
|
+
dependencies:
|
|
46
|
+
"@babel/types" "^7.16.7"
|
|
47
|
+
|
|
48
|
+
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.16.0":
|
|
49
|
+
version "7.16.7"
|
|
50
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437"
|
|
51
|
+
integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==
|
|
52
|
+
dependencies:
|
|
53
|
+
"@babel/types" "^7.16.7"
|
|
54
|
+
|
|
55
|
+
"@babel/helper-plugin-utils@^7.8.0":
|
|
56
|
+
version "7.17.12"
|
|
57
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz#86c2347da5acbf5583ba0a10aed4c9bf9da9cf96"
|
|
58
|
+
integrity sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==
|
|
59
|
+
|
|
60
|
+
"@babel/helper-split-export-declaration@^7.16.7":
|
|
61
|
+
version "7.16.7"
|
|
62
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b"
|
|
63
|
+
integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==
|
|
64
|
+
dependencies:
|
|
65
|
+
"@babel/types" "^7.16.7"
|
|
66
|
+
|
|
67
|
+
"@babel/helper-validator-identifier@^7.16.7":
|
|
68
|
+
version "7.16.7"
|
|
69
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad"
|
|
70
|
+
integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==
|
|
71
|
+
|
|
72
|
+
"@babel/highlight@^7.16.7":
|
|
73
|
+
version "7.17.12"
|
|
74
|
+
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.17.12.tgz#257de56ee5afbd20451ac0a75686b6b404257351"
|
|
75
|
+
integrity sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==
|
|
76
|
+
dependencies:
|
|
77
|
+
"@babel/helper-validator-identifier" "^7.16.7"
|
|
78
|
+
chalk "^2.0.0"
|
|
79
|
+
js-tokens "^4.0.0"
|
|
80
|
+
|
|
81
|
+
"@babel/parser@^7.16.7", "@babel/parser@^7.18.0":
|
|
82
|
+
version "7.18.4"
|
|
83
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.4.tgz#6774231779dd700e0af29f6ad8d479582d7ce5ef"
|
|
84
|
+
integrity sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==
|
|
85
|
+
|
|
86
|
+
"@babel/plugin-syntax-object-rest-spread@^7.8.3":
|
|
87
|
+
version "7.8.3"
|
|
88
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
|
|
89
|
+
integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
|
|
90
|
+
dependencies:
|
|
91
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
|
92
|
+
|
|
93
|
+
"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.4", "@babel/runtime@^7.10.5":
|
|
94
|
+
version "7.18.3"
|
|
95
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.3.tgz#c7b654b57f6f63cf7f8b418ac9ca04408c4579f4"
|
|
96
|
+
integrity sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==
|
|
97
|
+
dependencies:
|
|
98
|
+
regenerator-runtime "^0.13.4"
|
|
99
|
+
|
|
100
|
+
"@babel/template@^7.16.7":
|
|
101
|
+
version "7.16.7"
|
|
102
|
+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155"
|
|
103
|
+
integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==
|
|
104
|
+
dependencies:
|
|
105
|
+
"@babel/code-frame" "^7.16.7"
|
|
106
|
+
"@babel/parser" "^7.16.7"
|
|
107
|
+
"@babel/types" "^7.16.7"
|
|
108
|
+
|
|
109
|
+
"@babel/traverse@^7.4.5":
|
|
110
|
+
version "7.18.2"
|
|
111
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.2.tgz#b77a52604b5cc836a9e1e08dca01cba67a12d2e8"
|
|
112
|
+
integrity sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==
|
|
113
|
+
dependencies:
|
|
114
|
+
"@babel/code-frame" "^7.16.7"
|
|
115
|
+
"@babel/generator" "^7.18.2"
|
|
116
|
+
"@babel/helper-environment-visitor" "^7.18.2"
|
|
117
|
+
"@babel/helper-function-name" "^7.17.9"
|
|
118
|
+
"@babel/helper-hoist-variables" "^7.16.7"
|
|
119
|
+
"@babel/helper-split-export-declaration" "^7.16.7"
|
|
120
|
+
"@babel/parser" "^7.18.0"
|
|
121
|
+
"@babel/types" "^7.18.2"
|
|
122
|
+
debug "^4.1.0"
|
|
123
|
+
globals "^11.1.0"
|
|
124
|
+
|
|
125
|
+
"@babel/types@^7.16.7", "@babel/types@^7.17.0", "@babel/types@^7.18.2":
|
|
126
|
+
version "7.18.4"
|
|
127
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.4.tgz#27eae9b9fd18e9dccc3f9d6ad051336f307be354"
|
|
128
|
+
integrity sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==
|
|
129
|
+
dependencies:
|
|
130
|
+
"@babel/helper-validator-identifier" "^7.16.7"
|
|
131
|
+
to-fast-properties "^2.0.0"
|
|
132
|
+
|
|
133
|
+
"@emotion/is-prop-valid@^1.1.0":
|
|
134
|
+
version "1.1.2"
|
|
135
|
+
resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.1.2.tgz#34ad6e98e871aa6f7a20469b602911b8b11b3a95"
|
|
136
|
+
integrity sha512-3QnhqeL+WW88YjYbQL5gUIkthuMw7a0NGbZ7wfFVk2kg/CK5w8w5FFa0RzWjyY1+sujN0NWbtSHH6OJmWHtJpQ==
|
|
137
|
+
dependencies:
|
|
138
|
+
"@emotion/memoize" "^0.7.4"
|
|
139
|
+
|
|
140
|
+
"@emotion/memoize@^0.7.4":
|
|
141
|
+
version "0.7.5"
|
|
142
|
+
resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.5.tgz#2c40f81449a4e554e9fc6396910ed4843ec2be50"
|
|
143
|
+
integrity sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==
|
|
144
|
+
|
|
145
|
+
"@emotion/stylis@^0.8.4":
|
|
146
|
+
version "0.8.5"
|
|
147
|
+
resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04"
|
|
148
|
+
integrity sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==
|
|
149
|
+
|
|
150
|
+
"@emotion/unitless@^0.7.4":
|
|
151
|
+
version "0.7.5"
|
|
152
|
+
resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed"
|
|
153
|
+
integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==
|
|
154
|
+
|
|
155
|
+
"@fluentui/react-component-event-listener@~0.51.1":
|
|
156
|
+
version "0.51.7"
|
|
157
|
+
resolved "https://registry.yarnpkg.com/@fluentui/react-component-event-listener/-/react-component-event-listener-0.51.7.tgz#158adb970d8bc982c91c57fd1322a0036042d86e"
|
|
158
|
+
integrity sha512-NjVm+crN0T9A7vITL8alZeHnuV8zi2gos0nezU/2YOxaUAB9E4zKiPxt/6k5U50rJs/gj8Nu45iXxnjO41HbZg==
|
|
159
|
+
dependencies:
|
|
160
|
+
"@babel/runtime" "^7.10.4"
|
|
161
|
+
|
|
162
|
+
"@fluentui/react-component-ref@~0.51.1":
|
|
163
|
+
version "0.51.7"
|
|
164
|
+
resolved "https://registry.yarnpkg.com/@fluentui/react-component-ref/-/react-component-ref-0.51.7.tgz#bfb0312e926c213bed35e53ee5105a68732eea99"
|
|
165
|
+
integrity sha512-CX27jVJYaFoBCWpuWAizQZ2se137ku1dmDyn8sw+ySNJa+kkQf7LnMydiPW5K7cRdUSqUJW3eS4EjKRvVAx8xA==
|
|
166
|
+
dependencies:
|
|
167
|
+
"@babel/runtime" "^7.10.4"
|
|
168
|
+
react-is "^16.6.3"
|
|
169
|
+
|
|
170
|
+
"@hypnosphi/create-react-context@^0.3.1":
|
|
171
|
+
version "0.3.1"
|
|
172
|
+
resolved "https://registry.yarnpkg.com/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz#f8bfebdc7665f5d426cba3753e0e9c7d3154d7c6"
|
|
173
|
+
integrity sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A==
|
|
174
|
+
dependencies:
|
|
175
|
+
gud "^1.0.0"
|
|
176
|
+
warning "^4.0.3"
|
|
177
|
+
|
|
178
|
+
"@jridgewell/gen-mapping@^0.3.0":
|
|
179
|
+
version "0.3.1"
|
|
180
|
+
resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz#cf92a983c83466b8c0ce9124fadeaf09f7c66ea9"
|
|
181
|
+
integrity sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==
|
|
182
|
+
dependencies:
|
|
183
|
+
"@jridgewell/set-array" "^1.0.0"
|
|
184
|
+
"@jridgewell/sourcemap-codec" "^1.4.10"
|
|
185
|
+
"@jridgewell/trace-mapping" "^0.3.9"
|
|
186
|
+
|
|
187
|
+
"@jridgewell/resolve-uri@^3.0.3":
|
|
188
|
+
version "3.0.7"
|
|
189
|
+
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz#30cd49820a962aff48c8fffc5cd760151fca61fe"
|
|
190
|
+
integrity sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==
|
|
191
|
+
|
|
192
|
+
"@jridgewell/set-array@^1.0.0":
|
|
193
|
+
version "1.1.1"
|
|
194
|
+
resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.1.tgz#36a6acc93987adcf0ba50c66908bd0b70de8afea"
|
|
195
|
+
integrity sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==
|
|
196
|
+
|
|
197
|
+
"@jridgewell/sourcemap-codec@^1.4.10":
|
|
198
|
+
version "1.4.13"
|
|
199
|
+
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz#b6461fb0c2964356c469e115f504c95ad97ab88c"
|
|
200
|
+
integrity sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==
|
|
201
|
+
|
|
202
|
+
"@jridgewell/trace-mapping@^0.3.9":
|
|
203
|
+
version "0.3.13"
|
|
204
|
+
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz#dcfe3e95f224c8fe97a87a5235defec999aa92ea"
|
|
205
|
+
integrity sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==
|
|
206
|
+
dependencies:
|
|
207
|
+
"@jridgewell/resolve-uri" "^3.0.3"
|
|
208
|
+
"@jridgewell/sourcemap-codec" "^1.4.10"
|
|
209
|
+
|
|
210
|
+
"@semantic-ui-react/event-stack@^3.1.0":
|
|
211
|
+
version "3.1.3"
|
|
212
|
+
resolved "https://registry.yarnpkg.com/@semantic-ui-react/event-stack/-/event-stack-3.1.3.tgz#2862d2631d67dd846c705db2fc1ede1c468be3a1"
|
|
213
|
+
integrity sha512-FdTmJyWvJaYinHrKRsMLDrz4tTMGdFfds299Qory53hBugiDvGC0tEJf+cHsi5igDwWb/CLOgOiChInHwq8URQ==
|
|
214
|
+
dependencies:
|
|
215
|
+
exenv "^1.2.2"
|
|
216
|
+
prop-types "^15.6.2"
|
|
217
|
+
|
|
218
|
+
"@testing-library/jest-dom@link:../node_modules":
|
|
219
|
+
version "0.0.0"
|
|
220
|
+
uid ""
|
|
221
|
+
|
|
222
|
+
"@testing-library/react@link:../node_modules":
|
|
223
|
+
version "0.0.0"
|
|
224
|
+
uid ""
|
|
225
|
+
|
|
226
|
+
"@testing-library/user-event@link:../node_modules":
|
|
227
|
+
version "0.0.0"
|
|
228
|
+
uid ""
|
|
229
|
+
|
|
230
|
+
"@types/jest@link:../node_modules":
|
|
231
|
+
version "0.0.0"
|
|
232
|
+
uid ""
|
|
233
|
+
|
|
234
|
+
"@types/node@link:../node_modules":
|
|
235
|
+
version "0.0.0"
|
|
236
|
+
uid ""
|
|
237
|
+
|
|
238
|
+
"@types/react-dom@link:../node_modules":
|
|
239
|
+
version "0.0.0"
|
|
240
|
+
uid ""
|
|
241
|
+
|
|
242
|
+
"@types/react@link:../node_modules":
|
|
243
|
+
version "0.0.0"
|
|
244
|
+
uid ""
|
|
245
|
+
|
|
246
|
+
"@wojtekmaj/date-utils@^1.0.2":
|
|
247
|
+
version "1.0.3"
|
|
248
|
+
resolved "https://registry.yarnpkg.com/@wojtekmaj/date-utils/-/date-utils-1.0.3.tgz#2dcfd92881425c5923e429c2aec86fb3609032a1"
|
|
249
|
+
integrity sha512-1VPkkTBk07gMR1fjpBtse4G+oJqpmE+0gUFB0dg3VIL7qJmUVaBoD/vlzMm/jNeOPfvlmerl1lpnsZyBUFIRuw==
|
|
250
|
+
|
|
251
|
+
ansi-styles@^3.2.1:
|
|
252
|
+
version "3.2.1"
|
|
253
|
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
|
|
254
|
+
integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
|
|
255
|
+
dependencies:
|
|
256
|
+
color-convert "^1.9.0"
|
|
257
|
+
|
|
258
|
+
"babel-plugin-styled-components@>= 1.12.0":
|
|
259
|
+
version "2.0.7"
|
|
260
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.7.tgz#c81ef34b713f9da2b7d3f5550df0d1e19e798086"
|
|
261
|
+
integrity sha512-i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA==
|
|
262
|
+
dependencies:
|
|
263
|
+
"@babel/helper-annotate-as-pure" "^7.16.0"
|
|
264
|
+
"@babel/helper-module-imports" "^7.16.0"
|
|
265
|
+
babel-plugin-syntax-jsx "^6.18.0"
|
|
266
|
+
lodash "^4.17.11"
|
|
267
|
+
picomatch "^2.3.0"
|
|
268
|
+
|
|
269
|
+
babel-plugin-syntax-jsx@^6.18.0:
|
|
270
|
+
version "6.18.0"
|
|
271
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
|
|
272
|
+
integrity sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==
|
|
273
|
+
|
|
274
|
+
call-bind@^1.0.2:
|
|
275
|
+
version "1.0.2"
|
|
276
|
+
resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
|
|
277
|
+
integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
|
|
278
|
+
dependencies:
|
|
279
|
+
function-bind "^1.1.1"
|
|
280
|
+
get-intrinsic "^1.0.2"
|
|
281
|
+
|
|
282
|
+
camelize@^1.0.0:
|
|
283
|
+
version "1.0.0"
|
|
284
|
+
resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b"
|
|
285
|
+
integrity sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg==
|
|
286
|
+
|
|
287
|
+
chalk@^2.0.0:
|
|
288
|
+
version "2.4.2"
|
|
289
|
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
|
|
290
|
+
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
|
|
291
|
+
dependencies:
|
|
292
|
+
ansi-styles "^3.2.1"
|
|
293
|
+
escape-string-regexp "^1.0.5"
|
|
294
|
+
supports-color "^5.3.0"
|
|
295
|
+
|
|
296
|
+
clsx@^1.1.1:
|
|
297
|
+
version "1.1.1"
|
|
298
|
+
resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188"
|
|
299
|
+
integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==
|
|
300
|
+
|
|
301
|
+
color-convert@^1.9.0:
|
|
302
|
+
version "1.9.3"
|
|
303
|
+
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
|
|
304
|
+
integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
|
|
305
|
+
dependencies:
|
|
306
|
+
color-name "1.1.3"
|
|
307
|
+
|
|
308
|
+
color-name@1.1.3:
|
|
309
|
+
version "1.1.3"
|
|
310
|
+
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
|
|
311
|
+
integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
|
|
312
|
+
|
|
313
|
+
css-color-keywords@^1.0.0:
|
|
314
|
+
version "1.0.0"
|
|
315
|
+
resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05"
|
|
316
|
+
integrity sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==
|
|
317
|
+
|
|
318
|
+
css-to-react-native@^3.0.0:
|
|
319
|
+
version "3.0.0"
|
|
320
|
+
resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-3.0.0.tgz#62dbe678072a824a689bcfee011fc96e02a7d756"
|
|
321
|
+
integrity sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==
|
|
322
|
+
dependencies:
|
|
323
|
+
camelize "^1.0.0"
|
|
324
|
+
css-color-keywords "^1.0.0"
|
|
325
|
+
postcss-value-parser "^4.0.2"
|
|
326
|
+
|
|
327
|
+
debug@^4.1.0:
|
|
328
|
+
version "4.3.4"
|
|
329
|
+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
|
|
330
|
+
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
|
|
331
|
+
dependencies:
|
|
332
|
+
ms "2.1.2"
|
|
333
|
+
|
|
334
|
+
deep-equal@^1.1.1:
|
|
335
|
+
version "1.1.1"
|
|
336
|
+
resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a"
|
|
337
|
+
integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==
|
|
338
|
+
dependencies:
|
|
339
|
+
is-arguments "^1.0.4"
|
|
340
|
+
is-date-object "^1.0.1"
|
|
341
|
+
is-regex "^1.0.4"
|
|
342
|
+
object-is "^1.0.1"
|
|
343
|
+
object-keys "^1.1.1"
|
|
344
|
+
regexp.prototype.flags "^1.2.0"
|
|
345
|
+
|
|
346
|
+
define-properties@^1.1.3:
|
|
347
|
+
version "1.1.4"
|
|
348
|
+
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1"
|
|
349
|
+
integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
|
|
350
|
+
dependencies:
|
|
351
|
+
has-property-descriptors "^1.0.0"
|
|
352
|
+
object-keys "^1.1.1"
|
|
353
|
+
|
|
354
|
+
escape-string-regexp@^1.0.5:
|
|
355
|
+
version "1.0.5"
|
|
356
|
+
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
|
357
|
+
integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
|
|
358
|
+
|
|
359
|
+
exenv@^1.2.2:
|
|
360
|
+
version "1.2.2"
|
|
361
|
+
resolved "https://registry.yarnpkg.com/exenv/-/exenv-1.2.2.tgz#2ae78e85d9894158670b03d47bec1f03bd91bb9d"
|
|
362
|
+
integrity sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==
|
|
363
|
+
|
|
364
|
+
function-bind@^1.1.1:
|
|
365
|
+
version "1.1.1"
|
|
366
|
+
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
|
367
|
+
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
|
|
368
|
+
|
|
369
|
+
functions-have-names@^1.2.2:
|
|
370
|
+
version "1.2.3"
|
|
371
|
+
resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
|
|
372
|
+
integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
|
|
373
|
+
|
|
374
|
+
get-intrinsic@^1.0.2, get-intrinsic@^1.1.1:
|
|
375
|
+
version "1.1.1"
|
|
376
|
+
resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
|
|
377
|
+
integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
|
|
378
|
+
dependencies:
|
|
379
|
+
function-bind "^1.1.1"
|
|
380
|
+
has "^1.0.3"
|
|
381
|
+
has-symbols "^1.0.1"
|
|
382
|
+
|
|
383
|
+
get-user-locale@^1.2.0:
|
|
384
|
+
version "1.4.0"
|
|
385
|
+
resolved "https://registry.yarnpkg.com/get-user-locale/-/get-user-locale-1.4.0.tgz#a2c4b5da46feec9f03c9b07d197b1620490a5370"
|
|
386
|
+
integrity sha512-gQo03lP1OArHLKlnoglqrGGl7b04u2EP9Xutmp72cMdtrrSD7ZgIsCsUKZynYWLDkVJW33Cj3pliP7uP0UonHQ==
|
|
387
|
+
dependencies:
|
|
388
|
+
lodash.once "^4.1.1"
|
|
389
|
+
|
|
390
|
+
globals@^11.1.0:
|
|
391
|
+
version "11.12.0"
|
|
392
|
+
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
|
|
393
|
+
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
|
|
394
|
+
|
|
395
|
+
gud@^1.0.0:
|
|
396
|
+
version "1.0.0"
|
|
397
|
+
resolved "https://registry.yarnpkg.com/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0"
|
|
398
|
+
integrity sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==
|
|
399
|
+
|
|
400
|
+
has-flag@^3.0.0:
|
|
401
|
+
version "3.0.0"
|
|
402
|
+
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
|
|
403
|
+
integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
|
|
404
|
+
|
|
405
|
+
has-property-descriptors@^1.0.0:
|
|
406
|
+
version "1.0.0"
|
|
407
|
+
resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861"
|
|
408
|
+
integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
|
|
409
|
+
dependencies:
|
|
410
|
+
get-intrinsic "^1.1.1"
|
|
411
|
+
|
|
412
|
+
has-symbols@^1.0.1, has-symbols@^1.0.2:
|
|
413
|
+
version "1.0.3"
|
|
414
|
+
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
|
|
415
|
+
integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
|
|
416
|
+
|
|
417
|
+
has-tostringtag@^1.0.0:
|
|
418
|
+
version "1.0.0"
|
|
419
|
+
resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
|
|
420
|
+
integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
|
|
421
|
+
dependencies:
|
|
422
|
+
has-symbols "^1.0.2"
|
|
423
|
+
|
|
424
|
+
has@^1.0.3:
|
|
425
|
+
version "1.0.3"
|
|
426
|
+
resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
|
|
427
|
+
integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
|
|
428
|
+
dependencies:
|
|
429
|
+
function-bind "^1.1.1"
|
|
430
|
+
|
|
431
|
+
hoist-non-react-statics@^3.0.0:
|
|
432
|
+
version "3.3.2"
|
|
433
|
+
resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
|
|
434
|
+
integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
|
|
435
|
+
dependencies:
|
|
436
|
+
react-is "^16.7.0"
|
|
437
|
+
|
|
438
|
+
is-arguments@^1.0.4:
|
|
439
|
+
version "1.1.1"
|
|
440
|
+
resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b"
|
|
441
|
+
integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==
|
|
442
|
+
dependencies:
|
|
443
|
+
call-bind "^1.0.2"
|
|
444
|
+
has-tostringtag "^1.0.0"
|
|
445
|
+
|
|
446
|
+
is-date-object@^1.0.1:
|
|
447
|
+
version "1.0.5"
|
|
448
|
+
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
|
|
449
|
+
integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
|
|
450
|
+
dependencies:
|
|
451
|
+
has-tostringtag "^1.0.0"
|
|
452
|
+
|
|
453
|
+
is-regex@^1.0.4:
|
|
454
|
+
version "1.1.4"
|
|
455
|
+
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
|
|
456
|
+
integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
|
|
457
|
+
dependencies:
|
|
458
|
+
call-bind "^1.0.2"
|
|
459
|
+
has-tostringtag "^1.0.0"
|
|
460
|
+
|
|
461
|
+
jquery@x.*:
|
|
462
|
+
version "3.6.0"
|
|
463
|
+
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.0.tgz#c72a09f15c1bdce142f49dbf1170bdf8adac2470"
|
|
464
|
+
integrity sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw==
|
|
465
|
+
|
|
466
|
+
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
|
|
467
|
+
version "4.0.0"
|
|
468
|
+
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
|
469
|
+
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
|
|
470
|
+
|
|
471
|
+
jsesc@^2.5.1:
|
|
472
|
+
version "2.5.2"
|
|
473
|
+
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
|
|
474
|
+
integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
|
|
475
|
+
|
|
476
|
+
keyboard-key@^1.1.0:
|
|
477
|
+
version "1.1.0"
|
|
478
|
+
resolved "https://registry.yarnpkg.com/keyboard-key/-/keyboard-key-1.1.0.tgz#6f2e8e37fa11475bb1f1d65d5174f1b35653f5b7"
|
|
479
|
+
integrity sha512-qkBzPTi3rlAKvX7k0/ub44sqOfXeLc/jcnGGmj5c7BJpU8eDrEVPyhCvNYAaoubbsLm9uGWwQJO1ytQK1a9/dQ==
|
|
480
|
+
|
|
481
|
+
lodash-es@^4.17.15:
|
|
482
|
+
version "4.17.21"
|
|
483
|
+
resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee"
|
|
484
|
+
integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==
|
|
485
|
+
|
|
486
|
+
lodash.once@^4.1.1:
|
|
487
|
+
version "4.1.1"
|
|
488
|
+
resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac"
|
|
489
|
+
integrity sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==
|
|
490
|
+
|
|
491
|
+
lodash@^4.17.11, lodash@^4.17.19:
|
|
492
|
+
version "4.17.21"
|
|
493
|
+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
|
|
494
|
+
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
|
|
495
|
+
|
|
496
|
+
loose-envify@^1.0.0, loose-envify@^1.4.0:
|
|
497
|
+
version "1.4.0"
|
|
498
|
+
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
|
|
499
|
+
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
|
|
500
|
+
dependencies:
|
|
501
|
+
js-tokens "^3.0.0 || ^4.0.0"
|
|
502
|
+
|
|
503
|
+
merge-class-names@^1.1.1:
|
|
504
|
+
version "1.4.2"
|
|
505
|
+
resolved "https://registry.yarnpkg.com/merge-class-names/-/merge-class-names-1.4.2.tgz#78d6d95ab259e7e647252a7988fd25a27d5a8835"
|
|
506
|
+
integrity sha512-bOl98VzwCGi25Gcn3xKxnR5p/WrhWFQB59MS/aGENcmUc6iSm96yrFDF0XSNurX9qN4LbJm0R9kfvsQ17i8zCw==
|
|
507
|
+
|
|
508
|
+
ms@2.1.2:
|
|
509
|
+
version "2.1.2"
|
|
510
|
+
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
|
|
511
|
+
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
|
|
512
|
+
|
|
513
|
+
"mw-ui@link:..":
|
|
514
|
+
version "0.0.0"
|
|
515
|
+
uid ""
|
|
516
|
+
|
|
517
|
+
object-assign@^4.1.1:
|
|
518
|
+
version "4.1.1"
|
|
519
|
+
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
|
|
520
|
+
integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
|
|
521
|
+
|
|
522
|
+
object-is@^1.0.1:
|
|
523
|
+
version "1.1.5"
|
|
524
|
+
resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac"
|
|
525
|
+
integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==
|
|
526
|
+
dependencies:
|
|
527
|
+
call-bind "^1.0.2"
|
|
528
|
+
define-properties "^1.1.3"
|
|
529
|
+
|
|
530
|
+
object-keys@^1.1.1:
|
|
531
|
+
version "1.1.1"
|
|
532
|
+
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
|
|
533
|
+
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
|
|
534
|
+
|
|
535
|
+
picomatch@^2.3.0:
|
|
536
|
+
version "2.3.1"
|
|
537
|
+
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
|
|
538
|
+
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
|
|
539
|
+
|
|
540
|
+
popper.js@^1.14.4:
|
|
541
|
+
version "1.16.1"
|
|
542
|
+
resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b"
|
|
543
|
+
integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==
|
|
544
|
+
|
|
545
|
+
postcss-value-parser@^4.0.2:
|
|
546
|
+
version "4.2.0"
|
|
547
|
+
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
|
|
548
|
+
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
|
|
549
|
+
|
|
550
|
+
prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2:
|
|
551
|
+
version "15.8.1"
|
|
552
|
+
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
|
|
553
|
+
integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
|
|
554
|
+
dependencies:
|
|
555
|
+
loose-envify "^1.4.0"
|
|
556
|
+
object-assign "^4.1.1"
|
|
557
|
+
react-is "^16.13.1"
|
|
558
|
+
|
|
559
|
+
react-calendar@^3.4.5:
|
|
560
|
+
version "3.7.0"
|
|
561
|
+
resolved "https://registry.yarnpkg.com/react-calendar/-/react-calendar-3.7.0.tgz#951d56e91afb33b1c1e019cb790349fbffcc6894"
|
|
562
|
+
integrity sha512-zkK95zWLWLC6w3O7p3SHx/FJXEyyD2UMd4jr3CrKD+G73N+G5vEwrXxYQCNivIPoFNBjqoyYYGlkHA+TBDPLCw==
|
|
563
|
+
dependencies:
|
|
564
|
+
"@wojtekmaj/date-utils" "^1.0.2"
|
|
565
|
+
get-user-locale "^1.2.0"
|
|
566
|
+
merge-class-names "^1.1.1"
|
|
567
|
+
prop-types "^15.6.0"
|
|
568
|
+
|
|
569
|
+
"react-dom@link:../node_modules":
|
|
570
|
+
version "0.0.0"
|
|
571
|
+
uid ""
|
|
572
|
+
|
|
573
|
+
react-hook-form@^7.33.0:
|
|
574
|
+
version "7.33.0"
|
|
575
|
+
resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.33.0.tgz#44a87ddd630f00ebeb0f15aa978f69ca74b8a77b"
|
|
576
|
+
integrity sha512-h8XoeUHQs1Snx1s/sSvM+eVTSKkWQt8TcrbL+3/Rt5gugxpy4ueL5ZZkubffyNpUyyTz0qM0kwOi2c+JgGTjLA==
|
|
577
|
+
|
|
578
|
+
react-is@^16.13.1, react-is@^16.6.3, react-is@^16.7.0, react-is@^16.8.6:
|
|
579
|
+
version "16.13.1"
|
|
580
|
+
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
|
|
581
|
+
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
|
|
582
|
+
|
|
583
|
+
react-popper@^1.3.7:
|
|
584
|
+
version "1.3.11"
|
|
585
|
+
resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.11.tgz#a2cc3f0a67b75b66cfa62d2c409f9dd1fcc71ffd"
|
|
586
|
+
integrity sha512-VSA/bS+pSndSF2fiasHK/PTEEAyOpX60+H5EPAjoArr8JGm+oihu4UbrqcEBpQibJxBVCpYyjAX7abJ+7DoYVg==
|
|
587
|
+
dependencies:
|
|
588
|
+
"@babel/runtime" "^7.1.2"
|
|
589
|
+
"@hypnosphi/create-react-context" "^0.3.1"
|
|
590
|
+
deep-equal "^1.1.1"
|
|
591
|
+
popper.js "^1.14.4"
|
|
592
|
+
prop-types "^15.6.1"
|
|
593
|
+
typed-styles "^0.0.7"
|
|
594
|
+
warning "^4.0.2"
|
|
595
|
+
|
|
596
|
+
"react-scripts@link:../node_modules":
|
|
597
|
+
version "0.0.0"
|
|
598
|
+
uid ""
|
|
599
|
+
|
|
600
|
+
"react@link:../node_modules":
|
|
601
|
+
version "0.0.0"
|
|
602
|
+
uid ""
|
|
603
|
+
|
|
604
|
+
regenerator-runtime@^0.13.4:
|
|
605
|
+
version "0.13.9"
|
|
606
|
+
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
|
|
607
|
+
integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
|
|
608
|
+
|
|
609
|
+
regexp.prototype.flags@^1.2.0:
|
|
610
|
+
version "1.4.3"
|
|
611
|
+
resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac"
|
|
612
|
+
integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
|
|
613
|
+
dependencies:
|
|
614
|
+
call-bind "^1.0.2"
|
|
615
|
+
define-properties "^1.1.3"
|
|
616
|
+
functions-have-names "^1.2.2"
|
|
617
|
+
|
|
618
|
+
semantic-ui-css@^2.4.1:
|
|
619
|
+
version "2.4.1"
|
|
620
|
+
resolved "https://registry.yarnpkg.com/semantic-ui-css/-/semantic-ui-css-2.4.1.tgz#f5aea39fafb787cbd905ec724272a3f9cba9004a"
|
|
621
|
+
integrity sha512-Pkp0p9oWOxlH0kODx7qFpIRYpK1T4WJOO4lNnpNPOoWKCrYsfHqYSKgk5fHfQtnWnsAKy7nLJMW02bgDWWFZFg==
|
|
622
|
+
dependencies:
|
|
623
|
+
jquery x.*
|
|
624
|
+
|
|
625
|
+
semantic-ui-react@^1.2.1:
|
|
626
|
+
version "1.3.1"
|
|
627
|
+
resolved "https://registry.yarnpkg.com/semantic-ui-react/-/semantic-ui-react-1.3.1.tgz#254a8e53f13f4e09a0a4692e971202dcb7b72834"
|
|
628
|
+
integrity sha512-3EE8Cl2Tq9re+J5An8QOZHgjRJjHqNDBq+Aoaa0TLFnd79UgYzovJPQGy3AWIxgCkxDPj4c3yxl72ImumJLyeA==
|
|
629
|
+
dependencies:
|
|
630
|
+
"@babel/runtime" "^7.10.5"
|
|
631
|
+
"@fluentui/react-component-event-listener" "~0.51.1"
|
|
632
|
+
"@fluentui/react-component-ref" "~0.51.1"
|
|
633
|
+
"@semantic-ui-react/event-stack" "^3.1.0"
|
|
634
|
+
clsx "^1.1.1"
|
|
635
|
+
keyboard-key "^1.1.0"
|
|
636
|
+
lodash "^4.17.19"
|
|
637
|
+
lodash-es "^4.17.15"
|
|
638
|
+
prop-types "^15.7.2"
|
|
639
|
+
react-is "^16.8.6"
|
|
640
|
+
react-popper "^1.3.7"
|
|
641
|
+
shallowequal "^1.1.0"
|
|
642
|
+
|
|
643
|
+
shallowequal@^1.1.0:
|
|
644
|
+
version "1.1.0"
|
|
645
|
+
resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8"
|
|
646
|
+
integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==
|
|
647
|
+
|
|
648
|
+
styled-components@^5.3.5:
|
|
649
|
+
version "5.3.5"
|
|
650
|
+
resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.3.5.tgz#a750a398d01f1ca73af16a241dec3da6deae5ec4"
|
|
651
|
+
integrity sha512-ndETJ9RKaaL6q41B69WudeqLzOpY1A/ET/glXkNZ2T7dPjPqpPCXXQjDFYZWwNnE5co0wX+gTCqx9mfxTmSIPg==
|
|
652
|
+
dependencies:
|
|
653
|
+
"@babel/helper-module-imports" "^7.0.0"
|
|
654
|
+
"@babel/traverse" "^7.4.5"
|
|
655
|
+
"@emotion/is-prop-valid" "^1.1.0"
|
|
656
|
+
"@emotion/stylis" "^0.8.4"
|
|
657
|
+
"@emotion/unitless" "^0.7.4"
|
|
658
|
+
babel-plugin-styled-components ">= 1.12.0"
|
|
659
|
+
css-to-react-native "^3.0.0"
|
|
660
|
+
hoist-non-react-statics "^3.0.0"
|
|
661
|
+
shallowequal "^1.1.0"
|
|
662
|
+
supports-color "^5.5.0"
|
|
663
|
+
|
|
664
|
+
supports-color@^5.3.0, supports-color@^5.5.0:
|
|
665
|
+
version "5.5.0"
|
|
666
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
|
|
667
|
+
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
|
|
668
|
+
dependencies:
|
|
669
|
+
has-flag "^3.0.0"
|
|
670
|
+
|
|
671
|
+
to-fast-properties@^2.0.0:
|
|
672
|
+
version "2.0.0"
|
|
673
|
+
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
|
|
674
|
+
integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
|
|
675
|
+
|
|
676
|
+
typed-styles@^0.0.7:
|
|
677
|
+
version "0.0.7"
|
|
678
|
+
resolved "https://registry.yarnpkg.com/typed-styles/-/typed-styles-0.0.7.tgz#93392a008794c4595119ff62dde6809dbc40a3d9"
|
|
679
|
+
integrity sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q==
|
|
680
|
+
|
|
681
|
+
"typescript@link:../node_modules":
|
|
682
|
+
version "0.0.0"
|
|
683
|
+
uid ""
|
|
684
|
+
|
|
685
|
+
warning@^4.0.2, warning@^4.0.3:
|
|
686
|
+
version "4.0.3"
|
|
687
|
+
resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3"
|
|
688
|
+
integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==
|
|
689
|
+
dependencies:
|
|
690
|
+
loose-envify "^1.0.0"
|
|
691
|
+
|
|
692
|
+
"web-vitals@link:../node_modules":
|
|
693
|
+
version "0.0.0"
|
|
694
|
+
uid ""
|