veryfront 0.0.74 → 0.0.75

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.
@@ -556,9 +556,9 @@ function getErrorMessage(error) {
556
556
  import * as React7 from "react";
557
557
  import { Fragment as Fragment2, jsx as jsx6, jsxs as jsxs3 } from "react/jsx-runtime";
558
558
  var isBrowser = typeof window !== "undefined" && typeof document !== "undefined";
559
- var ESM_REACT_MARKDOWN = "https://esm.sh/react-markdown@9?external=react";
560
- var ESM_REMARK_GFM = "https://esm.sh/remark-gfm@4";
561
- var ESM_REHYPE_HIGHLIGHT = "https://esm.sh/rehype-highlight@7";
559
+ var ESM_REACT_MARKDOWN = "https://esm.sh/react-markdown@9?external=react&target=es2022";
560
+ var ESM_REMARK_GFM = "https://esm.sh/remark-gfm@4?target=es2022";
561
+ var ESM_REHYPE_HIGHLIGHT = "https://esm.sh/rehype-highlight@7?target=es2022";
562
562
  var ESM_MERMAID = "https://esm.sh/mermaid@11";
563
563
  var ReactMarkdown = null;
564
564
  var remarkGfm = null;
@@ -1670,9 +1670,6 @@ import { jsx as jsx10, jsxs as jsxs7 } from "react/jsx-runtime";
1670
1670
  var AIErrorBoundary = class extends React11.Component {
1671
1671
  constructor(props) {
1672
1672
  super(props);
1673
- this.reset = () => {
1674
- this.setState({ hasError: false, error: null });
1675
- };
1676
1673
  this.state = { hasError: false, error: null };
1677
1674
  }
1678
1675
  static getDerivedStateFromError(error) {
@@ -1684,6 +1681,9 @@ var AIErrorBoundary = class extends React11.Component {
1684
1681
  this.props.onError(error, errorInfo);
1685
1682
  }
1686
1683
  }
1684
+ reset = () => {
1685
+ this.setState({ hasError: false, error: null });
1686
+ };
1687
1687
  render() {
1688
1688
  if (this.state.hasError && this.state.error) {
1689
1689
  if (this.props.fallback) {