specra 0.1.12 → 0.1.14
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/components/index.js +4 -1
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +5 -2
- package/dist/components/index.mjs.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1393,7 +1393,7 @@ function Frame({ src, title = "Embedded content", height = 500, width = "100%" }
|
|
|
1393
1393
|
|
|
1394
1394
|
// src/components/docs/header.tsx
|
|
1395
1395
|
import Link7 from "next/link";
|
|
1396
|
-
import { Search as Search2, Menu, Github,
|
|
1396
|
+
import { Search as Search2, Menu, Github, MessageCircle } from "lucide-react";
|
|
1397
1397
|
|
|
1398
1398
|
// src/components/docs/version-switcher.tsx
|
|
1399
1399
|
import { useState as useState10 } from "react";
|
|
@@ -1877,6 +1877,9 @@ function SearchModal({ isOpen, onClose, config }) {
|
|
|
1877
1877
|
// src/components/docs/header.tsx
|
|
1878
1878
|
import { useState as useState14, useEffect as useEffect7 } from "react";
|
|
1879
1879
|
import { jsx as jsx31, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1880
|
+
function XIcon2({ className }) {
|
|
1881
|
+
return /* @__PURE__ */ jsx31("svg", { viewBox: "0 0 24 24", fill: "currentColor", className, children: /* @__PURE__ */ jsx31("path", { d: "M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" }) });
|
|
1882
|
+
}
|
|
1880
1883
|
function Header({ currentVersion, versions, onMenuClick, config: configProp }) {
|
|
1881
1884
|
const contextConfig = useConfig();
|
|
1882
1885
|
const config = configProp || contextConfig;
|
|
@@ -1941,7 +1944,7 @@ function Header({ currentVersion, versions, onMenuClick, config: configProp }) {
|
|
|
1941
1944
|
rel: "noopener noreferrer",
|
|
1942
1945
|
className: "hidden md:flex items-center justify-center h-9 w-9 rounded-md hover:bg-muted transition-colors",
|
|
1943
1946
|
"aria-label": "Twitter",
|
|
1944
|
-
children: /* @__PURE__ */ jsx31(
|
|
1947
|
+
children: /* @__PURE__ */ jsx31(XIcon2, { className: "h-4 w-4" })
|
|
1945
1948
|
}
|
|
1946
1949
|
),
|
|
1947
1950
|
config.social?.discord && /* @__PURE__ */ jsx31(
|