@wix/app-extensions 1.0.82 → 1.0.84

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.
@@ -8844,6 +8844,8 @@ interface ImageData {
8844
8844
  styles?: ImageDataStyles;
8845
8845
  /** Non-destructive crop rectangle, expressed as fractions (0-1) of the original image. When omitted, the full image is shown. */
8846
8846
  crop?: ImageDataCrop;
8847
+ /** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
8848
+ cropShape?: string | null;
8847
8849
  }
8848
8850
  /** @internal */
8849
8851
  interface ImageDataStylesBorder {
@@ -19635,6 +19637,11 @@ interface ApiContext {
19635
19637
  states?: Record<string, ContextState>;
19636
19638
  /** Display groups for the top-level context items, used to group and order them in the editor for better UX */
19637
19639
  displayGroups?: Record<string, ContextDisplayGroup>;
19640
+ /**
19641
+ * Human friendly name of the context for human readability
19642
+ * @maxLength 50
19643
+ */
19644
+ displayName?: string | null;
19638
19645
  }
19639
19646
  /** @internal */
19640
19647
  interface ContextItem extends ContextItemSelectedDataTypeOneOf {