lkd-web-kit 0.10.8 → 0.10.10
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.
|
@@ -6,7 +6,7 @@ clsx = require_runtime.__toESM(clsx, 1);
|
|
|
6
6
|
//#region src/components/TableWrapper/TableWrapper.tsx
|
|
7
7
|
var TableWrapper = ({ className, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)(_mantine_core.Paper, {
|
|
8
8
|
component: "section",
|
|
9
|
-
className: (0, clsx.default)("flex flex-col
|
|
9
|
+
className: (0, clsx.default)("flex flex-col", className),
|
|
10
10
|
...props
|
|
11
11
|
});
|
|
12
12
|
//#endregion
|
|
@@ -4,7 +4,7 @@ import clsx from "clsx";
|
|
|
4
4
|
//#region src/components/TableWrapper/TableWrapper.tsx
|
|
5
5
|
var TableWrapper = ({ className, ...props }) => /* @__PURE__ */ jsx(Paper, {
|
|
6
6
|
component: "section",
|
|
7
|
-
className: clsx("flex flex-col
|
|
7
|
+
className: clsx("flex flex-col", className),
|
|
8
8
|
...props
|
|
9
9
|
});
|
|
10
10
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: lkd-rhf-
|
|
2
|
+
name: lkd-rhf-forms
|
|
3
3
|
description: Crear y revisar formularios, filtros, campos controlados, integraciones con React Hook Form, validaciones Zod, reglas superRefine, botones de submit y patrones Form* de lkd-web-kit. Usar cuando Codex trabaje en interfaces de formularios, filtros, wrappers de campos, schemas, valores iniciales, mapeo de payloads, flujos de submit o comportamiento de validación en proyectos que usan React Hook Form, Zod y lkd-web-kit.
|
|
4
4
|
---
|
|
5
5
|
|