@club-employes/utopia 4.32.0 → 4.34.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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "generated": "2025-11-05T16:02:11.840Z",
2
+ "generated": "2025-11-12T14:24:17.274Z",
3
3
  "count": 1238,
4
4
  "icons": [
5
5
  "Accessibility",
package/dist/index.d.ts CHANGED
@@ -79,6 +79,8 @@ export interface ChipProps {
79
79
  leftIcon?: string
80
80
  actionable?: boolean
81
81
  ghost?: boolean
82
+ customColor?: string
83
+ customTextColor?: string
82
84
  }
83
85
 
84
86
  export interface InputTextProps {
@@ -258,7 +260,7 @@ export interface ProductCardProps {
258
260
  variantCount?: number;
259
261
  price?: number;
260
262
  oldPrice?: number;
261
- discount?: number;
263
+ discount?: string;
262
264
  discountTooltip?: string;
263
265
  currency?: string;
264
266
  subventionName?: string;
@@ -302,6 +304,20 @@ export declare const AuthLayout: DefineComponent<{}>
302
304
  export declare const Slider: DefineComponent<{}>
303
305
  export declare const Breadcrumbs: DefineComponent<BreadcrumbsProps>
304
306
  export declare const Link: DefineComponent<LinkProps>
307
+
308
+ export interface ErrorStateProps {
309
+ title?: string
310
+ description?: string
311
+ actionLabel?: string
312
+ retryAction?: () => void
313
+ spinning?: boolean
314
+ imageSrc?: string
315
+ imageAlt?: string
316
+ preset?: 'gears' | 'search'
317
+ }
318
+ export declare const ErrorState: DefineComponent<ErrorStateProps>
319
+ export declare const FeedbackState: DefineComponent<ErrorStateProps>
320
+
305
321
  export declare const PriceTag: DefineComponent<PriceTagProps>
306
322
  export declare const ProductCard: DefineComponent<ProductCardProps>
307
323
  export declare const FilterPrice: DefineComponent<FilterPriceProps>