@envive-ai/react-toolkit-v3 0.3.41 → 0.3.43
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/dist/AnimatedText/AnimatedText.d.ts +3 -3
- package/dist/CSSVariablesEditor/CssVariablesEditorComponent.d.cts +2 -2
- package/dist/CSSVariablesEditor/CssVariablesEditorComponent.d.ts +2 -2
- package/dist/Carousel/Carousel.d.cts +2 -2
- package/dist/Carousel/Carousel.d.ts +2 -2
- package/dist/ChatFooter/ChatFooter.d.cts +2 -2
- package/dist/ChatFooter/components/index.d.cts +5 -5
- package/dist/ChatFooter/components/index.d.ts +2 -2
- package/dist/ChatHeader/ChatHeader.d.cts +2 -2
- package/dist/ChatHeader/ChatHeader.d.ts +2 -2
- package/dist/ChatPreview/ChatPreview.d.cts +2 -2
- package/dist/ChatPreview/ChatPreview.d.ts +2 -2
- package/dist/ChatPreviewComparison/ChatPreviewComparison.d.cts +2 -2
- package/dist/ChatPreviewComparison/ChatPreviewComparison.d.ts +2 -2
- package/dist/ChatPreviewLoading/ChatPreviewLoading.d.cts +2 -2
- package/dist/ChatPreviewLoading/ChatPreviewLoading.d.ts +2 -2
- package/dist/Container/Container.d.cts +172 -172
- package/dist/Container/Container.d.ts +172 -172
- package/dist/DesignTokens/DesignTokensComponent.d.cts +2 -2
- package/dist/DesignTokens/DesignTokensComponent.d.ts +2 -2
- package/dist/DocumentRetrievalCard/DocumentRetrievalCard.d.cts +2 -2
- package/dist/DocumentRetrievalCard/DocumentRetrievalCard.d.ts +2 -2
- package/dist/FloatingButton/FloatingButton.d.cts +2 -2
- package/dist/FloatingButton/FloatingButton.d.ts +2 -2
- package/dist/FloatingChat/FloatingChat.d.cts +2 -2
- package/dist/FloatingChat/FloatingChat.d.ts +2 -2
- package/dist/FullPageSalesAgent/FullPageSalesAgent.cjs +5 -2
- package/dist/FullPageSalesAgent/FullPageSalesAgent.d.cts +2 -2
- package/dist/FullPageSalesAgent/FullPageSalesAgent.d.ts +2 -2
- package/dist/FullPageSalesAgent/FullPageSalesAgent.js +5 -2
- package/dist/Image/Image.d.cts +2 -2
- package/dist/Image/Image.d.ts +2 -2
- package/dist/ImageGallery/ImageGallery.d.cts +2 -2
- package/dist/ImageGallery/ImageGallery.d.ts +2 -2
- package/dist/MarkdownProcessor/MarkdownProcessor.d.cts +2 -2
- package/dist/MarkdownProcessor/MarkdownProcessor.d.ts +2 -2
- package/dist/ProductCard/ProductCard.d.cts +2 -2
- package/dist/ProductCard/ProductCard.d.ts +2 -2
- package/dist/PromptButton/PromptButton.d.cts +2 -2
- package/dist/PromptButton/PromptButton.d.ts +2 -2
- package/dist/PromptButton/hooks/useGetBorderColorsProperties.cjs +1 -1
- package/dist/PromptButton/hooks/useGetBorderColorsProperties.js +1 -1
- package/dist/PromptButtonCarouselWithImage/PromptButtonCarouselWithImage.d.cts +2 -2
- package/dist/PromptButtonCarouselWithImage/PromptButtonCarouselWithImage.d.ts +2 -2
- package/dist/PromptCarousel/PromptCarousel.d.cts +2 -2
- package/dist/PromptCarousel/PromptCarousel.d.ts +2 -2
- package/dist/ReviewCard/ReviewCard.d.cts +2 -2
- package/dist/ReviewCard/ReviewCard.d.ts +2 -2
- package/dist/ReviewCard/components/Name.cjs +1 -1
- package/dist/ReviewCard/components/Name.js +1 -1
- package/dist/ReviewCard/components/index.d.cts +6 -6
- package/dist/ReviewCard/components/index.d.ts +6 -6
- package/dist/SalesAgentProductCard/SalesAgentProductCard.d.cts +2 -2
- package/dist/SalesAgentProductCard/SalesAgentProductCard.d.ts +2 -2
- package/dist/SalesAgentProductCard/components/index.d.cts +8 -8
- package/dist/SalesAgentProductCard/components/index.d.ts +6 -6
- package/dist/SocialProof/SocialProof.d.cts +2 -2
- package/dist/SocialProof/SocialProof.d.ts +2 -2
- package/dist/SparkleAnimation/SparkleAnimation.d.ts +2 -2
- package/dist/Stack/Stack.d.cts +2 -2
- package/dist/TitledPromptCarousel/TitledPromptCarousel.d.ts +2 -2
- package/dist/TypingAnimation/TypingAnimation.d.cts +2 -2
- package/dist/TypingAnimation/TypingAnimation.d.ts +2 -2
- package/dist/Typography/Typography.d.cts +4 -4
- package/dist/Typography/Typography.d.ts +4 -4
- package/dist/WidgetTextField/WidgetTextField.d.ts +2 -2
- package/dist/WidgetWrapperWithTitle/WidgetWrapperWithTitle.d.cts +2 -2
- package/dist/WidgetWrapperWithTitle/WidgetWrapperWithTitle.d.ts +2 -2
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/src/components/FullPageSalesAgent/FullPageSalesAgent.tsx +12 -2
- package/src/components/PromptButton/hooks/useGetBorderColorsProperties.ts +1 -1
- package/src/components/ReviewCard/components/Name.tsx +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ContainerProps } from "./types/index.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react12 from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/Container/Container.d.ts
|
|
5
5
|
|
|
@@ -17,10 +17,7 @@ declare const Container: ({
|
|
|
17
17
|
fluid,
|
|
18
18
|
centerContent,
|
|
19
19
|
...props
|
|
20
|
-
}: ContainerProps & Omit<React.HTMLAttributes<HTMLElement>, "className" | "style" | "component">) =>
|
|
21
|
-
onChange?: react10.FormEventHandler<HTMLElement>;
|
|
22
|
-
onSubmit?: react10.FormEventHandler<HTMLElement>;
|
|
23
|
-
onFocus?: react10.FocusEventHandler<HTMLElement>;
|
|
20
|
+
}: ContainerProps & Omit<React.HTMLAttributes<HTMLElement>, "className" | "style" | "component">) => react12.DetailedReactHTMLElement<{
|
|
24
21
|
defaultChecked?: boolean | undefined;
|
|
25
22
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
26
23
|
suppressContentEditableWarning?: boolean | undefined;
|
|
@@ -42,7 +39,7 @@ declare const Container: ({
|
|
|
42
39
|
title?: string | undefined;
|
|
43
40
|
translate?: "yes" | "no" | undefined;
|
|
44
41
|
radioGroup?: string | undefined;
|
|
45
|
-
role?:
|
|
42
|
+
role?: react12.AriaRole | undefined;
|
|
46
43
|
about?: string | undefined;
|
|
47
44
|
content?: string | undefined;
|
|
48
45
|
datatype?: string | undefined;
|
|
@@ -129,173 +126,176 @@ declare const Container: ({
|
|
|
129
126
|
dangerouslySetInnerHTML?: {
|
|
130
127
|
__html: string | TrustedHTML;
|
|
131
128
|
} | undefined;
|
|
132
|
-
onCopy?:
|
|
133
|
-
onCopyCapture?:
|
|
134
|
-
onCut?:
|
|
135
|
-
onCutCapture?:
|
|
136
|
-
onPaste?:
|
|
137
|
-
onPasteCapture?:
|
|
138
|
-
onCompositionEnd?:
|
|
139
|
-
onCompositionEndCapture?:
|
|
140
|
-
onCompositionStart?:
|
|
141
|
-
onCompositionStartCapture?:
|
|
142
|
-
onCompositionUpdate?:
|
|
143
|
-
onCompositionUpdateCapture?:
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
129
|
+
onCopy?: react12.ClipboardEventHandler<HTMLElement>;
|
|
130
|
+
onCopyCapture?: react12.ClipboardEventHandler<HTMLElement>;
|
|
131
|
+
onCut?: react12.ClipboardEventHandler<HTMLElement>;
|
|
132
|
+
onCutCapture?: react12.ClipboardEventHandler<HTMLElement>;
|
|
133
|
+
onPaste?: react12.ClipboardEventHandler<HTMLElement>;
|
|
134
|
+
onPasteCapture?: react12.ClipboardEventHandler<HTMLElement>;
|
|
135
|
+
onCompositionEnd?: react12.CompositionEventHandler<HTMLElement>;
|
|
136
|
+
onCompositionEndCapture?: react12.CompositionEventHandler<HTMLElement>;
|
|
137
|
+
onCompositionStart?: react12.CompositionEventHandler<HTMLElement>;
|
|
138
|
+
onCompositionStartCapture?: react12.CompositionEventHandler<HTMLElement>;
|
|
139
|
+
onCompositionUpdate?: react12.CompositionEventHandler<HTMLElement>;
|
|
140
|
+
onCompositionUpdateCapture?: react12.CompositionEventHandler<HTMLElement>;
|
|
141
|
+
onFocus?: react12.FocusEventHandler<HTMLElement>;
|
|
142
|
+
onFocusCapture?: react12.FocusEventHandler<HTMLElement>;
|
|
143
|
+
onBlur?: react12.FocusEventHandler<HTMLElement>;
|
|
144
|
+
onBlurCapture?: react12.FocusEventHandler<HTMLElement>;
|
|
145
|
+
onChange?: react12.FormEventHandler<HTMLElement>;
|
|
146
|
+
onChangeCapture?: react12.FormEventHandler<HTMLElement>;
|
|
147
|
+
onBeforeInput?: react12.InputEventHandler<HTMLElement>;
|
|
148
|
+
onBeforeInputCapture?: react12.FormEventHandler<HTMLElement>;
|
|
149
|
+
onInput?: react12.FormEventHandler<HTMLElement>;
|
|
150
|
+
onInputCapture?: react12.FormEventHandler<HTMLElement>;
|
|
151
|
+
onReset?: react12.FormEventHandler<HTMLElement>;
|
|
152
|
+
onResetCapture?: react12.FormEventHandler<HTMLElement>;
|
|
153
|
+
onSubmit?: react12.FormEventHandler<HTMLElement>;
|
|
154
|
+
onSubmitCapture?: react12.FormEventHandler<HTMLElement>;
|
|
155
|
+
onInvalid?: react12.FormEventHandler<HTMLElement>;
|
|
156
|
+
onInvalidCapture?: react12.FormEventHandler<HTMLElement>;
|
|
157
|
+
onLoad?: react12.ReactEventHandler<HTMLElement>;
|
|
158
|
+
onLoadCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
159
|
+
onError?: react12.ReactEventHandler<HTMLElement>;
|
|
160
|
+
onErrorCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
161
|
+
onKeyDown?: react12.KeyboardEventHandler<HTMLElement>;
|
|
162
|
+
onKeyDownCapture?: react12.KeyboardEventHandler<HTMLElement>;
|
|
163
|
+
onKeyPress?: react12.KeyboardEventHandler<HTMLElement>;
|
|
164
|
+
onKeyPressCapture?: react12.KeyboardEventHandler<HTMLElement>;
|
|
165
|
+
onKeyUp?: react12.KeyboardEventHandler<HTMLElement>;
|
|
166
|
+
onKeyUpCapture?: react12.KeyboardEventHandler<HTMLElement>;
|
|
167
|
+
onAbort?: react12.ReactEventHandler<HTMLElement>;
|
|
168
|
+
onAbortCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
169
|
+
onCanPlay?: react12.ReactEventHandler<HTMLElement>;
|
|
170
|
+
onCanPlayCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
171
|
+
onCanPlayThrough?: react12.ReactEventHandler<HTMLElement>;
|
|
172
|
+
onCanPlayThroughCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
173
|
+
onDurationChange?: react12.ReactEventHandler<HTMLElement>;
|
|
174
|
+
onDurationChangeCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
175
|
+
onEmptied?: react12.ReactEventHandler<HTMLElement>;
|
|
176
|
+
onEmptiedCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
177
|
+
onEncrypted?: react12.ReactEventHandler<HTMLElement>;
|
|
178
|
+
onEncryptedCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
179
|
+
onEnded?: react12.ReactEventHandler<HTMLElement>;
|
|
180
|
+
onEndedCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
181
|
+
onLoadedData?: react12.ReactEventHandler<HTMLElement>;
|
|
182
|
+
onLoadedDataCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
183
|
+
onLoadedMetadata?: react12.ReactEventHandler<HTMLElement>;
|
|
184
|
+
onLoadedMetadataCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
185
|
+
onLoadStart?: react12.ReactEventHandler<HTMLElement>;
|
|
186
|
+
onLoadStartCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
187
|
+
onPause?: react12.ReactEventHandler<HTMLElement>;
|
|
188
|
+
onPauseCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
189
|
+
onPlay?: react12.ReactEventHandler<HTMLElement>;
|
|
190
|
+
onPlayCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
191
|
+
onPlaying?: react12.ReactEventHandler<HTMLElement>;
|
|
192
|
+
onPlayingCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
193
|
+
onProgress?: react12.ReactEventHandler<HTMLElement>;
|
|
194
|
+
onProgressCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
195
|
+
onRateChange?: react12.ReactEventHandler<HTMLElement>;
|
|
196
|
+
onRateChangeCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
197
|
+
onSeeked?: react12.ReactEventHandler<HTMLElement>;
|
|
198
|
+
onSeekedCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
199
|
+
onSeeking?: react12.ReactEventHandler<HTMLElement>;
|
|
200
|
+
onSeekingCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
201
|
+
onStalled?: react12.ReactEventHandler<HTMLElement>;
|
|
202
|
+
onStalledCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
203
|
+
onSuspend?: react12.ReactEventHandler<HTMLElement>;
|
|
204
|
+
onSuspendCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
205
|
+
onTimeUpdate?: react12.ReactEventHandler<HTMLElement>;
|
|
206
|
+
onTimeUpdateCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
207
|
+
onVolumeChange?: react12.ReactEventHandler<HTMLElement>;
|
|
208
|
+
onVolumeChangeCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
209
|
+
onWaiting?: react12.ReactEventHandler<HTMLElement>;
|
|
210
|
+
onWaitingCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
211
|
+
onAuxClick?: react12.MouseEventHandler<HTMLElement>;
|
|
212
|
+
onAuxClickCapture?: react12.MouseEventHandler<HTMLElement>;
|
|
213
|
+
onClick?: react12.MouseEventHandler<HTMLElement>;
|
|
214
|
+
onClickCapture?: react12.MouseEventHandler<HTMLElement>;
|
|
215
|
+
onContextMenu?: react12.MouseEventHandler<HTMLElement>;
|
|
216
|
+
onContextMenuCapture?: react12.MouseEventHandler<HTMLElement>;
|
|
217
|
+
onDoubleClick?: react12.MouseEventHandler<HTMLElement>;
|
|
218
|
+
onDoubleClickCapture?: react12.MouseEventHandler<HTMLElement>;
|
|
219
|
+
onDrag?: react12.DragEventHandler<HTMLElement>;
|
|
220
|
+
onDragCapture?: react12.DragEventHandler<HTMLElement>;
|
|
221
|
+
onDragEnd?: react12.DragEventHandler<HTMLElement>;
|
|
222
|
+
onDragEndCapture?: react12.DragEventHandler<HTMLElement>;
|
|
223
|
+
onDragEnter?: react12.DragEventHandler<HTMLElement>;
|
|
224
|
+
onDragEnterCapture?: react12.DragEventHandler<HTMLElement>;
|
|
225
|
+
onDragExit?: react12.DragEventHandler<HTMLElement>;
|
|
226
|
+
onDragExitCapture?: react12.DragEventHandler<HTMLElement>;
|
|
227
|
+
onDragLeave?: react12.DragEventHandler<HTMLElement>;
|
|
228
|
+
onDragLeaveCapture?: react12.DragEventHandler<HTMLElement>;
|
|
229
|
+
onDragOver?: react12.DragEventHandler<HTMLElement>;
|
|
230
|
+
onDragOverCapture?: react12.DragEventHandler<HTMLElement>;
|
|
231
|
+
onDragStart?: react12.DragEventHandler<HTMLElement>;
|
|
232
|
+
onDragStartCapture?: react12.DragEventHandler<HTMLElement>;
|
|
233
|
+
onDrop?: react12.DragEventHandler<HTMLElement>;
|
|
234
|
+
onDropCapture?: react12.DragEventHandler<HTMLElement>;
|
|
235
|
+
onMouseDown?: react12.MouseEventHandler<HTMLElement>;
|
|
236
|
+
onMouseDownCapture?: react12.MouseEventHandler<HTMLElement>;
|
|
237
|
+
onMouseEnter?: react12.MouseEventHandler<HTMLElement>;
|
|
238
|
+
onMouseLeave?: react12.MouseEventHandler<HTMLElement>;
|
|
239
|
+
onMouseMove?: react12.MouseEventHandler<HTMLElement>;
|
|
240
|
+
onMouseMoveCapture?: react12.MouseEventHandler<HTMLElement>;
|
|
241
|
+
onMouseOut?: react12.MouseEventHandler<HTMLElement>;
|
|
242
|
+
onMouseOutCapture?: react12.MouseEventHandler<HTMLElement>;
|
|
243
|
+
onMouseOver?: react12.MouseEventHandler<HTMLElement>;
|
|
244
|
+
onMouseOverCapture?: react12.MouseEventHandler<HTMLElement>;
|
|
245
|
+
onMouseUp?: react12.MouseEventHandler<HTMLElement>;
|
|
246
|
+
onMouseUpCapture?: react12.MouseEventHandler<HTMLElement>;
|
|
247
|
+
onSelect?: react12.ReactEventHandler<HTMLElement>;
|
|
248
|
+
onSelectCapture?: react12.ReactEventHandler<HTMLElement>;
|
|
249
|
+
onTouchCancel?: react12.TouchEventHandler<HTMLElement>;
|
|
250
|
+
onTouchCancelCapture?: react12.TouchEventHandler<HTMLElement>;
|
|
251
|
+
onTouchEnd?: react12.TouchEventHandler<HTMLElement>;
|
|
252
|
+
onTouchEndCapture?: react12.TouchEventHandler<HTMLElement>;
|
|
253
|
+
onTouchMove?: react12.TouchEventHandler<HTMLElement>;
|
|
254
|
+
onTouchMoveCapture?: react12.TouchEventHandler<HTMLElement>;
|
|
255
|
+
onTouchStart?: react12.TouchEventHandler<HTMLElement>;
|
|
256
|
+
onTouchStartCapture?: react12.TouchEventHandler<HTMLElement>;
|
|
257
|
+
onPointerDown?: react12.PointerEventHandler<HTMLElement>;
|
|
258
|
+
onPointerDownCapture?: react12.PointerEventHandler<HTMLElement>;
|
|
259
|
+
onPointerMove?: react12.PointerEventHandler<HTMLElement>;
|
|
260
|
+
onPointerMoveCapture?: react12.PointerEventHandler<HTMLElement>;
|
|
261
|
+
onPointerUp?: react12.PointerEventHandler<HTMLElement>;
|
|
262
|
+
onPointerUpCapture?: react12.PointerEventHandler<HTMLElement>;
|
|
263
|
+
onPointerCancel?: react12.PointerEventHandler<HTMLElement>;
|
|
264
|
+
onPointerCancelCapture?: react12.PointerEventHandler<HTMLElement>;
|
|
265
|
+
onPointerEnter?: react12.PointerEventHandler<HTMLElement>;
|
|
266
|
+
onPointerLeave?: react12.PointerEventHandler<HTMLElement>;
|
|
267
|
+
onPointerOver?: react12.PointerEventHandler<HTMLElement>;
|
|
268
|
+
onPointerOverCapture?: react12.PointerEventHandler<HTMLElement>;
|
|
269
|
+
onPointerOut?: react12.PointerEventHandler<HTMLElement>;
|
|
270
|
+
onPointerOutCapture?: react12.PointerEventHandler<HTMLElement>;
|
|
271
|
+
onGotPointerCapture?: react12.PointerEventHandler<HTMLElement>;
|
|
272
|
+
onGotPointerCaptureCapture?: react12.PointerEventHandler<HTMLElement>;
|
|
273
|
+
onLostPointerCapture?: react12.PointerEventHandler<HTMLElement>;
|
|
274
|
+
onLostPointerCaptureCapture?: react12.PointerEventHandler<HTMLElement>;
|
|
275
|
+
onScroll?: react12.UIEventHandler<HTMLElement>;
|
|
276
|
+
onScrollCapture?: react12.UIEventHandler<HTMLElement>;
|
|
277
|
+
onScrollEnd?: react12.UIEventHandler<HTMLElement>;
|
|
278
|
+
onScrollEndCapture?: react12.UIEventHandler<HTMLElement>;
|
|
279
|
+
onWheel?: react12.WheelEventHandler<HTMLElement>;
|
|
280
|
+
onWheelCapture?: react12.WheelEventHandler<HTMLElement>;
|
|
281
|
+
onAnimationStart?: react12.AnimationEventHandler<HTMLElement>;
|
|
282
|
+
onAnimationStartCapture?: react12.AnimationEventHandler<HTMLElement>;
|
|
283
|
+
onAnimationEnd?: react12.AnimationEventHandler<HTMLElement>;
|
|
284
|
+
onAnimationEndCapture?: react12.AnimationEventHandler<HTMLElement>;
|
|
285
|
+
onAnimationIteration?: react12.AnimationEventHandler<HTMLElement>;
|
|
286
|
+
onAnimationIterationCapture?: react12.AnimationEventHandler<HTMLElement>;
|
|
287
|
+
onToggle?: react12.ToggleEventHandler<HTMLElement>;
|
|
288
|
+
onBeforeToggle?: react12.ToggleEventHandler<HTMLElement>;
|
|
289
|
+
onTransitionCancel?: react12.TransitionEventHandler<HTMLElement>;
|
|
290
|
+
onTransitionCancelCapture?: react12.TransitionEventHandler<HTMLElement>;
|
|
291
|
+
onTransitionEnd?: react12.TransitionEventHandler<HTMLElement>;
|
|
292
|
+
onTransitionEndCapture?: react12.TransitionEventHandler<HTMLElement>;
|
|
293
|
+
onTransitionRun?: react12.TransitionEventHandler<HTMLElement>;
|
|
294
|
+
onTransitionRunCapture?: react12.TransitionEventHandler<HTMLElement>;
|
|
295
|
+
onTransitionStart?: react12.TransitionEventHandler<HTMLElement>;
|
|
296
|
+
onTransitionStartCapture?: react12.TransitionEventHandler<HTMLElement>;
|
|
297
297
|
className: string;
|
|
298
|
-
style:
|
|
298
|
+
style: react12.CSSProperties;
|
|
299
299
|
id: string;
|
|
300
300
|
'data-testid': string;
|
|
301
301
|
}, HTMLElement>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime21 from "react/jsx-runtime";
|
|
2
2
|
import { Config } from "tailwindcss";
|
|
3
3
|
|
|
4
4
|
//#region src/components/DesignTokens/DesignTokensComponent.d.ts
|
|
@@ -9,6 +9,6 @@ type DesignTokensProps = {
|
|
|
9
9
|
declare const DesignTokens: ({
|
|
10
10
|
selectedMerchant,
|
|
11
11
|
config
|
|
12
|
-
}: DesignTokensProps) =>
|
|
12
|
+
}: DesignTokensProps) => react_jsx_runtime21.JSX.Element;
|
|
13
13
|
//#endregion
|
|
14
14
|
export { DesignTokens, DesignTokensProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime23 from "react/jsx-runtime";
|
|
2
2
|
import { Config } from "tailwindcss";
|
|
3
3
|
|
|
4
4
|
//#region src/components/DesignTokens/DesignTokensComponent.d.ts
|
|
@@ -9,6 +9,6 @@ type DesignTokensProps = {
|
|
|
9
9
|
declare const DesignTokens: ({
|
|
10
10
|
selectedMerchant,
|
|
11
11
|
config
|
|
12
|
-
}: DesignTokensProps) =>
|
|
12
|
+
}: DesignTokensProps) => react_jsx_runtime23.JSX.Element;
|
|
13
13
|
//#endregion
|
|
14
14
|
export { DesignTokens, DesignTokensProps };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DocumentRetrievalCardProps } from "./types/index.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime36 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/DocumentRetrievalCard/DocumentRetrievalCard.d.ts
|
|
5
5
|
declare const DocumentRetrievalCard: ({
|
|
@@ -16,6 +16,6 @@ declare const DocumentRetrievalCard: ({
|
|
|
16
16
|
onViewArticle,
|
|
17
17
|
ariaLabel,
|
|
18
18
|
viewArticleLabel
|
|
19
|
-
}: DocumentRetrievalCardProps) =>
|
|
19
|
+
}: DocumentRetrievalCardProps) => react_jsx_runtime36.JSX.Element;
|
|
20
20
|
//#endregion
|
|
21
21
|
export { DocumentRetrievalCard };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DocumentRetrievalCardProps } from "./types/index.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime31 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/DocumentRetrievalCard/DocumentRetrievalCard.d.ts
|
|
5
5
|
declare const DocumentRetrievalCard: ({
|
|
@@ -16,6 +16,6 @@ declare const DocumentRetrievalCard: ({
|
|
|
16
16
|
onViewArticle,
|
|
17
17
|
ariaLabel,
|
|
18
18
|
viewArticleLabel
|
|
19
|
-
}: DocumentRetrievalCardProps) =>
|
|
19
|
+
}: DocumentRetrievalCardProps) => react_jsx_runtime31.JSX.Element;
|
|
20
20
|
//#endregion
|
|
21
21
|
export { DocumentRetrievalCard };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FloatingButtonProps } from "./types/types.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime31 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/FloatingButton/FloatingButton.d.ts
|
|
5
5
|
declare const FloatingButton: ({
|
|
@@ -19,6 +19,6 @@ declare const FloatingButton: ({
|
|
|
19
19
|
ariaLabel,
|
|
20
20
|
previewMode,
|
|
21
21
|
containerRef
|
|
22
|
-
}: FloatingButtonProps) =>
|
|
22
|
+
}: FloatingButtonProps) => react_jsx_runtime31.JSX.Element;
|
|
23
23
|
//#endregion
|
|
24
24
|
export { FloatingButton };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FloatingButtonProps } from "./types/types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime29 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/FloatingButton/FloatingButton.d.ts
|
|
5
5
|
declare const FloatingButton: ({
|
|
@@ -19,6 +19,6 @@ declare const FloatingButton: ({
|
|
|
19
19
|
ariaLabel,
|
|
20
20
|
previewMode,
|
|
21
21
|
containerRef
|
|
22
|
-
}: FloatingButtonProps) =>
|
|
22
|
+
}: FloatingButtonProps) => react_jsx_runtime29.JSX.Element;
|
|
23
23
|
//#endregion
|
|
24
24
|
export { FloatingButton };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FloatingChatProps } from "./types/types.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime29 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/FloatingChat/FloatingChat.d.ts
|
|
5
5
|
declare const FloatingChat: ({
|
|
@@ -19,6 +19,6 @@ declare const FloatingChat: ({
|
|
|
19
19
|
onSwipeClose,
|
|
20
20
|
onToggleCXButton,
|
|
21
21
|
setIsResultsModalOpen
|
|
22
|
-
}: FloatingChatProps) =>
|
|
22
|
+
}: FloatingChatProps) => react_jsx_runtime29.JSX.Element;
|
|
23
23
|
//#endregion
|
|
24
24
|
export { FloatingChat };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FloatingChatProps } from "./types/types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime24 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/FloatingChat/FloatingChat.d.ts
|
|
5
5
|
declare const FloatingChat: ({
|
|
@@ -19,6 +19,6 @@ declare const FloatingChat: ({
|
|
|
19
19
|
onSwipeClose,
|
|
20
20
|
onToggleCXButton,
|
|
21
21
|
setIsResultsModalOpen
|
|
22
|
-
}: FloatingChatProps) =>
|
|
22
|
+
}: FloatingChatProps) => react_jsx_runtime24.JSX.Element;
|
|
23
23
|
//#endregion
|
|
24
24
|
export { FloatingChat };
|
|
@@ -123,6 +123,9 @@ const FullPageSalesAgent = ({ theme = require_theme.Theme.GLOBAL_CUSTOM, floatin
|
|
|
123
123
|
const handleProductCardClick = (product) => {
|
|
124
124
|
require_trackProductCardInteraction.trackProductCardClicked(trackWidgetInteraction, __envive_ai_react_hooks_hooks_WidgetInteraction_types.WidgetInteractionComponent.FULL_PAGE_SALES_AGENT, product);
|
|
125
125
|
};
|
|
126
|
+
const handleSuggestionCardClick = (product) => {
|
|
127
|
+
require_trackProductCardInteraction.trackProductCardClicked(trackWidgetInteraction, __envive_ai_react_hooks_hooks_WidgetInteraction_types.WidgetInteractionComponent.FULL_PAGE_SALES_AGENT_RECOMMENDATIONS, product);
|
|
128
|
+
};
|
|
126
129
|
const handleTranscriptionStarted = (0, react.useCallback)(() => {
|
|
127
130
|
trackWidgetInteraction({
|
|
128
131
|
eventName: __envive_ai_react_hooks_contexts_amplitudeContext.EnviveMetricsEventName.WidgetInteraction,
|
|
@@ -163,7 +166,7 @@ const FullPageSalesAgent = ({ theme = require_theme.Theme.GLOBAL_CUSTOM, floatin
|
|
|
163
166
|
});
|
|
164
167
|
onTypedMessageSubmitted({
|
|
165
168
|
query: buttonText,
|
|
166
|
-
userTyped:
|
|
169
|
+
userTyped: false,
|
|
167
170
|
displayLocation: __envive_ai_react_hooks_application_models.ChatElementDisplayLocationV3.FLOATING_CHAT_TEXT_INPUT
|
|
168
171
|
});
|
|
169
172
|
setListeningToSpeech("abort");
|
|
@@ -312,7 +315,7 @@ const FullPageSalesAgent = ({ theme = require_theme.Theme.GLOBAL_CUSTOM, floatin
|
|
|
312
315
|
onSuggestionMouseUp: onOverlayMouseUp,
|
|
313
316
|
onSuggestionTouchStart: onOverlayTouchStart,
|
|
314
317
|
onSuggestionTouchEnd: onOverlayTouchEnd,
|
|
315
|
-
onProductCardClick:
|
|
318
|
+
onProductCardClick: handleSuggestionCardClick
|
|
316
319
|
}) : null
|
|
317
320
|
}) });
|
|
318
321
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Theme } from "../tokens/theme/theme.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime5 from "react/jsx-runtime";
|
|
3
3
|
import { FloatingChatConfig, FullPageSalesAgentWidgetV3Config, LookAndFeelConfig } from "@envive-ai/react-hooks/contexts/typesV3";
|
|
4
4
|
import { HardcopyResponse } from "@envive-ai/react-hooks/contexts/hardcopyContext";
|
|
5
5
|
|
|
@@ -19,6 +19,6 @@ declare const FullPageSalesAgent: ({
|
|
|
19
19
|
widgetConfig,
|
|
20
20
|
hardcopyContent,
|
|
21
21
|
voiceInputEnabled
|
|
22
|
-
}: FullPageSalesAgentProps) =>
|
|
22
|
+
}: FullPageSalesAgentProps) => react_jsx_runtime5.JSX.Element;
|
|
23
23
|
//#endregion
|
|
24
24
|
export { FullPageSalesAgent };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Theme } from "../packages/components-v3/tokens/theme/theme.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime21 from "react/jsx-runtime";
|
|
3
3
|
import { FloatingChatConfig, FullPageSalesAgentWidgetV3Config, LookAndFeelConfig } from "@envive-ai/react-hooks/contexts/typesV3";
|
|
4
4
|
import { HardcopyResponse } from "@envive-ai/react-hooks/contexts/hardcopyContext";
|
|
5
5
|
|
|
@@ -19,6 +19,6 @@ declare const FullPageSalesAgent: ({
|
|
|
19
19
|
widgetConfig,
|
|
20
20
|
hardcopyContent,
|
|
21
21
|
voiceInputEnabled
|
|
22
|
-
}: FullPageSalesAgentProps) =>
|
|
22
|
+
}: FullPageSalesAgentProps) => react_jsx_runtime21.JSX.Element;
|
|
23
23
|
//#endregion
|
|
24
24
|
export { FullPageSalesAgent };
|
|
@@ -122,6 +122,9 @@ const FullPageSalesAgent = ({ theme = Theme.GLOBAL_CUSTOM, floatingChatConfig, l
|
|
|
122
122
|
const handleProductCardClick = (product) => {
|
|
123
123
|
trackProductCardClicked(trackWidgetInteraction, WidgetInteractionComponent.FULL_PAGE_SALES_AGENT, product);
|
|
124
124
|
};
|
|
125
|
+
const handleSuggestionCardClick = (product) => {
|
|
126
|
+
trackProductCardClicked(trackWidgetInteraction, WidgetInteractionComponent.FULL_PAGE_SALES_AGENT_RECOMMENDATIONS, product);
|
|
127
|
+
};
|
|
125
128
|
const handleTranscriptionStarted = useCallback(() => {
|
|
126
129
|
trackWidgetInteraction({
|
|
127
130
|
eventName: EnviveMetricsEventName.WidgetInteraction,
|
|
@@ -162,7 +165,7 @@ const FullPageSalesAgent = ({ theme = Theme.GLOBAL_CUSTOM, floatingChatConfig, l
|
|
|
162
165
|
});
|
|
163
166
|
onTypedMessageSubmitted({
|
|
164
167
|
query: buttonText,
|
|
165
|
-
userTyped:
|
|
168
|
+
userTyped: false,
|
|
166
169
|
displayLocation: ChatElementDisplayLocationV3.FLOATING_CHAT_TEXT_INPUT
|
|
167
170
|
});
|
|
168
171
|
setListeningToSpeech("abort");
|
|
@@ -311,7 +314,7 @@ const FullPageSalesAgent = ({ theme = Theme.GLOBAL_CUSTOM, floatingChatConfig, l
|
|
|
311
314
|
onSuggestionMouseUp: onOverlayMouseUp,
|
|
312
315
|
onSuggestionTouchStart: onOverlayTouchStart,
|
|
313
316
|
onSuggestionTouchEnd: onOverlayTouchEnd,
|
|
314
|
-
onProductCardClick:
|
|
317
|
+
onProductCardClick: handleSuggestionCardClick
|
|
315
318
|
}) : null
|
|
316
319
|
}) });
|
|
317
320
|
};
|
package/dist/Image/Image.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ImageProps } from "./types/index.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/Image/Image.d.ts
|
|
5
5
|
|
|
@@ -25,6 +25,6 @@ declare const Image: ({
|
|
|
25
25
|
role,
|
|
26
26
|
"aria-hidden": ariaHidden,
|
|
27
27
|
...rest
|
|
28
|
-
}: ImageProps) =>
|
|
28
|
+
}: ImageProps) => react_jsx_runtime0.JSX.Element;
|
|
29
29
|
//#endregion
|
|
30
30
|
export { Image };
|
package/dist/Image/Image.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ImageProps } from "./types/index.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime19 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/Image/Image.d.ts
|
|
5
5
|
|
|
@@ -25,6 +25,6 @@ declare const Image: ({
|
|
|
25
25
|
role,
|
|
26
26
|
"aria-hidden": ariaHidden,
|
|
27
27
|
...rest
|
|
28
|
-
}: ImageProps) =>
|
|
28
|
+
}: ImageProps) => react_jsx_runtime19.JSX.Element;
|
|
29
29
|
//#endregion
|
|
30
30
|
export { Image };
|