@ceed/ads 1.2.2 → 1.2.3-next.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.
- package/dist/components/Markdown/Markdown.d.ts +1 -0
- package/dist/index.cjs +4 -2
- package/dist/index.js +4 -2
- package/framer/index.js +20 -20
- package/package.json +3 -2
|
@@ -27,6 +27,7 @@ declare const Markdown: {
|
|
|
27
27
|
defaultLinkAction?: "_self" | "_blank" | "_parent" | "_top" | "_unfencedTop" | undefined;
|
|
28
28
|
markdownOptions?: import("react-markdown").Options | undefined;
|
|
29
29
|
boldFontWeight?: "sm" | "md" | "lg" | "xl" | undefined;
|
|
30
|
+
fallback?: React.ReactNode;
|
|
30
31
|
}): React.JSX.Element | null;
|
|
31
32
|
displayName: string;
|
|
32
33
|
};
|
package/dist/index.cjs
CHANGED
|
@@ -2815,7 +2815,7 @@ function Pagination(props) {
|
|
|
2815
2815
|
onClick: () => handlePageChange(p)
|
|
2816
2816
|
},
|
|
2817
2817
|
p
|
|
2818
|
-
)), /* @__PURE__ */ import_react23.default.createElement(PaginationButton, { active: true, size, "aria-current": "page" }, paginationModel.page), afterPages.map((p) => /* @__PURE__ */ import_react23.default.createElement(
|
|
2818
|
+
)), /* @__PURE__ */ import_react23.default.createElement(PaginationButton, { active: "true", size, "aria-current": "page" }, paginationModel.page), afterPages.map((p) => /* @__PURE__ */ import_react23.default.createElement(
|
|
2819
2819
|
PaginationButton,
|
|
2820
2820
|
{
|
|
2821
2821
|
key: p,
|
|
@@ -3629,6 +3629,7 @@ function Component(props, apiRef) {
|
|
|
3629
3629
|
background: backgroundProps = {}
|
|
3630
3630
|
} = {},
|
|
3631
3631
|
stripe,
|
|
3632
|
+
isTotalSelected: ___________,
|
|
3632
3633
|
...innerProps
|
|
3633
3634
|
} = props;
|
|
3634
3635
|
const tableId = (0, import_react25.useId)();
|
|
@@ -4747,6 +4748,7 @@ var Markdown = (props) => {
|
|
|
4747
4748
|
markdownOptions,
|
|
4748
4749
|
boldFontWeight,
|
|
4749
4750
|
content,
|
|
4751
|
+
fallback,
|
|
4750
4752
|
...innerProps
|
|
4751
4753
|
} = props;
|
|
4752
4754
|
if (!rehypeAccent2) {
|
|
@@ -4761,7 +4763,7 @@ var Markdown = (props) => {
|
|
|
4761
4763
|
level: defaultLevel,
|
|
4762
4764
|
...innerProps
|
|
4763
4765
|
},
|
|
4764
|
-
/* @__PURE__ */ import_react32.default.createElement(import_react32.Suspense, { fallback: null }, /* @__PURE__ */ import_react32.default.createElement(
|
|
4766
|
+
/* @__PURE__ */ import_react32.default.createElement(import_react32.Suspense, { fallback: fallback || null }, /* @__PURE__ */ import_react32.default.createElement(
|
|
4765
4767
|
LazyReactMarkdown,
|
|
4766
4768
|
{
|
|
4767
4769
|
...markdownOptions,
|
package/dist/index.js
CHANGED
|
@@ -2760,7 +2760,7 @@ function Pagination(props) {
|
|
|
2760
2760
|
onClick: () => handlePageChange(p)
|
|
2761
2761
|
},
|
|
2762
2762
|
p
|
|
2763
|
-
)), /* @__PURE__ */ React21.createElement(PaginationButton, { active: true, size, "aria-current": "page" }, paginationModel.page), afterPages.map((p) => /* @__PURE__ */ React21.createElement(
|
|
2763
|
+
)), /* @__PURE__ */ React21.createElement(PaginationButton, { active: "true", size, "aria-current": "page" }, paginationModel.page), afterPages.map((p) => /* @__PURE__ */ React21.createElement(
|
|
2764
2764
|
PaginationButton,
|
|
2765
2765
|
{
|
|
2766
2766
|
key: p,
|
|
@@ -3577,6 +3577,7 @@ function Component(props, apiRef) {
|
|
|
3577
3577
|
background: backgroundProps = {}
|
|
3578
3578
|
} = {},
|
|
3579
3579
|
stripe,
|
|
3580
|
+
isTotalSelected: ___________,
|
|
3580
3581
|
...innerProps
|
|
3581
3582
|
} = props;
|
|
3582
3583
|
const tableId = useId();
|
|
@@ -4715,6 +4716,7 @@ var Markdown = (props) => {
|
|
|
4715
4716
|
markdownOptions,
|
|
4716
4717
|
boldFontWeight,
|
|
4717
4718
|
content,
|
|
4719
|
+
fallback,
|
|
4718
4720
|
...innerProps
|
|
4719
4721
|
} = props;
|
|
4720
4722
|
if (!rehypeAccent2) {
|
|
@@ -4729,7 +4731,7 @@ var Markdown = (props) => {
|
|
|
4729
4731
|
level: defaultLevel,
|
|
4730
4732
|
...innerProps
|
|
4731
4733
|
},
|
|
4732
|
-
/* @__PURE__ */ React30.createElement(Suspense, { fallback: null }, /* @__PURE__ */ React30.createElement(
|
|
4734
|
+
/* @__PURE__ */ React30.createElement(Suspense, { fallback: fallback || null }, /* @__PURE__ */ React30.createElement(
|
|
4733
4735
|
LazyReactMarkdown,
|
|
4734
4736
|
{
|
|
4735
4737
|
...markdownOptions,
|