@gem-sdk/core 1.48.0-dev.59 → 1.48.0-dev.60
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 +7 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -8157,6 +8157,7 @@ type LinkWithSetting = {
|
|
|
8157
8157
|
type ControlConfig = ControlProp<any> & {
|
|
8158
8158
|
linkWithSetting?: LinkWithSetting;
|
|
8159
8159
|
};
|
|
8160
|
+
type Plan = 'trial' | 'build' | 'starter' | 'optimize' | 'advanced' | 'trial2022' | 'enterprise' | 'development' | 'professional';
|
|
8160
8161
|
type SettingUIControl = {
|
|
8161
8162
|
id?: string;
|
|
8162
8163
|
controlConfig?: ControlConfig;
|
|
@@ -8170,7 +8171,13 @@ type SettingUIControl = {
|
|
|
8170
8171
|
hideLabel?: boolean;
|
|
8171
8172
|
hideOnDevices?: Record<NameDevices$1, boolean>;
|
|
8172
8173
|
fullWidth?: boolean;
|
|
8174
|
+
onlyShowInTags?: string[];
|
|
8175
|
+
target?: 'tab';
|
|
8173
8176
|
disableMessage?: string;
|
|
8177
|
+
nearestSupportedPlan?: Plan;
|
|
8178
|
+
lockedOnPlans?: Plan[];
|
|
8179
|
+
labelVariant?: 'primary' | 'secondary';
|
|
8180
|
+
labelInsideControl?: boolean;
|
|
8174
8181
|
};
|
|
8175
8182
|
setting?: {
|
|
8176
8183
|
id: string;
|