@club-employes/utopia 4.118.0 → 4.120.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.
@@ -0,0 +1,8 @@
1
+ import { FavoriteToggleProps } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<FavoriteToggleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4
+ "toggle-favorite": () => any;
5
+ }, string, PublicProps, Readonly<FavoriteToggleProps> & Readonly<{
6
+ "onToggle-favorite"?: (() => any) | undefined;
7
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
8
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export { default as FavoriteToggle } from './FavoriteToggle';
2
+ export type { FavoriteToggleProps } from './types';
@@ -0,0 +1,3 @@
1
+ export interface FavoriteToggleProps {
2
+ isFavorite?: boolean;
3
+ }
@@ -25,3 +25,4 @@ export type IconName = string;
25
25
  export type IconSize = 'extra-small' | 'small' | 'medium' | 'large';
26
26
  export type IconColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'neutral' | 'current';
27
27
  export type Currency = '€' | '£';
28
+ export { FavoriteToggle, type FavoriteToggleProps } from './FavoriteToggle';
@@ -8,6 +8,7 @@ export interface PriceTagProps {
8
8
  currency?: string;
9
9
  isSubventioned?: boolean;
10
10
  isDiscounted?: boolean;
11
+ startingFrom?: boolean;
11
12
  language?: 'fr' | 'en';
12
13
  color?: string;
13
14
  size?: TextSize;
@@ -0,0 +1,19 @@
1
+ import { ProductImageProps } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<ProductImageProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4
+ "toggle-favorite": (payload: {
5
+ id: string;
6
+ newState: boolean;
7
+ }) => any;
8
+ }, string, PublicProps, Readonly<ProductImageProps> & Readonly<{
9
+ "onToggle-favorite"?: ((payload: {
10
+ id: string;
11
+ newState: boolean;
12
+ }) => any) | undefined;
13
+ }>, {
14
+ disabled: boolean;
15
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
16
+ galleryRef: HTMLDivElement;
17
+ mainImageContainerRef: HTMLDivElement;
18
+ }, HTMLDivElement>;
19
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as ProductImage } from './ProductImage';
@@ -0,0 +1,8 @@
1
+ export interface ProductImageProps {
2
+ imagesUrls: string[];
3
+ id: string;
4
+ isFavorite: boolean;
5
+ alt: string;
6
+ fallbackImageUrl: string;
7
+ disabled?: boolean;
8
+ }
@@ -29,3 +29,5 @@ export { PriceSummary, type PriceSummaryProps } from './PriceSummary';
29
29
  export { GrantUsersSelection, type GrantUsersSelectionProps } from './GrantUsersSelection';
30
30
  export { FooterAction, type FooterActionProps } from './FooterAction';
31
31
  export { CounterButtons, type CounterButtonsProps } from './CounterButtons';
32
+ export { ProductImage } from './ProductImage';
33
+ export type { ProductImageProps } from './ProductImage';
@@ -17,5 +17,6 @@ export interface ProductCardProps {
17
17
  currency?: string;
18
18
  subventionName?: string;
19
19
  subventionTooltip?: string;
20
+ startingFrom?: boolean;
20
21
  language?: 'fr' | 'en';
21
22
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "generated": "2026-01-28T13:35:40.625Z",
2
+ "generated": "2026-01-29T09:51:55.122Z",
3
3
  "count": 1239,
4
4
  "icons": [
5
5
  "Accessibility",
package/dist/index.d.ts CHANGED
@@ -22,6 +22,7 @@ export type { TipsProps } from './components/atoms/Tips/types';
22
22
  export type { TextAreaProps } from './components/atoms/TextArea/types';
23
23
  export type { RadioBoxProps } from './components/atoms/RadioBox/types';
24
24
  export type { FilterButtonProps } from './components/atoms/FilterButton/types';
25
+ export type { FavoriteToggleProps } from './components/atoms/FavoriteToggle/types';
25
26
  export type { BottomSheetChangeReason, BottomSheetProps } from './components/molecules/BottomSheet/types';
26
27
  export type { DatePickerProps } from './components/molecules/DatePicker/types';
27
28
  export type { DropDownOption, DropDownProps } from './components/molecules/DropDown/types';
@@ -41,6 +42,7 @@ export type { PriceSummaryProps } from './components/molecules/PriceSummary/type
41
42
  export type { GrantUsersSelectionProps } from './components/molecules/GrantUsersSelection/types';
42
43
  export type { FooterActionProps } from './components/molecules/FooterAction/types';
43
44
  export type { CounterButtonsProps } from './components/molecules/CounterButtons/types';
45
+ export type { ProductImageProps } from './components/molecules/ProductImage/types';
44
46
  export type { BreadcrumbsItem, BreadcrumbsProps } from './components/organisms/Breadcrumbs/types';
45
47
  export type { Filter, FilterGroupProps, Sort } from './components/organisms/FilterGroup/types';
46
48
  export type { FilterPriceProps } from './components/organisms/FilterPrice/types';