@npm_leadtech/legal-lib-components 2.11.18 → 2.12.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.
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +7 -0
- package/dist/cjs/src/components/atoms/Disclaimer/DisclaimerProps.types.d.ts +1 -2
- package/dist/cjs/src/components/atoms/TrustPilot/TrustPilot.d.ts +5 -0
- package/dist/cjs/src/components/atoms/TrustPilot/TrustPilotProps.types.d.ts +4 -0
- package/dist/cjs/src/components/atoms/TrustPilot/__stories__/Trustpilot.stories.d.ts +6 -0
- package/dist/cjs/src/components/atoms/TrustPilot/index.d.ts +2 -0
- package/dist/cjs/src/components/atoms/index.d.ts +1 -0
- package/dist/cjs/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.d.ts +5 -0
- package/dist/cjs/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSectionProps.types.d.ts +5 -0
- package/dist/cjs/src/components/sections/PeopleSayAboutUsSection/__stories__/PeopleSayAboutUsSection.stories.d.ts +6 -0
- package/dist/cjs/src/components/sections/PeopleSayAboutUsSection/index.d.ts +2 -0
- package/dist/cjs/src/utils/envVariables.d.ts +1 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +7 -0
- package/dist/esm/src/components/atoms/Disclaimer/DisclaimerProps.types.d.ts +1 -2
- package/dist/esm/src/components/atoms/TrustPilot/TrustPilot.d.ts +5 -0
- package/dist/esm/src/components/atoms/TrustPilot/TrustPilotProps.types.d.ts +4 -0
- package/dist/esm/src/components/atoms/TrustPilot/__stories__/Trustpilot.stories.d.ts +6 -0
- package/dist/esm/src/components/atoms/TrustPilot/index.d.ts +2 -0
- package/dist/esm/src/components/atoms/index.d.ts +1 -0
- package/dist/esm/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.d.ts +5 -0
- package/dist/esm/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSectionProps.types.d.ts +5 -0
- package/dist/esm/src/components/sections/PeopleSayAboutUsSection/__stories__/PeopleSayAboutUsSection.stories.d.ts +6 -0
- package/dist/esm/src/components/sections/PeopleSayAboutUsSection/index.d.ts +2 -0
- package/dist/esm/src/utils/envVariables.d.ts +1 -0
- package/dist/index.d.ts +8 -3
- package/package.json +1 -1
|
@@ -2791,6 +2791,13 @@ html[data-theme='lawdistrict'] .e-button.--primary-3 {
|
|
|
2791
2791
|
.wide-info-bar__wrapper {
|
|
2792
2792
|
padding: 0.5rem 2rem; } }
|
|
2793
2793
|
|
|
2794
|
+
.trustpilot {
|
|
2795
|
+
margin: auto;
|
|
2796
|
+
padding: 0 1rem; }
|
|
2797
|
+
@media (min-width: 720px) {
|
|
2798
|
+
.trustpilot {
|
|
2799
|
+
margin: 3rem auto; } }
|
|
2800
|
+
|
|
2794
2801
|
.article {
|
|
2795
2802
|
display: flex;
|
|
2796
2803
|
flex-flow: row wrap;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type FC } from 'react';
|
|
2
|
+
import { type PeopleSayAboutUsSectionProps } from './PeopleSayAboutUsSectionProps.types';
|
|
3
|
+
import './PeopleSayAboutUsSection.scss';
|
|
4
|
+
declare const PeopleSayAboutUsSection: FC<PeopleSayAboutUsSectionProps>;
|
|
5
|
+
export default PeopleSayAboutUsSection;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import PeopleSayAboutUsSection from '../PeopleSayAboutUsSection';
|
|
3
|
+
declare const meta: Meta<typeof PeopleSayAboutUsSection>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof PeopleSayAboutUsSection>;
|
|
6
|
+
export declare const Default: Story;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const envVar = "lawdistrict.com";
|