@messenger-box/platform-mobile 10.0.3-alpha.10 → 10.0.3-alpha.14
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 +4 -0
- package/lib/screens/inbox/DialogThreadMessages.js +1 -1
- package/lib/screens/inbox/DialogThreadMessages.js.map +1 -1
- package/lib/screens/inbox/DialogThreads.js +1 -1
- package/lib/screens/inbox/DialogThreads.js.map +1 -1
- package/lib/screens/inbox/components/DialogsListItem.js +1 -1
- package/lib/screens/inbox/components/DialogsListItem.js.map +1 -1
- package/lib/screens/inbox/components/ServiceDialogsListItem.js +1 -1
- package/lib/screens/inbox/components/ServiceDialogsListItem.js.map +1 -1
- package/lib/screens/inbox/components/SlackMessageContainer/SlackBubble.js +6 -0
- package/lib/screens/inbox/components/SlackMessageContainer/SlackBubble.js.map +1 -1
- package/lib/screens/inbox/components/SlackMessageContainer/SlackMessage.js +5 -0
- package/lib/screens/inbox/components/SlackMessageContainer/SlackMessage.js.map +1 -1
- package/lib/screens/inbox/components/ThreadsViewItem.js +1 -1
- package/lib/screens/inbox/components/ThreadsViewItem.js.map +1 -1
- package/lib/screens/inbox/containers/ConversationView.js +1 -1
- package/lib/screens/inbox/containers/ConversationView.js.map +1 -1
- package/lib/screens/inbox/containers/Dialogs.js +1 -1
- package/lib/screens/inbox/containers/Dialogs.js.map +1 -1
- package/lib/screens/inbox/containers/ThreadConversationView.js +1 -1
- package/lib/screens/inbox/containers/ThreadConversationView.js.map +1 -1
- package/lib/screens/inbox/containers/ThreadsView.js +1 -1
- package/lib/screens/inbox/containers/ThreadsView.js.map +1 -1
- package/package.json +4 -4
- package/src/screens/inbox/DialogThreadMessages.tsx +1 -1
- package/src/screens/inbox/DialogThreads.tsx +1 -1
- package/src/screens/inbox/components/DialogsListItem.tsx +1 -1
- package/src/screens/inbox/components/ServiceDialogsListItem.tsx +1 -1
- package/src/screens/inbox/components/SupportServiceDialogsListItem.tsx +1 -1
- package/src/screens/inbox/components/ThreadsViewItem.tsx +1 -1
- package/src/screens/inbox/containers/ConversationView.tsx +1 -1
- package/src/screens/inbox/containers/Dialogs.tsx +1 -4
- package/src/screens/inbox/containers/SupportServiceDialogs.tsx +1 -1
- package/src/screens/inbox/containers/ThreadConversationView.tsx +1 -1
- package/src/screens/inbox/containers/ThreadsView.tsx +1 -1
- package/tsconfig.json +11 -54
package/tsconfig.json
CHANGED
|
@@ -1,56 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"resolveJsonModule": true,
|
|
14
|
-
"allowSyntheticDefaultImports": true,
|
|
15
|
-
"experimentalDecorators": true,
|
|
16
|
-
"rootDir": "src",
|
|
17
|
-
"outDir": "lib",
|
|
18
|
-
"declaration": true,
|
|
19
|
-
"declarationDir": "lib",
|
|
20
|
-
"types": [
|
|
21
|
-
"@types/node",
|
|
22
|
-
"@types/jest",
|
|
23
|
-
"../../../typings",
|
|
24
|
-
],
|
|
25
|
-
"skipLibCheck": true
|
|
26
|
-
},
|
|
27
|
-
"include": [
|
|
28
|
-
"src"
|
|
29
|
-
],
|
|
30
|
-
"exclude": [
|
|
31
|
-
"../../../node_modules",
|
|
32
|
-
"node_modules",
|
|
33
|
-
"lib",
|
|
34
|
-
"lib",
|
|
35
|
-
"webpack.config.js",
|
|
36
|
-
"rollup.config.mjs"
|
|
37
|
-
]
|
|
2
|
+
"extends": "../../../tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"rootDir": "src",
|
|
5
|
+
"outDir": "lib",
|
|
6
|
+
"declaration": true,
|
|
7
|
+
"declarationDir": "lib",
|
|
8
|
+
"types": ["@types/node", "@types/jest", "../../../typings"],
|
|
9
|
+
"skipLibCheck": true
|
|
10
|
+
},
|
|
11
|
+
"include": ["src"],
|
|
12
|
+
"exclude": ["../../../node_modules", "node_modules", "lib", "lib", "webpack.config.js", "rollup.config.mjs"]
|
|
38
13
|
}
|
|
39
|
-
// {
|
|
40
|
-
// "extends": "../../../tsconfig.json",
|
|
41
|
-
// "compilerOptions": {
|
|
42
|
-
// "allowSyntheticDefaultImports": true,
|
|
43
|
-
// "experimentalDecorators": true,
|
|
44
|
-
// "esModuleInterop": true,
|
|
45
|
-
// "skipLibCheck": true,
|
|
46
|
-
// "rootDir": "./src",
|
|
47
|
-
// "outDir": "../lib",
|
|
48
|
-
// "declarationDir": "lib"
|
|
49
|
-
// },
|
|
50
|
-
// "exclude": [
|
|
51
|
-
// "node_modules",
|
|
52
|
-
// "lib",
|
|
53
|
-
// "dist",
|
|
54
|
-
// "webpack.config.js"
|
|
55
|
-
// ]
|
|
56
|
-
// }
|