@ceed/ads 1.2.7-next.1 → 1.2.8-next.1
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/DataTable/index.d.ts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.cjs +2 -2
- package/dist/index.js +4 -3
- package/framer/index.js +28 -28
- package/package.json +15 -12
|
@@ -12,6 +12,7 @@ export { Chip } from "./Chip";
|
|
|
12
12
|
export { Container } from "./Container";
|
|
13
13
|
export { CurrencyInput } from "./CurrencyInput";
|
|
14
14
|
export { DataTable } from "./DataTable";
|
|
15
|
+
export type * from "./DataTable/types";
|
|
15
16
|
export { DatePicker } from "./DatePicker";
|
|
16
17
|
export { DateRangePicker } from "./DateRangePicker";
|
|
17
18
|
export { DialogActions } from "./DialogActions";
|
package/dist/index.cjs
CHANGED
|
@@ -3207,7 +3207,7 @@ var BodyCell = (props) => {
|
|
|
3207
3207
|
);
|
|
3208
3208
|
const EditModeComponent = (0, import_react25.useMemo)(() => {
|
|
3209
3209
|
if (renderEditCell) {
|
|
3210
|
-
return renderEditCell
|
|
3210
|
+
return (0, import_react25.createElement)(renderEditCell, params);
|
|
3211
3211
|
}
|
|
3212
3212
|
return {
|
|
3213
3213
|
date: /* @__PURE__ */ import_react25.default.createElement(
|
|
@@ -3267,7 +3267,7 @@ var BodyCell = (props) => {
|
|
|
3267
3267
|
}, [value, editModeComponentProps, type]);
|
|
3268
3268
|
const ReadModeComponent = (0, import_react25.useMemo)(() => {
|
|
3269
3269
|
if (renderCell) {
|
|
3270
|
-
return renderCell
|
|
3270
|
+
return (0, import_react25.createElement)(renderCell, params);
|
|
3271
3271
|
}
|
|
3272
3272
|
const innerText = value;
|
|
3273
3273
|
const typedComponent = {
|
package/dist/index.js
CHANGED
|
@@ -1988,7 +1988,8 @@ import React23, {
|
|
|
1988
1988
|
useState as useState6,
|
|
1989
1989
|
useId,
|
|
1990
1990
|
forwardRef as forwardRef7,
|
|
1991
|
-
useImperativeHandle as useImperativeHandle2
|
|
1991
|
+
useImperativeHandle as useImperativeHandle2,
|
|
1992
|
+
createElement
|
|
1992
1993
|
} from "react";
|
|
1993
1994
|
import { useVirtualizer as useVirtualizer2 } from "@tanstack/react-virtual";
|
|
1994
1995
|
import { styled as styled12, LinearProgress, Link, useTheme } from "@mui/joy";
|
|
@@ -3155,7 +3156,7 @@ var BodyCell = (props) => {
|
|
|
3155
3156
|
);
|
|
3156
3157
|
const EditModeComponent = useMemo8(() => {
|
|
3157
3158
|
if (renderEditCell) {
|
|
3158
|
-
return renderEditCell
|
|
3159
|
+
return createElement(renderEditCell, params);
|
|
3159
3160
|
}
|
|
3160
3161
|
return {
|
|
3161
3162
|
date: /* @__PURE__ */ React23.createElement(
|
|
@@ -3215,7 +3216,7 @@ var BodyCell = (props) => {
|
|
|
3215
3216
|
}, [value, editModeComponentProps, type]);
|
|
3216
3217
|
const ReadModeComponent = useMemo8(() => {
|
|
3217
3218
|
if (renderCell) {
|
|
3218
|
-
return renderCell
|
|
3219
|
+
return createElement(renderCell, params);
|
|
3219
3220
|
}
|
|
3220
3221
|
const innerText = value;
|
|
3221
3222
|
const typedComponent = {
|