@npm_leadtech/legal-lib-components 2.19.2 → 2.19.3
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/src/components/atoms/Button/ButtonProps.types.d.ts +1 -1
- package/dist/cjs/src/components/molecules/ModalFreeDoc/ModalFreeDoc.types.d.ts +0 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/components/atoms/Button/ButtonProps.types.d.ts +1 -1
- package/dist/esm/src/components/molecules/ModalFreeDoc/ModalFreeDoc.types.d.ts +0 -1
- package/dist/index.d.ts +1 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -50,7 +50,7 @@ interface ButtonProps {
|
|
|
50
50
|
label: string;
|
|
51
51
|
dataQa?: string;
|
|
52
52
|
labelMobile?: string;
|
|
53
|
-
link?: string
|
|
53
|
+
link?: string;
|
|
54
54
|
LinkComponent?: any;
|
|
55
55
|
noLink?: boolean;
|
|
56
56
|
noLinkNoFunc?: boolean;
|
|
@@ -729,7 +729,6 @@ interface ModalFreeDocProps {
|
|
|
729
729
|
bodyTitle: string;
|
|
730
730
|
bodyText: string;
|
|
731
731
|
closeModal: () => void;
|
|
732
|
-
isModalFree?: boolean;
|
|
733
732
|
clickGoToFormInApp: () => void;
|
|
734
733
|
}
|
|
735
734
|
|