@npm_leadtech/legal-lib-components 2.19.6 → 2.19.7

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.
@@ -5,5 +5,4 @@ export interface CardPaneInfoProps {
5
5
  description: string;
6
6
  id: string;
7
7
  title: string;
8
- subdescription?: string;
9
8
  }
@@ -0,0 +1,5 @@
1
+ import { type FC } from 'react';
2
+ import { type MessageInformationProps } from './MessageInformation.types';
3
+ import './MessageInformation.scss';
4
+ declare const MessageInformation: FC<MessageInformationProps>;
5
+ export default MessageInformation;
@@ -0,0 +1,4 @@
1
+ export interface MessageInformationProps {
2
+ text: string;
3
+ time?: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ export { default as MessageInformation } from './MessageInformation';
2
+ export { type MessageInformationProps } from './MessageInformation.types';
package/dist/index.d.ts CHANGED
@@ -99,7 +99,6 @@ interface CardPaneInfoProps {
99
99
  description: string;
100
100
  id: string;
101
101
  title: string;
102
- subdescription?: string;
103
102
  }
104
103
 
105
104
  declare const CardPane: FC<CardPaneProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@npm_leadtech/legal-lib-components",
3
- "version": "2.19.6",
3
+ "version": "2.19.7",
4
4
  "dependencies": {
5
5
  "@testing-library/jest-dom": "^5.16.5",
6
6
  "@tippyjs/react": "4.2.6",