@npm_leadtech/legal-contracts-ui 0.86.1 → 0.87.1

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.
@@ -1,18 +1,20 @@
1
1
  import { FC } from 'react';
2
- import { ReactNode } from 'react';
3
2
 
4
3
  export interface Jumbotron3Props {
5
4
  title: string;
6
5
  }
7
6
 
8
- export interface UnsubscribeSectionProps {
9
- children: ReactNode;
7
+ export interface MarkdownProps {
8
+ content: string;
9
+ className?: string;
10
+ useCustom?: boolean;
11
+ variant?: 'default' | 'legal' | 'tooltip';
10
12
  }
11
13
 
12
14
  export declare const UnsubscribeTemplate: FC<UnsubscribeTemplateProps>;
13
15
 
14
16
  export declare interface UnsubscribeTemplateProps {
15
17
  jumbotron: Jumbotron3Props;
16
- unsubscribe: UnsubscribeSectionProps;
18
+ stepDescription: MarkdownProps;
17
19
  }
18
20
 
@@ -1,10 +1,10 @@
1
- import { jsxs as m, jsx as e } from "react/jsx-runtime";
2
- import { Jumbotron3 as s } from "./Jumbotron3.js";
3
- import { UnsubscribeSection as i } from "./UnsubscribeSection.js";
4
- const l = ({ jumbotron: r, unsubscribe: o }) => /* @__PURE__ */ m("main", { className: "flex min-h-screen flex-1 flex-col bg-white", children: [
5
- /* @__PURE__ */ e(s, { ...r }),
6
- /* @__PURE__ */ e(i, { ...o })
1
+ import { jsxs as r, jsx as e } from "react/jsx-runtime";
2
+ import { Jumbotron3 as o } from "./Jumbotron3.js";
3
+ import { Markdown as s } from "./Markdown.js";
4
+ const i = ({ jumbotron: l, stepDescription: m }) => /* @__PURE__ */ r("main", { className: "flex min-h-screen flex-1 flex-col bg-white", children: [
5
+ /* @__PURE__ */ e(o, { ...l }),
6
+ /* @__PURE__ */ e("section", { className: "px-6 py-16 sm:px-10 lg:px-24", children: /* @__PURE__ */ e("div", { className: "mx-auto flex max-w-6xl flex-col gap-12", children: /* @__PURE__ */ e(s, { ...m }) }) })
7
7
  ] });
8
8
  export {
9
- l as UnsubscribeTemplate
9
+ i as UnsubscribeTemplate
10
10
  };
@@ -1,16 +1,16 @@
1
- import { jsx as e, jsxs as l } from "react/jsx-runtime";
2
- import { TwoColumnSection as r } from "./TwoColumnSection.js";
3
- const i = ({ title: s, children: t, image: a }) => /* @__PURE__ */ e(
4
- r,
1
+ import { jsx as e, jsxs as t } from "react/jsx-runtime";
2
+ import { TwoColumnSection as a } from "./TwoColumnSection.js";
3
+ const o = ({ title: s, children: l, image: r }) => /* @__PURE__ */ e(
4
+ a,
5
5
  {
6
- containerClassName: "gap-20 items-center",
7
- firstColumn: /* @__PURE__ */ e("div", { className: "flex-1", children: /* @__PURE__ */ e("div", { className: "bg-primary-50 rounded-3xl p-6", children: a }) }),
8
- secondColumn: /* @__PURE__ */ l("div", { className: "flex-1 space-y-6 text-neutral-800", children: [
6
+ containerClassName: "gap-20 items-center flex-col-reverse",
7
+ firstColumn: /* @__PURE__ */ e("div", { className: "flex-1", children: /* @__PURE__ */ e("div", { className: "bg-primary-50 rounded-3xl p-6", children: r }) }),
8
+ secondColumn: /* @__PURE__ */ t("div", { className: "flex-1 space-y-6 text-neutral-800", children: [
9
9
  /* @__PURE__ */ e("p", { className: "text-super-large font-bold text-neutral-900", children: s }),
10
- /* @__PURE__ */ e("div", { className: "text-medium space-y-4", children: t })
10
+ /* @__PURE__ */ e("div", { className: "text-medium space-y-4", children: l })
11
11
  ] })
12
12
  }
13
13
  );
14
14
  export {
15
- i as ValuesSection
15
+ o as ValuesSection
16
16
  };