@ceed/ads 1.2.8-next.3 → 1.2.9-next.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.
- package/dist/index.cjs +2 -0
- package/dist/index.js +2 -0
- package/framer/index.js +56 -41
- package/package.json +2 -1
package/dist/index.cjs
CHANGED
|
@@ -4759,6 +4759,7 @@ var import_joy42 = require("@mui/joy");
|
|
|
4759
4759
|
var import_react31 = __toESM(require("react"));
|
|
4760
4760
|
var import_joy43 = require("@mui/joy");
|
|
4761
4761
|
var import_joy44 = require("@mui/joy");
|
|
4762
|
+
var import_remark_gfm = __toESM(require("remark-gfm"));
|
|
4762
4763
|
var LazyReactMarkdown = (0, import_react31.lazy)(() => import("react-markdown"));
|
|
4763
4764
|
var Markdown = (props) => {
|
|
4764
4765
|
const [rehypeAccent2, setRehypeAccent] = (0, import_react31.useState)(null);
|
|
@@ -4804,6 +4805,7 @@ var Markdown = (props) => {
|
|
|
4804
4805
|
...markdownOptions,
|
|
4805
4806
|
children: content,
|
|
4806
4807
|
rehypePlugins: [[rehypeAccent2, { accentColor }]],
|
|
4808
|
+
remarkPlugins: [import_remark_gfm.default],
|
|
4807
4809
|
components: {
|
|
4808
4810
|
h1: ({ children }) => /* @__PURE__ */ import_react31.default.createElement(Typography, { color, textColor, level: "h1" }, children),
|
|
4809
4811
|
h2: ({ children }) => /* @__PURE__ */ import_react31.default.createElement(Typography, { color, textColor, level: "h2" }, children),
|
package/dist/index.js
CHANGED
|
@@ -4729,6 +4729,7 @@ import { Grid } from "@mui/joy";
|
|
|
4729
4729
|
import React29, { lazy, Suspense, useEffect as useEffect8, useState as useState9 } from "react";
|
|
4730
4730
|
import { Skeleton } from "@mui/joy";
|
|
4731
4731
|
import { Link as Link2 } from "@mui/joy";
|
|
4732
|
+
import remarkGfm from "remark-gfm";
|
|
4732
4733
|
var LazyReactMarkdown = lazy(() => import("react-markdown"));
|
|
4733
4734
|
var Markdown = (props) => {
|
|
4734
4735
|
const [rehypeAccent2, setRehypeAccent] = useState9(null);
|
|
@@ -4774,6 +4775,7 @@ var Markdown = (props) => {
|
|
|
4774
4775
|
...markdownOptions,
|
|
4775
4776
|
children: content,
|
|
4776
4777
|
rehypePlugins: [[rehypeAccent2, { accentColor }]],
|
|
4778
|
+
remarkPlugins: [remarkGfm],
|
|
4777
4779
|
components: {
|
|
4778
4780
|
h1: ({ children }) => /* @__PURE__ */ React29.createElement(Typography, { color, textColor, level: "h1" }, children),
|
|
4779
4781
|
h2: ({ children }) => /* @__PURE__ */ React29.createElement(Typography, { color, textColor, level: "h2" }, children),
|