Skip to content

Commit b40db1a

Browse files
add framer motion & buildconfig update
1 parent e207173 commit b40db1a

3 files changed

Lines changed: 156 additions & 7 deletions

File tree

editor/next.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,11 @@ const withTM = require("next-transpile-modules")([
9292

9393
module.exports = withTM({
9494
webpack: (config) => {
95+
config.module.rules.push({
96+
type: "javascript/auto",
97+
test: /\.mjs$/,
98+
include: /node_modules/,
99+
});
95100
return config;
96101
},
97102
async redirects() {

editor/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"@emotion/css": "^11.5.0",
2020
"@emotion/react": "^11.1.5",
2121
"@emotion/styled": "^11.1.5",
22+
"@frogress/line": "^1.1.0",
2223
"@material-ui/core": "^4.12.3",
2324
"@material-ui/icons": "^4.11.2",
2425
"@material-ui/lab": "^4.0.0-alpha.60",
@@ -35,6 +36,7 @@
3536
"cuid": "^2.1.8",
3637
"dart-style": "^1.3.2-dev",
3738
"firebase": "^9.6.0",
39+
"framer-motion": "^5.3.1",
3840
"idb": "^6.1.2",
3941
"moment": "^2.29.1",
4042
"monaco-editor": "^0.24.0",
@@ -46,7 +48,8 @@
4648
"react-json-tree": "^0.15.0",
4749
"react-resizable": "^3.0.1",
4850
"react-spring": "^9.3.2",
49-
"recoil": "^0.2.0"
51+
"recoil": "^0.2.0",
52+
"styled-components": "^5.3.3"
5053
},
5154
"devDependencies": {
5255
"@babel/core": "^7.14.0",

yarn.lock

Lines changed: 147 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@
224224
dependencies:
225225
"@babel/types" "^7.16.0"
226226

227-
"@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.0":
227+
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.0":
228228
version "7.16.0"
229229
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz#90538e60b672ecf1b448f5f4f5433d37e79a3ec3"
230230
integrity sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==
@@ -999,7 +999,7 @@
999999
"@babel/parser" "^7.16.0"
10001000
"@babel/types" "^7.16.0"
10011001

1002-
"@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.16.0", "@babel/traverse@^7.16.3", "@babel/traverse@^7.7.2":
1002+
"@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.16.0", "@babel/traverse@^7.16.3", "@babel/traverse@^7.4.5", "@babel/traverse@^7.7.2":
10031003
version "7.16.3"
10041004
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.16.3.tgz#f63e8a938cc1b780f66d9ed3c54f532ca2d14787"
10051005
integrity sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==
@@ -1586,13 +1586,25 @@
15861586
resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413"
15871587
integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==
15881588

1589+
"@emotion/is-prop-valid@^0.8.2", "@emotion/is-prop-valid@^0.8.8":
1590+
version "0.8.8"
1591+
resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a"
1592+
integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==
1593+
dependencies:
1594+
"@emotion/memoize" "0.7.4"
1595+
15891596
"@emotion/is-prop-valid@^1.1.0":
15901597
version "1.1.0"
15911598
resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.1.0.tgz#29ef6be1e946fb4739f9707def860f316f668cde"
15921599
integrity sha512-9RkilvXAufQHsSsjQ3PIzSns+pxuX4EW8EbGeSPjZMHuMx6z/MOzb9LpqNieQX4F3mre3NWS2+X3JNRHTQztUQ==
15931600
dependencies:
15941601
"@emotion/memoize" "^0.7.4"
15951602

1603+
"@emotion/memoize@0.7.4":
1604+
version "0.7.4"
1605+
resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb"
1606+
integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==
1607+
15961608
"@emotion/memoize@^0.7.4", "@emotion/memoize@^0.7.5":
15971609
version "0.7.5"
15981610
resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.5.tgz#2c40f81449a4e554e9fc6396910ed4843ec2be50"
@@ -1638,7 +1650,12 @@
16381650
"@emotion/serialize" "^1.0.2"
16391651
"@emotion/utils" "^1.0.0"
16401652

1641-
"@emotion/unitless@^0.7.5":
1653+
"@emotion/stylis@^0.8.4":
1654+
version "0.8.5"
1655+
resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04"
1656+
integrity sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==
1657+
1658+
"@emotion/unitless@^0.7.4", "@emotion/unitless@^0.7.5":
16421659
version "0.7.5"
16431660
resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed"
16441661
integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==
@@ -2032,6 +2049,13 @@
20322049
"@flutter-builder/flutter-material-icons" "0.0.5"
20332050
dart-style "^1.3.2-dev"
20342051

2052+
"@frogress/line@^1.1.0":
2053+
version "1.1.0"
2054+
resolved "https://registry.yarnpkg.com/@frogress/line/-/line-1.1.0.tgz#8add65b3a4d038ff74cc571bf6a30bbb0f1958bb"
2055+
integrity sha512-I/soWcaQDvGH2nlIu5EjxaswSdtFtC+IwsO5tVUWHWZwJJrnTiGcahCN76KEfOupAfA2QbW27yeHjVNcbsTlQw==
2056+
dependencies:
2057+
dedent "^0.7.0"
2058+
20352059
"@grpc/grpc-js@^1.3.2":
20362060
version "1.4.4"
20372061
resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.4.4.tgz#59336f13d77bc446bbdf2161564a32639288dc5b"
@@ -4758,7 +4782,17 @@ babel-plugin-polyfill-regenerator@^0.2.3:
47584782
dependencies:
47594783
"@babel/helper-define-polyfill-provider" "^0.2.4"
47604784

4761-
babel-plugin-syntax-jsx@6.18.0:
4785+
"babel-plugin-styled-components@>= 1.12.0":
4786+
version "2.0.2"
4787+
resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.2.tgz#0fac11402dc9db73698b55847ab1dc73f5197c54"
4788+
integrity sha512-7eG5NE8rChnNTDxa6LQfynwgHTVOYYaHJbUYSlOhk8QBXIQiMBKq4gyfHBBKPrxUcVBXVJL61ihduCpCQbuNbw==
4789+
dependencies:
4790+
"@babel/helper-annotate-as-pure" "^7.16.0"
4791+
"@babel/helper-module-imports" "^7.16.0"
4792+
babel-plugin-syntax-jsx "^6.18.0"
4793+
lodash "^4.17.11"
4794+
4795+
babel-plugin-syntax-jsx@6.18.0, babel-plugin-syntax-jsx@^6.18.0:
47624796
version "6.18.0"
47634797
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
47644798
integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=
@@ -5228,6 +5262,11 @@ camelcase@^6.0.0, camelcase@^6.2.0:
52285262
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809"
52295263
integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==
52305264

5265+
camelize@^1.0.0:
5266+
version "1.0.0"
5267+
resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b"
5268+
integrity sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=
5269+
52315270
caniuse-lite@^1.0.30001093, caniuse-lite@^1.0.30001113, caniuse-lite@^1.0.30001154, caniuse-lite@^1.0.30001274:
52325271
version "1.0.30001279"
52335272
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001279.tgz#eb06818da481ef5096a3b3760f43e5382ed6b0ce"
@@ -5807,6 +5846,11 @@ crypto-random-string@^1.0.0:
58075846
resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e"
58085847
integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=
58095848

5849+
css-color-keywords@^1.0.0:
5850+
version "1.0.0"
5851+
resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05"
5852+
integrity sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=
5853+
58105854
css-loader@1.0.0:
58115855
version "1.0.0"
58125856
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-1.0.0.tgz#9f46aaa5ca41dbe31860e3b62b8e23c42916bf56"
@@ -5867,6 +5911,15 @@ css-selector-tokenizer@^0.7.0:
58675911
cssesc "^3.0.0"
58685912
fastparse "^1.1.2"
58695913

5914+
css-to-react-native@^3.0.0:
5915+
version "3.0.0"
5916+
resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-3.0.0.tgz#62dbe678072a824a689bcfee011fc96e02a7d756"
5917+
integrity sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==
5918+
dependencies:
5919+
camelize "^1.0.0"
5920+
css-color-keywords "^1.0.0"
5921+
postcss-value-parser "^4.0.2"
5922+
58705923
css-vendor@^2.0.8:
58715924
version "2.0.8"
58725925
resolved "https://registry.yarnpkg.com/css-vendor/-/css-vendor-2.0.8.tgz#e47f91d3bd3117d49180a3c935e62e3d9f7f449d"
@@ -6102,6 +6155,11 @@ datauri@^3.0.0:
61026155
image-size "0.8.3"
61036156
mimer "1.1.0"
61046157

6158+
debounce@^1.2.1:
6159+
version "1.2.1"
6160+
resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5"
6161+
integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==
6162+
61056163
debug@3.1.0, debug@=3.1.0:
61066164
version "3.1.0"
61076165
resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
@@ -7053,6 +7111,28 @@ fragment-cache@^0.2.1:
70537111
dependencies:
70547112
map-cache "^0.2.2"
70557113

7114+
framer-motion@^5.3.1:
7115+
version "5.4.5"
7116+
resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-5.4.5.tgz#180047afe6d4e41b8b69eb76cfad13d7a0351073"
7117+
integrity sha512-OjKfSMO22a9bTedhQ4diwZWCcmwoZmfrkalv4adhHTH2/cXa2eoFAmmPzs6aNpENbMrn47YmlWGwZtYNycXFLg==
7118+
dependencies:
7119+
framesync "6.0.1"
7120+
hey-listen "^1.0.8"
7121+
popmotion "11.0.3"
7122+
react-merge-refs "^1.1.0"
7123+
react-use-measure "^2.1.1"
7124+
style-value-types "5.0.0"
7125+
tslib "^2.1.0"
7126+
optionalDependencies:
7127+
"@emotion/is-prop-valid" "^0.8.2"
7128+
7129+
framesync@6.0.1:
7130+
version "6.0.1"
7131+
resolved "https://registry.yarnpkg.com/framesync/-/framesync-6.0.1.tgz#5e32fc01f1c42b39c654c35b16440e07a25d6f20"
7132+
integrity sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA==
7133+
dependencies:
7134+
tslib "^2.1.0"
7135+
70567136
from2@^2.1.0:
70577137
version "2.3.0"
70587138
resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
@@ -7430,6 +7510,11 @@ he@1.2.0:
74307510
resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
74317511
integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
74327512

7513+
hey-listen@^1.0.8:
7514+
version "1.0.8"
7515+
resolved "https://registry.yarnpkg.com/hey-listen/-/hey-listen-1.0.8.tgz#8e59561ff724908de1aa924ed6ecc84a56a9aa68"
7516+
integrity sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==
7517+
74337518
hmac-drbg@^1.0.1:
74347519
version "1.0.1"
74357520
resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
@@ -7439,7 +7524,7 @@ hmac-drbg@^1.0.1:
74397524
minimalistic-assert "^1.0.0"
74407525
minimalistic-crypto-utils "^1.0.1"
74417526

7442-
hoist-non-react-statics@^3.3.1, hoist-non-react-statics@^3.3.2:
7527+
hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.3.1, hoist-non-react-statics@^3.3.2:
74437528
version "3.3.2"
74447529
resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
74457530
integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
@@ -10108,6 +10193,16 @@ pnp-webpack-plugin@1.6.4:
1010810193
dependencies:
1010910194
ts-pnp "^1.1.6"
1011010195

10196+
popmotion@11.0.3:
10197+
version "11.0.3"
10198+
resolved "https://registry.yarnpkg.com/popmotion/-/popmotion-11.0.3.tgz#565c5f6590bbcddab7a33a074bb2ba97e24b0cc9"
10199+
integrity sha512-Y55FLdj3UxkR7Vl3s7Qr4e9m0onSnP8W7d/xQLsoJM40vs6UKHFdygs6SWryasTZYqugMjm3BepCF4CWXDiHgA==
10200+
dependencies:
10201+
framesync "6.0.1"
10202+
hey-listen "^1.0.8"
10203+
style-value-types "5.0.0"
10204+
tslib "^2.1.0"
10205+
1011110206
popper.js@1.16.1-lts:
1011210207
version "1.16.1-lts"
1011310208
resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1-lts.tgz#cf6847b807da3799d80ee3d6d2f90df8a3f50b05"
@@ -10248,6 +10343,11 @@ postcss-value-parser@^3.3.0:
1024810343
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
1024910344
integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
1025010345

10346+
postcss-value-parser@^4.0.2:
10347+
version "4.2.0"
10348+
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
10349+
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
10350+
1025110351
postcss-value-parser@^4.1.0:
1025210352
version "4.1.0"
1025310353
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
@@ -10646,6 +10746,11 @@ react-lifecycles-compat@^3.0.4:
1064610746
resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362"
1064710747
integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==
1064810748

10749+
react-merge-refs@^1.1.0:
10750+
version "1.1.0"
10751+
resolved "https://registry.yarnpkg.com/react-merge-refs/-/react-merge-refs-1.1.0.tgz#73d88b892c6c68cbb7a66e0800faa374f4c38b06"
10752+
integrity sha512-alTKsjEL0dKH/ru1Iyn7vliS2QRcBp9zZPGoWxUOvRGWPUYgjo+V01is7p04It6KhgrzhJGnIj9GgX8W4bZoCQ==
10753+
1064910754
react-modal-promise@^0.7.6:
1065010755
version "0.7.6"
1065110756
resolved "https://registry.yarnpkg.com/react-modal-promise/-/react-modal-promise-0.7.6.tgz#feef31ca98c3b10ea0397a4a2e9ab1020b123f99"
@@ -10719,6 +10824,13 @@ react-use-gesture@^9.1.3:
1071910824
resolved "https://registry.yarnpkg.com/react-use-gesture/-/react-use-gesture-9.1.3.tgz#92bd143e4f58e69bd424514a5bfccba2a1d62ec0"
1072010825
integrity sha512-CdqA2SmS/fj3kkS2W8ZU8wjTbVBAIwDWaRprX7OKaj7HlGwBasGEFggmk5qNklknqk9zK/h8D355bEJFTpqEMg==
1072110826

10827+
react-use-measure@^2.1.1:
10828+
version "2.1.1"
10829+
resolved "https://registry.yarnpkg.com/react-use-measure/-/react-use-measure-2.1.1.tgz#5824537f4ee01c9469c45d5f7a8446177c6cc4ba"
10830+
integrity sha512-nocZhN26cproIiIduswYpV5y5lQpSQS1y/4KuvUCjSKmw7ZWIS/+g3aFnX3WdBkyuGUtTLif3UTqnLLhbDoQig==
10831+
dependencies:
10832+
debounce "^1.2.1"
10833+
1072210834
react-use-size@^2.0.4:
1072310835
version "2.0.4"
1072410836
resolved "https://registry.yarnpkg.com/react-use-size/-/react-use-size-2.0.4.tgz#14f513e310d8962a30919e64fdd746b8211a3f0d"
@@ -11236,6 +11348,11 @@ sha.js@^2.4.0, sha.js@^2.4.8:
1123611348
inherits "^2.0.1"
1123711349
safe-buffer "^5.0.1"
1123811350

11351+
shallowequal@^1.1.0:
11352+
version "1.1.0"
11353+
resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8"
11354+
integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==
11355+
1123911356
sharp@0.26.2:
1124011357
version "0.26.2"
1124111358
resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.26.2.tgz#3d5777d246ae32890afe82a783c1cbb98456a88c"
@@ -11731,6 +11848,30 @@ style-loader@1.2.1:
1173111848
loader-utils "^2.0.0"
1173211849
schema-utils "^2.6.6"
1173311850

11851+
style-value-types@5.0.0:
11852+
version "5.0.0"
11853+
resolved "https://registry.yarnpkg.com/style-value-types/-/style-value-types-5.0.0.tgz#76c35f0e579843d523187989da866729411fc8ad"
11854+
integrity sha512-08yq36Ikn4kx4YU6RD7jWEv27v4V+PUsOGa4n/as8Et3CuODMJQ00ENeAVXAeydX4Z2j1XHZF1K2sX4mGl18fA==
11855+
dependencies:
11856+
hey-listen "^1.0.8"
11857+
tslib "^2.1.0"
11858+
11859+
styled-components@^5.3.3:
11860+
version "5.3.3"
11861+
resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.3.3.tgz#312a3d9a549f4708f0fb0edc829eb34bde032743"
11862+
integrity sha512-++4iHwBM7ZN+x6DtPPWkCI4vdtwumQ+inA/DdAsqYd4SVgUKJie5vXyzotA00ttcFdQkCng7zc6grwlfIfw+lw==
11863+
dependencies:
11864+
"@babel/helper-module-imports" "^7.0.0"
11865+
"@babel/traverse" "^7.4.5"
11866+
"@emotion/is-prop-valid" "^0.8.8"
11867+
"@emotion/stylis" "^0.8.4"
11868+
"@emotion/unitless" "^0.7.4"
11869+
babel-plugin-styled-components ">= 1.12.0"
11870+
css-to-react-native "^3.0.0"
11871+
hoist-non-react-statics "^3.0.0"
11872+
shallowequal "^1.1.0"
11873+
supports-color "^5.5.0"
11874+
1173411875
styled-jsx@3.3.2:
1173511876
version "3.3.2"
1173611877
resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-3.3.2.tgz#2474601a26670a6049fb4d3f94bd91695b3ce018"
@@ -11765,7 +11906,7 @@ supports-color@^2.0.0:
1176511906
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
1176611907
integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=
1176711908

11768-
supports-color@^5.3.0, supports-color@^5.4.0:
11909+
supports-color@^5.3.0, supports-color@^5.4.0, supports-color@^5.5.0:
1176911910
version "5.5.0"
1177011911
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
1177111912
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==

0 commit comments

Comments
 (0)