@club-employes/utopia 4.31.0 → 4.32.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.
- package/dist/icons-list.json +1 -1
- package/dist/index.d.ts +38 -0
- package/dist/index.js +2036 -1760
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
package/dist/icons-list.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -237,6 +237,41 @@ export interface LinkProps {
|
|
|
237
237
|
disabled?: boolean
|
|
238
238
|
}
|
|
239
239
|
|
|
240
|
+
export interface PriceTagProps {
|
|
241
|
+
variantCount?: number;
|
|
242
|
+
price: number;
|
|
243
|
+
oldPrice?: number;
|
|
244
|
+
currency?: string;
|
|
245
|
+
isSubventioned?: boolean;
|
|
246
|
+
language?: 'fr' | 'en';
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
export interface ProductCardProps {
|
|
250
|
+
id: string;
|
|
251
|
+
title: string;
|
|
252
|
+
description?: string;
|
|
253
|
+
imageUrl: string;
|
|
254
|
+
logoUrl?: string;
|
|
255
|
+
isFavorite: boolean;
|
|
256
|
+
tags?: string[];
|
|
257
|
+
available?: boolean;
|
|
258
|
+
variantCount?: number;
|
|
259
|
+
price?: number;
|
|
260
|
+
oldPrice?: number;
|
|
261
|
+
discount?: number;
|
|
262
|
+
discountTooltip?: string;
|
|
263
|
+
currency?: string;
|
|
264
|
+
subventionName?: string;
|
|
265
|
+
subventionTooltip?: string;
|
|
266
|
+
language?: 'fr' | 'en';
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
export interface FilterPriceProps {
|
|
270
|
+
variant?: 'default' | 'primary' | 'secondary'
|
|
271
|
+
size?: 'small' | 'medium' | 'large'
|
|
272
|
+
disabled?: boolean
|
|
273
|
+
}
|
|
274
|
+
|
|
240
275
|
// Component exports
|
|
241
276
|
export declare const Badge: DefineComponent<BadgeProps>
|
|
242
277
|
export declare const Button: DefineComponent<ButtonProps>
|
|
@@ -267,6 +302,9 @@ export declare const AuthLayout: DefineComponent<{}>
|
|
|
267
302
|
export declare const Slider: DefineComponent<{}>
|
|
268
303
|
export declare const Breadcrumbs: DefineComponent<BreadcrumbsProps>
|
|
269
304
|
export declare const Link: DefineComponent<LinkProps>
|
|
305
|
+
export declare const PriceTag: DefineComponent<PriceTagProps>
|
|
306
|
+
export declare const ProductCard: DefineComponent<ProductCardProps>
|
|
307
|
+
export declare const FilterPrice: DefineComponent<FilterPriceProps>
|
|
270
308
|
// Theme exports
|
|
271
309
|
export declare const clubEmployesLight: ThemeConfig
|
|
272
310
|
export declare const clubEmployesDark: ThemeConfig
|