@mindly/ui-components 8.3.0 → 8.3.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/cjs/index.js +2 -2
- package/dist/cjs/lib2/features/PromptCardsFeature/types.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/PromptCard/types.d.ts +1 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/lib2/features/PromptCardsFeature/types.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/PromptCard/types.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1891,6 +1891,7 @@ declare const Counter: React__default.FC<CounterProps>;
|
|
|
1891
1891
|
type PromptCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
1892
1892
|
title?: string;
|
|
1893
1893
|
description?: string;
|
|
1894
|
+
ctaButtonText?: string;
|
|
1894
1895
|
badgeText?: string;
|
|
1895
1896
|
onStartConversation?: () => void;
|
|
1896
1897
|
isLoading?: boolean;
|
|
@@ -3637,6 +3638,7 @@ interface PromptCardData {
|
|
|
3637
3638
|
description: string;
|
|
3638
3639
|
badgeText?: string;
|
|
3639
3640
|
badgeColorHex?: string;
|
|
3641
|
+
ctaButtonText?: string;
|
|
3640
3642
|
}
|
|
3641
3643
|
type PromptCardsFeatureProps = Settings & {
|
|
3642
3644
|
cards?: PromptCardData[];
|