@react-typed-forms/schemas 14.0.4 → 14.1.0

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/lib/util.d.ts CHANGED
@@ -243,4 +243,5 @@ export declare function isControlDisplayOnly(def: ControlDefinition): boolean;
243
243
  * @returns {ControlActionHandler} - The combined action handler.
244
244
  */
245
245
  export declare function actionHandlers(...handlers: (ControlActionHandler | undefined)[]): ControlActionHandler;
246
- export declare function getDiffObject(dataNode: SchemaDataNode, idField?: string | null): any;
246
+ export declare function getDiffObject(dataNode: SchemaDataNode, force?: boolean): any;
247
+ export declare function collectDifferences(dataNode: SchemaDataNode, value: any): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-typed-forms/schemas",
3
- "version": "14.0.4",
3
+ "version": "14.1.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "lib/index.cjs",
package/tsconfig.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "moduleResolution": "node",
14
14
  "resolveJsonModule": true,
15
15
  "isolatedModules": true,
16
- "jsx": "preserve",
16
+ "jsx": "react",
17
17
  "outDir": "lib"
18
18
  },
19
19
  "include": ["src/**/*.ts", "src/**/*.tsx"],