@kindly/react-chat 2.41.1 → 2.41.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.41.1",
3
+ "version": "2.41.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",
@@ -129,5 +129,5 @@
129
129
  "pusher-js": "8.0.1"
130
130
  }
131
131
  },
132
- "gitHead": "e8e325c85808d88ebc5b01cd1ca77375c791c4c4"
132
+ "gitHead": "cdabdac3eb6d3c545e93376519083ea0605825ff"
133
133
  }
@@ -192,8 +192,8 @@ FormActive.parameters = {
192
192
  label: 'Four',
193
193
  },
194
194
  {
195
- value: '5',
196
- label: 'Five',
195
+ value: 'Very long message',
196
+ label: 'Very long message, this is a very long message',
197
197
  },
198
198
  ],
199
199
  },
@@ -232,7 +232,7 @@ FormActive.play = async ({ canvasElement }) => {
232
232
  const selectInputStyle = window.getComputedStyle(selectInput);
233
233
  expect(selectInputStyle.border).not.toContain('#00000000');
234
234
  expect(selectInputStyle.border).not.toContain('transparent');
235
- await userEvent.selectOptions(selectInput, '2');
235
+ await userEvent.selectOptions(selectInput, 'Very long message');
236
236
  await expect(selectInputStyle.border).toContain('rgba(0, 0, 0, 0)');
237
237
 
238
238
  const chatBody = await within(canvasElement).findByTestId('chat-body-container');