@ram_28/kf-ai-sdk 1.0.15 → 1.0.16

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,2 +1,3 @@
1
+ export type { FieldErrors, UseFormRegister, FormState, Path, PathValue, } from "react-hook-form";
1
2
  export type { UseFormOptionsType, UseFormReturnType, HandleSubmitType, FormOperationType, FormModeType, InteractionModeType, FormFieldConfigType, FormSchemaConfigType, FormFieldTypeType, SelectOptionType, FieldPermissionType, FieldRuleIdsType, FieldValidationResultType, SubmissionResultType, BDOSchemaType, BDOFieldDefinitionType, SchemaValidationRuleType, ComputedFieldFormulaType, DefaultValueExpressionType, ReferenceFieldConfigType, FieldOptionsConfigType, BusinessObjectRulesType, RolePermissionType, ExpressionTreeType, ExpressionContextType, RuleTypeType, } from "./components/hooks/useForm/types";
2
3
  //# sourceMappingURL=form.types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"form.types.d.ts","sourceRoot":"","sources":["../sdk/form.types.ts"],"names":[],"mappings":"AAKA,YAAY,EAEV,kBAAkB,EAClB,iBAAiB,EACjB,gBAAgB,EAGhB,iBAAiB,EACjB,YAAY,EACZ,mBAAmB,EAGnB,mBAAmB,EACnB,oBAAoB,EACpB,iBAAiB,EACjB,gBAAgB,EAChB,mBAAmB,EACnB,gBAAgB,EAGhB,yBAAyB,EACzB,oBAAoB,EAGpB,aAAa,EACb,sBAAsB,EACtB,wBAAwB,EACxB,wBAAwB,EACxB,0BAA0B,EAC1B,wBAAwB,EACxB,sBAAsB,EACtB,uBAAuB,EACvB,kBAAkB,EAGlB,kBAAkB,EAClB,qBAAqB,EAGrB,YAAY,GACb,MAAM,kCAAkC,CAAC"}
1
+ {"version":3,"file":"form.types.d.ts","sourceRoot":"","sources":["../sdk/form.types.ts"],"names":[],"mappings":"AAMA,YAAY,EACV,WAAW,EACX,eAAe,EACf,SAAS,EACT,IAAI,EACJ,SAAS,GACV,MAAM,iBAAiB,CAAC;AAEzB,YAAY,EAEV,kBAAkB,EAClB,iBAAiB,EACjB,gBAAgB,EAGhB,iBAAiB,EACjB,YAAY,EACZ,mBAAmB,EAGnB,mBAAmB,EACnB,oBAAoB,EACpB,iBAAiB,EACjB,gBAAgB,EAChB,mBAAmB,EACnB,gBAAgB,EAGhB,yBAAyB,EACzB,oBAAoB,EAGpB,aAAa,EACb,sBAAsB,EACtB,wBAAwB,EACxB,wBAAwB,EACxB,0BAA0B,EAC1B,wBAAwB,EACxB,sBAAsB,EACtB,uBAAuB,EACvB,kBAAkB,EAGlB,kBAAkB,EAClB,qBAAqB,EAGrB,YAAY,GACb,MAAM,kCAAkC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ram_28/kf-ai-sdk",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "Type-safe, AI-driven SDK for building modern web applications with role-based access control",
5
5
  "author": "Ramprasad",
6
6
  "license": "MIT",
package/sdk/form.types.ts CHANGED
@@ -3,6 +3,15 @@
3
3
  // @ram_28/kf-ai-sdk/form/types
4
4
  // ============================================================
5
5
 
6
+ // Re-export commonly used types from react-hook-form
7
+ export type {
8
+ FieldErrors,
9
+ UseFormRegister,
10
+ FormState,
11
+ Path,
12
+ PathValue,
13
+ } from "react-hook-form";
14
+
6
15
  export type {
7
16
  // Core hook types
8
17
  UseFormOptionsType,