@xenide-io/the-old-ui-theme 0.9.0 → 0.9.2

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,22 @@
1
+ "use client";
2
+ import "./chunk-FWCSY2DS.mjs";
3
+
4
+ // src/suite/components/ai-message-markdown.tsx
5
+ import ReactMarkdown from "react-markdown";
6
+ import remarkGfm from "remark-gfm";
7
+ import { jsx } from "react/jsx-runtime";
8
+ function SuiteAiMarkdownMessage({
9
+ markdown
10
+ }) {
11
+ return /* @__PURE__ */ jsx("div", { className: "suite-ai-markdown", children: /* @__PURE__ */ jsx(
12
+ ReactMarkdown,
13
+ {
14
+ remarkPlugins: [remarkGfm],
15
+ components: { img: () => null },
16
+ children: markdown
17
+ }
18
+ ) });
19
+ }
20
+ export {
21
+ SuiteAiMarkdownMessage as default
22
+ };
@@ -1,6 +1,6 @@
1
- import {
2
- SUITE_THEME_COOKIE
3
- } from "./chunk-IULORI3A.mjs";
1
+ // src/suite/lib/theme-cookie.ts
2
+ var SUITE_THEME_COOKIE = "xenide-suite-theme";
3
+ var SUITE_THEME_CHANNEL = "xenide-suite-theme";
4
4
 
5
5
  // src/suite/lib/theme-boot.ts
6
6
  function suiteThemeBootScript(options) {
@@ -15,5 +15,7 @@ function suiteThemeBootScript(options) {
15
15
  }
16
16
 
17
17
  export {
18
+ SUITE_THEME_COOKIE,
19
+ SUITE_THEME_CHANNEL,
18
20
  suiteThemeBootScript
19
21
  };