@npm_leadtech/legal-lib-components 5.40.1 → 5.42.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.
Files changed (49) hide show
  1. package/dist/css/styles.css +95 -203
  2. package/dist/src/components/atoms/Radio/Radio.d.ts +2 -2
  3. package/dist/src/components/atoms/Radio/Radio.js +16 -15
  4. package/dist/src/components/atoms/Radio/Radio.scss +105 -183
  5. package/dist/src/components/atoms/Radio/Radio.tsx +38 -34
  6. package/dist/src/components/atoms/Radio/RadioProps.types.d.ts +9 -3
  7. package/dist/src/components/atoms/Radio/RadioProps.types.js +6 -1
  8. package/dist/src/components/atoms/Radio/RadioProps.types.ts +10 -3
  9. package/dist/src/components/atoms/Radio/index.d.ts +1 -1
  10. package/dist/src/components/atoms/Radio/index.js +1 -0
  11. package/dist/src/components/atoms/Radio/index.ts +1 -1
  12. package/dist/src/components/molecules/Feedback/Feedback.js +1 -1
  13. package/dist/src/components/molecules/Feedback/Feedback.tsx +2 -2
  14. package/dist/src/components/molecules/Feedback/FeedbackProps.types.d.ts +2 -2
  15. package/dist/src/components/molecules/Feedback/FeedbackProps.types.ts +2 -2
  16. package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.js +2 -2
  17. package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.tsx +6 -4
  18. package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCardProps.types.d.ts +3 -1
  19. package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCardProps.types.ts +3 -1
  20. package/dist/src/components/organisms/JumbotronRatafiaContent/JumbotronRatafiaContent.js +1 -1
  21. package/dist/src/components/organisms/JumbotronRatafiaContent/JumbotronRatafiaContent.styled.js +21 -19
  22. package/dist/src/components/organisms/JumbotronRatafiaContent/JumbotronRatafiaContent.styled.ts +21 -19
  23. package/dist/src/components/organisms/JumbotronRatafiaContent/JumbotronRatafiaContent.tsx +1 -1
  24. package/dist/src/components/organisms/JumbotronRatafiaContent/JumbotronRatafiaContentProps.types.d.ts +2 -1
  25. package/dist/src/components/organisms/JumbotronRatafiaContent/JumbotronRatafiaContentProps.types.ts +2 -1
  26. package/dist/src/components/organisms/index.d.ts +0 -1
  27. package/dist/src/components/organisms/index.js +0 -1
  28. package/dist/src/components/organisms/index.ts +0 -1
  29. package/dist/src/components/pages/EsignatureLandingPage/EsignatureLandingPage.js +2 -2
  30. package/dist/src/components/pages/EsignatureLandingPage/EsignatureLandingPage.tsx +4 -4
  31. package/dist/src/components/pages/EsignatureLandingPage/EsignatureLandingPageProps.types.d.ts +1 -1
  32. package/dist/src/components/pages/EsignatureLandingPage/EsignatureLandingPageProps.types.ts +1 -1
  33. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.d.ts +4 -0
  34. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.js +7 -2
  35. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.tsx +7 -3
  36. package/dist/tsconfig.build.tsbuildinfo +1 -1
  37. package/package.json +1 -1
  38. package/dist/src/components/organisms/JumbotronEsignatureContent/JumbotronEsignatureContent.d.ts +0 -4
  39. package/dist/src/components/organisms/JumbotronEsignatureContent/JumbotronEsignatureContent.js +0 -7
  40. package/dist/src/components/organisms/JumbotronEsignatureContent/JumbotronEsignatureContent.styled.d.ts +0 -1
  41. package/dist/src/components/organisms/JumbotronEsignatureContent/JumbotronEsignatureContent.styled.js +0 -28
  42. package/dist/src/components/organisms/JumbotronEsignatureContent/JumbotronEsignatureContent.styled.ts +0 -29
  43. package/dist/src/components/organisms/JumbotronEsignatureContent/JumbotronEsignatureContent.tsx +0 -19
  44. package/dist/src/components/organisms/JumbotronEsignatureContent/JumbotronEsignatureContentProps.types.d.ts +0 -7
  45. package/dist/src/components/organisms/JumbotronEsignatureContent/JumbotronEsignatureContentProps.types.js +0 -1
  46. package/dist/src/components/organisms/JumbotronEsignatureContent/JumbotronEsignatureContentProps.types.ts +0 -8
  47. package/dist/src/components/organisms/JumbotronEsignatureContent/index.d.ts +0 -2
  48. package/dist/src/components/organisms/JumbotronEsignatureContent/index.js +0 -1
  49. package/dist/src/components/organisms/JumbotronEsignatureContent/index.ts +0 -2
@@ -1,7 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { JumbotronEsignatureStyled } from './JumbotronEsignatureContent.styled';
3
- import { TagsRatafiaList } from '../../molecules';
4
- const JumbotronEsignatureContent = ({ title, body, tags, type }) => {
5
- return (_jsxs(JumbotronEsignatureStyled, { children: [_jsx("div", { className: 'jumbotron-esignature-content__title', children: title }), _jsx("span", { className: 'sans-serif --medium jumbotron-esignature-content__description', itemProp: 'text', children: body }), _jsx(TagsRatafiaList, { tags: tags, type: type })] }));
6
- };
7
- export default JumbotronEsignatureContent;
@@ -1 +0,0 @@
1
- export declare const JumbotronEsignatureStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
@@ -1,28 +0,0 @@
1
- import styled from 'styled-components';
2
- export const JumbotronEsignatureStyled = styled.div `
3
- display: flex;
4
- flex-direction: column;
5
- align-items: flex-start;
6
- gap: 1rem;
7
-
8
- .jumbotron-esignature-content__title {
9
- &__text {
10
- line-height: 2.25rem;
11
- font-size: 2rem;
12
- font-family: 'Inter', sans-serif;
13
- color: var(--primary-main-dark-2);
14
- font-weight: 700;
15
- letter-spacing: 0.3rem;
16
-
17
- &__icon {
18
- padding: 0 0.6rem;
19
- border-radius: 4px;
20
- color: var(--primary-main-dark-2);
21
- background: var(--secondary-main-light-2);
22
- }
23
- }
24
- }
25
- .jumbotron-esignature-content__description {
26
- color: var(--neutral-neutral-1);
27
- }
28
- `;
@@ -1,29 +0,0 @@
1
- import styled from 'styled-components'
2
-
3
- export const JumbotronEsignatureStyled = styled.div`
4
- display: flex;
5
- flex-direction: column;
6
- align-items: flex-start;
7
- gap: 1rem;
8
-
9
- .jumbotron-esignature-content__title {
10
- &__text {
11
- line-height: 2.25rem;
12
- font-size: 2rem;
13
- font-family: 'Inter', sans-serif;
14
- color: var(--primary-main-dark-2);
15
- font-weight: 700;
16
- letter-spacing: 0.3rem;
17
-
18
- &__icon {
19
- padding: 0 0.6rem;
20
- border-radius: 4px;
21
- color: var(--primary-main-dark-2);
22
- background: var(--secondary-main-light-2);
23
- }
24
- }
25
- }
26
- .jumbotron-esignature-content__description {
27
- color: var(--neutral-neutral-1);
28
- }
29
- `
@@ -1,19 +0,0 @@
1
- import React, { type FC } from 'react'
2
-
3
- import { type JumbotronEsignatureContentProps } from './JumbotronEsignatureContentProps.types'
4
- import { JumbotronEsignatureStyled } from './JumbotronEsignatureContent.styled'
5
- import { TagsRatafiaList } from '../../molecules'
6
-
7
- const JumbotronEsignatureContent: FC<JumbotronEsignatureContentProps> = ({ title, body, tags, type }) => {
8
- return (
9
- <JumbotronEsignatureStyled>
10
- <div className='jumbotron-esignature-content__title'>{title}</div>
11
- <span className='sans-serif --medium jumbotron-esignature-content__description' itemProp='text'>
12
- {body}
13
- </span>
14
- <TagsRatafiaList tags={tags} type={type} />
15
- </JumbotronEsignatureStyled>
16
- )
17
- }
18
-
19
- export default JumbotronEsignatureContent
@@ -1,7 +0,0 @@
1
- import { type TagRatafiaItemProps } from '../../atoms';
2
- export interface JumbotronEsignatureContentProps {
3
- title: React.ReactNode | string;
4
- body: React.ReactNode;
5
- tags: TagRatafiaItemProps[];
6
- type: string;
7
- }
@@ -1,8 +0,0 @@
1
- import { type TagRatafiaItemProps } from '../../atoms'
2
-
3
- export interface JumbotronEsignatureContentProps {
4
- title: React.ReactNode | string
5
- body: React.ReactNode
6
- tags: TagRatafiaItemProps[]
7
- type: string
8
- }
@@ -1,2 +0,0 @@
1
- export { default as JumbotronEsignatureContent } from './JumbotronEsignatureContent';
2
- export { type JumbotronEsignatureContentProps } from './JumbotronEsignatureContentProps.types';
@@ -1 +0,0 @@
1
- export { default as JumbotronEsignatureContent } from './JumbotronEsignatureContent';
@@ -1,2 +0,0 @@
1
- export { default as JumbotronEsignatureContent } from './JumbotronEsignatureContent'
2
- export { type JumbotronEsignatureContentProps } from './JumbotronEsignatureContentProps.types'