builder-settings-types 0.0.414 → 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.
- package/dist/base/settings-group/settingsGroup.d.ts +4 -0
- package/dist/builder-settings-types.cjs.js +71 -71
- package/dist/builder-settings-types.es.js +191 -153
- package/dist/index.css +1 -1
- package/dist/settings/multi-language-settings/ui/LanguagePopup.d.ts +4 -0
- package/dist/settings/multi-language-settings/utils/dom-helpers.d.ts +1 -0
- package/dist/settings/multi-language-settings/utils/index.d.ts +1 -0
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -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;
|