@gem-sdk/core 1.53.0-dev.185 → 1.53.0-dev.186

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.
@@ -104,7 +104,9 @@ function composeAdvanceStyle(data, tag, pageType) {
104
104
  if (attr === 'boxShadow') {
105
105
  const listElementShadowV2 = [
106
106
  'Row',
107
- 'Section'
107
+ 'Section',
108
+ 'Text',
109
+ 'Heading'
108
110
  ];
109
111
  let hasBoxShadowV2 = hasBoxShadow;
110
112
  if (listElementShadowV2.includes(tag || '')) {
@@ -102,7 +102,9 @@ function composeAdvanceStyle(data, tag, pageType) {
102
102
  if (attr === 'boxShadow') {
103
103
  const listElementShadowV2 = [
104
104
  'Row',
105
- 'Section'
105
+ 'Section',
106
+ 'Text',
107
+ 'Heading'
106
108
  ];
107
109
  let hasBoxShadowV2 = hasBoxShadow;
108
110
  if (listElementShadowV2.includes(tag || '')) {
@@ -8193,6 +8193,7 @@ type ControlConfig = ControlProp<any> & {
8193
8193
  linkWithSetting?: LinkWithSetting;
8194
8194
  };
8195
8195
  type Plan = 'trial' | 'build' | 'starter' | 'optimize' | 'advanced' | 'trial2022' | 'enterprise' | 'development' | 'professional';
8196
+ type LabelVariant = 'primary' | 'secondary' | 'bold';
8196
8197
  type SettingUIControl = {
8197
8198
  id?: string;
8198
8199
  controlConfig?: ControlConfig;
@@ -8203,16 +8204,20 @@ type SettingUIControl = {
8203
8204
  conditionDisplay?: string;
8204
8205
  conditionEnable?: string;
8205
8206
  options?: {
8206
- hideLabel?: boolean;
8207
- hideOnDevices?: Record<NameDevices$1, boolean>;
8208
8207
  fullWidth?: boolean;
8209
8208
  onlyShowInTags?: string[];
8210
8209
  target?: 'tab';
8211
8210
  disableMessage?: string;
8212
8211
  nearestSupportedPlan?: Plan;
8213
8212
  lockedOnPlans?: Plan[];
8214
- labelVariant?: 'primary' | 'secondary';
8213
+ labelVariant?: LabelVariant;
8215
8214
  labelInsideControl?: boolean;
8215
+ updateFields?: [
8216
+ {
8217
+ field: string;
8218
+ settingId: string;
8219
+ }
8220
+ ];
8216
8221
  };
8217
8222
  setting?: {
8218
8223
  id: string;
@@ -8226,7 +8231,8 @@ type SettingUIControl = {
8226
8231
  } & SettingUICompo;
8227
8232
  type ControlTriggerAction$1 = {
8228
8233
  controlId: string;
8229
- newValue: any;
8234
+ newValue?: any;
8235
+ valueFromField?: string;
8230
8236
  controlType: string;
8231
8237
  groupType: string;
8232
8238
  valueIfNull?: any;
@@ -8431,6 +8437,7 @@ type TypographyV2Attrs = {
8431
8437
  underline?: boolean;
8432
8438
  color?: ColorValueType;
8433
8439
  transform?: string;
8440
+ textAlign?: ObjectDevices<AlignProp>;
8434
8441
  };
8435
8442
  type CornerRadius = {
8436
8443
  btlr?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "1.53.0-dev.185",
3
+ "version": "1.53.0-dev.186",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",