@linktr.ee/messaging-react 1.26.1-rc-1776064676 → 1.26.1-rc-1776120170
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.d.ts +2 -0
- package/dist/index.js +992 -989
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CustomMessage/CustomMessage.stories.tsx +3 -23
- package/src/components/CustomMessage/index.tsx +1 -1
- package/src/components/LockedAttachmentCard/LockedAttachmentCard.stories.tsx +13 -43
- package/src/components/LockedAttachmentCard/index.tsx +26 -7
package/dist/index.d.ts
CHANGED
|
@@ -302,6 +302,8 @@ export declare interface LockedAttachmentCardProps {
|
|
|
302
302
|
* Hides the lock icon, shows placeholder title/price if omitted, and omits action buttons.
|
|
303
303
|
*/
|
|
304
304
|
isPreview?: boolean;
|
|
305
|
+
placeholderTitle?: string;
|
|
306
|
+
placeholderAmountText?: string;
|
|
305
307
|
}
|
|
306
308
|
|
|
307
309
|
declare type MessageCustomType = 'MESSAGE_TIP' | 'MESSAGE_PAID' | 'MESSAGE_CHATBOT' | 'MESSAGE_ATTACHMENT' | AgeSafetySystemType | DmAgentSystemType;
|