@kindly/react-chat 2.39.0 → 2.39.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kindly/react-chat",
|
|
3
|
-
"version": "2.39.
|
|
3
|
+
"version": "2.39.2",
|
|
4
4
|
"description": "Kindly Chat react component",
|
|
5
5
|
"repository": "https://github.com/kindly-ai/kindly-chat/tree/main/packages/react-chat",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -126,5 +126,5 @@
|
|
|
126
126
|
"silent": true,
|
|
127
127
|
"webpackConfig": "./webpack.config.js"
|
|
128
128
|
},
|
|
129
|
-
"gitHead": "
|
|
129
|
+
"gitHead": "db6fb43b558e667bb6c3124f3e0447bb403592d1"
|
|
130
130
|
}
|
|
@@ -4,7 +4,7 @@ import { screen, userEvent } from '@storybook/testing-library';
|
|
|
4
4
|
import React from 'react';
|
|
5
5
|
import withFetchMock from 'storybook-addon-mock';
|
|
6
6
|
|
|
7
|
-
import {
|
|
7
|
+
import { IMAGE_WIDTH } from 'app/constants';
|
|
8
8
|
|
|
9
9
|
import KindlyChatButton from '../../src/features/KindlyChatButton/KindlyChatButton';
|
|
10
10
|
import settingsJSON from '../assets/settingsJson';
|
|
@@ -587,7 +587,7 @@ ImageGallery.args = {
|
|
|
587
587
|
};
|
|
588
588
|
ImageGallery.argTypes = {
|
|
589
589
|
imageCarouselSize: {
|
|
590
|
-
options: Object.keys(
|
|
590
|
+
options: Object.keys(IMAGE_WIDTH).map((size) => parseInt(size, 10)),
|
|
591
591
|
control: { type: 'radio' },
|
|
592
592
|
},
|
|
593
593
|
imageQuantity: {
|