@npm_leadtech/legal-lib-components 2.34.0 → 2.35.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 +3 -1
- 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 +3 -1
- 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
|
@@ -2988,7 +2988,9 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
2988
2988
|
letter-spacing: -0.3px;
|
|
2989
2989
|
padding-top: 1px; }
|
|
2990
2990
|
.message-information__text__time {
|
|
2991
|
-
font-weight:
|
|
2991
|
+
font-weight: 600; }
|
|
2992
|
+
.message-information__text__time.regular {
|
|
2993
|
+
font-weight: 400; }
|
|
2992
2994
|
|
|
2993
2995
|
.article {
|
|
2994
2996
|
display: flex;
|
package/dist/index.d.ts
CHANGED
|
@@ -487,6 +487,7 @@ interface WhyLawDistrictItem {
|
|
|
487
487
|
declare const WhyLawDistrictItems: React$1.FC<WhyLawDistrictItemsProps>;
|
|
488
488
|
|
|
489
489
|
interface MessageInformationProps {
|
|
490
|
+
noImg: boolean;
|
|
490
491
|
text: string | React.ReactNode;
|
|
491
492
|
time?: string;
|
|
492
493
|
}
|
|
@@ -588,6 +589,7 @@ interface ContinueEditingBannerProps {
|
|
|
588
589
|
declare const ContinueEditingBanner: React$1.FC<ContinueEditingBannerProps>;
|
|
589
590
|
|
|
590
591
|
interface CountDownMessageProps {
|
|
592
|
+
noImg: boolean;
|
|
591
593
|
text: string | React.ReactNode;
|
|
592
594
|
time?: string;
|
|
593
595
|
}
|