@ceed/cds 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
|
@@ -2781,7 +2781,7 @@ function Pagination(props) {
|
|
|
2781
2781
|
onClick: () => handlePageChange(p)
|
|
2782
2782
|
},
|
|
2783
2783
|
p
|
|
2784
|
-
)), /* @__PURE__ */ import_react22.default.createElement(PaginationButton, { active:
|
|
2784
|
+
)), /* @__PURE__ */ import_react22.default.createElement(PaginationButton, { active: "active", size, "aria-current": "page" }, paginationModel.page), afterPages.map((p) => /* @__PURE__ */ import_react22.default.createElement(
|
|
2785
2785
|
PaginationButton,
|
|
2786
2786
|
{
|
|
2787
2787
|
key: p,
|
|
@@ -3595,6 +3595,7 @@ function Component(props, apiRef) {
|
|
|
3595
3595
|
background: backgroundProps = {}
|
|
3596
3596
|
} = {},
|
|
3597
3597
|
stripe,
|
|
3598
|
+
isTotalSelected: ___________,
|
|
3598
3599
|
...innerProps
|
|
3599
3600
|
} = props;
|
|
3600
3601
|
const tableId = (0, import_react24.useId)();
|
|
@@ -4305,6 +4306,7 @@ var Markdown = (props) => {
|
|
|
4305
4306
|
markdownOptions,
|
|
4306
4307
|
boldFontWeight,
|
|
4307
4308
|
content,
|
|
4309
|
+
fallback,
|
|
4308
4310
|
...innerProps
|
|
4309
4311
|
} = props;
|
|
4310
4312
|
if (!rehypeAccent2) {
|
|
@@ -4319,7 +4321,7 @@ var Markdown = (props) => {
|
|
|
4319
4321
|
level: defaultLevel,
|
|
4320
4322
|
...innerProps
|
|
4321
4323
|
},
|
|
4322
|
-
/* @__PURE__ */ import_react31.default.createElement(import_react31.Suspense, { fallback: null }, /* @__PURE__ */ import_react31.default.createElement(
|
|
4324
|
+
/* @__PURE__ */ import_react31.default.createElement(import_react31.Suspense, { fallback: fallback || null }, /* @__PURE__ */ import_react31.default.createElement(
|
|
4323
4325
|
LazyReactMarkdown,
|
|
4324
4326
|
{
|
|
4325
4327
|
...markdownOptions,
|
package/dist/index.js
CHANGED
|
@@ -2738,7 +2738,7 @@ function Pagination(props) {
|
|
|
2738
2738
|
onClick: () => handlePageChange(p)
|
|
2739
2739
|
},
|
|
2740
2740
|
p
|
|
2741
|
-
)), /* @__PURE__ */ React20.createElement(PaginationButton, { active:
|
|
2741
|
+
)), /* @__PURE__ */ React20.createElement(PaginationButton, { active: "active", size, "aria-current": "page" }, paginationModel.page), afterPages.map((p) => /* @__PURE__ */ React20.createElement(
|
|
2742
2742
|
PaginationButton,
|
|
2743
2743
|
{
|
|
2744
2744
|
key: p,
|
|
@@ -3555,6 +3555,7 @@ function Component(props, apiRef) {
|
|
|
3555
3555
|
background: backgroundProps = {}
|
|
3556
3556
|
} = {},
|
|
3557
3557
|
stripe,
|
|
3558
|
+
isTotalSelected: ___________,
|
|
3558
3559
|
...innerProps
|
|
3559
3560
|
} = props;
|
|
3560
3561
|
const tableId = useId();
|
|
@@ -4279,6 +4280,7 @@ var Markdown = (props) => {
|
|
|
4279
4280
|
markdownOptions,
|
|
4280
4281
|
boldFontWeight,
|
|
4281
4282
|
content,
|
|
4283
|
+
fallback,
|
|
4282
4284
|
...innerProps
|
|
4283
4285
|
} = props;
|
|
4284
4286
|
if (!rehypeAccent2) {
|
|
@@ -4293,7 +4295,7 @@ var Markdown = (props) => {
|
|
|
4293
4295
|
level: defaultLevel,
|
|
4294
4296
|
...innerProps
|
|
4295
4297
|
},
|
|
4296
|
-
/* @__PURE__ */ React29.createElement(Suspense, { fallback: null }, /* @__PURE__ */ React29.createElement(
|
|
4298
|
+
/* @__PURE__ */ React29.createElement(Suspense, { fallback: fallback || null }, /* @__PURE__ */ React29.createElement(
|
|
4297
4299
|
LazyReactMarkdown,
|
|
4298
4300
|
{
|
|
4299
4301
|
...markdownOptions,
|