builder-settings-types 0.0.415 → 0.0.416

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