builder-settings-types 0.0.415 → 0.0.417

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.
@@ -66,6 +66,8 @@ export declare class SettingGroup<TSettings extends SettingsMap> implements IDra
66
66
  private hide;
67
67
  private isSettingValue;
68
68
  private suppressOnChange;
69
+ protected isRootNode: boolean;
70
+ $id: string;
69
71
  constructor(groupProps: SettingGroupProps<TSettings>);
70
72
  private propagateNestingLevel;
71
73
  getNestingLevel(): number;
@@ -113,6 +115,9 @@ export declare class SettingGroup<TSettings extends SettingsMap> implements IDra
113
115
  getJson(): string;
114
116
  setJson(jsonString: string): void;
115
117
  }
118
+ export declare class RootSettingGroup<TSettings extends SettingsMap> extends SettingGroup<TSettings> implements IDrawable, IChangable<ExtractSettingValues<TSettings>> {
119
+ constructor(groupProps: SettingGroupProps<TSettings>);
120
+ }
116
121
  export declare function createTabSettingGroup<TSettings extends SettingsMap = SettingsMap>(groupProps: SettingGroupProps<TSettings>): TabSettingGroup<TSettings>;
117
122
  export declare class TabSettingGroup<TSettings extends SettingsMap = SettingsMap> extends SettingGroup<TSettings> {
118
123
  private activeTabId;