gomtm 0.0.315 → 0.0.316

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.
@@ -0,0 +1,2 @@
1
+ import { PropsWithChildren } from "react";
2
+ export declare const ListViewRender: (props: PropsWithChildren) => import("react").JSX.Element;
@@ -0,0 +1,10 @@
1
+ "use client";
2
+ import { Fragment, jsx } from "react/jsx-runtime";
3
+ import { CommonListView } from "./ListViewProvider";
4
+ const ListViewRender = (props) => {
5
+ const { children } = props;
6
+ return /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(CommonListView, {}) });
7
+ };
8
+ export {
9
+ ListViewRender
10
+ };
@@ -33,6 +33,7 @@ import { jsx } from "react/jsx-runtime";
33
33
  import { PrefetchConnectInfiniteQuery } from "../../components/SSR";
34
34
  import { siteList } from "../../gomtmpb/mtm/sppb/mtm-MtmService_connectquery";
35
35
  import { ListViewStoreProvider } from "./list-store";
36
+ import { ListViewRender } from "./ListViewRender";
36
37
  function MtListView(props) {
37
38
  const _a = props, { children } = _a, etc = __objRest(_a, ["children"]);
38
39
  return /* @__PURE__ */ jsx(
@@ -48,7 +49,7 @@ function MtListView(props) {
48
49
  svc: siteList.service.typeName,
49
50
  method: siteList.name,
50
51
  input: etc.paramsList,
51
- children
52
+ children: /* @__PURE__ */ jsx(ListViewRender, { children })
52
53
  }
53
54
  )
54
55
  })