react-toolkits 0.8.29 → 0.8.31

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # react-toolkits
2
2
 
3
+ ## 0.8.31
4
+
5
+ ### Patch Changes
6
+
7
+ - 491415d: fix: type declaration error
8
+
9
+ ## 0.8.30
10
+
11
+ ### Patch Changes
12
+
13
+ - 9dd0737: feat: access extraValues in content render
14
+
3
15
  ## 0.8.29
4
16
 
5
17
  ### Patch Changes
@@ -1,4 +1,4 @@
1
- import { I as O, w as W, e as h, f as x, s as z, m as w, g as V, U as R, h as U, d as G, r as n, c as K } from "./index-Xpdhk9a-.chunk.js";
1
+ import { I as O, w as W, e as h, f as x, s as z, m as w, g as V, U as R, h as U, d as G, r as n, c as K } from "./index-eAJECAOs.chunk.js";
2
2
  import L, { useRef as o, useCallback as N, useState as $ } from "react";
3
3
  const P = O ? (e) => {
4
4
  e();
@@ -1,8 +1,8 @@
1
- import { A as T, _ as N, u as j, a as b, j as e, P as h, H as R, Q as z, b as w } from "./index-Xpdhk9a-.chunk.js";
1
+ import { A as T, _ as N, u as j, a as b, j as e, P as h, H as R, Q as z, b as w } from "./index-eAJECAOs.chunk.js";
2
2
  import { App as U, Row as F, Col as P, Tag as A, Space as E, Card as G, Form as g, Input as L, Select as y } from "antd";
3
3
  import { p as I } from "./immer-BLf7GM7E.chunk.js";
4
4
  import { Link as D } from "react-router-dom";
5
- import { u as Q, a as _, b as k, c as $ } from "./index-9WzBnhKc.chunk.js";
5
+ import { u as Q, a as _, b as k, c as $ } from "./index-GRN5dgvP.chunk.js";
6
6
  import * as M from "react";
7
7
  import "react-dom";
8
8
  var q = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M678.3 642.4c24.2-13 51.9-20.4 81.4-20.4h.1c3 0 4.4-3.6 2.2-5.6a371.67 371.67 0 00-103.7-65.8c-.4-.2-.8-.3-1.2-.5C719.2 505 759.6 431.7 759.6 349c0-137-110.8-248-247.5-248S264.7 212 264.7 349c0 82.7 40.4 156 102.6 201.1-.4.2-.8.3-1.2.5-44.7 18.9-84.8 46-119.3 80.6a373.42 373.42 0 00-80.4 119.5A373.6 373.6 0 00137 888.8a8 8 0 008 8.2h59.9c4.3 0 7.9-3.5 8-7.8 2-77.2 32.9-149.5 87.6-204.3C357 628.2 432.2 597 512.2 597c56.7 0 111.1 15.7 158 45.1a8.1 8.1 0 008.1.3zM512.2 521c-45.8 0-88.9-17.9-121.4-50.4A171.2 171.2 0 01340.5 349c0-45.9 17.9-89.1 50.3-121.6S466.3 177 512.2 177s88.9 17.9 121.4 50.4A171.2 171.2 0 01683.9 349c0 45.9-17.9 89.1-50.3 121.6C601.1 503.1 558 521 512.2 521zM880 759h-84v-84c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v84h-84c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h84v84c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8v-84h84c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8z" } }] }, name: "user-add", theme: "outlined" };
@@ -5051,23 +5051,23 @@ function uf(e) {
5051
5051
  const { content: t, form: r, formProps: n, onConfirm: a, ...s } = e, c = me();
5052
5052
  let [o] = ge.useForm();
5053
5053
  o = r || o;
5054
- const { show: l, hide: f, modal: p } = Eu({
5054
+ const l = typeof t == "function", { show: f, hide: p, modal: u } = Eu({
5055
5055
  ...s,
5056
- content: /* @__PURE__ */ d.jsx(ge, { ...n, form: o, children: t }),
5056
+ content: /* @__PURE__ */ d.jsx(ge, { ...n, form: o, children: l ? t(c.current) : t }),
5057
5057
  async onConfirm() {
5058
- const A = await o.validateFields();
5059
- await (a == null ? void 0 : a(A, c.current)), f();
5058
+ const h = await o.validateFields();
5059
+ await (a == null ? void 0 : a(h, c.current)), p();
5060
5060
  },
5061
5061
  afterClose() {
5062
5062
  o.resetFields();
5063
5063
  }
5064
5064
  });
5065
5065
  return {
5066
- show: (A = {}) => {
5067
- c.current = A.extraValues, A.initialValues && o.setFieldsValue(A.initialValues), l();
5066
+ show: (h = {}) => {
5067
+ c.current = h.extraValues, h.initialValues && o.setFieldsValue(h.initialValues), f();
5068
5068
  },
5069
- hide: f,
5070
- modal: p
5069
+ hide: p,
5070
+ modal: u
5071
5071
  };
5072
5072
  }
5073
5073
  const Ou = () => {
@@ -5503,7 +5503,7 @@ const Mu = /* @__PURE__ */ ln(Du), { Option: Ha } = sn, { Paragraph: Ya } = cn,
5503
5503
  }, zu = Lu, Uu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5504
5504
  __proto__: null,
5505
5505
  default: zu
5506
- }, Symbol.toStringTag, { value: "Module" })), ku = ot(() => import("./index-8-f8Yxwa.chunk.js")), $u = ot(() => import("./index-CsWVN4Lk.chunk.js")), Vu = ot(() => import("./index-LyPLCTfj.chunk.js")), Wu = () => /* @__PURE__ */ d.jsxs(ts, { children: [
5506
+ }, Symbol.toStringTag, { value: "Module" })), ku = ot(() => import("./index-Qx0rYnE_.chunk.js")), $u = ot(() => import("./index-j4UM7RuM.chunk.js")), Vu = ot(() => import("./index-sjmxlK-Z.chunk.js")), Wu = () => /* @__PURE__ */ d.jsxs(ts, { children: [
5507
5507
  /* @__PURE__ */ d.jsx(He, { index: !0, element: /* @__PURE__ */ d.jsx(Ir, { to: "user" }) }),
5508
5508
  /* @__PURE__ */ d.jsx(He, { path: "user", element: /* @__PURE__ */ d.jsx(ku, {}) }),
5509
5509
  /* @__PURE__ */ d.jsx(He, { path: "role", element: /* @__PURE__ */ d.jsx($u, {}) }),
@@ -1,9 +1,9 @@
1
- import { A as O, _ as T, c as N, d as P, u as y, a as b, j as e, P as j, r as _, H as z, Q as $, b as S } from "./index-Xpdhk9a-.chunk.js";
1
+ import { A as O, _ as T, c as N, d as P, u as y, a as b, j as e, P as j, r as _, H as z, Q as $, b as S } from "./index-eAJECAOs.chunk.js";
2
2
  import { App as f, Space as F, Card as G, Form as g, Input as L } from "antd";
3
3
  import { p as A } from "./immer-BLf7GM7E.chunk.js";
4
4
  import { Link as B } from "react-router-dom";
5
- import { P as k } from "./index-zOTSHOg9.chunk.js";
6
- import { d as E, e as q, f as D } from "./index-9WzBnhKc.chunk.js";
5
+ import { P as k } from "./index-sO_Y6yCA.chunk.js";
6
+ import { d as E, e as q, f as D } from "./index-GRN5dgvP.chunk.js";
7
7
  import * as v from "react";
8
8
  import "react-dom";
9
9
  var Q = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M892 772h-80v-80c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v80h-80c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h80v80c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-80h80c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM373.5 498.4c-.9-8.7-1.4-17.5-1.4-26.4 0-15.9 1.5-31.4 4.3-46.5.7-3.6-1.2-7.3-4.5-8.8-13.6-6.1-26.1-14.5-36.9-25.1a127.54 127.54 0 01-38.7-95.4c.9-32.1 13.8-62.6 36.3-85.6 24.7-25.3 57.9-39.1 93.2-38.7 31.9.3 62.7 12.6 86 34.4 7.9 7.4 14.7 15.6 20.4 24.4 2 3.1 5.9 4.4 9.3 3.2 17.6-6.1 36.2-10.4 55.3-12.4 5.6-.6 8.8-6.6 6.3-11.6-32.5-64.3-98.9-108.7-175.7-109.9-110.8-1.7-203.2 89.2-203.2 200 0 62.8 28.9 118.8 74.2 155.5-31.8 14.7-61.1 35-86.5 60.4-54.8 54.7-85.8 126.9-87.8 204a8 8 0 008 8.2h56.1c4.3 0 7.9-3.4 8-7.7 1.9-58 25.4-112.3 66.7-153.5 29.4-29.4 65.4-49.8 104.7-59.7 3.8-1.1 6.4-4.8 5.9-8.8zM824 472c0-109.4-87.9-198.3-196.9-200C516.3 270.3 424 361.2 424 472c0 62.8 29 118.8 74.2 155.5a300.95 300.95 0 00-86.4 60.4C357 742.6 326 814.8 324 891.8a8 8 0 008 8.2h56c4.3 0 7.9-3.4 8-7.7 1.9-58 25.4-112.3 66.7-153.5C505.8 695.7 563 672 624 672c110.4 0 200-89.5 200-200zm-109.5 90.5C690.3 586.7 658.2 600 624 600s-66.3-13.3-90.5-37.5a127.26 127.26 0 01-37.5-91.8c.3-32.8 13.4-64.5 36.3-88 24-24.6 56.1-38.3 90.4-38.7 33.9-.3 66.8 12.9 91 36.6 24.8 24.3 38.4 56.8 38.4 91.4-.1 34.2-13.4 66.3-37.6 90.5z" } }] }, name: "usergroup-add", theme: "outlined" };
@@ -1,6 +1,6 @@
1
- import { a as S, j as e, d as $ } from "./index-Xpdhk9a-.chunk.js";
1
+ import { a as S, j as e, d as $ } from "./index-eAJECAOs.chunk.js";
2
2
  import { Collapse as D, Checkbox as k, Row as G, Col as _, Skeleton as T, Typography as A, Divider as w, Card as K, Space as M, Select as E, Button as N, Empty as O } from "antd";
3
- import { h as R, i as B } from "./index-9WzBnhKc.chunk.js";
3
+ import { h as R, i as B } from "./index-GRN5dgvP.chunk.js";
4
4
  import { useState as P, useCallback as F, useEffect as b } from "react";
5
5
  const q = (x) => {
6
6
  const { permissions: l, readonly: t, expand: d, value: a, onChange: r } = x, [m, p] = P([]), [g, u] = P({}), [c, f] = P(a ?? []), C = S(), h = F((s) => {
@@ -1,8 +1,8 @@
1
- import { a as t, j as i } from "./index-Xpdhk9a-.chunk.js";
1
+ import { a as t, j as i } from "./index-eAJECAOs.chunk.js";
2
2
  import { Breadcrumb as m, Card as n, Skeleton as a, Descriptions as l } from "antd";
3
3
  import { useParams as c, Link as x } from "react-router-dom";
4
- import { P as j } from "./index-zOTSHOg9.chunk.js";
5
- import { g as p } from "./index-9WzBnhKc.chunk.js";
4
+ import { P as j } from "./index-sO_Y6yCA.chunk.js";
5
+ import { g as p } from "./index-GRN5dgvP.chunk.js";
6
6
  import "react";
7
7
  import "react-dom";
8
8
  const k = () => {
package/lib/index.d.ts CHANGED
@@ -360,10 +360,11 @@ export declare function useFormModal<Values, ExtraValues = any>(props: UseFormMo
360
360
  modal: JSX_2.Element;
361
361
  };
362
362
 
363
- export declare interface UseFormModalProps<Values, ExtraValues> extends Omit<UseModalProps, 'afterClose' | 'onConfirm'> {
363
+ export declare interface UseFormModalProps<Values, ExtraValues> extends Omit<UseModalProps, 'afterClose' | 'onConfirm' | 'content'> {
364
364
  formProps?: Omit<FormProps, 'form'>;
365
365
  form?: FormInstance<Values>;
366
- onConfirm?: (values: Values, extraValues?: ExtraValues) => void | Promise<void>;
366
+ content?: ReactNode | ((extraValues: ExtraValues) => ReactNode);
367
+ onConfirm?: (values: Values, extraValues: ExtraValues) => void | Promise<void>;
367
368
  }
368
369
 
369
370
  export declare const useGameStore: UseBoundStore<Omit<StoreApi<GameState>, "persist"> & {
package/lib/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { C as r, D as n, F as u, G as m, H as d, i as l, L as p, N as L, k as S, O as g, l as y, P, n as x, Q as c, o as F, R as G, p as T, S as h, q as k, t as q, v as Q, r as R, b as v, x as B, y as C, c as M, z as N, u as f, B as w, E as D, d as E, a as H, J as I, K as O } from "./index-Xpdhk9a-.chunk.js";
1
+ import { C as r, D as n, F as u, G as m, H as d, i as l, L as p, N as L, k as S, O as g, l as y, P, n as x, Q as c, o as F, R as G, p as T, S as h, q as k, t as q, v as Q, r as R, b as v, x as B, y as C, c as M, z as N, u as f, B as w, E as D, d as E, a as H, J as I, K as O } from "./index-eAJECAOs.chunk.js";
2
2
  import "react";
3
3
  import "antd";
4
4
  import "react-dom";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-toolkits",
3
- "version": "0.8.29",
3
+ "version": "0.8.31",
4
4
  "packageManager": "^pnpm@8.7.5",
5
5
  "sideEffects": [
6
6
  "**/*.css"
@@ -69,9 +69,9 @@
69
69
  "typescript": "^5.3.3",
70
70
  "vite": "^5.0.10",
71
71
  "vite-plugin-dts": "^3.6.4",
72
+ "@flow97/eslint-config-mono": "0.0.4",
72
73
  "tailwind-config": "0.1.1",
73
- "tsconfig": "0.0.5",
74
- "@flow97/eslint-config-mono": "0.0.4"
74
+ "tsconfig": "0.0.5"
75
75
  },
76
76
  "peerDependencies": {
77
77
  "antd": "^5.12.2",