@messenger-box/platform-browser 0.0.1-alpha.94 → 0.0.1-alpha.99
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/CHANGELOG.md +32 -0
- package/lib/components/InboxMessage/InboxSidebar/styles.d.ts +1 -1
- package/lib/components/InboxMessage/Messages/styles.d.ts +14 -5
- package/lib/components/InboxMessage/Popover/style.d.ts +2 -1
- package/lib/components/InboxMessage/UserModalContent/index.d.ts +2 -0
- package/lib/components/InboxMessage/UserModalContent/style.d.ts +98 -0
- package/lib/components/InboxMessage/style.d.ts +13 -0
- package/lib/index.js +372 -142
- package/lib/index.js.map +1 -1
- package/package.json +8 -3
- package/src/components/InboxMessage/InboxDetails/index.tsx +18 -12
- package/src/components/InboxMessage/InboxSidebar/index.tsx +65 -33
- package/src/components/InboxMessage/InboxSidebar/styles.ts +25 -25
- package/src/components/InboxMessage/Messages/index.tsx +77 -44
- package/src/components/InboxMessage/Messages/styles.ts +32 -23
- package/src/components/InboxMessage/MessagesList/index.tsx +65 -24
- package/src/components/InboxMessage/Popover/index.tsx +41 -25
- package/src/components/InboxMessage/Popover/style.ts +9 -8
- package/src/components/InboxMessage/UserModalContent/index.tsx +47 -0
- package/src/components/InboxMessage/UserModalContent/style.ts +98 -0
- package/src/components/InboxMessage/index.tsx +183 -133
- package/src/components/InboxMessage/style.ts +34 -21
- package/src/components/post/channel_intro_message/channel_intro_message.tsx +0 -1
- package/src/graphql/mutations/messages-mutation.gql +13 -13
- package/tsconfig.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,38 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.0.1-alpha.99](https://github.com/cdmbase/messenger-box/compare/v0.0.1-alpha.98...v0.0.1-alpha.99) (2021-12-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @messenger-box/platform-browser
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.0.1-alpha.97](https://github.com/cdmbase/messenger-box/compare/v0.0.1-alpha.96...v0.0.1-alpha.97) (2021-12-02)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @messenger-box/platform-browser
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [0.0.1-alpha.96](https://github.com/cdmbase/messenger-box/compare/v0.0.1-alpha.95...v0.0.1-alpha.96) (2021-12-01)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @messenger-box/platform-browser
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## [0.0.1-alpha.95](https://github.com/cdmbase/messenger-box/compare/v0.0.1-alpha.94...v0.0.1-alpha.95) (2021-12-01)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @messenger-box/platform-browser
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
6
38
|
## [0.0.1-alpha.94](https://github.com/cdmbase/messenger-box/compare/v0.0.1-alpha.93...v0.0.1-alpha.94) (2021-12-01)
|
|
7
39
|
|
|
8
40
|
**Note:** Version bump only for package @messenger-box/platform-browser
|
|
@@ -62,12 +62,21 @@ export declare const styleSheet: {
|
|
|
62
62
|
'& input': {
|
|
63
63
|
borderRadius: string;
|
|
64
64
|
width: string;
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
'& svg': {
|
|
68
|
-
fontSize: string;
|
|
69
|
-
fontWeight: string;
|
|
65
|
+
minHeight: string;
|
|
66
|
+
maxHeight: string;
|
|
70
67
|
color: string;
|
|
68
|
+
lineHeight: string;
|
|
69
|
+
fontSize: string;
|
|
70
|
+
resize: string;
|
|
71
|
+
border: string;
|
|
72
|
+
padding: string;
|
|
73
|
+
};
|
|
74
|
+
'& .image-btn': {
|
|
75
|
+
'& svg': {
|
|
76
|
+
fontSize: string;
|
|
77
|
+
fontWeight: string;
|
|
78
|
+
color: string;
|
|
79
|
+
};
|
|
71
80
|
};
|
|
72
81
|
};
|
|
73
82
|
};
|
|
@@ -3,6 +3,7 @@ export declare const styleSheet: {
|
|
|
3
3
|
position: string;
|
|
4
4
|
height: string;
|
|
5
5
|
width: string;
|
|
6
|
+
zIndex: string;
|
|
6
7
|
background: string;
|
|
7
8
|
boxShadow: string;
|
|
8
9
|
left: string;
|
|
@@ -12,12 +13,12 @@ export declare const styleSheet: {
|
|
|
12
13
|
width: string;
|
|
13
14
|
marginTop: string;
|
|
14
15
|
transition: string;
|
|
16
|
+
cursor: string;
|
|
15
17
|
'& :hover': {
|
|
16
18
|
backgroundColor: string;
|
|
17
19
|
};
|
|
18
20
|
'& .ant-btn': {
|
|
19
21
|
textDecoration: string;
|
|
20
|
-
color: string;
|
|
21
22
|
width: string;
|
|
22
23
|
textAlign: string;
|
|
23
24
|
};
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
export declare const styleSheet: {
|
|
2
|
+
UserContentStyles: () => {
|
|
3
|
+
display: string;
|
|
4
|
+
justifyContent: string;
|
|
5
|
+
padding: string;
|
|
6
|
+
'& .user-info': {
|
|
7
|
+
border: string;
|
|
8
|
+
padding: string;
|
|
9
|
+
width: string;
|
|
10
|
+
borderRadius: string;
|
|
11
|
+
'& .avatar': {
|
|
12
|
+
textAlign: string;
|
|
13
|
+
marginBottom: string;
|
|
14
|
+
display: string;
|
|
15
|
+
flexDirection: string;
|
|
16
|
+
alignItems: string;
|
|
17
|
+
'& .ant-avatar-lg': {
|
|
18
|
+
height: string;
|
|
19
|
+
width: string;
|
|
20
|
+
'& svg': {
|
|
21
|
+
fontSize: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
'& a': {
|
|
25
|
+
color: string;
|
|
26
|
+
textDecoration: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
'& .identify': {
|
|
30
|
+
paddingBottom: string;
|
|
31
|
+
borderBottom: string;
|
|
32
|
+
'& h3': {
|
|
33
|
+
color: string;
|
|
34
|
+
};
|
|
35
|
+
'& .get-badge-btn': {
|
|
36
|
+
height: string;
|
|
37
|
+
width: string;
|
|
38
|
+
borderRadius: string;
|
|
39
|
+
borderColor: string;
|
|
40
|
+
};
|
|
41
|
+
'& .get-badge-btn:hover ': {
|
|
42
|
+
color: string;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
'& .user-conformation': {
|
|
46
|
+
marginBottom: string;
|
|
47
|
+
'& h3': {
|
|
48
|
+
color: string;
|
|
49
|
+
};
|
|
50
|
+
'& .email-address': {
|
|
51
|
+
display: string;
|
|
52
|
+
'& p': {
|
|
53
|
+
fontSize: string;
|
|
54
|
+
marginLeft: string;
|
|
55
|
+
};
|
|
56
|
+
'& svg': {
|
|
57
|
+
fontSize: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
'& .user-details': {
|
|
63
|
+
width: string;
|
|
64
|
+
marginLeft: string;
|
|
65
|
+
'& .user': {
|
|
66
|
+
borderBottom: string;
|
|
67
|
+
paddingBottm: string;
|
|
68
|
+
'& h2': {
|
|
69
|
+
color: string;
|
|
70
|
+
};
|
|
71
|
+
'& p': {
|
|
72
|
+
marginBottom: string;
|
|
73
|
+
color: string;
|
|
74
|
+
};
|
|
75
|
+
'& a': {
|
|
76
|
+
color: string;
|
|
77
|
+
textDecoration: string;
|
|
78
|
+
};
|
|
79
|
+
'& h3': {
|
|
80
|
+
color: string;
|
|
81
|
+
fontSize: string;
|
|
82
|
+
'& svg': {
|
|
83
|
+
width: string;
|
|
84
|
+
height: string;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
'& .reviews': {
|
|
90
|
+
borderBottom: string;
|
|
91
|
+
padding: string;
|
|
92
|
+
'& a': {
|
|
93
|
+
color: string;
|
|
94
|
+
textDecoration: string;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
};
|
|
@@ -11,6 +11,17 @@ export declare const stylesheet: {
|
|
|
11
11
|
borderRight: string;
|
|
12
12
|
width: string;
|
|
13
13
|
height: string;
|
|
14
|
+
display: string;
|
|
15
|
+
flexDirection: string;
|
|
16
|
+
justifyContent: string;
|
|
17
|
+
'& .add-conversations': {
|
|
18
|
+
padding: string;
|
|
19
|
+
width: string;
|
|
20
|
+
borderTop: string;
|
|
21
|
+
'& .conversation-btn': {
|
|
22
|
+
width: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
14
25
|
};
|
|
15
26
|
'& .inbox-sidebar-active': {
|
|
16
27
|
borderRight: string;
|
|
@@ -32,8 +43,10 @@ export declare const stylesheet: {
|
|
|
32
43
|
display: string;
|
|
33
44
|
alignItems: string;
|
|
34
45
|
justifyContent: string;
|
|
46
|
+
padding: string;
|
|
35
47
|
'& h3': {
|
|
36
48
|
marginLeft: string;
|
|
49
|
+
marginTop: string;
|
|
37
50
|
color: string;
|
|
38
51
|
fontWeight: string;
|
|
39
52
|
fontSize: string;
|