From c72303baf14c8b63b3716a5f6ae72c6649641548 Mon Sep 17 00:00:00 2001 From: Yuri Date: Tue, 2 Aug 2022 10:50:53 -0300 Subject: [PATCH 1/3] fix: updating date pickers --- package.json | 4 +- src/components/Inputs/DatePicker/index.tsx | 14 +- .../Inputs/DateTimePicker/index.tsx | 12 +- yarn.lock | 136 +++++++++++++++--- 4 files changed, 139 insertions(+), 27 deletions(-) diff --git a/package.json b/package.json index bc35efd..642846a 100644 --- a/package.json +++ b/package.json @@ -49,8 +49,8 @@ "@euk-labs/formix": "^0.4.5", "@mui/icons-material": "^5.8.4", "@mui/lab": "^5.0.0-alpha.88", - "@mui/material": "^5.8.6", - "@mui/x-date-pickers": "^5.0.0-alpha.7", + "@mui/material": "^5.9.3", + "@mui/x-date-pickers": "^5.0.0-beta.3", "@storybook/addon-actions": "^6.4.17", "@storybook/addon-essentials": "^6.4.17", "@storybook/addon-interactions": "^6.4.17", diff --git a/src/components/Inputs/DatePicker/index.tsx b/src/components/Inputs/DatePicker/index.tsx index 072e942..af530e9 100644 --- a/src/components/Inputs/DatePicker/index.tsx +++ b/src/components/Inputs/DatePicker/index.tsx @@ -1,8 +1,8 @@ +import { TextField, TextFieldProps } from '@mui/material'; import { DatePicker as MuiDatePicker, DatePickerProps as MuiDatePickerProps, } from '@mui/x-date-pickers'; -import { TextField, TextFieldProps } from '@mui/material'; export type DatePickerProps = { label?: string; @@ -28,7 +28,17 @@ function DatePicker({ onChange={onChange} label={label} renderInput={(params) => ( - + { + textFieldProps?.onBlur && textFieldProps?.onBlur(e); + params.onBlur && params.onBlur(e); + }} + error={params.error || textFieldProps?.error} + helperText={params.helperText || textFieldProps?.helperText} + /> )} /> ); diff --git a/src/components/Inputs/DateTimePicker/index.tsx b/src/components/Inputs/DateTimePicker/index.tsx index 0fed3a3..27c1ceb 100644 --- a/src/components/Inputs/DateTimePicker/index.tsx +++ b/src/components/Inputs/DateTimePicker/index.tsx @@ -28,7 +28,17 @@ function DateTimePicker({ onChange={onChange} label={label} renderInput={(params) => ( - + { + textFieldProps?.onBlur && textFieldProps?.onBlur(e); + params.onBlur && params.onBlur(e); + }} + error={params.error || textFieldProps?.error} + helperText={params.helperText || textFieldProps?.helperText} + /> )} /> ); diff --git a/yarn.lock b/yarn.lock index 1aa5906..9f1c210 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1075,6 +1075,13 @@ dependencies: regenerator-runtime "^0.13.4" +"@babel/runtime@^7.18.6": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.9.tgz#b4fcfce55db3d2e5e080d2490f608a3b9f407f4a" + integrity sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw== + dependencies: + regenerator-runtime "^0.13.4" + "@babel/template@^7.12.7", "@babel/template@^7.16.0", "@babel/template@^7.3.3": version "7.16.0" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.0.tgz#d16a35ebf4cd74e202083356fab21dd89363ddd6" @@ -1888,6 +1895,20 @@ prop-types "^15.8.1" react-is "^17.0.2" +"@mui/base@5.0.0-alpha.92": + version "5.0.0-alpha.92" + resolved "https://registry.yarnpkg.com/@mui/base/-/base-5.0.0-alpha.92.tgz#5c2ca31801fe21a8fec9bfda2cf5f44b1e3c7284" + integrity sha512-ZgnSLrTXL4iUdLQhjp01dAOTQPQlnwrqjZRwDT3E6LZXEYn6cMv1MY6LZkWcF/zxrUnyasnsyMAgZ5d8AXS7bA== + dependencies: + "@babel/runtime" "^7.17.2" + "@emotion/is-prop-valid" "^1.1.3" + "@mui/types" "^7.1.5" + "@mui/utils" "^5.9.3" + "@popperjs/core" "^2.11.5" + clsx "^1.2.1" + prop-types "^15.8.1" + react-is "^18.2.0" + "@mui/icons-material@^5.8.4": version "5.8.4" resolved "https://registry.yarnpkg.com/@mui/icons-material/-/icons-material-5.8.4.tgz#3f2907c9f8f5ce4d754cb8fb4b68b5a1abf4d095" @@ -1911,22 +1932,22 @@ react-transition-group "^4.4.2" rifm "^0.12.1" -"@mui/material@^5.8.6": - version "5.8.6" - resolved "https://registry.yarnpkg.com/@mui/material/-/material-5.8.6.tgz#4019fbf1b95d8ea9f397efaed835ac92a6d8f22d" - integrity sha512-9fo5AiNHs+HY5ArMzsDMFrAmJSRw90y/qu81oDIszgK7Bfrm8GuI7Eb0mO6WADWPEyKOzOov/WZsm4G6jPEM4g== +"@mui/material@^5.9.3": + version "5.9.3" + resolved "https://registry.yarnpkg.com/@mui/material/-/material-5.9.3.tgz#23aa8a6f651f3f139a38e0eea39468ced7f509d0" + integrity sha512-idDJajnfnDr+2pI6h2tzWtWoZJmVHNk6aSjISirMuVOGy0ugWpsCE+KW4++GS7aTCujXm9+cl5bWAyXvGjiPIQ== dependencies: "@babel/runtime" "^7.17.2" - "@mui/base" "5.0.0-alpha.87" - "@mui/system" "^5.8.6" - "@mui/types" "^7.1.4" - "@mui/utils" "^5.8.6" - "@types/react-transition-group" "^4.4.4" - clsx "^1.1.1" + "@mui/base" "5.0.0-alpha.92" + "@mui/system" "^5.9.3" + "@mui/types" "^7.1.5" + "@mui/utils" "^5.9.3" + "@types/react-transition-group" "^4.4.5" + clsx "^1.2.1" csstype "^3.1.0" prop-types "^15.8.1" - react-is "^17.0.2" - react-transition-group "^4.4.2" + react-is "^18.2.0" + react-transition-group "^4.4.5" "@mui/private-theming@^5.8.6": version "5.8.6" @@ -1937,6 +1958,15 @@ "@mui/utils" "^5.8.6" prop-types "^15.8.1" +"@mui/private-theming@^5.9.3": + version "5.9.3" + resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-5.9.3.tgz#8ea06dbe0522b0cf4ba5ee19b1a4d7f74539ae1c" + integrity sha512-Ys3WO39WqoGciGX9k5AIi/k2zJhlydv4FzlEEwtw9OqdMaV0ydK/TdZekKzjP9sTI/JcdAP3H5DWtUaPLQJjWg== + dependencies: + "@babel/runtime" "^7.17.2" + "@mui/utils" "^5.9.3" + prop-types "^15.8.1" + "@mui/styled-engine@^5.8.0": version "5.8.0" resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-5.8.0.tgz#89ed42efe7c8749e5a60af035bc5d3a6bea362bf" @@ -1946,6 +1976,16 @@ "@emotion/cache" "^11.7.1" prop-types "^15.8.1" +"@mui/styled-engine@^5.8.7": + version "5.8.7" + resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-5.8.7.tgz#63d0779c07677fe76d4705a02c7ae99f89b50780" + integrity sha512-tVqtowjbYmiRq+qcqXK731L9eWoL9H8xTRhuTgaDGKdch1zlt4I2UwInUe1w2N9N/u3/jHsFbLcl1Un3uOwpQg== + dependencies: + "@babel/runtime" "^7.17.2" + "@emotion/cache" "^11.9.3" + csstype "^3.1.0" + prop-types "^15.8.1" + "@mui/system@^5.8.6": version "5.8.6" resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.8.6.tgz#aed7e501c513429dab9cfbbe86da5dcd056c2a0a" @@ -1960,11 +2000,30 @@ csstype "^3.1.0" prop-types "^15.8.1" +"@mui/system@^5.9.3": + version "5.9.3" + resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.9.3.tgz#5d2d06db2b2454573639de394f81b6be3608a1ce" + integrity sha512-EXQV2POwncstHLYII+G4VSYdEFun1TjBbQSBDK76DbIkug8nPjtjAZ+3Kgk3/NoFIigW+vQ9cDVUZtlbRH6YMQ== + dependencies: + "@babel/runtime" "^7.17.2" + "@mui/private-theming" "^5.9.3" + "@mui/styled-engine" "^5.8.7" + "@mui/types" "^7.1.5" + "@mui/utils" "^5.9.3" + clsx "^1.2.1" + csstype "^3.1.0" + prop-types "^15.8.1" + "@mui/types@^7.1.4": version "7.1.4" resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.1.4.tgz#4185c05d6df63ec673cda15feab80440abadc764" integrity sha512-uveM3byMbthO+6tXZ1n2zm0W3uJCQYtwt/v5zV5I77v2v18u0ITkb8xwhsDD2i3V2Kye7SaNR6FFJ6lMuY/WqQ== +"@mui/types@^7.1.5": + version "7.1.5" + resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.1.5.tgz#5e5cc49d719bc86522983359bc1f90eddcff0624" + integrity sha512-HnRXrxgHJYJcT8ZDdDCQIlqk0s0skOKD7eWs9mJgBUu70hyW4iA6Kiv3yspJR474RFH8hysKR65VVSzUSzkuwA== + "@mui/utils@^5.4.1", "@mui/utils@^5.8.6": version "5.8.6" resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.8.6.tgz#543de64a64bb9135316ecfd91d75a8740544d79f" @@ -1987,6 +2046,17 @@ prop-types "^15.8.1" react-is "^17.0.2" +"@mui/utils@^5.9.3": + version "5.9.3" + resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.9.3.tgz#a11e0824f00b7ea40257b390060ce167fe861d02" + integrity sha512-l0N5bcrenE9hnwZ/jPecpIRqsDFHkPXoFUcmkgysaJwVZzJ3yQkGXB47eqmXX5yyGrSc6HksbbqXEaUya+siew== + dependencies: + "@babel/runtime" "^7.17.2" + "@types/prop-types" "^15.7.5" + "@types/react-is" "^16.7.1 || ^17.0.0" + prop-types "^15.8.1" + react-is "^18.2.0" + "@mui/x-date-pickers@5.0.0-alpha.1": version "5.0.0-alpha.1" resolved "https://registry.yarnpkg.com/@mui/x-date-pickers/-/x-date-pickers-5.0.0-alpha.1.tgz#7450b5544b9ed655db41891c74e2c5f652fbedb7" @@ -2002,18 +2072,20 @@ react-transition-group "^4.4.2" rifm "^0.12.1" -"@mui/x-date-pickers@^5.0.0-alpha.7": - version "5.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/@mui/x-date-pickers/-/x-date-pickers-5.0.0-alpha.7.tgz#994b9025ba02440dbbbb3a887abc4f06510fdfba" - integrity sha512-y+RAkuC9riyoPD8mt2/Y9nV3+MxwCYfUOh2o09nFVnIKUSud37hhOMiX8BzAbQRO/2JoRByN5jEj2zuWPW2zuw== +"@mui/x-date-pickers@^5.0.0-beta.3": + version "5.0.0-beta.3" + resolved "https://registry.yarnpkg.com/@mui/x-date-pickers/-/x-date-pickers-5.0.0-beta.3.tgz#e9fbd85fd787f80502de8bbc29398121aedcf627" + integrity sha512-SrcGhwbyXal039I00+/8xNh8qGp0Y/iqWhhRqWk7Dy2lBpxIchNDUAvWtG27QfesxSRmhspo51dotpoG04u41A== dependencies: - "@babel/runtime" "^7.17.2" + "@babel/runtime" "^7.18.6" + "@date-io/core" "^2.14.0" "@date-io/date-fns" "^2.14.0" "@date-io/dayjs" "^2.14.0" "@date-io/luxon" "^2.14.0" "@date-io/moment" "^2.14.0" "@mui/utils" "^5.4.1" - clsx "^1.1.1" + "@types/react-transition-group" "^4.4.5" + clsx "^1.2.1" prop-types "^15.7.2" react-transition-group "^4.4.2" rifm "^0.12.1" @@ -3419,10 +3491,10 @@ dependencies: "@types/react" "*" -"@types/react-transition-group@^4.4.4": - version "4.4.4" - resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.4.tgz#acd4cceaa2be6b757db61ed7b432e103242d163e" - integrity sha512-7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug== +"@types/react-transition-group@^4.4.5": + version "4.4.5" + resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.5.tgz#aae20dcf773c5aa275d5b9f7cdbca638abc5e416" + integrity sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA== dependencies: "@types/react" "*" @@ -4954,6 +5026,11 @@ clsx@^1.1.1: resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188" integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA== +clsx@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12" + integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== + co@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" @@ -10285,6 +10362,11 @@ react-is@^16.13.1, react-is@^16.7.0: resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== +react-is@^18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" + integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== + react-number-format@^4.9.1: version "4.9.1" resolved "https://registry.yarnpkg.com/react-number-format/-/react-number-format-4.9.1.tgz#62b3450b43c911f9227e770a8ea9fa606696e52e" @@ -10376,6 +10458,16 @@ react-transition-group@^4.4.2: loose-envify "^1.4.0" prop-types "^15.6.2" +react-transition-group@^4.4.5: + version "4.4.5" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.5.tgz#e53d4e3f3344da8521489fbef8f2581d42becdd1" + integrity sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g== + dependencies: + "@babel/runtime" "^7.5.5" + dom-helpers "^5.0.1" + loose-envify "^1.4.0" + prop-types "^15.6.2" + react@^18.2.0: version "18.2.0" resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" From 85ad97175fd9323ede461b6ee52680aae68714a3 Mon Sep 17 00:00:00 2001 From: Yuri Date: Tue, 2 Aug 2022 12:25:36 -0300 Subject: [PATCH 2/3] fix: updating versions to be the same type --- package.json | 2 +- yarn.lock | 131 ++++++--------------------------------------------- 2 files changed, 15 insertions(+), 118 deletions(-) diff --git a/package.json b/package.json index 642846a..f095e0b 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "@euk-labs/componentz": "^0.5.12", "@euk-labs/formix": "^0.4.5", "@mui/icons-material": "^5.8.4", - "@mui/lab": "^5.0.0-alpha.88", + "@mui/lab": "^5.0.0-alpha.93", "@mui/material": "^5.9.3", "@mui/x-date-pickers": "^5.0.0-beta.3", "@storybook/addon-actions": "^6.4.17", diff --git a/yarn.lock b/yarn.lock index 9f1c210..8636a5c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1302,28 +1302,28 @@ resolved "https://registry.yarnpkg.com/@date-io/core/-/core-2.14.0.tgz#03e9b9b9fc8e4d561c32dd324df0f3ccd967ef14" integrity sha512-qFN64hiFjmlDHJhu+9xMkdfDG2jLsggNxKXglnekUpXSq8faiqZgtHm2lsHCUuaPDTV6wuXHcCl8J1GQ5wLmPw== -"@date-io/date-fns@^2.11.0", "@date-io/date-fns@^2.14.0": +"@date-io/date-fns@^2.14.0": version "2.14.0" resolved "https://registry.yarnpkg.com/@date-io/date-fns/-/date-fns-2.14.0.tgz#92ab150f488f294c135c873350d154803cebdbea" integrity sha512-4fJctdVyOd5cKIKGaWUM+s3MUXMuzkZaHuTY15PH70kU1YTMrCoauA7hgQVx9qj0ZEbGrH9VSPYJYnYro7nKiA== dependencies: "@date-io/core" "^2.14.0" -"@date-io/dayjs@^2.11.0", "@date-io/dayjs@^2.14.0": +"@date-io/dayjs@^2.14.0": version "2.14.0" resolved "https://registry.yarnpkg.com/@date-io/dayjs/-/dayjs-2.14.0.tgz#8d4e93e1d473bb5f25210866204dc33384ca4c20" integrity sha512-4fRvNWaOh7AjvOyJ4h6FYMS7VHLQnIEeAV5ahv6sKYWx+1g1UwYup8h7+gPuoF+sW2hTScxi7PVaba2Jk/U8Og== dependencies: "@date-io/core" "^2.14.0" -"@date-io/luxon@^2.11.1", "@date-io/luxon@^2.14.0": +"@date-io/luxon@^2.14.0": version "2.14.0" resolved "https://registry.yarnpkg.com/@date-io/luxon/-/luxon-2.14.0.tgz#cd1641229e00a899625895de3a31e3aaaf66629f" integrity sha512-KmpBKkQFJ/YwZgVd0T3h+br/O0uL9ZdE7mn903VPAG2ZZncEmaUfUdYKFT7v7GyIKJ4KzCp379CRthEbxevEVg== dependencies: "@date-io/core" "^2.14.0" -"@date-io/moment@^2.11.0", "@date-io/moment@^2.14.0": +"@date-io/moment@^2.14.0": version "2.14.0" resolved "https://registry.yarnpkg.com/@date-io/moment/-/moment-2.14.0.tgz#8300abd6ae8c55d8edee90d118db3cef0b1d4f58" integrity sha512-VsoLXs94GsZ49ecWuvFbsa081zEv2xxG7d+izJsqGa2L8RPZLlwk27ANh87+SNnOUpp+qy2AoCAf0mx4XXhioA== @@ -1363,17 +1363,6 @@ "@emotion/utils" "0.11.3" "@emotion/weak-memoize" "0.2.5" -"@emotion/cache@^11.7.1": - version "11.7.1" - resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.7.1.tgz#08d080e396a42e0037848214e8aa7bf879065539" - integrity sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A== - dependencies: - "@emotion/memoize" "^0.7.4" - "@emotion/sheet" "^1.1.0" - "@emotion/utils" "^1.0.0" - "@emotion/weak-memoize" "^0.2.5" - stylis "4.0.13" - "@emotion/cache@^11.9.3": version "11.9.3" resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.9.3.tgz#96638449f6929fd18062cfe04d79b29b44c0d6cb" @@ -1418,13 +1407,6 @@ dependencies: "@emotion/memoize" "0.7.4" -"@emotion/is-prop-valid@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.1.2.tgz#34ad6e98e871aa6f7a20469b602911b8b11b3a95" - integrity sha512-3QnhqeL+WW88YjYbQL5gUIkthuMw7a0NGbZ7wfFVk2kg/CK5w8w5FFa0RzWjyY1+sujN0NWbtSHH6OJmWHtJpQ== - dependencies: - "@emotion/memoize" "^0.7.4" - "@emotion/is-prop-valid@^1.1.3": version "1.1.3" resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.1.3.tgz#f0907a416368cf8df9e410117068e20fe87c0a3a" @@ -1493,11 +1475,6 @@ resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-0.9.4.tgz#894374bea39ec30f489bbfc3438192b9774d32e5" integrity sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA== -"@emotion/sheet@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.1.0.tgz#56d99c41f0a1cda2726a05aa6a20afd4c63e58d2" - integrity sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g== - "@emotion/sheet@^1.1.1": version "1.1.1" resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.1.1.tgz#015756e2a9a3c7c5f11d8ec22966a8dbfbfac787" @@ -1881,20 +1858,6 @@ call-me-maybe "^1.0.1" glob-to-regexp "^0.3.0" -"@mui/base@5.0.0-alpha.87": - version "5.0.0-alpha.87" - resolved "https://registry.yarnpkg.com/@mui/base/-/base-5.0.0-alpha.87.tgz#3cf8c2990cda8b48f26b3f19b1d0c94095ec6dfe" - integrity sha512-PuxRYrvG63Yj/UTwf4hSwZ5ClMv88iXHK+5hUV1CrG3kNPo6FFQiIFNRaNpRt/3nsXj6+xygJByNFA8m4Leetg== - dependencies: - "@babel/runtime" "^7.17.2" - "@emotion/is-prop-valid" "^1.1.2" - "@mui/types" "^7.1.4" - "@mui/utils" "^5.8.6" - "@popperjs/core" "^2.11.5" - clsx "^1.1.1" - prop-types "^15.8.1" - react-is "^17.0.2" - "@mui/base@5.0.0-alpha.92": version "5.0.0-alpha.92" resolved "https://registry.yarnpkg.com/@mui/base/-/base-5.0.0-alpha.92.tgz#5c2ca31801fe21a8fec9bfda2cf5f44b1e3c7284" @@ -1916,21 +1879,18 @@ dependencies: "@babel/runtime" "^7.17.2" -"@mui/lab@^5.0.0-alpha.88": - version "5.0.0-alpha.88" - resolved "https://registry.yarnpkg.com/@mui/lab/-/lab-5.0.0-alpha.88.tgz#bead71c8153135e45f2268ef804dbfea92638c38" - integrity sha512-YS2NPw0D0CHG9z9Y6Wjocl3g2LNzdXdkvORPoyc05ea9Xm+m8buddvMeTuL/r/e3S7yLK8HOMN2uHE0rwD/oVQ== +"@mui/lab@^5.0.0-alpha.93": + version "5.0.0-alpha.93" + resolved "https://registry.yarnpkg.com/@mui/lab/-/lab-5.0.0-alpha.93.tgz#b0a1662ae478e791f083fdf49143766b890671e6" + integrity sha512-PGrI6tGwKGpLEv4sG7Jkhh/gqk5SE3KRCY8SKmC7JIOUpHEdPKIPH7kId/UZUd8+NOkr8YsljXmozpWv9PLsBQ== dependencies: "@babel/runtime" "^7.17.2" - "@mui/base" "5.0.0-alpha.87" - "@mui/system" "^5.8.6" - "@mui/utils" "^5.8.6" - "@mui/x-date-pickers" "5.0.0-alpha.1" - clsx "^1.1.1" + "@mui/base" "5.0.0-alpha.92" + "@mui/system" "^5.9.3" + "@mui/utils" "^5.9.3" + clsx "^1.2.1" prop-types "^15.8.1" - react-is "^17.0.2" - react-transition-group "^4.4.2" - rifm "^0.12.1" + react-is "^18.2.0" "@mui/material@^5.9.3": version "5.9.3" @@ -1949,15 +1909,6 @@ react-is "^18.2.0" react-transition-group "^4.4.5" -"@mui/private-theming@^5.8.6": - version "5.8.6" - resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-5.8.6.tgz#db2bafeda1699e43e67b3ff4f770d6b7a234501f" - integrity sha512-yHsJk1qU9r/q0DlnxGRJPHyM0Y/nUv8FTNgDTiI9I58GWuVuZqeTUr7JRvPh6ybeP/FLtW5eXEavRK9wxVk4uQ== - dependencies: - "@babel/runtime" "^7.17.2" - "@mui/utils" "^5.8.6" - prop-types "^15.8.1" - "@mui/private-theming@^5.9.3": version "5.9.3" resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-5.9.3.tgz#8ea06dbe0522b0cf4ba5ee19b1a4d7f74539ae1c" @@ -1967,15 +1918,6 @@ "@mui/utils" "^5.9.3" prop-types "^15.8.1" -"@mui/styled-engine@^5.8.0": - version "5.8.0" - resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-5.8.0.tgz#89ed42efe7c8749e5a60af035bc5d3a6bea362bf" - integrity sha512-Q3spibB8/EgeMYHc+/o3RRTnAYkSl7ROCLhXJ830W8HZ2/iDiyYp16UcxKPurkXvLhUaILyofPVrP3Su2uKsAw== - dependencies: - "@babel/runtime" "^7.17.2" - "@emotion/cache" "^11.7.1" - prop-types "^15.8.1" - "@mui/styled-engine@^5.8.7": version "5.8.7" resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-5.8.7.tgz#63d0779c07677fe76d4705a02c7ae99f89b50780" @@ -1986,20 +1928,6 @@ csstype "^3.1.0" prop-types "^15.8.1" -"@mui/system@^5.8.6": - version "5.8.6" - resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.8.6.tgz#aed7e501c513429dab9cfbbe86da5dcd056c2a0a" - integrity sha512-+a+rD58XltKQHDrrjcuCta2cUBqdnLDUDwnphSLCMFigRl8/uk+R+fdQRlMNRXAOgnMb8ioWIgfjxri5pmTH4A== - dependencies: - "@babel/runtime" "^7.17.2" - "@mui/private-theming" "^5.8.6" - "@mui/styled-engine" "^5.8.0" - "@mui/types" "^7.1.4" - "@mui/utils" "^5.8.6" - clsx "^1.1.1" - csstype "^3.1.0" - prop-types "^15.8.1" - "@mui/system@^5.9.3": version "5.9.3" resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.9.3.tgz#5d2d06db2b2454573639de394f81b6be3608a1ce" @@ -2014,17 +1942,12 @@ csstype "^3.1.0" prop-types "^15.8.1" -"@mui/types@^7.1.4": - version "7.1.4" - resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.1.4.tgz#4185c05d6df63ec673cda15feab80440abadc764" - integrity sha512-uveM3byMbthO+6tXZ1n2zm0W3uJCQYtwt/v5zV5I77v2v18u0ITkb8xwhsDD2i3V2Kye7SaNR6FFJ6lMuY/WqQ== - "@mui/types@^7.1.5": version "7.1.5" resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.1.5.tgz#5e5cc49d719bc86522983359bc1f90eddcff0624" integrity sha512-HnRXrxgHJYJcT8ZDdDCQIlqk0s0skOKD7eWs9mJgBUu70hyW4iA6Kiv3yspJR474RFH8hysKR65VVSzUSzkuwA== -"@mui/utils@^5.4.1", "@mui/utils@^5.8.6": +"@mui/utils@^5.4.1": version "5.8.6" resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.8.6.tgz#543de64a64bb9135316ecfd91d75a8740544d79f" integrity sha512-QM2Sd1xZo2jOt2Vz5Rmro+pi2FLJyiv4+OjxkUwXR3oUM65KSMAMLl/KNYU55s3W3DLRFP5MVwE4FhAbHseHAg== @@ -2035,17 +1958,6 @@ prop-types "^15.8.1" react-is "^17.0.2" -"@mui/utils@^5.6.0": - version "5.8.0" - resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.8.0.tgz#4b1d19cbcf70773283375e763b7b3552b84cb58f" - integrity sha512-7LgUtCvz78676iC0wpTH7HizMdCrTphhBmRWimIMFrp5Ph6JbDFVuKS1CwYnWWxRyYKL0QzXrDL0lptAU90EXg== - dependencies: - "@babel/runtime" "^7.17.2" - "@types/prop-types" "^15.7.5" - "@types/react-is" "^16.7.1 || ^17.0.0" - prop-types "^15.8.1" - react-is "^17.0.2" - "@mui/utils@^5.9.3": version "5.9.3" resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.9.3.tgz#a11e0824f00b7ea40257b390060ce167fe861d02" @@ -2057,21 +1969,6 @@ prop-types "^15.8.1" react-is "^18.2.0" -"@mui/x-date-pickers@5.0.0-alpha.1": - version "5.0.0-alpha.1" - resolved "https://registry.yarnpkg.com/@mui/x-date-pickers/-/x-date-pickers-5.0.0-alpha.1.tgz#7450b5544b9ed655db41891c74e2c5f652fbedb7" - integrity sha512-dLPkRiIn2Gr0momblxiOnIwrxn4SijVix+8e08mwAGWhiWcmWep1O9XTRDpZsjB0kjHYCf+kZjlRX4dxnj2acg== - dependencies: - "@date-io/date-fns" "^2.11.0" - "@date-io/dayjs" "^2.11.0" - "@date-io/luxon" "^2.11.1" - "@date-io/moment" "^2.11.0" - "@mui/utils" "^5.6.0" - clsx "^1.1.1" - prop-types "^15.7.2" - react-transition-group "^4.4.2" - rifm "^0.12.1" - "@mui/x-date-pickers@^5.0.0-beta.3": version "5.0.0-beta.3" resolved "https://registry.yarnpkg.com/@mui/x-date-pickers/-/x-date-pickers-5.0.0-beta.3.tgz#e9fbd85fd787f80502de8bbc29398121aedcf627" From f3e5abc2aa19427e60410425f92d5129b599acd6 Mon Sep 17 00:00:00 2001 From: Yuri Date: Tue, 2 Aug 2022 12:31:19 -0300 Subject: [PATCH 3/3] fix: adding version on package json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f095e0b..3e31558 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@euk-labs/componentz", - "version": "0.5.13", + "version": "0.5.14", "types": "./lib/types/index.d.ts", "main": "./lib/cjs/index.js", "exports": {