@gem-sdk/core 1.48.0-dev.33 → 1.48.0-dev.37
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/types/index.d.ts +9 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -8075,8 +8075,17 @@ type SettingUIHelpType = {
|
|
|
8075
8075
|
type: SettingMediaType;
|
|
8076
8076
|
};
|
|
8077
8077
|
};
|
|
8078
|
+
type LinkWithSetting = {
|
|
8079
|
+
name: string;
|
|
8080
|
+
state?: string;
|
|
8081
|
+
field?: string;
|
|
8082
|
+
};
|
|
8083
|
+
type ControlConfig = ControlProp<any> & {
|
|
8084
|
+
linkWithSetting?: LinkWithSetting;
|
|
8085
|
+
};
|
|
8078
8086
|
type SettingUIControl = {
|
|
8079
8087
|
id?: string;
|
|
8088
|
+
controlConfig?: ControlConfig;
|
|
8080
8089
|
isCompo?: boolean;
|
|
8081
8090
|
layout?: 'vertical' | 'horizontal';
|
|
8082
8091
|
toggleGroupId?: string;
|