@bigbinary/neeto-slack-frontend 0.3.9 → 0.3.10
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/dist/index.cjs.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
- package/types.d.ts +4 -1
package/dist/index.cjs.js
CHANGED
|
@@ -3217,7 +3217,7 @@ var slack = {
|
|
|
3217
3217
|
sendTo: "Send to",
|
|
3218
3218
|
sendToDescription: "Choose a Slack channel or contact to send the notifications",
|
|
3219
3219
|
updateType: "Update type",
|
|
3220
|
-
refreshSlackChannelList: "Refresh Slack
|
|
3220
|
+
refreshSlackChannelList: "Refresh Slack channel list"
|
|
3221
3221
|
},
|
|
3222
3222
|
finish: {
|
|
3223
3223
|
title: "Slack successfully connected",
|
package/dist/index.js
CHANGED
|
@@ -3189,7 +3189,7 @@ var slack = {
|
|
|
3189
3189
|
sendTo: "Send to",
|
|
3190
3190
|
sendToDescription: "Choose a Slack channel or contact to send the notifications",
|
|
3191
3191
|
updateType: "Update type",
|
|
3192
|
-
refreshSlackChannelList: "Refresh Slack
|
|
3192
|
+
refreshSlackChannelList: "Refresh Slack channel list"
|
|
3193
3193
|
},
|
|
3194
3194
|
finish: {
|
|
3195
3195
|
title: "Slack successfully connected",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-slack-frontend",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.10",
|
|
4
4
|
"description": "Slack integration step UI",
|
|
5
5
|
"author": "Bonnie Simon",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"postcss-preset-env": "7.8.2",
|
|
99
99
|
"prettier": "2.6.2",
|
|
100
100
|
"prettier-plugin-tailwindcss": "0.1.10",
|
|
101
|
-
"ramda": "0.
|
|
101
|
+
"ramda": "0.29.0",
|
|
102
102
|
"react": "17.0.2",
|
|
103
103
|
"react-dom": "17.0.2",
|
|
104
104
|
"react-helmet": "^6.1.0",
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"classnames": "2.3.1",
|
|
137
137
|
"dayjs": "1.11.1",
|
|
138
138
|
"formik": "2.2.9",
|
|
139
|
-
"ramda": "0.
|
|
139
|
+
"ramda": "0.29.0",
|
|
140
140
|
"react": "17.0.2",
|
|
141
141
|
"react-dom": "17.0.2",
|
|
142
142
|
"react-query": "3.39.2",
|
package/types.d.ts
CHANGED
|
@@ -5,7 +5,10 @@ declare global {
|
|
|
5
5
|
declare module "assets/*"
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
-
export function Connect(props: {
|
|
8
|
+
export function Connect(props: {
|
|
9
|
+
handleRedirectToSlack: Fn;
|
|
10
|
+
isAuthorizeUrlFetching: boolean;
|
|
11
|
+
}): JSX.Element;
|
|
9
12
|
|
|
10
13
|
export function Configure(props: {
|
|
11
14
|
children?: Fn | React.ReactNode;
|