@npm_leadtech/legal-lib-components 2.18.14 → 2.18.16
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/src/components/atoms/Button/ButtonProps.types.d.ts +1 -0
- package/dist/cjs/src/components/molecules/ModalFreeDoc/ModalFreeDoc.types.d.ts +3 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/components/atoms/Button/ButtonProps.types.d.ts +1 -0
- package/dist/esm/src/components/molecules/ModalFreeDoc/ModalFreeDoc.types.d.ts +3 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ interface ButtonProps {
|
|
|
68
68
|
gtmTag?: string;
|
|
69
69
|
hasNoFollow?: boolean;
|
|
70
70
|
target?: string;
|
|
71
|
+
isModalFree?: boolean;
|
|
71
72
|
}
|
|
72
73
|
|
|
73
74
|
declare const Button: FC<ButtonProps>;
|
|
@@ -727,10 +728,12 @@ interface ExpertCardListProps {
|
|
|
727
728
|
declare const ExpertCardList: FC<ExpertCardListProps>;
|
|
728
729
|
|
|
729
730
|
interface ModalFreeDocProps {
|
|
730
|
-
|
|
731
|
+
bodyTitle: string;
|
|
732
|
+
bodyText: string;
|
|
731
733
|
closeModal: () => void;
|
|
732
734
|
urlWordDoc: string | null;
|
|
733
735
|
urlPdfDoc: string | null;
|
|
736
|
+
isModalFree?: boolean;
|
|
734
737
|
}
|
|
735
738
|
|
|
736
739
|
declare const ModalFreeDoc: FC<ModalFreeDocProps>;
|