@mindly/ui-components 7.3.0-dev.2 → 7.3.0-dev.3
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
export type PromptCardProps = React.ComponentPropsWithoutRef<'div'> & {
|
|
3
|
-
title
|
|
4
|
-
description
|
|
3
|
+
title?: string;
|
|
4
|
+
description?: string;
|
|
5
5
|
badgeText?: string;
|
|
6
6
|
onStartConversation?: () => void;
|
|
7
7
|
isLoading?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -1853,8 +1853,8 @@ type CounterProps = {
|
|
|
1853
1853
|
declare const Counter: React__default.FC<CounterProps>;
|
|
1854
1854
|
|
|
1855
1855
|
type PromptCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
1856
|
-
title
|
|
1857
|
-
description
|
|
1856
|
+
title?: string;
|
|
1857
|
+
description?: string;
|
|
1858
1858
|
badgeText?: string;
|
|
1859
1859
|
onStartConversation?: () => void;
|
|
1860
1860
|
isLoading?: boolean;
|