@npm_leadtech/legal-lib-components 3.7.7 → 3.7.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 +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +20 -10
- package/dist/cjs/src/components/organisms/CardFunctionality/CardFunctionality.d.ts +4 -0
- package/dist/{esm/src/components/organisms/CardFuncionality/CardFuncionalityProps.d.ts → cjs/src/components/organisms/CardFunctionality/CardFunctionalityProps.d.ts} +2 -1
- package/dist/cjs/src/components/organisms/CardFunctionality/index.d.ts +2 -0
- package/dist/cjs/src/components/organisms/index.d.ts +1 -1
- package/dist/cjs/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.d.ts +4 -0
- package/dist/cjs/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSectionProps.d.ts +4 -0
- package/dist/cjs/src/components/sections/FunctionalityCardsSection/index.d.ts +2 -0
- package/dist/cjs/src/components/sections/index.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +20 -10
- package/dist/esm/src/components/organisms/CardFunctionality/CardFunctionality.d.ts +4 -0
- package/dist/{cjs/src/components/organisms/CardFuncionality/CardFuncionalityProps.d.ts → esm/src/components/organisms/CardFunctionality/CardFunctionalityProps.d.ts} +2 -1
- package/dist/esm/src/components/organisms/CardFunctionality/index.d.ts +2 -0
- package/dist/esm/src/components/organisms/index.d.ts +1 -1
- package/dist/esm/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.d.ts +4 -0
- package/dist/esm/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSectionProps.d.ts +4 -0
- package/dist/esm/src/components/sections/FunctionalityCardsSection/index.d.ts +2 -0
- package/dist/esm/src/components/sections/index.d.ts +1 -0
- package/dist/index.d.ts +10 -3
- package/package.json +1 -1
- package/dist/cjs/src/components/organisms/CardFuncionality/CardFuncionality.d.ts +0 -4
- package/dist/cjs/src/components/organisms/CardFuncionality/index.d.ts +0 -2
- package/dist/esm/src/components/organisms/CardFuncionality/CardFuncionality.d.ts +0 -4
- package/dist/esm/src/components/organisms/CardFuncionality/index.d.ts +0 -2
|
@@ -5186,33 +5186,34 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
5186
5186
|
color: var(--primary-main-light-1);
|
|
5187
5187
|
font-weight: 400 !important; }
|
|
5188
5188
|
|
|
5189
|
-
.card-
|
|
5189
|
+
.card-functionality {
|
|
5190
5190
|
border-radius: 4px;
|
|
5191
5191
|
box-shadow: 0 0.25rem 0.5rem 0 rgba(var(--primary-main-dark-1-rgb), 0.2);
|
|
5192
5192
|
display: flex;
|
|
5193
5193
|
flex-direction: column;
|
|
5194
5194
|
gap: 1rem;
|
|
5195
5195
|
padding: 1em; }
|
|
5196
|
-
.card-
|
|
5196
|
+
.card-functionality .content-tags {
|
|
5197
5197
|
display: flex;
|
|
5198
5198
|
flex-direction: column;
|
|
5199
5199
|
gap: 1rem; }
|
|
5200
|
-
.card-
|
|
5200
|
+
.card-functionality .content-tags .content {
|
|
5201
5201
|
display: flex;
|
|
5202
5202
|
flex-direction: column;
|
|
5203
5203
|
gap: 0.5rem; }
|
|
5204
|
-
.card-
|
|
5204
|
+
.card-functionality .content-tags .content .header {
|
|
5205
5205
|
display: flex;
|
|
5206
5206
|
align-items: center;
|
|
5207
|
-
gap: 10px;
|
|
5208
|
-
|
|
5207
|
+
gap: 10px;
|
|
5208
|
+
flex-direction: row; }
|
|
5209
|
+
.card-functionality .content-tags .content .header .icon {
|
|
5209
5210
|
padding: 2px;
|
|
5210
5211
|
border-radius: 4px;
|
|
5211
5212
|
background: var(--primary-main-light-5); }
|
|
5212
|
-
.card-
|
|
5213
|
+
.card-functionality .content-tags .content .header .title {
|
|
5213
5214
|
color: var(--neutral-neutral-1);
|
|
5214
5215
|
font-weight: 700; }
|
|
5215
|
-
.card-
|
|
5216
|
+
.card-functionality .content-tags .content .text {
|
|
5216
5217
|
overflow: hidden;
|
|
5217
5218
|
color: var(--neutral-neutral-1);
|
|
5218
5219
|
font-size: 14px;
|
|
@@ -5220,11 +5221,11 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
5220
5221
|
-webkit-line-clamp: 2;
|
|
5221
5222
|
line-clamp: 2;
|
|
5222
5223
|
-webkit-box-orient: vertical; }
|
|
5223
|
-
.card-
|
|
5224
|
+
.card-functionality .content-tags .tags {
|
|
5224
5225
|
display: flex;
|
|
5225
5226
|
gap: 2rem;
|
|
5226
5227
|
flex-wrap: wrap; }
|
|
5227
|
-
.card-
|
|
5228
|
+
.card-functionality .cta-card {
|
|
5228
5229
|
align-self: flex-start;
|
|
5229
5230
|
margin-top: 0; }
|
|
5230
5231
|
|
|
@@ -6064,6 +6065,15 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
6064
6065
|
.features-ratafia-section__wrapper__children img {
|
|
6065
6066
|
width: 100%; }
|
|
6066
6067
|
|
|
6068
|
+
.functionality-cards {
|
|
6069
|
+
display: flex;
|
|
6070
|
+
flex-direction: column;
|
|
6071
|
+
gap: 1rem;
|
|
6072
|
+
margin-bottom: 2rem; }
|
|
6073
|
+
@media (min-width: 960px) {
|
|
6074
|
+
.functionality-cards {
|
|
6075
|
+
flex-direction: row; } }
|
|
6076
|
+
|
|
6067
6077
|
.guidelines-section {
|
|
6068
6078
|
display: flex;
|
|
6069
6079
|
flex-direction: column; }
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { type ButtonProps, type TagProps } from '../../atoms';
|
|
2
|
-
export interface
|
|
2
|
+
export interface CardFunctionalityProps {
|
|
3
3
|
icon: React.ReactNode;
|
|
4
4
|
title: string;
|
|
5
5
|
text: string;
|
|
6
6
|
tags: TagProps[];
|
|
7
7
|
cta: ButtonProps;
|
|
8
|
+
id: string;
|
|
8
9
|
}
|
|
@@ -2,7 +2,7 @@ export * from './AboutUsContent';
|
|
|
2
2
|
export * from './Accordion';
|
|
3
3
|
export * from './ArticlesList';
|
|
4
4
|
export * from './AsSeeInContent';
|
|
5
|
-
export * from './
|
|
5
|
+
export * from './CardFunctionality';
|
|
6
6
|
export * from './ContactJumbotron';
|
|
7
7
|
export * from './CookiePolicyBar';
|
|
8
8
|
export * from './ErrorContentRatafia';
|
|
@@ -7,6 +7,7 @@ export * from './ContactSection';
|
|
|
7
7
|
export * from './ExpertsSection';
|
|
8
8
|
export * from './FaqSection';
|
|
9
9
|
export * from './FeaturesRatafiaSection';
|
|
10
|
+
export * from './FunctionalityCardsSection';
|
|
10
11
|
export * from './GuidelinesSection';
|
|
11
12
|
export * from './HowGetYourFormsSection';
|
|
12
13
|
export * from './JumbotronRatafiaSection';
|