@npm_leadtech/legal-lib-components 2.18.8 → 2.18.9
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 -1
- package/dist/cjs/src/components/molecules/ModalFreeDoc/ModalFreeDoc.types.d.ts +2 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +2 -1
- package/dist/esm/src/components/molecules/ModalFreeDoc/ModalFreeDoc.types.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -3819,7 +3819,8 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
3819
3819
|
.modal-free-doc .right-container {
|
|
3820
3820
|
display: flex;
|
|
3821
3821
|
width: 100%;
|
|
3822
|
-
padding: 1rem;
|
|
3822
|
+
padding: 1rem;
|
|
3823
|
+
text-align: left; }
|
|
3823
3824
|
@media (min-width: 720px) {
|
|
3824
3825
|
.modal-free-doc .right-container {
|
|
3825
3826
|
width: 60%;
|
package/dist/index.d.ts
CHANGED
|
@@ -728,6 +728,8 @@ declare const ExpertCardList: FC<ExpertCardListProps>;
|
|
|
728
728
|
interface ModalFreeDocProps {
|
|
729
729
|
productName?: string;
|
|
730
730
|
closeModal: () => void;
|
|
731
|
+
urlWordDoc: string;
|
|
732
|
+
urlPdfDoc: string;
|
|
731
733
|
}
|
|
732
734
|
|
|
733
735
|
declare const ModalFreeDoc: FC<ModalFreeDocProps>;
|