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/builder-settings-types.cjs.js +26 -26
- package/dist/builder-settings-types.es.js +205 -186
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
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