builder-settings-types 0.0.94 → 0.0.95

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/dist/index.d.ts CHANGED
@@ -403,11 +403,13 @@ export declare class SettingGroup<T extends Record<string, Setting<any, any> | S
403
403
  private static hiddenElements;
404
404
  private isHidden;
405
405
  private custom;
406
+ initialValues: Record<string, any>;
406
407
  constructor(groupProps: SettingGroupProps<T>);
407
408
  static hide(): void;
408
409
  static show(): void;
409
410
  setOnChange(onChange: (value: T) => void): SettingGroup<T>;
410
411
  setOnBlur(onBlur: () => void): SettingGroup<T>;
412
+ calculateChanges(oldValues: Record<string, any>, newValues: Record<string, any>): Record<string, any>;
411
413
  hide(): void;
412
414
  show(): void;
413
415
  getValues<K extends keyof T>(childKey?: K): any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "builder-settings-types",
3
3
  "description": "builder settings",
4
- "version": "0.0.94",
4
+ "version": "0.0.95",
5
5
  "type": "module",
6
6
  "main": "dist/builder-settings-types.cjs.js",
7
7
  "module": "dist/builder-settings-types.es.js",