@bigbinary/neeto-slack-frontend 0.3.9 → 0.4.0
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 +31 -16
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +31 -16
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/types.d.ts +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-slack-frontend",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Slack integration step UI",
|
|
5
5
|
"author": "Bonnie Simon",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@babel/preset-typescript": "^7.18.6",
|
|
45
45
|
"@babel/runtime": "^7.19.0",
|
|
46
46
|
"@bigbinary/babel-preset-neeto": "^1.0.3",
|
|
47
|
-
"@bigbinary/eslint-plugin-neeto": "^1.0.
|
|
47
|
+
"@bigbinary/eslint-plugin-neeto": "^1.0.54",
|
|
48
48
|
"@bigbinary/neeto-commons-frontend": "^2.0.74",
|
|
49
49
|
"@bigbinary/neeto-icons": "1.9.12",
|
|
50
50
|
"@bigbinary/neeto-molecules": "^1.0.19",
|
|
@@ -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
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { Fn } from "ramda";
|
|
3
|
+
import { ButtonProps } from "neetoui";
|
|
3
4
|
|
|
4
5
|
declare global {
|
|
5
6
|
declare module "assets/*"
|
|
6
7
|
}
|
|
7
8
|
|
|
8
|
-
export function Connect(props: {
|
|
9
|
+
export function Connect(props: {
|
|
10
|
+
handleRedirectToSlack: Fn;
|
|
11
|
+
isAuthorizeUrlFetching: boolean;
|
|
12
|
+
}): JSX.Element;
|
|
9
13
|
|
|
10
14
|
export function Configure(props: {
|
|
11
15
|
children?: Fn | React.ReactNode;
|
|
@@ -20,14 +24,14 @@ export function Configure(props: {
|
|
|
20
24
|
|
|
21
25
|
export function Finish(props: {
|
|
22
26
|
children?: React.ReactNode;
|
|
23
|
-
onClose: Fn;
|
|
24
|
-
onBack: Fn;
|
|
25
27
|
teamName: string;
|
|
26
28
|
selectedChannel: string;
|
|
27
29
|
otherFields?: {
|
|
28
30
|
name: string;
|
|
29
31
|
value: string;
|
|
30
32
|
}[];
|
|
33
|
+
buttonProps?: Partial<ButtonProps>;
|
|
34
|
+
secondaryButtonProps?: Partial<ButtonProps>;
|
|
31
35
|
}): JSX.Element;
|
|
32
36
|
|
|
33
37
|
export function Settings(props: {
|