Skip to content

Commit 51acfc4

Browse files
authored
Merge pull request #647 from rowyio/rc
v2.3.2
2 parents 8842e0f + 57e6c10 commit 51acfc4

File tree

6 files changed

+109
-111
lines changed

6 files changed

+109
-111
lines changed

.github/workflows/deploy-preview.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ on:
66
# paths:
77
# - "website/**"
88
env:
9-
REACT_APP_FIREBASE_PROJECT_ID: tryrowy
9+
REACT_APP_FIREBASE_PROJECT_ID: rowyio
1010
REACT_APP_FIREBASE_PROJECT_WEB_API_KEY:
11-
"${{ secrets.FIREBASE_WEB_API_KEY_TRYROWY }}"
11+
"${{ secrets.FIREBASE_WEB_API_KEY_ROWYIO }}"
1212
CI: ""
1313
jobs:
1414
build_and_preview:
@@ -27,6 +27,6 @@ jobs:
2727
with:
2828
repoToken: "${{ secrets.GITHUB_TOKEN }}"
2929
firebaseServiceAccount:
30-
"${{ secrets.FIREBASE_SERVICE_ACCOUNT_TRYROWY }}"
30+
"${{ secrets.FIREBASE_SERVICE_ACCOUNT_ROWYIO }}"
3131
expires: 14d
32-
projectId: tryrowy
32+
projectId: rowyio

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ cloud_functions/functions/lib
1313
*.firebaserc
1414
*-firebase.json
1515
.firebase/
16+
*firebase-adminsdk*.json
1617

1718
# misc
1819
.DS_Store

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Rowy",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"homepage": "https://rowy.io",
55
"repository": {
66
"type": "git",
@@ -15,11 +15,11 @@
1515
"@hookform/resolvers": "^2.8.5",
1616
"@mdi/js": "^6.5.95",
1717
"@monaco-editor/react": "^4.3.1",
18-
"@mui/icons-material": "^5.2.0",
19-
"@mui/lab": "^5.0.0-alpha.58",
20-
"@mui/material": "^5.2.2",
21-
"@mui/styles": "^5.2.2",
22-
"@rowy/form-builder": "^0.5.2",
18+
"@mui/icons-material": "^5.4.1",
19+
"@mui/lab": "^5.0.0-alpha.68",
20+
"@mui/material": "^5.4.1",
21+
"@mui/styles": "^5.4.1",
22+
"@rowy/form-builder": "^0.5.3",
2323
"@rowy/multiselect": "^0.2.3",
2424
"@tinymce/tinymce-react": "^3.12.6",
2525
"algoliasearch": "^4.8.6",

src/hooks/useTable/useTableConfig.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -157,15 +157,14 @@ const useTableConfig = (tableId?: string) => {
157157
*/
158158
const remove = (key: string) => {
159159
const { columns } = tableConfigState;
160-
161160
/**
162161
* Filter column, and remove key index
163162
* Sort and reorder column
164163
* Rewrite column index for firestore
165164
*/
166165
const updatedColumns: any = Object.values(columns)
167166
.filter((c: any) => c.key !== key)
168-
.sort((c: any) => c.index)
167+
.sort((a: any, b: any) => a.index - b.index)
169168
.reduce((acc: any, curr: any, index: any) => {
170169
acc[curr.key] = { ...curr, index };
171170
return acc;

src/hooks/useTable/useTableData.tsx

+9-7
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ const rowsReducer = (prevRows: any, update: any) => {
3535
switch (update.type) {
3636
case "onSnapshot":
3737
const snapshotDocs = update.docs;
38+
console.log("onSnapshot", snapshotDocs);
3839

3940
// Get rows that may not be part of the snapshot
4041
// Rows with missing required fields haven’t been written to the db yet
@@ -167,13 +168,14 @@ const useTableData = () => {
167168

168169
const unsubscribe = query.limit(limit).onSnapshot(
169170
(snapshot) => {
170-
if (snapshot.docs.length > 0) {
171-
rowsDispatch({
172-
type: "onSnapshot",
173-
docs: snapshot.docs,
174-
// changes: snapshot.docChanges(),
175-
});
176-
}
171+
console.log("snapshot", snapshot);
172+
// if (snapshot.docs.length > 0) {
173+
rowsDispatch({
174+
type: "onSnapshot",
175+
docs: snapshot.docs,
176+
// changes: snapshot.docChanges(),
177+
});
178+
// }
177179
tableDispatch({ loading: false });
178180
},
179181
(error: any) => {

yarn.lock

+88-92
Original file line numberDiff line numberDiff line change
@@ -1495,10 +1495,10 @@
14951495
dependencies:
14961496
regenerator-runtime "^0.13.4"
14971497

1498-
"@babel/runtime@^7.16.3":
1499-
version "7.16.3"
1500-
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.16.3.tgz#b86f0db02a04187a3c17caa77de69840165d42d5"
1501-
integrity sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==
1498+
"@babel/runtime@^7.17.0":
1499+
version "7.17.2"
1500+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.2.tgz#66f68591605e59da47523c631416b18508779941"
1501+
integrity sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw==
15021502
dependencies:
15031503
regenerator-runtime "^0.13.4"
15041504

@@ -1723,16 +1723,16 @@
17231723
"@emotion/weak-memoize" "^0.2.5"
17241724
stylis "^4.0.3"
17251725

1726-
"@emotion/cache@^11.6.0":
1727-
version "11.6.0"
1728-
resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.6.0.tgz#65fbdbbe4382f1991d8b20853c38e63ecccec9a1"
1729-
integrity sha512-ElbsWY1KMwEowkv42vGo0UPuLgtPYfIs9BxxVrmvsaJVvktknsHYYlx5NQ5g6zLDcOTyamlDc7FkRg2TAcQDKQ==
1726+
"@emotion/cache@^11.7.1":
1727+
version "11.7.1"
1728+
resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.7.1.tgz#08d080e396a42e0037848214e8aa7bf879065539"
1729+
integrity sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A==
17301730
dependencies:
17311731
"@emotion/memoize" "^0.7.4"
17321732
"@emotion/sheet" "^1.1.0"
17331733
"@emotion/utils" "^1.0.0"
17341734
"@emotion/weak-memoize" "^0.2.5"
1735-
stylis "^4.0.10"
1735+
stylis "4.0.13"
17361736

17371737
"@emotion/hash@^0.8.0":
17381738
version "0.8.0"
@@ -2421,55 +2421,55 @@
24212421
"@monaco-editor/loader" "^1.2.0"
24222422
prop-types "^15.7.2"
24232423

2424-
"@mui/base@5.0.0-alpha.58":
2425-
version "5.0.0-alpha.58"
2426-
resolved "https://registry.yarnpkg.com/@mui/base/-/base-5.0.0-alpha.58.tgz#01ab59a028f314e2f9a79f903a8336ac45853652"
2427-
integrity sha512-YZorCbbzkokQZUnj+sdjUWIe+jaesuSVpKgwWS2mWdE50v1Ti/qMmevIrOT1lvFAilpj80Bkcg4KtlGWBJ6utQ==
2424+
"@mui/base@5.0.0-alpha.68":
2425+
version "5.0.0-alpha.68"
2426+
resolved "https://registry.yarnpkg.com/@mui/base/-/base-5.0.0-alpha.68.tgz#d93d77e662bc8dce47c9415fc6cbcac6658efab7"
2427+
integrity sha512-q+3gX6EHuM/AyOn8fkoANQxSzIHBeuNsrGgb7SPP0y7NuM+4ZHG/b9882+OfHcilaSqPDWUQoLbphcBpw/m/RA==
24282428
dependencies:
2429-
"@babel/runtime" "^7.16.3"
2429+
"@babel/runtime" "^7.17.0"
24302430
"@emotion/is-prop-valid" "^1.1.1"
2431-
"@mui/utils" "^5.2.2"
2431+
"@mui/utils" "^5.4.1"
24322432
"@popperjs/core" "^2.4.4"
24332433
clsx "^1.1.1"
24342434
prop-types "^15.7.2"
24352435
react-is "^17.0.2"
24362436

2437-
"@mui/icons-material@^5.2.0":
2438-
version "5.2.0"
2439-
resolved "https://registry.yarnpkg.com/@mui/icons-material/-/icons-material-5.2.0.tgz#6c6135bb2d7891e29d6f9419df402b82dd663517"
2440-
integrity sha512-NvyrVaGKpP4R1yFw8BCnE0QcsQ67RtpgxPr4FtH8q60MDYPuPVczLOn5Ash5CFavoDWur/NfM/4DpT54yf3InA==
2437+
"@mui/icons-material@^5.4.1":
2438+
version "5.4.1"
2439+
resolved "https://registry.yarnpkg.com/@mui/icons-material/-/icons-material-5.4.1.tgz#20901e9a09154355b7a832180a90717938c675c4"
2440+
integrity sha512-koiq9q2GfjXRUWcC5fEi1b+EA4vfJHgIaAdBHlkOrBx2cnmmazQcyib501eodPfaZGx9BikrhivODaNQYQq8hA==
24412441
dependencies:
2442-
"@babel/runtime" "^7.16.3"
2442+
"@babel/runtime" "^7.17.0"
24432443

2444-
"@mui/lab@^5.0.0-alpha.58":
2445-
version "5.0.0-alpha.58"
2446-
resolved "https://registry.yarnpkg.com/@mui/lab/-/lab-5.0.0-alpha.58.tgz#47c3b2976df066119fa040131a63139677ba5a66"
2447-
integrity sha512-Vn3bWlID2SgCb7KX3d29uSLWv3JDEHJ+QiApnaPuUqqymwHARbQUk+b2h6wfQCz/WqaR0MtmsRwA6OrrLsL3Eg==
2444+
"@mui/lab@^5.0.0-alpha.68":
2445+
version "5.0.0-alpha.68"
2446+
resolved "https://registry.yarnpkg.com/@mui/lab/-/lab-5.0.0-alpha.68.tgz#a5034a8f749f3f4f0a1b8613515bed4054ade3e6"
2447+
integrity sha512-wvszkLsgXgl3kMPVpHNm9pRYld9/2r0MYRlJUEh2GWwjBPE3dDTOIF2IHgZ3WqRBnJMitzUVt7v5Lu9/grjrIQ==
24482448
dependencies:
2449-
"@babel/runtime" "^7.16.3"
2449+
"@babel/runtime" "^7.17.0"
24502450
"@date-io/date-fns" "^2.11.0"
24512451
"@date-io/dayjs" "^2.11.0"
24522452
"@date-io/luxon" "^2.11.1"
24532453
"@date-io/moment" "^2.11.0"
2454-
"@mui/base" "5.0.0-alpha.58"
2455-
"@mui/system" "^5.2.2"
2456-
"@mui/utils" "^5.2.2"
2454+
"@mui/base" "5.0.0-alpha.68"
2455+
"@mui/system" "^5.4.1"
2456+
"@mui/utils" "^5.4.1"
24572457
clsx "^1.1.1"
24582458
prop-types "^15.7.2"
24592459
react-is "^17.0.2"
24602460
react-transition-group "^4.4.2"
24612461
rifm "^0.12.1"
24622462

2463-
"@mui/material@^5.2.2":
2464-
version "5.2.2"
2465-
resolved "https://registry.yarnpkg.com/@mui/material/-/material-5.2.2.tgz#4dfbc9186a83e16a9dcdcc10e4a70ecaf641b1a3"
2466-
integrity sha512-vqmZq+v59CT4V84WcvYkYldnjC6uRddYx0TJqgl2h5YRbbPYCGVVywVvg9cBwxy4j5xI3F2WH6z7WGkHqkJIQA==
2467-
dependencies:
2468-
"@babel/runtime" "^7.16.3"
2469-
"@mui/base" "5.0.0-alpha.58"
2470-
"@mui/system" "^5.2.2"
2471-
"@mui/types" "^7.1.0"
2472-
"@mui/utils" "^5.2.2"
2463+
"@mui/material@^5.4.1":
2464+
version "5.4.1"
2465+
resolved "https://registry.yarnpkg.com/@mui/material/-/material-5.4.1.tgz#05d3f726771c413dc430163d7c508edfcee04807"
2466+
integrity sha512-SxAT43UAjFTBBpJrN+oGrv40xP1uCa5Z49NfHt3m93xYeFzbxKOk0V9IKU7zlUjbsaVQ0i+o24yF5GULZmynlA==
2467+
dependencies:
2468+
"@babel/runtime" "^7.17.0"
2469+
"@mui/base" "5.0.0-alpha.68"
2470+
"@mui/system" "^5.4.1"
2471+
"@mui/types" "^7.1.1"
2472+
"@mui/utils" "^5.4.1"
24732473
"@types/react-transition-group" "^4.4.4"
24742474
clsx "^1.1.1"
24752475
csstype "^3.0.10"
@@ -2478,34 +2478,34 @@
24782478
react-is "^17.0.2"
24792479
react-transition-group "^4.4.2"
24802480

2481-
"@mui/private-theming@^5.2.2":
2482-
version "5.2.2"
2483-
resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-5.2.2.tgz#ede801bc4b6939aedf5900edcece981fde8fa210"
2484-
integrity sha512-BfTjZ5ao6KY4Sg11lgaVuQ9uUq8unaM2u9/RKDD12If0B2Vp/AhRSe7i5OTd+wErmK2guTX0kPSraGZzwDEIVg==
2481+
"@mui/private-theming@^5.4.1":
2482+
version "5.4.1"
2483+
resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-5.4.1.tgz#5fa6490f35e78781239f1944ae80a7006c5a7648"
2484+
integrity sha512-Xbc4MXFZxv0A3hoc4TSDBhzjhstppKfc+gQcTMqqBZQP7KjnmxF+wO7rEPQuYRBihjCqQBdrHIGMLsKWrhkZkQ==
24852485
dependencies:
2486-
"@babel/runtime" "^7.16.3"
2487-
"@mui/utils" "^5.2.2"
2486+
"@babel/runtime" "^7.17.0"
2487+
"@mui/utils" "^5.4.1"
24882488
prop-types "^15.7.2"
24892489

2490-
"@mui/styled-engine@^5.2.0":
2491-
version "5.2.0"
2492-
resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-5.2.0.tgz#5c97e2b1b6c4c2d9991f07517ed862972d362b85"
2493-
integrity sha512-NZ4pWYQcM5wreUfiXRd7IMFRF+Nq1vMzsIdXtXNjgctJTKHunrofasoBqv+cqevO+hqT75ezSbNHyaXzOXp6Mg==
2490+
"@mui/styled-engine@^5.4.1":
2491+
version "5.4.1"
2492+
resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-5.4.1.tgz#1427738e71c087f7005547e17d4a59de75597850"
2493+
integrity sha512-CFLNJkopRoAuShkgUZOTBVxdTlKu4w6L4kOwPi4r3QB2XXS6O5kyLHSsg9huUbtOYk5Dv5UZyUSc5pw4J7ezdg==
24942494
dependencies:
2495-
"@babel/runtime" "^7.16.3"
2496-
"@emotion/cache" "^11.6.0"
2495+
"@babel/runtime" "^7.17.0"
2496+
"@emotion/cache" "^11.7.1"
24972497
prop-types "^15.7.2"
24982498

2499-
"@mui/styles@^5.2.2":
2500-
version "5.2.2"
2501-
resolved "https://registry.yarnpkg.com/@mui/styles/-/styles-5.2.2.tgz#34c9ba1d6d5a0b9399fbd0c6e85b8f2dcfe54fbd"
2502-
integrity sha512-Hfg/3nAU+25RVzpgB0xyE1JjrOCI4rjujrJ0K4tS7M/U4NKZQrmtinc5ldvCaZUlxb51bZGs5V1MGn2dLKZVNQ==
2499+
"@mui/styles@^5.4.1":
2500+
version "5.4.1"
2501+
resolved "https://registry.yarnpkg.com/@mui/styles/-/styles-5.4.1.tgz#994171da902267184fffa19896ee5bbb07d4d783"
2502+
integrity sha512-ekw2NBC06re0H9SvCA1XgtFcghB8AQdGPXD3mjIz5ik+X+LvR+f2TeoCpJpkKp7UQdcNn6uuYi6BO6irTiQhdw==
25032503
dependencies:
2504-
"@babel/runtime" "^7.16.3"
2504+
"@babel/runtime" "^7.17.0"
25052505
"@emotion/hash" "^0.8.0"
2506-
"@mui/private-theming" "^5.2.2"
2507-
"@mui/types" "^7.1.0"
2508-
"@mui/utils" "^5.2.2"
2506+
"@mui/private-theming" "^5.4.1"
2507+
"@mui/types" "^7.1.1"
2508+
"@mui/utils" "^5.4.1"
25092509
clsx "^1.1.1"
25102510
csstype "^3.0.10"
25112511
hoist-non-react-statics "^3.3.2"
@@ -2519,31 +2519,31 @@
25192519
jss-plugin-vendor-prefixer "^10.8.2"
25202520
prop-types "^15.7.2"
25212521

2522-
"@mui/system@^5.2.2":
2523-
version "5.2.2"
2524-
resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.2.2.tgz#81ef74f0c269d18b99a2d0253833d6554bbf5198"
2525-
integrity sha512-221tPOcZC8A89GOt6LH9YPTj2Iqf880iqrHd7AHT/HznBKOlLrnWD83pCuLPyX2jeFz4OzhvmGbdt5a74UEgaA==
2526-
dependencies:
2527-
"@babel/runtime" "^7.16.3"
2528-
"@mui/private-theming" "^5.2.2"
2529-
"@mui/styled-engine" "^5.2.0"
2530-
"@mui/types" "^7.1.0"
2531-
"@mui/utils" "^5.2.2"
2522+
"@mui/system@^5.4.1":
2523+
version "5.4.1"
2524+
resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.4.1.tgz#cf253369fbf1d960c792f0ec068fa28af81be3d4"
2525+
integrity sha512-07JBYf9iQdxIHZU8cFOLoxBnkQDUPLb7UBhNxo4998yEqpWFJ00WKgEVYBKvPl0X+MRU/20wqFz6yGIuCx4AeA==
2526+
dependencies:
2527+
"@babel/runtime" "^7.17.0"
2528+
"@mui/private-theming" "^5.4.1"
2529+
"@mui/styled-engine" "^5.4.1"
2530+
"@mui/types" "^7.1.1"
2531+
"@mui/utils" "^5.4.1"
25322532
clsx "^1.1.1"
25332533
csstype "^3.0.10"
25342534
prop-types "^15.7.2"
25352535

2536-
"@mui/types@^7.1.0":
2537-
version "7.1.0"
2538-
resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.1.0.tgz#5ed928c5a41cfbf9a4be82ea3bbdc47bcc9610d5"
2539-
integrity sha512-Hh7ALdq/GjfIwLvqH3XftuY3bcKhupktTm+S6qRIDGOtPtRuq2L21VWzOK4p7kblirK0XgGVH5BLwa6u8z/6QQ==
2536+
"@mui/types@^7.1.1":
2537+
version "7.1.1"
2538+
resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.1.1.tgz#9cf159dc60a101ee336e6ec74193a4f5f97f6160"
2539+
integrity sha512-33hbHFLCwenTpS+T4m4Cz7cQ/ng5g+IgtINkw1uDBVvi1oM83VNt/IGzWIQNPK8H2pr0WIfkmboD501bVdYsPw==
25402540

2541-
"@mui/utils@^5.2.2":
2542-
version "5.2.2"
2543-
resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.2.2.tgz#972aab7d2564e77c06e0c3c11e7b1aec6e37c927"
2544-
integrity sha512-0u9ImUfpCfTxmvQTfUzTSS+jKWMX15MBZeZCRQZ0f7o9Yi8BlrLj33lMx0mFBkUSYdTXnqL4yfOn7RBzV01HMQ==
2541+
"@mui/utils@^5.4.1":
2542+
version "5.4.1"
2543+
resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.4.1.tgz#feb365ce9a4426587510f0943fd6d6e1889e06e6"
2544+
integrity sha512-5HzM+ZjlQqbSp7UTOvLlhAjkWB+o9Z4NzO0W+yhZ1KnxITr+zr/MBzYmmQ3kyvhui8pyhgRDoTcVgwb+02ZUZA==
25452545
dependencies:
2546-
"@babel/runtime" "^7.16.3"
2546+
"@babel/runtime" "^7.17.0"
25472547
"@types/prop-types" "^15.7.4"
25482548
"@types/react-is" "^16.7.1 || ^17.0.0"
25492549
prop-types "^15.7.2"
@@ -2713,10 +2713,10 @@
27132713
estree-walker "^1.0.1"
27142714
picomatch "^2.2.2"
27152715

2716-
"@rowy/form-builder@^0.5.2":
2717-
version "0.5.2"
2718-
resolved "https://registry.yarnpkg.com/@rowy/form-builder/-/form-builder-0.5.2.tgz#06963aca11ed577e3b6a815987f81fb0e5bbfd04"
2719-
integrity sha512-bIa/2pp7nH8hoCZQET97m8NoFQ4bFE0ztf6rjP+G2QmHy0lQL8s6LAoBevgdJS7cqV8LePg3aycdl1A1GW0N+g==
2716+
"@rowy/form-builder@^0.5.3":
2717+
version "0.5.3"
2718+
resolved "https://registry.yarnpkg.com/@rowy/form-builder/-/form-builder-0.5.3.tgz#aaa4ef948cd708e08e004e0b35b3a1fac0f628ce"
2719+
integrity sha512-WXUmZAL9F7ACMreFrlP+RRhvhH/KALO4ZHkOuw1P1BbQk3nHws0AspoG95WH9ttN2PuGEmAgP7jRhUMtfIVm6w==
27202720
dependencies:
27212721
"@hookform/resolvers" "^2.6.0"
27222722
"@mdi/js" "^5.9.55"
@@ -13666,7 +13666,7 @@ postcss-values-parser@^2.0.0, postcss-values-parser@^2.0.1:
1366613666
indexes-of "^1.0.1"
1366713667
uniq "^1.0.1"
1366813668

13669-
postcss@7.0.36, postcss@^7.0.32:
13669+
postcss@7.0.36, postcss@^7, postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6:
1367013670
version "7.0.36"
1367113671
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.36.tgz#056f8cffa939662a8f5905950c07d5285644dfcb"
1367213672
integrity sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==
@@ -13675,15 +13675,6 @@ postcss@7.0.36, postcss@^7.0.32:
1367513675
source-map "^0.6.1"
1367613676
supports-color "^6.1.0"
1367713677

13678-
postcss@^7, postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.5, postcss@^7.0.6:
13679-
version "7.0.27"
13680-
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.27.tgz#cc67cdc6b0daa375105b7c424a85567345fc54d9"
13681-
integrity sha512-WuQETPMcW9Uf1/22HWUWP9lgsIC+KEHg2kozMflKjbeUtw9ujvFX6QmIfozaErDkmLWS9WEnEdEe6Uo9/BNTdQ==
13682-
dependencies:
13683-
chalk "^2.4.2"
13684-
source-map "^0.6.1"
13685-
supports-color "^6.1.0"
13686-
1368713678
postcss@^8.1.0:
1368813679
version "8.3.5"
1368913680
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.3.5.tgz#982216b113412bc20a86289e91eb994952a5b709"
@@ -16135,7 +16126,12 @@ stylehacks@^4.0.0:
1613516126
postcss "^7.0.0"
1613616127
postcss-selector-parser "^3.0.0"
1613716128

16138-
stylis@^4.0.10, stylis@^4.0.3:
16129+
stylis@4.0.13:
16130+
version "4.0.13"
16131+
resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.0.13.tgz#f5db332e376d13cc84ecfe5dace9a2a51d954c91"
16132+
integrity sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==
16133+
16134+
stylis@^4.0.3:
1613916135
version "4.0.10"
1614016136
resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.0.10.tgz#446512d1097197ab3f02fb3c258358c3f7a14240"
1614116137
integrity sha512-m3k+dk7QeJw660eIKRRn3xPF6uuvHs/FFzjX3HQ5ove0qYsiygoAhwn5a3IYKaZPo5LrYD0rfVmtv1gNY1uYwg==

0 commit comments

Comments
 (0)