@npm_leadtech/legal-contracts-ui 0.65.5 → 0.65.6
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.
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { ReactNode } from 'react';
|
|
3
|
+
|
|
4
|
+
export interface Jumbotron3Props {
|
|
5
|
+
title: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export declare const LegalesTemplate: FC<LegalesTemplateProps>;
|
|
9
|
+
|
|
10
|
+
export declare interface LegalesTemplateProps {
|
|
11
|
+
jumbotron: Jumbotron3Props;
|
|
12
|
+
legalSection: LegalSectionProps;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export interface LegalSectionProps {
|
|
16
|
+
children: ReactNode;
|
|
17
|
+
}
|
|
18
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsxs as l, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { LegalSection as t } from "./LegalSection.js";
|
|
3
|
+
import { Jumbotron3 as m } from "./Jumbotron3.js";
|
|
4
|
+
const s = ({ jumbotron: o, legalSection: r }) => /* @__PURE__ */ l("main", { className: "bg-neutral-white flex w-full flex-col", children: [
|
|
5
|
+
/* @__PURE__ */ e(m, { ...o }),
|
|
6
|
+
/* @__PURE__ */ e(t, { ...r })
|
|
7
|
+
] });
|
|
8
|
+
export {
|
|
9
|
+
s as LegalesTemplate
|
|
10
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@npm_leadtech/legal-contracts-ui",
|
|
3
|
-
"version": "0.65.
|
|
3
|
+
"version": "0.65.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -546,6 +546,10 @@
|
|
|
546
546
|
"import": "./dist/components/LegalTemplate.js",
|
|
547
547
|
"types": "./dist/components/LegalTemplate.d.ts"
|
|
548
548
|
},
|
|
549
|
+
"./components/LegalesTemplate": {
|
|
550
|
+
"import": "./dist/components/LegalesTemplate.js",
|
|
551
|
+
"types": "./dist/components/LegalesTemplate.d.ts"
|
|
552
|
+
},
|
|
549
553
|
"./components/NotFoundTemplate": {
|
|
550
554
|
"import": "./dist/components/NotFoundTemplate.js",
|
|
551
555
|
"types": "./dist/components/NotFoundTemplate.d.ts"
|