@club-employes/utopia 4.343.0 → 4.344.0

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.
@@ -3,7 +3,7 @@ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOp
3
3
  declare const _default: DefineComponent<DefaultImageProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DefaultImageProps> & Readonly<{}>, {
4
4
  loading: boolean;
5
5
  radius: number;
6
- fit: "cover" | "contain" | "fill";
6
+ fit: "cover" | "contain" | "fill" | "logo";
7
7
  aspectRatio: number;
8
8
  hoverZoom: boolean;
9
9
  inactive: boolean;
@@ -16,7 +16,7 @@ export interface DefaultImageProps {
16
16
  * How the image should fit in the container.
17
17
  * @default 'cover'
18
18
  */
19
- fit?: 'cover' | 'contain' | 'fill';
19
+ fit?: 'cover' | 'contain' | 'fill' | 'logo';
20
20
  /**
21
21
  * Whether to enable hover zoom on the image.
22
22
  * @default false
@@ -1,7 +1,7 @@
1
1
  export interface ProductImageType {
2
2
  url: string;
3
3
  alt: string;
4
- fit?: 'cover' | 'contain' | 'fill';
4
+ fit?: 'cover' | 'contain' | 'fill' | 'logo';
5
5
  }
6
6
  export interface ProductImageProps {
7
7
  images: ProductImageType[];