listpage-next 0.0.155 → 0.0.157

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.
@@ -1,12 +1,13 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { useControllableValue } from "ahooks";
3
+ import { toJS } from "mobx";
3
4
  const Render = (props)=>{
4
5
  const { render: Component, record, index, ctx } = props;
5
6
  const [value, onChange] = useControllableValue(props);
6
7
  return /*#__PURE__*/ jsx(Component, {
7
8
  value: value,
8
9
  onChange: onChange,
9
- record: record,
10
+ record: toJS(record),
10
11
  index: index,
11
12
  ctx: ctx
12
13
  });
@@ -108,7 +108,7 @@ const MarkdownBody = styled_components.div`
108
108
  ul,
109
109
  ol {
110
110
  margin: 10px 0 12px;
111
- padding-left: 1.25rem;
111
+ padding-left: 35px;
112
112
  color: #1f2937;
113
113
  line-height: 1.6;
114
114
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "listpage-next",
3
- "version": "0.0.155",
3
+ "version": "0.0.157",
4
4
  "description": "A React component library for creating filter forms with Ant Design",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",