@kindly/react-chat 2.42.1 → 2.44.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/.storybook/main.js +1 -30
- package/.storybook/preview.js +16 -6
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +28 -13
- package/dist/index.js.map +1 -1
- package/package.json +46 -33
- package/stories/assets/settingsJson.js +19 -7
- package/stories/screens.stories/Chat/Composer.stories.jsx +174 -0
- package/stories/screens.stories/Chat/Notifications.stories.jsx +184 -0
- package/stories/screens.stories/Chat/TypingIndicator.stories.jsx +143 -0
- package/stories/screens.stories/Chat/index.stories.jsx +65 -44
- package/stories/screens.stories/Options.stories.jsx +4 -9
|
@@ -1,19 +1,34 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
4
|
-
this file except in compliance with the License. You may obtain a copy of the
|
|
5
|
-
License at http://www.apache.org/licenses/LICENSE-2.0
|
|
1
|
+
/*! @license DOMPurify | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.2.2/LICENSE */
|
|
6
2
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
3
|
+
/**
|
|
4
|
+
* @license React
|
|
5
|
+
* react-is.production.min.js
|
|
6
|
+
*
|
|
7
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
8
|
+
*
|
|
9
|
+
* This source code is licensed under the MIT license found in the
|
|
10
|
+
* LICENSE file in the root directory of this source tree.
|
|
11
|
+
*/
|
|
11
12
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
/**
|
|
14
|
+
* @license React
|
|
15
|
+
* use-sync-external-store-shim.production.min.js
|
|
16
|
+
*
|
|
17
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
18
|
+
*
|
|
19
|
+
* This source code is licensed under the MIT license found in the
|
|
20
|
+
* LICENSE file in the root directory of this source tree.
|
|
21
|
+
*/
|
|
15
22
|
|
|
16
|
-
|
|
23
|
+
/**
|
|
24
|
+
* @license React
|
|
25
|
+
* use-sync-external-store-shim/with-selector.production.min.js
|
|
26
|
+
*
|
|
27
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
28
|
+
*
|
|
29
|
+
* This source code is licensed under the MIT license found in the
|
|
30
|
+
* LICENSE file in the root directory of this source tree.
|
|
31
|
+
*/
|
|
17
32
|
|
|
18
33
|
/** @license React v16.13.1
|
|
19
34
|
* react-is.production.min.js
|