@npm_leadtech/legal-lib-components 2.29.0 → 2.30.0
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/src/components/atoms/MessageInformation/MessageInformation.d.ts +1 -1
- package/dist/cjs/src/components/atoms/MessageInformation/MessageInformationProps.types.d.ts +5 -0
- package/dist/cjs/src/components/atoms/MessageInformation/index.d.ts +1 -1
- package/dist/cjs/src/components/molecules/CountDownMessage/CountDownMessage.d.ts +1 -1
- package/dist/cjs/src/components/molecules/CountDownMessage/CountDownMessageProps.types.d.ts +5 -0
- package/dist/cjs/src/components/molecules/CountDownMessage/index.d.ts +1 -1
- package/dist/esm/src/components/atoms/MessageInformation/MessageInformation.d.ts +1 -1
- package/dist/esm/src/components/atoms/MessageInformation/MessageInformationProps.types.d.ts +5 -0
- package/dist/esm/src/components/atoms/MessageInformation/index.d.ts +1 -1
- package/dist/esm/src/components/molecules/CountDownMessage/CountDownMessage.d.ts +1 -1
- package/dist/esm/src/components/molecules/CountDownMessage/CountDownMessageProps.types.d.ts +5 -0
- package/dist/esm/src/components/molecules/CountDownMessage/index.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
- package/dist/cjs/src/components/atoms/MessageInformation/MessageInformation.types.d.ts +0 -4
- package/dist/cjs/src/components/molecules/CountDownMessage/CountDownMessage.types.d.ts +0 -4
- package/dist/esm/src/components/atoms/MessageInformation/MessageInformation.types.d.ts +0 -4
- package/dist/esm/src/components/molecules/CountDownMessage/CountDownMessage.types.d.ts +0 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type FC } from 'react';
|
|
2
|
-
import { type MessageInformationProps } from './
|
|
2
|
+
import { type MessageInformationProps } from './MessageInformationProps.types';
|
|
3
3
|
import './MessageInformation.scss';
|
|
4
4
|
declare const MessageInformation: FC<MessageInformationProps>;
|
|
5
5
|
export default MessageInformation;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { default as MessageInformation } from './MessageInformation';
|
|
2
|
-
export { type MessageInformationProps } from './
|
|
2
|
+
export { type MessageInformationProps } from './MessageInformationProps.types';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type FC } from 'react';
|
|
2
|
-
import { type CountDownMessageProps } from './
|
|
2
|
+
import { type CountDownMessageProps } from './CountDownMessageProps.types';
|
|
3
3
|
import './CountDownMessage.scss';
|
|
4
4
|
declare const CountDownMessage: FC<CountDownMessageProps>;
|
|
5
5
|
export default CountDownMessage;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { default as CountDownMessage } from './CountDownMessage';
|
|
2
|
-
export { type CountDownMessageProps } from './
|
|
2
|
+
export { type CountDownMessageProps } from './CountDownMessageProps.types';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type FC } from 'react';
|
|
2
|
-
import { type MessageInformationProps } from './
|
|
2
|
+
import { type MessageInformationProps } from './MessageInformationProps.types';
|
|
3
3
|
import './MessageInformation.scss';
|
|
4
4
|
declare const MessageInformation: FC<MessageInformationProps>;
|
|
5
5
|
export default MessageInformation;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { default as MessageInformation } from './MessageInformation';
|
|
2
|
-
export { type MessageInformationProps } from './
|
|
2
|
+
export { type MessageInformationProps } from './MessageInformationProps.types';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type FC } from 'react';
|
|
2
|
-
import { type CountDownMessageProps } from './
|
|
2
|
+
import { type CountDownMessageProps } from './CountDownMessageProps.types';
|
|
3
3
|
import './CountDownMessage.scss';
|
|
4
4
|
declare const CountDownMessage: FC<CountDownMessageProps>;
|
|
5
5
|
export default CountDownMessage;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { default as CountDownMessage } from './CountDownMessage';
|
|
2
|
-
export { type CountDownMessageProps } from './
|
|
2
|
+
export { type CountDownMessageProps } from './CountDownMessageProps.types';
|
package/dist/index.d.ts
CHANGED
|
@@ -477,7 +477,7 @@ interface WhyLawDistrictItem {
|
|
|
477
477
|
declare const WhyLawDistrictItems: React$1.FC<WhyLawDistrictItemsProps>;
|
|
478
478
|
|
|
479
479
|
interface MessageInformationProps {
|
|
480
|
-
text: string;
|
|
480
|
+
text: string | React.ReactNode;
|
|
481
481
|
time?: string;
|
|
482
482
|
}
|
|
483
483
|
|
|
@@ -744,7 +744,7 @@ interface FreeDocModalContentProps {
|
|
|
744
744
|
declare const FreeDocModalContent: FC<FreeDocModalContentProps>;
|
|
745
745
|
|
|
746
746
|
interface CountDownMessageProps {
|
|
747
|
-
text: string;
|
|
747
|
+
text: string | React.ReactNode;
|
|
748
748
|
time?: string;
|
|
749
749
|
}
|
|
750
750
|
|
package/package.json
CHANGED