@npm_leadtech/legal-lib-components 3.7.6 → 3.7.7

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.
@@ -1792,6 +1792,8 @@ h2.react-datepicker__current-month {
1792
1792
  color: var(--neutral-neutral-2); }
1793
1793
  .disclaimer-ratafia__copyright__text a, .disclaimer-ratafia__legal-advice__text a {
1794
1794
  color: var(--neutral-neutral-2); }
1795
+ .disclaimer-ratafia__legal-advice {
1796
+ margin-bottom: 16px; }
1795
1797
  .disclaimer-ratafia__disclaimer-fixed {
1796
1798
  border-radius: 5px 5px 0 0;
1797
1799
  position: fixed;
@@ -3199,6 +3201,23 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
3199
3201
  width: 20px;
3200
3202
  height: 20px; }
3201
3203
 
3204
+ .tag {
3205
+ align-items: center;
3206
+ background: var(--secondary-main-light-4);
3207
+ border-radius: 4px;
3208
+ display: flex;
3209
+ gap: 4px;
3210
+ justify-content: center;
3211
+ padding: 4px;
3212
+ width: fit-content; }
3213
+ .tag .icon {
3214
+ display: flex; }
3215
+ .tag .text {
3216
+ color: var(--neutral-neutral-1);
3217
+ font-size: 12px;
3218
+ font-weight: 700;
3219
+ line-height: 16px; }
3220
+
3202
3221
  .tagline {
3203
3222
  margin-bottom: 1rem; }
3204
3223
 
@@ -5167,6 +5186,48 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
5167
5186
  color: var(--primary-main-light-1);
5168
5187
  font-weight: 400 !important; }
5169
5188
 
5189
+ .card-funcionality {
5190
+ border-radius: 4px;
5191
+ box-shadow: 0 0.25rem 0.5rem 0 rgba(var(--primary-main-dark-1-rgb), 0.2);
5192
+ display: flex;
5193
+ flex-direction: column;
5194
+ gap: 1rem;
5195
+ padding: 1em; }
5196
+ .card-funcionality .content-tags {
5197
+ display: flex;
5198
+ flex-direction: column;
5199
+ gap: 1rem; }
5200
+ .card-funcionality .content-tags .content {
5201
+ display: flex;
5202
+ flex-direction: column;
5203
+ gap: 0.5rem; }
5204
+ .card-funcionality .content-tags .content .header {
5205
+ display: flex;
5206
+ align-items: center;
5207
+ gap: 10px; }
5208
+ .card-funcionality .content-tags .content .header .icon {
5209
+ padding: 2px;
5210
+ border-radius: 4px;
5211
+ background: var(--primary-main-light-5); }
5212
+ .card-funcionality .content-tags .content .header .title {
5213
+ color: var(--neutral-neutral-1);
5214
+ font-weight: 700; }
5215
+ .card-funcionality .content-tags .content .text {
5216
+ overflow: hidden;
5217
+ color: var(--neutral-neutral-1);
5218
+ font-size: 14px;
5219
+ display: -webkit-box;
5220
+ -webkit-line-clamp: 2;
5221
+ line-clamp: 2;
5222
+ -webkit-box-orient: vertical; }
5223
+ .card-funcionality .content-tags .tags {
5224
+ display: flex;
5225
+ gap: 2rem;
5226
+ flex-wrap: wrap; }
5227
+ .card-funcionality .cta-card {
5228
+ align-self: flex-start;
5229
+ margin-top: 0; }
5230
+
5170
5231
  .contact__text .contact__text__title {
5171
5232
  color: var(--primary-main-dark-1);
5172
5233
  margin-bottom: 2rem;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { type TagProps } from './TagProps';
3
+ import './Tag.scss';
4
+ export declare const Tag: React.FC<TagProps>;
@@ -0,0 +1,5 @@
1
+ export interface TagProps {
2
+ id: string;
3
+ icon: React.ReactNode;
4
+ text: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ export * from './Tag';
2
+ export * from './TagProps';
@@ -46,6 +46,7 @@ export * from './ShowMoreBox';
46
46
  export * from './SidemenuTab';
47
47
  export * from './Spinner';
48
48
  export * from './StepRatafiaCard';
49
+ export * from './Tag';
49
50
  export * from './Tagline';
50
51
  export * from './TagRatafiaItem';
51
52
  export * from './TextArea';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { type CardFuncionalityProps } from './CardFuncionalityProps';
3
+ import './CardFuncionality.scss';
4
+ export declare const CardFuncionality: React.FC<CardFuncionalityProps>;
@@ -0,0 +1,8 @@
1
+ import { type ButtonProps, type TagProps } from '../../atoms';
2
+ export interface CardFuncionalityProps {
3
+ icon: React.ReactNode;
4
+ title: string;
5
+ text: string;
6
+ tags: TagProps[];
7
+ cta: ButtonProps;
8
+ }
@@ -0,0 +1,2 @@
1
+ export * from './CardFuncionality';
2
+ export * from './CardFuncionalityProps';
@@ -2,6 +2,7 @@ export * from './AboutUsContent';
2
2
  export * from './Accordion';
3
3
  export * from './ArticlesList';
4
4
  export * from './AsSeeInContent';
5
+ export * from './CardFuncionality';
5
6
  export * from './ContactJumbotron';
6
7
  export * from './CookiePolicyBar';
7
8
  export * from './ErrorContentRatafia';