builder-settings-types 0.0.428 → 0.0.429
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.
|
@@ -61,7 +61,7 @@ export declare class SettingGroup<TSettings extends SettingsMap> implements IDra
|
|
|
61
61
|
private originalDefaultValues;
|
|
62
62
|
private nestingLevel;
|
|
63
63
|
private addItemCfg?;
|
|
64
|
-
|
|
64
|
+
deleteItemCfg?: DeleteItemConfig;
|
|
65
65
|
private dataProps?;
|
|
66
66
|
private dataPropsPath;
|
|
67
67
|
private hide;
|
|
@@ -70,6 +70,8 @@ export declare class SettingGroup<TSettings extends SettingsMap> implements IDra
|
|
|
70
70
|
protected isRootNode: boolean;
|
|
71
71
|
$id: string;
|
|
72
72
|
setActiveOnSettingSelection?: boolean;
|
|
73
|
+
onDeleteRequest?: () => void;
|
|
74
|
+
detectChange?: () => void;
|
|
73
75
|
constructor(groupProps: SettingGroupProps<TSettings>);
|
|
74
76
|
private propagateNestingLevel;
|
|
75
77
|
getNestingLevel(): number;
|