Skip to content

Commit 61bc30c

Browse files
renovate[bot]renovate-botmxstbr
authored
chore(deps): update minor and patch for gatsby-admin (#27103)
* chore(deps): update minor and patch for gatsby-admin * Use new feedback-fish react integration * Downgrade gatsby-interface to avoid rewriting PluginView Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Max Stoiber <contact@mxstbr.com>
1 parent 2e2e5c5 commit 61bc30c

3 files changed

Lines changed: 86 additions & 189 deletions

File tree

packages/gatsby-admin/package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
},
1212
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-admin#readme",
1313
"devDependencies": {
14-
"@emotion/core": "^10.0.28",
14+
"@emotion/core": "^10.0.35",
1515
"@emotion/styled": "^10.0.27",
16+
"@feedback-fish/react": "^1.0.0",
1617
"@types/react-instantsearch-dom": "^5.2.6",
1718
"@types/socket.io-client": "^1.4.33",
18-
"@typescript-eslint/eslint-plugin": "^2.28.0",
19-
"@typescript-eslint/parser": "^2.28.0",
20-
"csstype": "^2.6.10",
21-
"feedback-fish": "^0.1.12",
22-
"formik": "^2.1.4",
19+
"@typescript-eslint/eslint-plugin": "^2.34.0",
20+
"@typescript-eslint/parser": "^2.34.0",
21+
"csstype": "^2.6.13",
22+
"formik": "^2.1.5",
2323
"gatsby": "^2.24.65",
2424
"gatsby-interface": "^0.0.193",
2525
"gatsby-plugin-typescript": "^2.4.20",
@@ -29,23 +29,23 @@
2929
"ncp": "^2.0.0",
3030
"nodemon": "^2.0.4",
3131
"prism-react-renderer": "^1.1.1",
32-
"query-string": "^6.13.1",
32+
"query-string": "^6.13.3",
3333
"react": "^16.12.0",
3434
"react-dom": "^16.12.0",
35-
"react-error-boundary": "^3.0.1",
35+
"react-error-boundary": "^3.0.2",
3636
"react-helmet": "^6.1.0",
37-
"react-icons": "^3.10.0",
37+
"react-icons": "^3.11.0",
3838
"react-instantsearch-dom": "^5.7.0",
3939
"react-markdown": "^4.3.1",
4040
"remove-markdown": "^0.3.0",
4141
"rimraf": "^3.0.2",
4242
"socket.io-client": "^2.3.0",
4343
"strict-ui": "^0.2.0-0",
44-
"subscriptions-transport-ws": "^0.9.16",
45-
"theme-ui": "^0.4.0-alpha.3",
46-
"typescript": "^3.9.5",
47-
"urql": "^1.9.8",
48-
"yup": "^0.29.1"
44+
"subscriptions-transport-ws": "^0.9.18",
45+
"theme-ui": "^0.4.0-rc.5",
46+
"typescript": "^3.9.7",
47+
"urql": "^1.10.1",
48+
"yup": "^0.29.3"
4949
},
5050
"scripts": {
5151
"develop": "gatsby develop",

packages/gatsby-admin/src/components/navbar.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { jsx, Flex } from "strict-ui"
33
import { Text, Button, AnchorButton } from "gatsby-interface"
44
import { useQuery } from "urql"
5-
import { FeedbackForm } from "feedback-fish"
5+
import { FeedbackFish } from "@feedback-fish/react"
66
import externalLinkIcon from "../external-link.svg"
77
import graphqlIcon from "../graphql.svg"
88
import { Link } from "gatsby"
@@ -15,10 +15,10 @@ function SendFeedbackButton(props): JSX.Element {
1515
<Button
1616
variant="GHOST"
1717
size="S"
18+
data-feedback-fish
1819
{...props}
19-
onClick={(evt): void => {
20+
onClick={(): void => {
2021
telemetry.trackEvent(`FEEDBACK_WIDGET_OPEN`)
21-
props.onClick(evt)
2222
}}
2323
>
2424
Send feedback
@@ -67,10 +67,11 @@ function Navbar(): JSX.Element {
6767
)}
6868
</Flex>
6969
<Flex alignItems="baseline" gap={3}>
70-
<FeedbackForm
70+
<FeedbackFish
7171
projectId="9502a819990b03"
7272
triggerComponent={SendFeedbackButton}
7373
/>
74+
<SendFeedbackButton />
7475
<AnchorButton
7576
size="S"
7677
href="/___graphql"

0 commit comments

Comments
 (0)