sestek-component 1.0.1 → 1.0.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/dist/index.cjs.js +13 -13
- package/dist/index.es.d.ts +7 -7
- package/dist/index.es.js +1683 -1671
- package/package.json +1 -1
package/dist/index.es.d.ts
CHANGED
|
@@ -362,7 +362,7 @@ export declare interface ModalProps {
|
|
|
362
362
|
closeOnOutsideClick?: boolean;
|
|
363
363
|
}
|
|
364
364
|
|
|
365
|
-
export declare const Moment: ({ items, isDefaultOpen, isStandalone, resizableContent, title, }: MomentProps) => JSX.Element;
|
|
365
|
+
export declare const Moment: ({ items, isDefaultOpen, isStandalone, resizableContent, title, feddbackTitle, feedbackHelpfullButtonTitle, feedbackNotHelpfullButtonTitle, feedbackCommentPlaceholder, feedbackSubmitText, feedbackThankYouMessage, }: MomentProps) => JSX.Element;
|
|
366
366
|
|
|
367
367
|
export declare const MomentItem: ForwardRefExoticComponent<MomentItemProps & RefAttributes<HTMLDivElement>>;
|
|
368
368
|
|
|
@@ -404,12 +404,6 @@ export declare interface MomentItemType {
|
|
|
404
404
|
onClickAskManager?: () => void;
|
|
405
405
|
showFeedbackArea?: boolean;
|
|
406
406
|
isSendFeedback?: boolean;
|
|
407
|
-
feddbackTitle?: string;
|
|
408
|
-
feedbackHelpfullButtonTitle?: string;
|
|
409
|
-
feedbackNotHelpfullButtonTitle?: string;
|
|
410
|
-
feedbackCommentPlaceholder?: string;
|
|
411
|
-
feedbackSubmitText?: string;
|
|
412
|
-
feedbackThankYouMessage?: string;
|
|
413
407
|
onClickSendFeedback?: () => void;
|
|
414
408
|
title?: string;
|
|
415
409
|
icon?: React.ReactNode;
|
|
@@ -421,6 +415,12 @@ export declare interface MomentProps {
|
|
|
421
415
|
isStandalone?: boolean;
|
|
422
416
|
resizableContent?: React.ReactNode;
|
|
423
417
|
title?: string;
|
|
418
|
+
feddbackTitle?: string;
|
|
419
|
+
feedbackHelpfullButtonTitle?: string;
|
|
420
|
+
feedbackNotHelpfullButtonTitle?: string;
|
|
421
|
+
feedbackCommentPlaceholder?: string;
|
|
422
|
+
feedbackSubmitText?: string;
|
|
423
|
+
feedbackThankYouMessage?: string;
|
|
424
424
|
}
|
|
425
425
|
|
|
426
426
|
declare type MomentType = "task-done" | "good-job" | "legal-thread" | "unhappy-customer" | "genai-support" | "default";
|