gantri-components 2.142.2-beta.5 → 2.142.2-beta.6

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.
@@ -21,6 +21,7 @@ export interface ImageProps {
21
21
  dpr?: Optional<Dpr>;
22
22
  fallbackColor?: Optional<Color>;
23
23
  fetchImmediately?: boolean;
24
+ fetchPriority?: 'high' | 'low' | 'auto';
24
25
  height?: Optional<ResolutionAwareProp<ImageDimension>>;
25
26
  immediateAvailable?: Optional<boolean>;
26
27
  maxHeight?: Optional<ResolutionAwareProp<Property.MaxHeight>>;
@@ -39,6 +40,7 @@ export interface ImageProps {
39
40
  src: ResolutionAwareProp<string>;
40
41
  style?: CSSProperties;
41
42
  transformations?: Optional<ResolutionAwareProp<Transformations>>;
43
+ transformationsVariant?: Optional<ImageTransformationsVariant>;
42
44
  /**
43
45
  * Used to define common transformation for images.
44
46
  *
@@ -63,7 +65,6 @@ export interface ImageProps {
63
65
  * hhf => desktop half width, tablet half width, mobile full width
64
66
  * ```
65
67
  */
66
- transformationsVariant?: Optional<ImageTransformationsVariant>;
67
68
  width?: Optional<ResolutionAwareProp<ImageDimension>>;
68
69
  }
69
70
  export interface Transformations {