@npm_leadtech/legal-lib-components 2.38.0 → 2.39.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 +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +2 -0
- package/dist/cjs/src/components/atoms/MessageInformation/MessageInformationProps.types.d.ts +1 -0
- package/dist/cjs/src/components/molecules/CountDownMessage/CountDownMessageProps.types.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +2 -0
- package/dist/esm/src/components/atoms/MessageInformation/MessageInformationProps.types.d.ts +1 -0
- package/dist/esm/src/components/molecules/CountDownMessage/CountDownMessageProps.types.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -3001,6 +3001,8 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
3001
3001
|
@media (min-width: 960px) {
|
|
3002
3002
|
.message-information {
|
|
3003
3003
|
justify-content: flex-start; } }
|
|
3004
|
+
.message-information.text-center {
|
|
3005
|
+
justify-content: center; }
|
|
3004
3006
|
.message-information__icon {
|
|
3005
3007
|
width: 24px;
|
|
3006
3008
|
fill: var(--secondary-main-dark-1);
|
package/dist/index.d.ts
CHANGED
|
@@ -502,6 +502,7 @@ interface MessageInformationProps {
|
|
|
502
502
|
noImg: boolean;
|
|
503
503
|
text: string | React.ReactNode;
|
|
504
504
|
time?: string;
|
|
505
|
+
centered: boolean;
|
|
505
506
|
}
|
|
506
507
|
|
|
507
508
|
declare const MessageInformation: FC<MessageInformationProps>;
|
|
@@ -611,6 +612,7 @@ interface CountDownMessageProps {
|
|
|
611
612
|
noImg?: boolean;
|
|
612
613
|
text: string | React.ReactNode;
|
|
613
614
|
time?: string;
|
|
615
|
+
centered?: boolean;
|
|
614
616
|
}
|
|
615
617
|
|
|
616
618
|
declare const CountDownMessage: FC<CountDownMessageProps>;
|