@arthurzakharov/ui-kit 1.5.7 → 1.5.8
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 +1 @@
|
|
|
1
|
-
export { MessageBlock } from './message-block.component';
|
|
1
|
+
export { MessageBlock, type MessageBlockProps } from './message-block.component';
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { PropsWithChildren } from 'react';
|
|
2
2
|
import { Base } from '../../utils/types';
|
|
3
|
-
interface MessageBlockProps extends PropsWithChildren<Base> {
|
|
3
|
+
export interface MessageBlockProps extends PropsWithChildren<Base> {
|
|
4
4
|
emoji?: string;
|
|
5
5
|
title?: string;
|
|
6
6
|
subtitle?: string;
|
|
7
7
|
}
|
|
8
8
|
export declare const MessageBlock: ({ children, emoji, title, subtitle, ...base }: MessageBlockProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
export {};
|
package/dist/main.d.ts
CHANGED
|
@@ -40,7 +40,7 @@ export { Line } from './components/line/line.component';
|
|
|
40
40
|
export { Loader } from './components/loader';
|
|
41
41
|
export { MainAttachment, type MainAttachmentProps } from './components/main-attachment/main-attachment.component';
|
|
42
42
|
export { Message, type MessageProps } from './components/message';
|
|
43
|
-
export { MessageBlock } from './components/message-block';
|
|
43
|
+
export { MessageBlock, type MessageBlockProps } from './components/message-block';
|
|
44
44
|
export { NotFound, type NotFoundProps } from './components/not-found';
|
|
45
45
|
export { Payment, type PaymentBlockProps, type PaymentGlassProps, type PaymentSidebarProps, type PaymentTextBlocksProps, type PaymentTextBlockItem, } from './components/payment/payment.component';
|
|
46
46
|
export { Sidebar, type SidebarProps } from './components/sidebar';
|