@npm_leadtech/legal-lib-components 2.37.2 → 2.37.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 +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +21 -21
- package/dist/cjs/src/components/molecules/index.d.ts +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +21 -21
- package/dist/esm/src/components/molecules/index.d.ts +1 -1
- package/dist/index.d.ts +7 -7
- package/package.json +1 -1
|
@@ -3018,6 +3018,27 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
3018
3018
|
.message-information__text__time.regular {
|
|
3019
3019
|
font-weight: 400; }
|
|
3020
3020
|
|
|
3021
|
+
.also-known-as {
|
|
3022
|
+
display: flex;
|
|
3023
|
+
align-items: center;
|
|
3024
|
+
gap: 0.5rem;
|
|
3025
|
+
flex-wrap: wrap; }
|
|
3026
|
+
.also-known-as .title {
|
|
3027
|
+
display: flex;
|
|
3028
|
+
align-items: center;
|
|
3029
|
+
gap: 0.25rem;
|
|
3030
|
+
flex-wrap: nowrap; }
|
|
3031
|
+
.also-known-as .title svg {
|
|
3032
|
+
width: 18px;
|
|
3033
|
+
height: 18px;
|
|
3034
|
+
fill: var(--secondary-main-dark-1); }
|
|
3035
|
+
.also-known-as .title .text {
|
|
3036
|
+
color: var(--Neutral-600, #6d7275);
|
|
3037
|
+
font-size: 0.875rem;
|
|
3038
|
+
line-height: 18px;
|
|
3039
|
+
letter-spacing: -0.3px;
|
|
3040
|
+
white-space: nowrap; }
|
|
3041
|
+
|
|
3021
3042
|
.article {
|
|
3022
3043
|
display: flex;
|
|
3023
3044
|
flex-flow: row wrap;
|
|
@@ -4199,27 +4220,6 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
4199
4220
|
.trustworthy-websites__image {
|
|
4200
4221
|
margin: 1.5rem; }
|
|
4201
4222
|
|
|
4202
|
-
.also-known-as {
|
|
4203
|
-
display: flex;
|
|
4204
|
-
align-items: center;
|
|
4205
|
-
gap: 0.5rem;
|
|
4206
|
-
flex-wrap: wrap; }
|
|
4207
|
-
.also-known-as .title {
|
|
4208
|
-
display: flex;
|
|
4209
|
-
align-items: center;
|
|
4210
|
-
gap: 0.25rem;
|
|
4211
|
-
flex-wrap: nowrap; }
|
|
4212
|
-
.also-known-as .title svg {
|
|
4213
|
-
width: 18px;
|
|
4214
|
-
height: 18px;
|
|
4215
|
-
fill: var(--secondary-main-dark-1); }
|
|
4216
|
-
.also-known-as .title .text {
|
|
4217
|
-
color: var(--Neutral-600, #6d7275);
|
|
4218
|
-
font-size: 0.875rem;
|
|
4219
|
-
line-height: 18px;
|
|
4220
|
-
letter-spacing: -0.3px;
|
|
4221
|
-
white-space: nowrap; }
|
|
4222
|
-
|
|
4223
4223
|
.about-us-content {
|
|
4224
4224
|
display: flex;
|
|
4225
4225
|
flex-flow: row wrap;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './AlsoKnownAs';
|
|
1
2
|
export * from './Article';
|
|
2
3
|
export * from './BaseBoxList';
|
|
3
4
|
export * from './BottomFixedBar';
|
|
@@ -23,4 +24,3 @@ export * from './StepGetForm';
|
|
|
23
24
|
export * from './TextInput';
|
|
24
25
|
export * from './TooltipMenu';
|
|
25
26
|
export * from './TrustworthyWebsites';
|
|
26
|
-
export * from './AlsoKnownAs';
|
package/dist/index.d.ts
CHANGED
|
@@ -506,6 +506,13 @@ interface MessageInformationProps {
|
|
|
506
506
|
|
|
507
507
|
declare const MessageInformation: FC<MessageInformationProps>;
|
|
508
508
|
|
|
509
|
+
interface AlsoKnownAsProps {
|
|
510
|
+
title: string;
|
|
511
|
+
documents: string[];
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
declare const AlsoKnownAs: FC<AlsoKnownAsProps>;
|
|
515
|
+
|
|
509
516
|
interface ArticleProps {
|
|
510
517
|
imageUrl: string;
|
|
511
518
|
title: string;
|
|
@@ -805,13 +812,6 @@ interface ImageStructure {
|
|
|
805
812
|
|
|
806
813
|
declare const TrustworthyWebsites: FC<TrustworthyWebsitesProps>;
|
|
807
814
|
|
|
808
|
-
interface AlsoKnownAsProps {
|
|
809
|
-
title: string;
|
|
810
|
-
documents: string[];
|
|
811
|
-
}
|
|
812
|
-
|
|
813
|
-
declare const AlsoKnownAs: FC<AlsoKnownAsProps>;
|
|
814
|
-
|
|
815
815
|
interface AboutUsContentProps {
|
|
816
816
|
children: React.ReactNode;
|
|
817
817
|
image: React.ReactNode;
|