@olwiba/ui 0.0.43 → 0.0.45
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/chunk-AMWLSHD6.js +37 -0
- package/dist/chunk-AMWLSHD6.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/mdx/index.js +1 -30
- package/dist/mdx/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +2 -2
- package/src/marketing/Footer.tsx +6 -6
- package/dist/chunk-SUKTBILF.js +0 -11
- package/dist/chunk-SUKTBILF.js.map +0 -1
package/dist/mdx/index.js
CHANGED
|
@@ -1,32 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
import { useMDXComponent } from '@content-collections/mdx/react';
|
|
3
|
-
import { jsx } from 'react/jsx-runtime';
|
|
4
|
-
|
|
5
|
-
var components = {
|
|
6
|
-
h1: ({ className, ...props }) => /* @__PURE__ */ jsx("h1", { className: cn("mt-8 scroll-m-20 text-3xl font-bold tracking-tight text-foreground first:mt-0", className), ...props }),
|
|
7
|
-
h2: ({ className, ...props }) => /* @__PURE__ */ jsx("h2", { className: cn("mt-10 scroll-m-20 text-2xl font-semibold tracking-tight text-foreground first:mt-0", className), ...props }),
|
|
8
|
-
h3: ({ className, ...props }) => /* @__PURE__ */ jsx("h3", { className: cn("mt-8 scroll-m-20 text-xl font-semibold tracking-tight text-foreground", className), ...props }),
|
|
9
|
-
h4: ({ className, ...props }) => /* @__PURE__ */ jsx("h4", { className: cn("mt-6 scroll-m-20 text-lg font-semibold tracking-tight text-foreground", className), ...props }),
|
|
10
|
-
p: ({ className, ...props }) => /* @__PURE__ */ jsx("p", { className: cn("leading-7 text-muted-foreground [&:not(:first-child)]:mt-6", className), ...props }),
|
|
11
|
-
ul: ({ className, ...props }) => /* @__PURE__ */ jsx("ul", { className: cn("my-6 ml-6 list-disc text-muted-foreground", className), ...props }),
|
|
12
|
-
ol: ({ className, ...props }) => /* @__PURE__ */ jsx("ol", { className: cn("my-6 ml-6 list-decimal text-muted-foreground", className), ...props }),
|
|
13
|
-
li: ({ className, ...props }) => /* @__PURE__ */ jsx("li", { className: cn("mt-2", className), ...props }),
|
|
14
|
-
blockquote: ({ className, ...props }) => /* @__PURE__ */ jsx("blockquote", { className: cn("mt-6 rounded-r-lg border-l-4 border-primary bg-muted py-4 pl-6 pr-4 italic text-muted-foreground", className), ...props }),
|
|
15
|
-
hr: (props) => /* @__PURE__ */ jsx("hr", { className: "my-8 border-border", ...props }),
|
|
16
|
-
img: ({ className, alt, ...props }) => /* @__PURE__ */ jsx("img", { className: cn("rounded-lg border shadow-sm", className), alt, ...props }),
|
|
17
|
-
pre: ({ className, ...props }) => /* @__PURE__ */ jsx("pre", { className: cn("mt-6 mb-4 overflow-x-auto rounded-lg bg-muted p-4 text-sm", className), ...props }),
|
|
18
|
-
code: ({ className, ...props }) => /* @__PURE__ */ jsx("code", { className: cn("relative rounded bg-muted px-[0.3rem] py-[0.2rem] font-mono text-sm text-foreground", className), ...props }),
|
|
19
|
-
table: ({ className, ...props }) => /* @__PURE__ */ jsx("div", { className: "my-6 w-full overflow-y-auto rounded-lg border border-border", children: /* @__PURE__ */ jsx("table", { className: cn("w-full", className), ...props }) }),
|
|
20
|
-
tr: ({ className, ...props }) => /* @__PURE__ */ jsx("tr", { className: cn("m-0 border-t border-border p-0 even:bg-muted", className), ...props }),
|
|
21
|
-
th: ({ className, ...props }) => /* @__PURE__ */ jsx("th", { className: cn("border border-border px-4 py-2 text-left font-bold [&[align=center]]:text-center [&[align=right]]:text-right", className), ...props }),
|
|
22
|
-
td: ({ className, ...props }) => /* @__PURE__ */ jsx("td", { className: cn("border border-border px-4 py-2 text-left [&[align=center]]:text-center [&[align=right]]:text-right", className), ...props }),
|
|
23
|
-
a: ({ className, ...props }) => /* @__PURE__ */ jsx("a", { className: cn("font-medium text-primary underline underline-offset-4 hover:text-primary/80", className), ...props })
|
|
24
|
-
};
|
|
25
|
-
function MdxContent({ code }) {
|
|
26
|
-
const MDXComponent = useMDXComponent(code);
|
|
27
|
-
return /* @__PURE__ */ jsx(MDXComponent, { components });
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
export { MdxContent };
|
|
1
|
+
export { MdxContent } from '../chunk-AMWLSHD6.js';
|
|
31
2
|
//# sourceMappingURL=index.js.map
|
|
32
3
|
//# sourceMappingURL=index.js.map
|
package/dist/mdx/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":[
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -113,8 +113,8 @@ export { PostList, type PostListProps } from './blog/PostList';
|
|
|
113
113
|
export { ChangelogList, type ChangelogListProps } from './blog/ChangelogList';
|
|
114
114
|
export { ChangelogCard, type ChangelogCardProps } from './blog/ChangelogCard';
|
|
115
115
|
|
|
116
|
-
// ─── MDX
|
|
117
|
-
|
|
116
|
+
// ─── MDX ──────────────────────────────────────────────────────────────────────
|
|
117
|
+
export { MdxContent, type MdxContentProps } from './blog/MdxContent';
|
|
118
118
|
|
|
119
119
|
// ─── Hooks ────────────────────────────────────────────────────────────────────
|
|
120
120
|
export { useMounted } from './hooks/use-mounted';
|
package/src/marketing/Footer.tsx
CHANGED
|
@@ -26,7 +26,7 @@ export function Footer({
|
|
|
26
26
|
const copyrightText = legal ?? `\u00A9 ${new Date().getFullYear()} ${brand.name}. All rights reserved.`;
|
|
27
27
|
|
|
28
28
|
return (
|
|
29
|
-
<footer className="overflow-hidden rounded-2xl border bg-
|
|
29
|
+
<footer className="overflow-hidden rounded-2xl border bg-muted text-foreground">
|
|
30
30
|
<div className="mx-auto max-w-7xl px-6 py-20 sm:py-24 lg:px-8">
|
|
31
31
|
{/* Brand */}
|
|
32
32
|
<div className="flex justify-center">
|
|
@@ -36,11 +36,11 @@ export function Footer({
|
|
|
36
36
|
children: (
|
|
37
37
|
<>
|
|
38
38
|
{brand.logo && (
|
|
39
|
-
<span className="flex h-8 w-8 items-center justify-center rounded-lg bg-
|
|
39
|
+
<span className="flex h-8 w-8 items-center justify-center rounded-lg bg-foreground/10 text-foreground">
|
|
40
40
|
{brand.logo}
|
|
41
41
|
</span>
|
|
42
42
|
)}
|
|
43
|
-
<span className="text-lg font-semibold text-
|
|
43
|
+
<span className="text-lg font-semibold text-foreground">{brand.name}</span>
|
|
44
44
|
</>
|
|
45
45
|
),
|
|
46
46
|
})}
|
|
@@ -53,7 +53,7 @@ export function Footer({
|
|
|
53
53
|
<div key={label}>
|
|
54
54
|
{renderLink({
|
|
55
55
|
href,
|
|
56
|
-
className: 'text-sm/6 text-
|
|
56
|
+
className: 'text-sm/6 text-muted-foreground transition-colors hover:text-foreground',
|
|
57
57
|
children: label,
|
|
58
58
|
})}
|
|
59
59
|
</div>
|
|
@@ -69,7 +69,7 @@ export function Footer({
|
|
|
69
69
|
key={label}
|
|
70
70
|
href={href}
|
|
71
71
|
aria-label={label}
|
|
72
|
-
className="text-
|
|
72
|
+
className="text-muted-foreground transition-colors hover:text-foreground"
|
|
73
73
|
>
|
|
74
74
|
{icon}
|
|
75
75
|
</a>
|
|
@@ -78,7 +78,7 @@ export function Footer({
|
|
|
78
78
|
)}
|
|
79
79
|
|
|
80
80
|
{/* Copyright */}
|
|
81
|
-
<p className="mt-10 text-center text-sm/6 text-
|
|
81
|
+
<p className="mt-10 text-center text-sm/6 text-muted-foreground/70">
|
|
82
82
|
{copyrightText}
|
|
83
83
|
</p>
|
|
84
84
|
</div>
|
package/dist/chunk-SUKTBILF.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { clsx } from 'clsx';
|
|
2
|
-
import { twMerge } from 'tailwind-merge';
|
|
3
|
-
|
|
4
|
-
// src/lib/utils.ts
|
|
5
|
-
function cn(...inputs) {
|
|
6
|
-
return twMerge(clsx(inputs));
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
export { cn };
|
|
10
|
-
//# sourceMappingURL=chunk-SUKTBILF.js.map
|
|
11
|
-
//# sourceMappingURL=chunk-SUKTBILF.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/lib/utils.ts"],"names":[],"mappings":";;;;AAGO,SAAS,MAAM,MAAA,EAAsB;AAC1C,EAAA,OAAO,OAAA,CAAQ,IAAA,CAAK,MAAM,CAAC,CAAA;AAC7B","file":"chunk-SUKTBILF.js","sourcesContent":["import { clsx, type ClassValue } from 'clsx';\nimport { twMerge } from 'tailwind-merge';\n\nexport function cn(...inputs: ClassValue[]) {\n return twMerge(clsx(inputs));\n}\n"]}
|