@npm_leadtech/legal-lib-components 2.31.7 → 2.32.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/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +0 -4
- 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/atoms/RichTextStrapi/RichTextStrapiProps.d.ts +0 -2
- package/dist/cjs/src/components/atoms/index.d.ts +0 -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/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +0 -4
- 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/atoms/RichTextStrapi/RichTextStrapiProps.d.ts +0 -2
- package/dist/esm/src/components/atoms/index.d.ts +0 -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 +3 -12
- package/package.json +1 -1
- package/dist/cjs/src/components/atoms/MessageInformation/MessageInformation.types.d.ts +0 -4
- package/dist/cjs/src/components/atoms/ShowMoreStrapi/ShowMoreStrapi.d.ts +0 -4
- package/dist/cjs/src/components/atoms/ShowMoreStrapi/ShowMoreStrapiProps.d.ts +0 -5
- package/dist/cjs/src/components/atoms/ShowMoreStrapi/index.d.ts +0 -2
- 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/atoms/ShowMoreStrapi/ShowMoreStrapi.d.ts +0 -4
- package/dist/esm/src/components/atoms/ShowMoreStrapi/ShowMoreStrapiProps.d.ts +0 -5
- package/dist/esm/src/components/atoms/ShowMoreStrapi/index.d.ts +0 -2
- package/dist/esm/src/components/molecules/CountDownMessage/CountDownMessage.types.d.ts +0 -4
|
@@ -2957,10 +2957,6 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
2957
2957
|
.message-information__text__time {
|
|
2958
2958
|
font-weight: bold; }
|
|
2959
2959
|
|
|
2960
|
-
.show-more-strapi ul li,
|
|
2961
|
-
.show-more-strapi ol li {
|
|
2962
|
-
margin-bottom: 1rem; }
|
|
2963
|
-
|
|
2964
2960
|
.article {
|
|
2965
2961
|
display: flex;
|
|
2966
2962
|
flex-flow: row wrap;
|
|
@@ -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';
|