@ceed/ads 1.2.3-next.2 → 1.2.3
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 +198 -192
- package/dist/index.js +37 -31
- package/framer/index.js +24 -24
- package/package.json +2 -3
package/dist/index.js
CHANGED
|
@@ -145,7 +145,7 @@ import {
|
|
|
145
145
|
StepButton,
|
|
146
146
|
stepButtonClasses,
|
|
147
147
|
stepperClasses,
|
|
148
|
-
Skeleton,
|
|
148
|
+
Skeleton as Skeleton2,
|
|
149
149
|
skeletonClasses
|
|
150
150
|
} from "@mui/joy";
|
|
151
151
|
|
|
@@ -2760,7 +2760,7 @@ function Pagination(props) {
|
|
|
2760
2760
|
onClick: () => handlePageChange(p)
|
|
2761
2761
|
},
|
|
2762
2762
|
p
|
|
2763
|
-
)), /* @__PURE__ */ React21.createElement(PaginationButton, { active:
|
|
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,7 +3577,6 @@ function Component(props, apiRef) {
|
|
|
3577
3577
|
background: backgroundProps = {}
|
|
3578
3578
|
} = {},
|
|
3579
3579
|
stripe,
|
|
3580
|
-
isTotalSelected: ___________,
|
|
3581
3580
|
...innerProps
|
|
3582
3581
|
} = props;
|
|
3583
3582
|
const tableId = useId();
|
|
@@ -4696,6 +4695,7 @@ import { Grid } from "@mui/joy";
|
|
|
4696
4695
|
|
|
4697
4696
|
// src/components/Markdown/Markdown.tsx
|
|
4698
4697
|
import React30, { lazy, Suspense, useEffect as useEffect8, useState as useState9 } from "react";
|
|
4698
|
+
import { Skeleton } from "@mui/joy";
|
|
4699
4699
|
import { Link as Link2 } from "@mui/joy";
|
|
4700
4700
|
var LazyReactMarkdown = lazy(() => import("react-markdown"));
|
|
4701
4701
|
var Markdown = (props) => {
|
|
@@ -4731,35 +4731,41 @@ var Markdown = (props) => {
|
|
|
4731
4731
|
level: defaultLevel,
|
|
4732
4732
|
...innerProps
|
|
4733
4733
|
},
|
|
4734
|
-
/* @__PURE__ */ React30.createElement(
|
|
4735
|
-
|
|
4734
|
+
/* @__PURE__ */ React30.createElement(
|
|
4735
|
+
Suspense,
|
|
4736
4736
|
{
|
|
4737
|
-
|
|
4738
|
-
|
|
4739
|
-
|
|
4740
|
-
|
|
4741
|
-
|
|
4742
|
-
|
|
4743
|
-
|
|
4744
|
-
|
|
4745
|
-
|
|
4746
|
-
Typography,
|
|
4747
|
-
{
|
|
4748
|
-
|
|
4749
|
-
|
|
4750
|
-
|
|
4751
|
-
|
|
4752
|
-
|
|
4753
|
-
|
|
4754
|
-
|
|
4755
|
-
|
|
4756
|
-
|
|
4757
|
-
|
|
4758
|
-
|
|
4759
|
-
|
|
4737
|
+
fallback: fallback || /* @__PURE__ */ React30.createElement(Typography, null, /* @__PURE__ */ React30.createElement(Skeleton, null, content || ""))
|
|
4738
|
+
},
|
|
4739
|
+
/* @__PURE__ */ React30.createElement(
|
|
4740
|
+
LazyReactMarkdown,
|
|
4741
|
+
{
|
|
4742
|
+
...markdownOptions,
|
|
4743
|
+
children: content,
|
|
4744
|
+
rehypePlugins: [[rehypeAccent2, { accentColor }]],
|
|
4745
|
+
components: {
|
|
4746
|
+
h1: ({ children }) => /* @__PURE__ */ React30.createElement(Typography, { color, textColor, level: "h1" }, children),
|
|
4747
|
+
h2: ({ children }) => /* @__PURE__ */ React30.createElement(Typography, { color, textColor, level: "h2" }, children),
|
|
4748
|
+
h3: ({ children }) => /* @__PURE__ */ React30.createElement(Typography, { color, textColor, level: "h3" }, children),
|
|
4749
|
+
h4: ({ children }) => /* @__PURE__ */ React30.createElement(Typography, { color, textColor, level: "h4" }, children),
|
|
4750
|
+
p: ({ children, node }) => /* @__PURE__ */ React30.createElement(
|
|
4751
|
+
Typography,
|
|
4752
|
+
{
|
|
4753
|
+
color,
|
|
4754
|
+
textColor,
|
|
4755
|
+
level: defaultLevel,
|
|
4756
|
+
...node?.properties
|
|
4757
|
+
},
|
|
4758
|
+
children
|
|
4759
|
+
),
|
|
4760
|
+
a: ({ children, href }) => /* @__PURE__ */ React30.createElement(Link2, { href, target: defaultLinkAction }, children),
|
|
4761
|
+
hr: () => /* @__PURE__ */ React30.createElement(Divider, null),
|
|
4762
|
+
b: ({ children }) => /* @__PURE__ */ React30.createElement(Typography, { fontWeight: boldFontWeight }, children),
|
|
4763
|
+
strong: ({ children }) => /* @__PURE__ */ React30.createElement(Typography, { fontWeight: boldFontWeight }, children),
|
|
4764
|
+
...markdownOptions?.components
|
|
4765
|
+
}
|
|
4760
4766
|
}
|
|
4761
|
-
|
|
4762
|
-
)
|
|
4767
|
+
)
|
|
4768
|
+
)
|
|
4763
4769
|
);
|
|
4764
4770
|
};
|
|
4765
4771
|
Markdown.displayName = "Markdown";
|
|
@@ -6245,7 +6251,7 @@ export {
|
|
|
6245
6251
|
RadioList,
|
|
6246
6252
|
Select,
|
|
6247
6253
|
Sheet,
|
|
6248
|
-
Skeleton,
|
|
6254
|
+
Skeleton2 as Skeleton,
|
|
6249
6255
|
Slider,
|
|
6250
6256
|
Stack,
|
|
6251
6257
|
Step,
|