@npm_leadtech/legal-lib-components 2.18.10 → 2.18.13

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.
@@ -3856,8 +3856,8 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
3856
3856
  .modal-free-doc .modal-free-close-mobile {
3857
3857
  display: flex;
3858
3858
  position: relative;
3859
- left: 280px;
3860
- top: 30px;
3859
+ left: 325px;
3860
+ top: 35px;
3861
3861
  line-height: 1rem;
3862
3862
  color: var(--neutral-neutral-1);
3863
3863
  font-size: 35px; }
@@ -3,7 +3,7 @@ export interface ButtonProps {
3
3
  label: string;
4
4
  dataQa?: string;
5
5
  labelMobile?: string;
6
- link?: string;
6
+ link?: string | null;
7
7
  LinkComponent?: any;
8
8
  noLink?: boolean;
9
9
  noLinkNoFunc?: boolean;
@@ -1,6 +1,6 @@
1
1
  export interface ModalFreeDocProps {
2
2
  productName?: string;
3
3
  closeModal: () => void;
4
- urlWordDoc: string;
5
- urlPdfDoc: string;
4
+ urlWordDoc: string | null;
5
+ urlPdfDoc: string | null;
6
6
  }